-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsrell_updata3.h
9871 lines (9865 loc) · 490 KB
/
srell_updata3.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// UnicodeData.txt
//
// PropList-16.0.0.txt
// Date: 2024-05-31, 18:09:48 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// DerivedCoreProperties-16.0.0.txt
// Date: 2024-05-31, 18:09:32 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// emoji-data.txt
// Date: 2024-05-01, 21:25:24 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// DerivedNormalizationProps-16.0.0.txt
// Date: 2024-04-30, 21:48:18 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// emoji-sequences.txt
// Date: 2024-05-01, 21:25:24 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// emoji-zwj-sequences.txt
// Date: 2024-08-14, 23:51:54 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// PropertyValueAliases-16.0.0.txt
// Date: 2024-07-30, 19:59:00 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// Scripts-16.0.0.txt
// Date: 2024-04-30, 21:48:40 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
// ScriptExtensions-16.0.0.txt
// Date: 2024-07-30, 19:38:00 GMT
// © 2024 Unicode®, Inc.
// Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
// For terms of use and license, see https://www.unicode.org/terms_of_use.html
//
enum upid_type
{
upid_unknown = 0,
upid_invalid = 0,
upid_error = 0,
uptype_bp = 1,
uptype_gc = 2,
uptype_sc = 3,
uptype_scx = 4,
gc_Other = 5,
gc_Control = 6,
gc_Format = 7,
gc_Unassigned = 8,
gc_Private_Use = 9,
gc_Surrogate = 10,
gc_Letter = 11,
gc_Cased_Letter = 12,
gc_Lowercase_Letter = 13,
gc_Titlecase_Letter = 14,
gc_Uppercase_Letter = 15,
gc_Modifier_Letter = 16,
gc_Other_Letter = 17,
gc_Mark = 18,
gc_Spacing_Mark = 19,
gc_Enclosing_Mark = 20,
gc_Nonspacing_Mark = 21,
gc_Number = 22,
gc_Decimal_Number = 23,
gc_Letter_Number = 24,
gc_Other_Number = 25,
gc_Punctuation = 26,
gc_Connector_Punctuation = 27,
gc_Dash_Punctuation = 28,
gc_Close_Punctuation = 29,
gc_Final_Punctuation = 30,
gc_Initial_Punctuation = 31,
gc_Other_Punctuation = 32,
gc_Open_Punctuation = 33,
gc_Symbol = 34,
gc_Currency_Symbol = 35,
gc_Modifier_Symbol = 36,
gc_Math_Symbol = 37,
gc_Other_Symbol = 38,
gc_Separator = 39,
gc_Line_Separator = 40,
gc_Paragraph_Separator = 41,
gc_Space_Separator = 42,
bp_ASCII = 43,
bp_ASCII_Hex_Digit = 44,
bp_Alphabetic = 45,
bp_Any = 46,
bp_Assigned = 47,
bp_Bidi_Control = 48,
bp_Bidi_Mirrored = 49,
bp_Case_Ignorable = 50,
bp_Cased = 51,
bp_Changes_When_Casefolded = 52,
bp_Changes_When_Casemapped = 53,
bp_Changes_When_Lowercased = 54,
bp_Changes_When_NFKC_Casefolded = 55,
bp_Changes_When_Titlecased = 56,
bp_Changes_When_Uppercased = 57,
bp_Dash = 58,
bp_Default_Ignorable_Code_Point = 59,
bp_Deprecated = 60,
bp_Diacritic = 61,
bp_Emoji = 62,
bp_Emoji_Component = 63,
bp_Emoji_Modifier = 64,
bp_Emoji_Modifier_Base = 65,
bp_Emoji_Presentation = 66,
bp_Extended_Pictographic = 67,
bp_Extender = 68,
bp_Grapheme_Base = 69,
bp_Grapheme_Extend = 70,
bp_Hex_Digit = 71,
bp_IDS_Binary_Operator = 72,
bp_IDS_Trinary_Operator = 73,
bp_ID_Continue = 74,
bp_ID_Start = 75,
bp_Ideographic = 76,
bp_Join_Control = 77,
bp_Logical_Order_Exception = 78,
bp_Lowercase = 79,
bp_Math = 80,
bp_Noncharacter_Code_Point = 81,
bp_Pattern_Syntax = 82,
bp_Pattern_White_Space = 83,
bp_Quotation_Mark = 84,
bp_Radical = 85,
bp_Regional_Indicator = 86,
bp_Sentence_Terminal = 87,
bp_Soft_Dotted = 88,
bp_Terminal_Punctuation = 89,
bp_Unified_Ideograph = 90,
bp_Uppercase = 91,
bp_Variation_Selector = 92,
bp_White_Space = 93,
bp_XID_Continue = 94,
bp_XID_Start = 95,
sc_Common = 96,
sc_Latin = 97,
sc_Greek = 98,
sc_Cyrillic = 99,
sc_Armenian = 100,
sc_Hebrew = 101,
sc_Arabic = 102,
sc_Syriac = 103,
sc_Thaana = 104,
sc_Devanagari = 105,
sc_Bengali = 106,
sc_Gurmukhi = 107,
sc_Gujarati = 108,
sc_Oriya = 109,
sc_Tamil = 110,
sc_Telugu = 111,
sc_Kannada = 112,
sc_Malayalam = 113,
sc_Sinhala = 114,
sc_Thai = 115,
sc_Lao = 116,
sc_Tibetan = 117,
sc_Myanmar = 118,
sc_Georgian = 119,
sc_Hangul = 120,
sc_Ethiopic = 121,
sc_Cherokee = 122,
sc_Canadian_Aboriginal = 123,
sc_Ogham = 124,
sc_Runic = 125,
sc_Khmer = 126,
sc_Mongolian = 127,
sc_Hiragana = 128,
sc_Katakana = 129,
sc_Bopomofo = 130,
sc_Han = 131,
sc_Yi = 132,
sc_Old_Italic = 133,
sc_Gothic = 134,
sc_Deseret = 135,
sc_Inherited = 136,
sc_Tagalog = 137,
sc_Hanunoo = 138,
sc_Buhid = 139,
sc_Tagbanwa = 140,
sc_Limbu = 141,
sc_Tai_Le = 142,
sc_Linear_B = 143,
sc_Ugaritic = 144,
sc_Shavian = 145,
sc_Osmanya = 146,
sc_Cypriot = 147,
sc_Braille = 148,
sc_Buginese = 149,
sc_Coptic = 150,
sc_New_Tai_Lue = 151,
sc_Glagolitic = 152,
sc_Tifinagh = 153,
sc_Syloti_Nagri = 154,
sc_Old_Persian = 155,
sc_Kharoshthi = 156,
sc_Balinese = 157,
sc_Cuneiform = 158,
sc_Phoenician = 159,
sc_Phags_Pa = 160,
sc_Nko = 161,
sc_Sundanese = 162,
sc_Lepcha = 163,
sc_Ol_Chiki = 164,
sc_Vai = 165,
sc_Saurashtra = 166,
sc_Kayah_Li = 167,
sc_Rejang = 168,
sc_Lycian = 169,
sc_Carian = 170,
sc_Lydian = 171,
sc_Cham = 172,
sc_Tai_Tham = 173,
sc_Tai_Viet = 174,
sc_Avestan = 175,
sc_Egyptian_Hieroglyphs = 176,
sc_Samaritan = 177,
sc_Lisu = 178,
sc_Bamum = 179,
sc_Javanese = 180,
sc_Meetei_Mayek = 181,
sc_Imperial_Aramaic = 182,
sc_Old_South_Arabian = 183,
sc_Inscriptional_Parthian = 184,
sc_Inscriptional_Pahlavi = 185,
sc_Old_Turkic = 186,
sc_Kaithi = 187,
sc_Batak = 188,
sc_Brahmi = 189,
sc_Mandaic = 190,
sc_Chakma = 191,
sc_Meroitic_Cursive = 192,
sc_Meroitic_Hieroglyphs = 193,
sc_Miao = 194,
sc_Sharada = 195,
sc_Sora_Sompeng = 196,
sc_Takri = 197,
sc_Caucasian_Albanian = 198,
sc_Bassa_Vah = 199,
sc_Duployan = 200,
sc_Elbasan = 201,
sc_Grantha = 202,
sc_Pahawh_Hmong = 203,
sc_Khojki = 204,
sc_Linear_A = 205,
sc_Mahajani = 206,
sc_Manichaean = 207,
sc_Mende_Kikakui = 208,
sc_Modi = 209,
sc_Mro = 210,
sc_Old_North_Arabian = 211,
sc_Nabataean = 212,
sc_Palmyrene = 213,
sc_Pau_Cin_Hau = 214,
sc_Old_Permic = 215,
sc_Psalter_Pahlavi = 216,
sc_Siddham = 217,
sc_Khudawadi = 218,
sc_Tirhuta = 219,
sc_Warang_Citi = 220,
sc_Ahom = 221,
sc_Anatolian_Hieroglyphs = 222,
sc_Hatran = 223,
sc_Multani = 224,
sc_Old_Hungarian = 225,
sc_SignWriting = 226,
sc_Adlam = 227,
sc_Bhaiksuki = 228,
sc_Marchen = 229,
sc_Newa = 230,
sc_Osage = 231,
sc_Tangut = 232,
sc_Masaram_Gondi = 233,
sc_Nushu = 234,
sc_Soyombo = 235,
sc_Zanabazar_Square = 236,
sc_Dogra = 237,
sc_Gunjala_Gondi = 238,
sc_Makasar = 239,
sc_Medefaidrin = 240,
sc_Hanifi_Rohingya = 241,
sc_Sogdian = 242,
sc_Old_Sogdian = 243,
sc_Elymaic = 244,
sc_Nandinagari = 245,
sc_Nyiakeng_Puachue_Hmong = 246,
sc_Wancho = 247,
sc_Chorasmian = 248,
sc_Dives_Akuru = 249,
sc_Khitan_Small_Script = 250,
sc_Yezidi = 251,
sc_Cypro_Minoan = 252,
sc_Old_Uyghur = 253,
sc_Tangsa = 254,
sc_Toto = 255,
sc_Vithkuqi = 256,
sc_Kawi = 257,
sc_Nag_Mundari = 258,
sc_Garay = 259,
sc_Gurung_Khema = 260,
sc_Kirat_Rai = 261,
sc_Ol_Onal = 262,
sc_Sunuwar = 263,
sc_Todhri = 264,
sc_Tulu_Tigalari = 265,
sc_Unknown = 266,
scx_Common = 267,
scx_Latin = 268,
scx_Greek = 269,
scx_Cyrillic = 270,
scx_Armenian = 271,
scx_Hebrew = 272,
scx_Arabic = 273,
scx_Syriac = 274,
scx_Thaana = 275,
scx_Devanagari = 276,
scx_Bengali = 277,
scx_Gurmukhi = 278,
scx_Gujarati = 279,
scx_Oriya = 280,
scx_Tamil = 281,
scx_Telugu = 282,
scx_Kannada = 283,
scx_Malayalam = 284,
scx_Sinhala = 285,
scx_Thai = 286,
scx_Lao = 116, // #287
scx_Tibetan = 287, // #288
scx_Myanmar = 288, // #289
scx_Georgian = 289, // #290
scx_Hangul = 290, // #291
scx_Ethiopic = 291, // #292
scx_Cherokee = 292, // #293
scx_Canadian_Aboriginal = 123, // #294
scx_Ogham = 124, // #295
scx_Runic = 293, // #296
scx_Khmer = 126, // #297
scx_Mongolian = 294, // #298
scx_Hiragana = 295, // #299
scx_Katakana = 296, // #300
scx_Bopomofo = 297, // #301
scx_Han = 298, // #302
scx_Yi = 299, // #303
scx_Old_Italic = 133, // #304
scx_Gothic = 300, // #305
scx_Deseret = 135, // #306
scx_Inherited = 301, // #307
scx_Tagalog = 302, // #308
scx_Hanunoo = 303, // #309
scx_Buhid = 304, // #310
scx_Tagbanwa = 305, // #311
scx_Limbu = 306, // #312
scx_Tai_Le = 307, // #313
scx_Linear_B = 308, // #314
scx_Ugaritic = 144, // #315
scx_Shavian = 309, // #316
scx_Osmanya = 146, // #317
scx_Cypriot = 310, // #318
scx_Braille = 148, // #319
scx_Buginese = 311, // #320
scx_Coptic = 312, // #321
scx_New_Tai_Lue = 151, // #322
scx_Glagolitic = 313, // #323
scx_Tifinagh = 314, // #324
scx_Syloti_Nagri = 315, // #325
scx_Old_Persian = 155, // #326
scx_Kharoshthi = 156, // #327
scx_Balinese = 157, // #328
scx_Cuneiform = 158, // #329
scx_Phoenician = 159, // #330
scx_Phags_Pa = 316, // #331
scx_Nko = 317, // #332
scx_Sundanese = 162, // #333
scx_Lepcha = 163, // #334
scx_Ol_Chiki = 164, // #335
scx_Vai = 165, // #336
scx_Saurashtra = 166, // #337
scx_Kayah_Li = 318, // #338
scx_Rejang = 168, // #339
scx_Lycian = 319, // #340
scx_Carian = 320, // #341
scx_Lydian = 321, // #342
scx_Cham = 172, // #343
scx_Tai_Tham = 173, // #344
scx_Tai_Viet = 174, // #345
scx_Avestan = 322, // #346
scx_Egyptian_Hieroglyphs = 176, // #347
scx_Samaritan = 323, // #348
scx_Lisu = 324, // #349
scx_Bamum = 179, // #350
scx_Javanese = 325, // #351
scx_Meetei_Mayek = 181, // #352
scx_Imperial_Aramaic = 182, // #353
scx_Old_South_Arabian = 183, // #354
scx_Inscriptional_Parthian = 184, // #355
scx_Inscriptional_Pahlavi = 185, // #356
scx_Old_Turkic = 326, // #357
scx_Kaithi = 327, // #358
scx_Batak = 188, // #359
scx_Brahmi = 189, // #360
scx_Mandaic = 328, // #361
scx_Chakma = 329, // #362
scx_Meroitic_Cursive = 192, // #363
scx_Meroitic_Hieroglyphs = 330, // #364
scx_Miao = 194, // #365
scx_Sharada = 331, // #366
scx_Sora_Sompeng = 196, // #367
scx_Takri = 332, // #368
scx_Caucasian_Albanian = 333, // #369
scx_Bassa_Vah = 199, // #370
scx_Duployan = 334, // #371
scx_Elbasan = 335, // #372
scx_Grantha = 336, // #373
scx_Pahawh_Hmong = 203, // #374
scx_Khojki = 337, // #375
scx_Linear_A = 338, // #376
scx_Mahajani = 339, // #377
scx_Manichaean = 340, // #378
scx_Mende_Kikakui = 208, // #379
scx_Modi = 341, // #380
scx_Mro = 210, // #381
scx_Old_North_Arabian = 211, // #382
scx_Nabataean = 212, // #383
scx_Palmyrene = 213, // #384
scx_Pau_Cin_Hau = 214, // #385
scx_Old_Permic = 342, // #386
scx_Psalter_Pahlavi = 343, // #387
scx_Siddham = 217, // #388
scx_Khudawadi = 344, // #389
scx_Tirhuta = 345, // #390
scx_Warang_Citi = 220, // #391
scx_Ahom = 221, // #392
scx_Anatolian_Hieroglyphs = 222, // #393
scx_Hatran = 223, // #394
scx_Multani = 346, // #395
scx_Old_Hungarian = 347, // #396
scx_SignWriting = 226, // #397
scx_Adlam = 348, // #398
scx_Bhaiksuki = 228, // #399
scx_Marchen = 229, // #400
scx_Newa = 230, // #401
scx_Osage = 349, // #402
scx_Tangut = 350, // #403
scx_Masaram_Gondi = 351, // #404
scx_Nushu = 234, // #405
scx_Soyombo = 235, // #406
scx_Zanabazar_Square = 236, // #407
scx_Dogra = 352, // #408
scx_Gunjala_Gondi = 353, // #409
scx_Makasar = 239, // #410
scx_Medefaidrin = 240, // #411
scx_Hanifi_Rohingya = 354, // #412
scx_Sogdian = 355, // #413
scx_Old_Sogdian = 243, // #414
scx_Elymaic = 244, // #415
scx_Nandinagari = 356, // #416
scx_Nyiakeng_Puachue_Hmong = 246, // #417
scx_Wancho = 247, // #418
scx_Chorasmian = 248, // #419
scx_Dives_Akuru = 249, // #420
scx_Khitan_Small_Script = 250, // #421
scx_Yezidi = 357, // #422
scx_Cypro_Minoan = 358, // #423
scx_Old_Uyghur = 359, // #424
scx_Tangsa = 254, // #425
scx_Toto = 360, // #426
scx_Vithkuqi = 256, // #427
scx_Kawi = 257, // #428
scx_Nag_Mundari = 258, // #429
scx_Garay = 361, // #430
scx_Gurung_Khema = 362, // #431
scx_Kirat_Rai = 261, // #432
scx_Ol_Onal = 363, // #433
scx_Sunuwar = 364, // #434
scx_Todhri = 365, // #435
scx_Tulu_Tigalari = 366, // #436
scx_Unknown = 266, // #437
upid_max_property_number = 366,
bp_RGI_Emoji = 367, // #438
bp_Basic_Emoji = 368, // #439
bp_Emoji_Keycap_Sequence = 369, // #440
bp_RGI_Emoji_Modifier_Sequence = 370, // #441
bp_RGI_Emoji_Flag_Sequence = 371, // #442
bp_RGI_Emoji_Tag_Sequence = 372, // #443
bp_RGI_Emoji_ZWJ_Sequence = 373, // #444
upid_max_pos_number = 373
};
template <typename T1, typename T2, typename T3>
struct unicode_property_data
{
static const T1 propertynumbertable[];
static const T2 positiontable[];
static const T3 rangetable[];
};
template <typename T1, typename T2, typename T3>
const T1 unicode_property_data<T1, T2, T3>::propertynumbertable[] =
{
{ "", 6 },
{ "\x47\x65\x6E\x65\x72\x61\x6C\x5F\x43\x61\x74\x65\x67\x6F\x72\x79", 2 },
{ "\x53\x63\x72\x69\x70\x74", 3 },
{ "\x53\x63\x72\x69\x70\x74\x5F\x45\x78\x74\x65\x6E\x73\x69\x6F\x6E\x73", 4 },
{ "\x67\x63", 2 },
{ "\x73\x63", 3 },
{ "\x73\x63\x78", 4 },
// gc: 80
{ "\x43", 5 },
{ "\x43\x61\x73\x65\x64\x5F\x4C\x65\x74\x74\x65\x72", 12 },
{ "\x43\x63", 6 },
{ "\x43\x66", 7 },
{ "\x43\x6C\x6F\x73\x65\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 29 },
{ "\x43\x6E", 8 },
{ "\x43\x6F", 9 },
{ "\x43\x6F\x6D\x62\x69\x6E\x69\x6E\x67\x5F\x4D\x61\x72\x6B", 18 },
{ "\x43\x6F\x6E\x6E\x65\x63\x74\x6F\x72\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 27 },
{ "\x43\x6F\x6E\x74\x72\x6F\x6C", 6 },
{ "\x43\x73", 10 },
{ "\x43\x75\x72\x72\x65\x6E\x63\x79\x5F\x53\x79\x6D\x62\x6F\x6C", 35 },
{ "\x44\x61\x73\x68\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 28 },
{ "\x44\x65\x63\x69\x6D\x61\x6C\x5F\x4E\x75\x6D\x62\x65\x72", 23 },
{ "\x45\x6E\x63\x6C\x6F\x73\x69\x6E\x67\x5F\x4D\x61\x72\x6B", 20 },
{ "\x46\x69\x6E\x61\x6C\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 30 },
{ "\x46\x6F\x72\x6D\x61\x74", 7 },
{ "\x49\x6E\x69\x74\x69\x61\x6C\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 31 },
{ "\x4C", 11 },
{ "\x4C\x43", 12 },
{ "\x4C\x65\x74\x74\x65\x72", 11 },
{ "\x4C\x65\x74\x74\x65\x72\x5F\x4E\x75\x6D\x62\x65\x72", 24 },
{ "\x4C\x69\x6E\x65\x5F\x53\x65\x70\x61\x72\x61\x74\x6F\x72", 40 },
{ "\x4C\x6C", 13 },
{ "\x4C\x6D", 16 },
{ "\x4C\x6F", 17 },
{ "\x4C\x6F\x77\x65\x72\x63\x61\x73\x65\x5F\x4C\x65\x74\x74\x65\x72", 13 },
{ "\x4C\x74", 14 },
{ "\x4C\x75", 15 },
{ "\x4D", 18 },
{ "\x4D\x61\x72\x6B", 18 },
{ "\x4D\x61\x74\x68\x5F\x53\x79\x6D\x62\x6F\x6C", 37 },
{ "\x4D\x63", 19 },
{ "\x4D\x65", 20 },
{ "\x4D\x6E", 21 },
{ "\x4D\x6F\x64\x69\x66\x69\x65\x72\x5F\x4C\x65\x74\x74\x65\x72", 16 },
{ "\x4D\x6F\x64\x69\x66\x69\x65\x72\x5F\x53\x79\x6D\x62\x6F\x6C", 36 },
{ "\x4E", 22 },
{ "\x4E\x64", 23 },
{ "\x4E\x6C", 24 },
{ "\x4E\x6F", 25 },
{ "\x4E\x6F\x6E\x73\x70\x61\x63\x69\x6E\x67\x5F\x4D\x61\x72\x6B", 21 },
{ "\x4E\x75\x6D\x62\x65\x72", 22 },
{ "\x4F\x70\x65\x6E\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 33 },
{ "\x4F\x74\x68\x65\x72", 5 },
{ "\x4F\x74\x68\x65\x72\x5F\x4C\x65\x74\x74\x65\x72", 17 },
{ "\x4F\x74\x68\x65\x72\x5F\x4E\x75\x6D\x62\x65\x72", 25 },
{ "\x4F\x74\x68\x65\x72\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 32 },
{ "\x4F\x74\x68\x65\x72\x5F\x53\x79\x6D\x62\x6F\x6C", 38 },
{ "\x50", 26 },
{ "\x50\x61\x72\x61\x67\x72\x61\x70\x68\x5F\x53\x65\x70\x61\x72\x61\x74\x6F\x72", 41 },
{ "\x50\x63", 27 },
{ "\x50\x64", 28 },
{ "\x50\x65", 29 },
{ "\x50\x66", 30 },
{ "\x50\x69", 31 },
{ "\x50\x6F", 32 },
{ "\x50\x72\x69\x76\x61\x74\x65\x5F\x55\x73\x65", 9 },
{ "\x50\x73", 33 },
{ "\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 26 },
{ "\x53", 34 },
{ "\x53\x63", 35 },
{ "\x53\x65\x70\x61\x72\x61\x74\x6F\x72", 39 },
{ "\x53\x6B", 36 },
{ "\x53\x6D", 37 },
{ "\x53\x6F", 38 },
{ "\x53\x70\x61\x63\x65\x5F\x53\x65\x70\x61\x72\x61\x74\x6F\x72", 42 },
{ "\x53\x70\x61\x63\x69\x6E\x67\x5F\x4D\x61\x72\x6B", 19 },
{ "\x53\x75\x72\x72\x6F\x67\x61\x74\x65", 10 },
{ "\x53\x79\x6D\x62\x6F\x6C", 34 },
{ "\x54\x69\x74\x6C\x65\x63\x61\x73\x65\x5F\x4C\x65\x74\x74\x65\x72", 14 },
{ "\x55\x6E\x61\x73\x73\x69\x67\x6E\x65\x64", 8 },
{ "\x55\x70\x70\x65\x72\x63\x61\x73\x65\x5F\x4C\x65\x74\x74\x65\x72", 15 },
{ "\x5A", 39 },
{ "\x5A\x6C", 40 },
{ "\x5A\x70", 41 },
{ "\x5A\x73", 42 },
{ "\x63\x6E\x74\x72\x6C", 6 },
{ "\x64\x69\x67\x69\x74", 23 },
{ "\x70\x75\x6E\x63\x74", 26 },
// bp: 105
{ "\x41\x48\x65\x78", 44 },
{ "\x41\x53\x43\x49\x49", 43 },
{ "\x41\x53\x43\x49\x49\x5F\x48\x65\x78\x5F\x44\x69\x67\x69\x74", 44 },
{ "\x41\x6C\x70\x68\x61", 45 },
{ "\x41\x6C\x70\x68\x61\x62\x65\x74\x69\x63", 45 },
{ "\x41\x6E\x79", 46 },
{ "\x41\x73\x73\x69\x67\x6E\x65\x64", 47 },
{ "\x42\x61\x73\x69\x63\x5F\x45\x6D\x6F\x6A\x69", 368 },
{ "\x42\x69\x64\x69\x5F\x43", 48 },
{ "\x42\x69\x64\x69\x5F\x43\x6F\x6E\x74\x72\x6F\x6C", 48 },
{ "\x42\x69\x64\x69\x5F\x4D", 49 },
{ "\x42\x69\x64\x69\x5F\x4D\x69\x72\x72\x6F\x72\x65\x64", 49 },
{ "\x43\x49", 50 },
{ "\x43\x57\x43\x46", 52 },
{ "\x43\x57\x43\x4D", 53 },
{ "\x43\x57\x4B\x43\x46", 55 },
{ "\x43\x57\x4C", 54 },
{ "\x43\x57\x54", 56 },
{ "\x43\x57\x55", 57 },
{ "\x43\x61\x73\x65\x5F\x49\x67\x6E\x6F\x72\x61\x62\x6C\x65", 50 },
{ "\x43\x61\x73\x65\x64", 51 },
{ "\x43\x68\x61\x6E\x67\x65\x73\x5F\x57\x68\x65\x6E\x5F\x43\x61\x73\x65\x66\x6F\x6C\x64\x65\x64", 52 },
{ "\x43\x68\x61\x6E\x67\x65\x73\x5F\x57\x68\x65\x6E\x5F\x43\x61\x73\x65\x6D\x61\x70\x70\x65\x64", 53 },
{ "\x43\x68\x61\x6E\x67\x65\x73\x5F\x57\x68\x65\x6E\x5F\x4C\x6F\x77\x65\x72\x63\x61\x73\x65\x64", 54 },
{ "\x43\x68\x61\x6E\x67\x65\x73\x5F\x57\x68\x65\x6E\x5F\x4E\x46\x4B\x43\x5F\x43\x61\x73\x65\x66\x6F\x6C\x64\x65\x64", 55 },
{ "\x43\x68\x61\x6E\x67\x65\x73\x5F\x57\x68\x65\x6E\x5F\x54\x69\x74\x6C\x65\x63\x61\x73\x65\x64", 56 },
{ "\x43\x68\x61\x6E\x67\x65\x73\x5F\x57\x68\x65\x6E\x5F\x55\x70\x70\x65\x72\x63\x61\x73\x65\x64", 57 },
{ "\x44\x49", 59 },
{ "\x44\x61\x73\x68", 58 },
{ "\x44\x65\x66\x61\x75\x6C\x74\x5F\x49\x67\x6E\x6F\x72\x61\x62\x6C\x65\x5F\x43\x6F\x64\x65\x5F\x50\x6F\x69\x6E\x74", 59 },
{ "\x44\x65\x70", 60 },
{ "\x44\x65\x70\x72\x65\x63\x61\x74\x65\x64", 60 },
{ "\x44\x69\x61", 61 },
{ "\x44\x69\x61\x63\x72\x69\x74\x69\x63", 61 },
{ "\x45\x42\x61\x73\x65", 65 },
{ "\x45\x43\x6F\x6D\x70", 63 },
{ "\x45\x4D\x6F\x64", 64 },
{ "\x45\x50\x72\x65\x73", 66 },
{ "\x45\x6D\x6F\x6A\x69", 62 },
{ "\x45\x6D\x6F\x6A\x69\x5F\x43\x6F\x6D\x70\x6F\x6E\x65\x6E\x74", 63 },
{ "\x45\x6D\x6F\x6A\x69\x5F\x4B\x65\x79\x63\x61\x70\x5F\x53\x65\x71\x75\x65\x6E\x63\x65", 369 },
{ "\x45\x6D\x6F\x6A\x69\x5F\x4D\x6F\x64\x69\x66\x69\x65\x72", 64 },
{ "\x45\x6D\x6F\x6A\x69\x5F\x4D\x6F\x64\x69\x66\x69\x65\x72\x5F\x42\x61\x73\x65", 65 },
{ "\x45\x6D\x6F\x6A\x69\x5F\x50\x72\x65\x73\x65\x6E\x74\x61\x74\x69\x6F\x6E", 66 },
{ "\x45\x78\x74", 68 },
{ "\x45\x78\x74\x50\x69\x63\x74", 67 },
{ "\x45\x78\x74\x65\x6E\x64\x65\x64\x5F\x50\x69\x63\x74\x6F\x67\x72\x61\x70\x68\x69\x63", 67 },
{ "\x45\x78\x74\x65\x6E\x64\x65\x72", 68 },
{ "\x47\x72\x5F\x42\x61\x73\x65", 69 },
{ "\x47\x72\x5F\x45\x78\x74", 70 },
{ "\x47\x72\x61\x70\x68\x65\x6D\x65\x5F\x42\x61\x73\x65", 69 },
{ "\x47\x72\x61\x70\x68\x65\x6D\x65\x5F\x45\x78\x74\x65\x6E\x64", 70 },
{ "\x48\x65\x78", 71 },
{ "\x48\x65\x78\x5F\x44\x69\x67\x69\x74", 71 },
{ "\x49\x44\x43", 74 },
{ "\x49\x44\x53", 75 },
{ "\x49\x44\x53\x42", 72 },
{ "\x49\x44\x53\x54", 73 },
{ "\x49\x44\x53\x5F\x42\x69\x6E\x61\x72\x79\x5F\x4F\x70\x65\x72\x61\x74\x6F\x72", 72 },
{ "\x49\x44\x53\x5F\x54\x72\x69\x6E\x61\x72\x79\x5F\x4F\x70\x65\x72\x61\x74\x6F\x72", 73 },
{ "\x49\x44\x5F\x43\x6F\x6E\x74\x69\x6E\x75\x65", 74 },
{ "\x49\x44\x5F\x53\x74\x61\x72\x74", 75 },
{ "\x49\x64\x65\x6F", 76 },
{ "\x49\x64\x65\x6F\x67\x72\x61\x70\x68\x69\x63", 76 },
{ "\x4A\x6F\x69\x6E\x5F\x43", 77 },
{ "\x4A\x6F\x69\x6E\x5F\x43\x6F\x6E\x74\x72\x6F\x6C", 77 },
{ "\x4C\x4F\x45", 78 },
{ "\x4C\x6F\x67\x69\x63\x61\x6C\x5F\x4F\x72\x64\x65\x72\x5F\x45\x78\x63\x65\x70\x74\x69\x6F\x6E", 78 },
{ "\x4C\x6F\x77\x65\x72", 79 },
{ "\x4C\x6F\x77\x65\x72\x63\x61\x73\x65", 79 },
{ "\x4D\x61\x74\x68", 80 },
{ "\x4E\x43\x68\x61\x72", 81 },
{ "\x4E\x6F\x6E\x63\x68\x61\x72\x61\x63\x74\x65\x72\x5F\x43\x6F\x64\x65\x5F\x50\x6F\x69\x6E\x74", 81 },
{ "\x50\x61\x74\x5F\x53\x79\x6E", 82 },
{ "\x50\x61\x74\x5F\x57\x53", 83 },
{ "\x50\x61\x74\x74\x65\x72\x6E\x5F\x53\x79\x6E\x74\x61\x78", 82 },
{ "\x50\x61\x74\x74\x65\x72\x6E\x5F\x57\x68\x69\x74\x65\x5F\x53\x70\x61\x63\x65", 83 },
{ "\x51\x4D\x61\x72\x6B", 84 },
{ "\x51\x75\x6F\x74\x61\x74\x69\x6F\x6E\x5F\x4D\x61\x72\x6B", 84 },
{ "\x52\x47\x49\x5F\x45\x6D\x6F\x6A\x69", 367 },
{ "\x52\x47\x49\x5F\x45\x6D\x6F\x6A\x69\x5F\x46\x6C\x61\x67\x5F\x53\x65\x71\x75\x65\x6E\x63\x65", 371 },
{ "\x52\x47\x49\x5F\x45\x6D\x6F\x6A\x69\x5F\x4D\x6F\x64\x69\x66\x69\x65\x72\x5F\x53\x65\x71\x75\x65\x6E\x63\x65", 370 },
{ "\x52\x47\x49\x5F\x45\x6D\x6F\x6A\x69\x5F\x54\x61\x67\x5F\x53\x65\x71\x75\x65\x6E\x63\x65", 372 },
{ "\x52\x47\x49\x5F\x45\x6D\x6F\x6A\x69\x5F\x5A\x57\x4A\x5F\x53\x65\x71\x75\x65\x6E\x63\x65", 373 },
{ "\x52\x49", 86 },
{ "\x52\x61\x64\x69\x63\x61\x6C", 85 },
{ "\x52\x65\x67\x69\x6F\x6E\x61\x6C\x5F\x49\x6E\x64\x69\x63\x61\x74\x6F\x72", 86 },
{ "\x53\x44", 88 },
{ "\x53\x54\x65\x72\x6D", 87 },
{ "\x53\x65\x6E\x74\x65\x6E\x63\x65\x5F\x54\x65\x72\x6D\x69\x6E\x61\x6C", 87 },
{ "\x53\x6F\x66\x74\x5F\x44\x6F\x74\x74\x65\x64", 88 },
{ "\x54\x65\x72\x6D", 89 },
{ "\x54\x65\x72\x6D\x69\x6E\x61\x6C\x5F\x50\x75\x6E\x63\x74\x75\x61\x74\x69\x6F\x6E", 89 },
{ "\x55\x49\x64\x65\x6F", 90 },
{ "\x55\x6E\x69\x66\x69\x65\x64\x5F\x49\x64\x65\x6F\x67\x72\x61\x70\x68", 90 },
{ "\x55\x70\x70\x65\x72", 91 },
{ "\x55\x70\x70\x65\x72\x63\x61\x73\x65", 91 },
{ "\x56\x53", 92 },
{ "\x56\x61\x72\x69\x61\x74\x69\x6F\x6E\x5F\x53\x65\x6C\x65\x63\x74\x6F\x72", 92 },
{ "\x57\x68\x69\x74\x65\x5F\x53\x70\x61\x63\x65", 93 },
{ "\x58\x49\x44\x43", 94 },
{ "\x58\x49\x44\x53", 95 },
{ "\x58\x49\x44\x5F\x43\x6F\x6E\x74\x69\x6E\x75\x65", 94 },
{ "\x58\x49\x44\x5F\x53\x74\x61\x72\x74", 95 },
{ "\x73\x70\x61\x63\x65", 93 },
// sc: 336
{ "\x41\x64\x6C\x61\x6D", 227 },
{ "\x41\x64\x6C\x6D", 227 },
{ "\x41\x67\x68\x62", 198 },
{ "\x41\x68\x6F\x6D", 221 },
{ "\x41\x6E\x61\x74\x6F\x6C\x69\x61\x6E\x5F\x48\x69\x65\x72\x6F\x67\x6C\x79\x70\x68\x73", 222 },
{ "\x41\x72\x61\x62", 102 },
{ "\x41\x72\x61\x62\x69\x63", 102 },
{ "\x41\x72\x6D\x65\x6E\x69\x61\x6E", 100 },
{ "\x41\x72\x6D\x69", 182 },
{ "\x41\x72\x6D\x6E", 100 },
{ "\x41\x76\x65\x73\x74\x61\x6E", 175 },
{ "\x41\x76\x73\x74", 175 },
{ "\x42\x61\x6C\x69", 157 },
{ "\x42\x61\x6C\x69\x6E\x65\x73\x65", 157 },
{ "\x42\x61\x6D\x75", 179 },
{ "\x42\x61\x6D\x75\x6D", 179 },
{ "\x42\x61\x73\x73", 199 },
{ "\x42\x61\x73\x73\x61\x5F\x56\x61\x68", 199 },
{ "\x42\x61\x74\x61\x6B", 188 },
{ "\x42\x61\x74\x6B", 188 },
{ "\x42\x65\x6E\x67", 106 },
{ "\x42\x65\x6E\x67\x61\x6C\x69", 106 },
{ "\x42\x68\x61\x69\x6B\x73\x75\x6B\x69", 228 },
{ "\x42\x68\x6B\x73", 228 },
{ "\x42\x6F\x70\x6F", 130 },
{ "\x42\x6F\x70\x6F\x6D\x6F\x66\x6F", 130 },
{ "\x42\x72\x61\x68", 189 },
{ "\x42\x72\x61\x68\x6D\x69", 189 },
{ "\x42\x72\x61\x69", 148 },
{ "\x42\x72\x61\x69\x6C\x6C\x65", 148 },
{ "\x42\x75\x67\x69", 149 },
{ "\x42\x75\x67\x69\x6E\x65\x73\x65", 149 },
{ "\x42\x75\x68\x64", 139 },
{ "\x42\x75\x68\x69\x64", 139 },
{ "\x43\x61\x6B\x6D", 191 },
{ "\x43\x61\x6E\x61\x64\x69\x61\x6E\x5F\x41\x62\x6F\x72\x69\x67\x69\x6E\x61\x6C", 123 },
{ "\x43\x61\x6E\x73", 123 },
{ "\x43\x61\x72\x69", 170 },
{ "\x43\x61\x72\x69\x61\x6E", 170 },
{ "\x43\x61\x75\x63\x61\x73\x69\x61\x6E\x5F\x41\x6C\x62\x61\x6E\x69\x61\x6E", 198 },
{ "\x43\x68\x61\x6B\x6D\x61", 191 },
{ "\x43\x68\x61\x6D", 172 },
{ "\x43\x68\x65\x72", 122 },
{ "\x43\x68\x65\x72\x6F\x6B\x65\x65", 122 },
{ "\x43\x68\x6F\x72\x61\x73\x6D\x69\x61\x6E", 248 },
{ "\x43\x68\x72\x73", 248 },
{ "\x43\x6F\x6D\x6D\x6F\x6E", 96 },
{ "\x43\x6F\x70\x74", 150 },
{ "\x43\x6F\x70\x74\x69\x63", 150 },
{ "\x43\x70\x6D\x6E", 252 },
{ "\x43\x70\x72\x74", 147 },
{ "\x43\x75\x6E\x65\x69\x66\x6F\x72\x6D", 158 },
{ "\x43\x79\x70\x72\x69\x6F\x74", 147 },
{ "\x43\x79\x70\x72\x6F\x5F\x4D\x69\x6E\x6F\x61\x6E", 252 },
{ "\x43\x79\x72\x69\x6C\x6C\x69\x63", 99 },
{ "\x43\x79\x72\x6C", 99 },
{ "\x44\x65\x73\x65\x72\x65\x74", 135 },
{ "\x44\x65\x76\x61", 105 },
{ "\x44\x65\x76\x61\x6E\x61\x67\x61\x72\x69", 105 },
{ "\x44\x69\x61\x6B", 249 },
{ "\x44\x69\x76\x65\x73\x5F\x41\x6B\x75\x72\x75", 249 },
{ "\x44\x6F\x67\x72", 237 },
{ "\x44\x6F\x67\x72\x61", 237 },
{ "\x44\x73\x72\x74", 135 },
{ "\x44\x75\x70\x6C", 200 },
{ "\x44\x75\x70\x6C\x6F\x79\x61\x6E", 200 },
{ "\x45\x67\x79\x70", 176 },
{ "\x45\x67\x79\x70\x74\x69\x61\x6E\x5F\x48\x69\x65\x72\x6F\x67\x6C\x79\x70\x68\x73", 176 },
{ "\x45\x6C\x62\x61", 201 },
{ "\x45\x6C\x62\x61\x73\x61\x6E", 201 },
{ "\x45\x6C\x79\x6D", 244 },
{ "\x45\x6C\x79\x6D\x61\x69\x63", 244 },
{ "\x45\x74\x68\x69", 121 },
{ "\x45\x74\x68\x69\x6F\x70\x69\x63", 121 },
{ "\x47\x61\x72\x61", 259 },
{ "\x47\x61\x72\x61\x79", 259 },
{ "\x47\x65\x6F\x72", 119 },
{ "\x47\x65\x6F\x72\x67\x69\x61\x6E", 119 },
{ "\x47\x6C\x61\x67", 152 },
{ "\x47\x6C\x61\x67\x6F\x6C\x69\x74\x69\x63", 152 },
{ "\x47\x6F\x6E\x67", 238 },
{ "\x47\x6F\x6E\x6D", 233 },
{ "\x47\x6F\x74\x68", 134 },
{ "\x47\x6F\x74\x68\x69\x63", 134 },
{ "\x47\x72\x61\x6E", 202 },
{ "\x47\x72\x61\x6E\x74\x68\x61", 202 },
{ "\x47\x72\x65\x65\x6B", 98 },
{ "\x47\x72\x65\x6B", 98 },
{ "\x47\x75\x6A\x61\x72\x61\x74\x69", 108 },
{ "\x47\x75\x6A\x72", 108 },
{ "\x47\x75\x6B\x68", 260 },
{ "\x47\x75\x6E\x6A\x61\x6C\x61\x5F\x47\x6F\x6E\x64\x69", 238 },
{ "\x47\x75\x72\x6D\x75\x6B\x68\x69", 107 },
{ "\x47\x75\x72\x75", 107 },
{ "\x47\x75\x72\x75\x6E\x67\x5F\x4B\x68\x65\x6D\x61", 260 },
{ "\x48\x61\x6E", 131 },
{ "\x48\x61\x6E\x67", 120 },
{ "\x48\x61\x6E\x67\x75\x6C", 120 },
{ "\x48\x61\x6E\x69", 131 },
{ "\x48\x61\x6E\x69\x66\x69\x5F\x52\x6F\x68\x69\x6E\x67\x79\x61", 241 },
{ "\x48\x61\x6E\x6F", 138 },
{ "\x48\x61\x6E\x75\x6E\x6F\x6F", 138 },
{ "\x48\x61\x74\x72", 223 },
{ "\x48\x61\x74\x72\x61\x6E", 223 },
{ "\x48\x65\x62\x72", 101 },
{ "\x48\x65\x62\x72\x65\x77", 101 },
{ "\x48\x69\x72\x61", 128 },
{ "\x48\x69\x72\x61\x67\x61\x6E\x61", 128 },
{ "\x48\x6C\x75\x77", 222 },
{ "\x48\x6D\x6E\x67", 203 },
{ "\x48\x6D\x6E\x70", 246 },
{ "\x48\x75\x6E\x67", 225 },
{ "\x49\x6D\x70\x65\x72\x69\x61\x6C\x5F\x41\x72\x61\x6D\x61\x69\x63", 182 },
{ "\x49\x6E\x68\x65\x72\x69\x74\x65\x64", 136 },
{ "\x49\x6E\x73\x63\x72\x69\x70\x74\x69\x6F\x6E\x61\x6C\x5F\x50\x61\x68\x6C\x61\x76\x69", 185 },
{ "\x49\x6E\x73\x63\x72\x69\x70\x74\x69\x6F\x6E\x61\x6C\x5F\x50\x61\x72\x74\x68\x69\x61\x6E", 184 },
{ "\x49\x74\x61\x6C", 133 },
{ "\x4A\x61\x76\x61", 180 },
{ "\x4A\x61\x76\x61\x6E\x65\x73\x65", 180 },
{ "\x4B\x61\x69\x74\x68\x69", 187 },
{ "\x4B\x61\x6C\x69", 167 },
{ "\x4B\x61\x6E\x61", 129 },
{ "\x4B\x61\x6E\x6E\x61\x64\x61", 112 },
{ "\x4B\x61\x74\x61\x6B\x61\x6E\x61", 129 },
{ "\x4B\x61\x77\x69", 257 },
{ "\x4B\x61\x79\x61\x68\x5F\x4C\x69", 167 },
{ "\x4B\x68\x61\x72", 156 },
{ "\x4B\x68\x61\x72\x6F\x73\x68\x74\x68\x69", 156 },
{ "\x4B\x68\x69\x74\x61\x6E\x5F\x53\x6D\x61\x6C\x6C\x5F\x53\x63\x72\x69\x70\x74", 250 },
{ "\x4B\x68\x6D\x65\x72", 126 },
{ "\x4B\x68\x6D\x72", 126 },
{ "\x4B\x68\x6F\x6A", 204 },
{ "\x4B\x68\x6F\x6A\x6B\x69", 204 },
{ "\x4B\x68\x75\x64\x61\x77\x61\x64\x69", 218 },
{ "\x4B\x69\x72\x61\x74\x5F\x52\x61\x69", 261 },
{ "\x4B\x69\x74\x73", 250 },
{ "\x4B\x6E\x64\x61", 112 },
{ "\x4B\x72\x61\x69", 261 },
{ "\x4B\x74\x68\x69", 187 },
{ "\x4C\x61\x6E\x61", 173 },
{ "\x4C\x61\x6F", 116 },
{ "\x4C\x61\x6F\x6F", 116 },
{ "\x4C\x61\x74\x69\x6E", 97 },
{ "\x4C\x61\x74\x6E", 97 },
{ "\x4C\x65\x70\x63", 163 },
{ "\x4C\x65\x70\x63\x68\x61", 163 },
{ "\x4C\x69\x6D\x62", 141 },
{ "\x4C\x69\x6D\x62\x75", 141 },
{ "\x4C\x69\x6E\x61", 205 },
{ "\x4C\x69\x6E\x62", 143 },
{ "\x4C\x69\x6E\x65\x61\x72\x5F\x41", 205 },
{ "\x4C\x69\x6E\x65\x61\x72\x5F\x42", 143 },
{ "\x4C\x69\x73\x75", 178 },
{ "\x4C\x79\x63\x69", 169 },
{ "\x4C\x79\x63\x69\x61\x6E", 169 },
{ "\x4C\x79\x64\x69", 171 },
{ "\x4C\x79\x64\x69\x61\x6E", 171 },
{ "\x4D\x61\x68\x61\x6A\x61\x6E\x69", 206 },
{ "\x4D\x61\x68\x6A", 206 },
{ "\x4D\x61\x6B\x61", 239 },
{ "\x4D\x61\x6B\x61\x73\x61\x72", 239 },
{ "\x4D\x61\x6C\x61\x79\x61\x6C\x61\x6D", 113 },
{ "\x4D\x61\x6E\x64", 190 },
{ "\x4D\x61\x6E\x64\x61\x69\x63", 190 },
{ "\x4D\x61\x6E\x69", 207 },
{ "\x4D\x61\x6E\x69\x63\x68\x61\x65\x61\x6E", 207 },
{ "\x4D\x61\x72\x63", 229 },
{ "\x4D\x61\x72\x63\x68\x65\x6E", 229 },
{ "\x4D\x61\x73\x61\x72\x61\x6D\x5F\x47\x6F\x6E\x64\x69", 233 },
{ "\x4D\x65\x64\x65\x66\x61\x69\x64\x72\x69\x6E", 240 },
{ "\x4D\x65\x64\x66", 240 },
{ "\x4D\x65\x65\x74\x65\x69\x5F\x4D\x61\x79\x65\x6B", 181 },
{ "\x4D\x65\x6E\x64", 208 },
{ "\x4D\x65\x6E\x64\x65\x5F\x4B\x69\x6B\x61\x6B\x75\x69", 208 },
{ "\x4D\x65\x72\x63", 192 },
{ "\x4D\x65\x72\x6F", 193 },
{ "\x4D\x65\x72\x6F\x69\x74\x69\x63\x5F\x43\x75\x72\x73\x69\x76\x65", 192 },
{ "\x4D\x65\x72\x6F\x69\x74\x69\x63\x5F\x48\x69\x65\x72\x6F\x67\x6C\x79\x70\x68\x73", 193 },
{ "\x4D\x69\x61\x6F", 194 },
{ "\x4D\x6C\x79\x6D", 113 },
{ "\x4D\x6F\x64\x69", 209 },
{ "\x4D\x6F\x6E\x67", 127 },
{ "\x4D\x6F\x6E\x67\x6F\x6C\x69\x61\x6E", 127 },
{ "\x4D\x72\x6F", 210 },
{ "\x4D\x72\x6F\x6F", 210 },
{ "\x4D\x74\x65\x69", 181 },
{ "\x4D\x75\x6C\x74", 224 },
{ "\x4D\x75\x6C\x74\x61\x6E\x69", 224 },
{ "\x4D\x79\x61\x6E\x6D\x61\x72", 118 },
{ "\x4D\x79\x6D\x72", 118 },
{ "\x4E\x61\x62\x61\x74\x61\x65\x61\x6E", 212 },
{ "\x4E\x61\x67\x5F\x4D\x75\x6E\x64\x61\x72\x69", 258 },
{ "\x4E\x61\x67\x6D", 258 },
{ "\x4E\x61\x6E\x64", 245 },
{ "\x4E\x61\x6E\x64\x69\x6E\x61\x67\x61\x72\x69", 245 },
{ "\x4E\x61\x72\x62", 211 },
{ "\x4E\x62\x61\x74", 212 },
{ "\x4E\x65\x77\x5F\x54\x61\x69\x5F\x4C\x75\x65", 151 },
{ "\x4E\x65\x77\x61", 230 },
{ "\x4E\x6B\x6F", 161 },
{ "\x4E\x6B\x6F\x6F", 161 },
{ "\x4E\x73\x68\x75", 234 },
{ "\x4E\x75\x73\x68\x75", 234 },
{ "\x4E\x79\x69\x61\x6B\x65\x6E\x67\x5F\x50\x75\x61\x63\x68\x75\x65\x5F\x48\x6D\x6F\x6E\x67", 246 },
{ "\x4F\x67\x61\x6D", 124 },
{ "\x4F\x67\x68\x61\x6D", 124 },
{ "\x4F\x6C\x5F\x43\x68\x69\x6B\x69", 164 },
{ "\x4F\x6C\x5F\x4F\x6E\x61\x6C", 262 },
{ "\x4F\x6C\x63\x6B", 164 },
{ "\x4F\x6C\x64\x5F\x48\x75\x6E\x67\x61\x72\x69\x61\x6E", 225 },
{ "\x4F\x6C\x64\x5F\x49\x74\x61\x6C\x69\x63", 133 },
{ "\x4F\x6C\x64\x5F\x4E\x6F\x72\x74\x68\x5F\x41\x72\x61\x62\x69\x61\x6E", 211 },
{ "\x4F\x6C\x64\x5F\x50\x65\x72\x6D\x69\x63", 215 },
{ "\x4F\x6C\x64\x5F\x50\x65\x72\x73\x69\x61\x6E", 155 },
{ "\x4F\x6C\x64\x5F\x53\x6F\x67\x64\x69\x61\x6E", 243 },
{ "\x4F\x6C\x64\x5F\x53\x6F\x75\x74\x68\x5F\x41\x72\x61\x62\x69\x61\x6E", 183 },
{ "\x4F\x6C\x64\x5F\x54\x75\x72\x6B\x69\x63", 186 },
{ "\x4F\x6C\x64\x5F\x55\x79\x67\x68\x75\x72", 253 },
{ "\x4F\x6E\x61\x6F", 262 },
{ "\x4F\x72\x69\x79\x61", 109 },
{ "\x4F\x72\x6B\x68", 186 },
{ "\x4F\x72\x79\x61", 109 },
{ "\x4F\x73\x61\x67\x65", 231 },
{ "\x4F\x73\x67\x65", 231 },
{ "\x4F\x73\x6D\x61", 146 },
{ "\x4F\x73\x6D\x61\x6E\x79\x61", 146 },
{ "\x4F\x75\x67\x72", 253 },
{ "\x50\x61\x68\x61\x77\x68\x5F\x48\x6D\x6F\x6E\x67", 203 },
{ "\x50\x61\x6C\x6D", 213 },
{ "\x50\x61\x6C\x6D\x79\x72\x65\x6E\x65", 213 },
{ "\x50\x61\x75\x5F\x43\x69\x6E\x5F\x48\x61\x75", 214 },
{ "\x50\x61\x75\x63", 214 },
{ "\x50\x65\x72\x6D", 215 },
{ "\x50\x68\x61\x67", 160 },
{ "\x50\x68\x61\x67\x73\x5F\x50\x61", 160 },
{ "\x50\x68\x6C\x69", 185 },
{ "\x50\x68\x6C\x70", 216 },
{ "\x50\x68\x6E\x78", 159 },
{ "\x50\x68\x6F\x65\x6E\x69\x63\x69\x61\x6E", 159 },
{ "\x50\x6C\x72\x64", 194 },
{ "\x50\x72\x74\x69", 184 },
{ "\x50\x73\x61\x6C\x74\x65\x72\x5F\x50\x61\x68\x6C\x61\x76\x69", 216 },
{ "\x51\x61\x61\x63", 150 },
{ "\x51\x61\x61\x69", 136 },
{ "\x52\x65\x6A\x61\x6E\x67", 168 },
{ "\x52\x6A\x6E\x67", 168 },
{ "\x52\x6F\x68\x67", 241 },
{ "\x52\x75\x6E\x69\x63", 125 },
{ "\x52\x75\x6E\x72", 125 },
{ "\x53\x61\x6D\x61\x72\x69\x74\x61\x6E", 177 },
{ "\x53\x61\x6D\x72", 177 },
{ "\x53\x61\x72\x62", 183 },
{ "\x53\x61\x75\x72", 166 },
{ "\x53\x61\x75\x72\x61\x73\x68\x74\x72\x61", 166 },
{ "\x53\x67\x6E\x77", 226 },
{ "\x53\x68\x61\x72\x61\x64\x61", 195 },
{ "\x53\x68\x61\x76\x69\x61\x6E", 145 },
{ "\x53\x68\x61\x77", 145 },
{ "\x53\x68\x72\x64", 195 },
{ "\x53\x69\x64\x64", 217 },
{ "\x53\x69\x64\x64\x68\x61\x6D", 217 },
{ "\x53\x69\x67\x6E\x57\x72\x69\x74\x69\x6E\x67", 226 },
{ "\x53\x69\x6E\x64", 218 },
{ "\x53\x69\x6E\x68", 114 },
{ "\x53\x69\x6E\x68\x61\x6C\x61", 114 },
{ "\x53\x6F\x67\x64", 242 },
{ "\x53\x6F\x67\x64\x69\x61\x6E", 242 },
{ "\x53\x6F\x67\x6F", 243 },
{ "\x53\x6F\x72\x61", 196 },
{ "\x53\x6F\x72\x61\x5F\x53\x6F\x6D\x70\x65\x6E\x67", 196 },
{ "\x53\x6F\x79\x6F", 235 },
{ "\x53\x6F\x79\x6F\x6D\x62\x6F", 235 },
{ "\x53\x75\x6E\x64", 162 },
{ "\x53\x75\x6E\x64\x61\x6E\x65\x73\x65", 162 },
{ "\x53\x75\x6E\x75", 263 },
{ "\x53\x75\x6E\x75\x77\x61\x72", 263 },
{ "\x53\x79\x6C\x6F", 154 },
{ "\x53\x79\x6C\x6F\x74\x69\x5F\x4E\x61\x67\x72\x69", 154 },
{ "\x53\x79\x72\x63", 103 },
{ "\x53\x79\x72\x69\x61\x63", 103 },
{ "\x54\x61\x67\x61\x6C\x6F\x67", 137 },
{ "\x54\x61\x67\x62", 140 },
{ "\x54\x61\x67\x62\x61\x6E\x77\x61", 140 },
{ "\x54\x61\x69\x5F\x4C\x65", 142 },