forked from Perl/perl5
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuni_keywords.h
7765 lines (7753 loc) · 557 KB
/
uni_keywords.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
/* -*- mode: C; buffer-read-only: t -*-
* !!!!!!! DO NOT EDIT THIS FILE !!!!!!!
* This file is built by regen/mk_invlists.pl from mph.pl.
* Any changes made here will be lost!
*/
#if defined(PERL_CORE) || defined(PERL_EXT_RE_BUILD)
#define MPH_VALt I16
/*
generator script: regen/mk_invlists.pl
split strategy: squeeze
srand: 1785235451
rows: 7498
seed: 1348825711
full length of keys: 105417
blob length: 8703
ref length: 59984
data size: 68687 (%65.16)
*/
STATIC const unsigned char mph_blob[] =
"l&cwlocrpcmadlmaghbahexahomarmiavstbatkbhksbuhdcakmcanschamchrscp"
"mncprtcwucyrldsrtgonggrekgujrguruhluwhmngzlkawikitskndalaoolatnme"
"dfmteimymrnarbnewaoryaosgeougrphlpphnxqaacrjngrohgrunrsamrsgnwtag"
"stamltavttfngtglgtibttotowchoxpeoxsuxyiiizanbzyyyzzzzcntrlcwcfcwc"
"mcwkcfcwtzpgcb=b2h2jlxxnushu3040nv=90oriyapatwsprintqmarktailevss"
"upfsipdfcarianccc=1218491vre=yeschakmasmlsqrgothicgrexthyphen3.26"
".3415161miaoarmndiakgonmhanokhmrlinamroonkooogamolckorkhphliplrdp"
"rtiqaaishawsogotnsavaiibehgafhahrehbunkhojkilydiannfdqcnv=3//5nv="
"7patsynrejangsb=stangsaebg3.04.0age=56.07.08.09.052avestanccc=22e"
"=truedeseretdt=nonewideelbasanelymaicextpictgrbashanunoohst=lvtad"
"lambuhiddogralimbuoghamosagerunictakribatakisotheeemnoonseenshinz"
"ainkannadakayahlilinearamandaicmarchennfkcqc-1/2/645/27/2olchikio"
"smanyahmnpkalilananbatsarbshrdsyrczinhsharadashavianstermuaatagal"
"ogtaithamtaiviettibetantirhutauideounknownage=10.0age=v1armenianb"
"alinesebassavahbpt=opene=falsecompexsuperduployanextendergujarati"
"gurmukhihiraganahatrankaithilepchalycianteluguwanchoyezidijamoext"
"bgamalkhaphmahajaninfkdqcnv=1/31/12nv=2erlwordkthilinbmercnshuscx"
"=talupecialstagbanwatifinaghvithkuqipfabhaiksuki2435nuktacircleme"
"dialea=narrowmoticonsbengaliincjkexgranthainheritedinkanamakasarm"
"ultaninoblockphagspasiddhamsoyombouabiscjkexlamadhkhudawadinabata"
"eannewtailue1600032000olditalicoldpermicoldturkicolduyghurpalmyre"
"nepaucinhausamaritanthaanawb=mixidstartbasiclatinboxdrawingccc=cc"
"c1viramachorasmianstrokesdeprecateddivesakuruorizspacebugineseing"
"eorgiajamoextajavanesebinduugariticiskanathinyehkharoshthiiscarro"
"wsnagmundarioldpersianphoeniciansaurashtraolettermallformssoftdot"
"teduprightwarangcitialetternewlineerlspaceblk=cjkextdoverlaycypro"
"minoandominotilesfractionisolatedpfbisarabicisspaceisvertfarsiyeh"
"swashkaflinefeednextlinemedefaidrinnfcqc=maybenv=10000000pahawhhm"
"ongscript=mlymsorasompengerandsubsylotinagriebasegazyisyllablesbi"
"dicontrolbidimirroredblk=kanaucasextahesssymbolsambiguousgrapheme"
"basegunjalagondiompatjamooldsogdianvisargayiradicalsisposixsyriac"
"wawjoiningtype=breakbothbkh3jvmasaramgondiathalphanummendekikakui"
"1.0.111e-01.250e-01.429e-01.500e+00.562e-02.563e-02.667e-01.875e-"
"01.500e-013.125e-02.333e-01.750e-01nv=4.167e-01.688e-02.000e-02nv"
"=5.833e-01nv=6.250e-02nv=8.333e-02oldhungarianphaistosdiscplaying"
"cardspresentin=14wsegspacexidcontinueegeannumbersblock=cjkexblock"
"elementscaseignorablunassignedreekextendedvoweljamoincyrillicinet"
"hiopickatakanaextiscsymbolsinmyanmarnandinagariavagrahatonemarkip"
"aextensionsiscasedletterisgeorgiajoincontrolismyanmarisxposixblan"
"kjg=africanfehdalathrishknottedhehreversedpenonjoiningbreakaftern"
"onstarterwordjoinerowsurrogatesayannumeralsisctechnical-5.000e-01"
"patternsyntaxpresentin=56.1verticalformsncientsymbolsbc=righttole"
"ftblk=arabichanreadingemojicomponentgc=othereekandcoptichighsurro"
"gateslphabeticpfkhmersymbolsnonjoineriscyrillicisethiopicmahjongt"
"ilesrohingyayehstraightwawyehwithtaildualjoiningjoincausingleftjo"
"iningjt=transparentbreakbeforeexclamationinseparableinseperablenf"
"cquickchecknumerictype=epresentin=v1psalterpahlaviquotationmarkdo"
"ublequotesinglequoteany_foldsquotemetaasciihexdigitarabicletterot"
"herneutralblk=georgiadoubleabovekanavoicingontrolpictureseastasia"
"nwidth=letternumbergraphemeextendeadingjamoimperialaramaicoverstr"
"uckpurekillerdecimalnumberenclosingmarkfinalsemkathverticaltailri"
"ghtjoininghebrewletterinfixnumericmeroiticcursiveiscpictographsnf"
"dquickchecknumericvalue=236numericvalue=4oldnortharabianoldsoutha"
"rabianextendnumletglueafterzwjzanabazarsquareblk=cyrillicblk=ethi"
"opicblock=arabicnotreorderedcypriotsyllabarylineseparatorhalfandf"
"ullformshighpusurrogatestrailingjamocompatformsgxiradicalsinlatin"
"extendeddphoneticextsupdevanagariextaislatinextendedlisusupplemen"
"tnonspacingmarklllajg=malayalamnnnamemtawktoviknumeralsprefixnume"
"ricinearbideogramsiscmathsymbolsanfkcquickchecknumericvalue=1/num"
"ericvalue=5/8numericvalue=70numericvalue=80numericvalue=9sentence"
"terminaltangutcomponentseuropeannumberanadiansyllabicscaucasianal"
"banianiotasubscriptemojipresentationgmodifiersymbolspaceseparator"
"notapplicableidsbinaryoperatorbraillepatternscurrencysymbolsindic"
"siyaqnumbersleftandrightnumberjoinervedicextensionsdashpunctuatio"
"ndiacriticalsexthangulsyllableslowercaseletteropenpunctuationhamz"
"aonhehgoalbethfivehethkaphqophreshyodhqaphtethkhitansmallscriptca"
"rriagereturncomplexcontextmandatorybreakpostfixnumericetterlikesy"
"mbolslinebreak=zwspacenfkdquickchecknumericvalue=3/2regionalindic"
"atorscriptextensions=mallformvariantsttonsignwritingboundaryneutr"
"alcommonseparatorblk=latinextendedblock=cyrillicextcopticepactnum"
"berstitlecaseletteruppercaseletteridstrinaryoperatorinitialpunctu"
"ationlinearbsyllabaryiscmathsymbolsbbopomofoextendedclosepunctuat"
"ionfinalpunctuation1supplementyriacsupplementtangutsupplementalep"
"hgimelsadhezayinlaphzhainadditionalcontingentbreaknumericvalue=6o"
"rnamentaldingbatsparagraphseparatorpatternwhitespaceruminumeralsy"
"mbolssegmentseparatorbamumsupplementdiacriticalssuptamilsupplemen"
"tblock=kanaegyptianhieroglyphsemojimodifierbaselchemicalsymbolsge"
"minationmarkvoweldependenthanifirohingyapadalethlamedhsamekhjg=ma"
"nichaeantwentyyudhhe=closeparenthesisodifiertonelettersottomansiy"
"aqnumbersatermarrowsawordbreak=mi_perl_charname_beanatolianhierog"
"lyphsblk=myanmarblock=latinextendedconnectorpunctuationextendedpi"
"ctographicombininghalfmarksneralpunctuationvisualorderleftmodifyi"
"ngletterregistershifterinscriptionalpahlavitaixuanjingsymbolscher"
"okeesupplementmallkanaextensiondhamedhhundrednyiakengpuachuehmong"
"terminalpunctuationeuropeanterminatorfirststrongisolateattachedbe"
"lowleftchangeswhencasefoldedchangeswhencasemappedchangeswhenlower"
"casedchangeswhentitlecasedchangeswhenuppercasedgraphemeclusterbre"
"ak=identifiertype=notncientgreeknumbersountingrodnumeralsmeroitic"
"hieroglyphsantillationmarkinvisiblestackersyllablemodifierinscrip"
"tionalparthianinsupplementalarrowsbnclosedalphanumsuphanguljamoex"
"tendedamongoliansupplementsundanesesupplementissupplementalarrows"
"clogicalorderexceptionnoncharactercodepointsinhalaarchaicnumbersv"
"o=transformedrotatedyijinghexagramsymbolsoverridearabicnumberbidi"
"pairedbrackettypeblock=ethiopicblock=georgianblock=myanmarmathope"
"ratorsfontdiacriticalsforsymbolsarlydynasticcuneiforminsc=consona"
"ntprefixedglagoliticsupplementburushaskiyehbarreebreaksymbolsnume"
"ricvalue=100000.500e-02.125e-03.750e-02.250e-03bc=lefttorightembe"
"ddingpopdirectionalformatblhanguljamoextendedbhangulcompatibility"
"jamoobsoletecompatibilityformsradicalssupplementsubjoinedjoiningg"
"roup=africanqafsentencebreak=shorthandformatcontrolsznamennymusic"
"alnotationhighprivateusesurrogatesstatus=allowedinclusioncompatid"
"eographssupommonindicnumberformsiscellaneoustechnicalinpc=topandb"
"ottomandleftbrahmijoiningnumberheadletterpacingmodifierletterstra"
"nsportandmapsymbolshanifirohingyakinnayajoininggroup=malayalamfol"
"ds_to_multi_charmeeteimayekextensionsdevanagariextendedachangeswh"
"ennfkccasefoldeddefaultignorablecodepointfullcompositionexclusion"
"limitedusebyzantinemusicalsymbolsplaceholderwithstackermetricshap"
"esextendederscriptsandsubscriptsymbolsforlegacycomputingcanonical"
"combiningclass=2halfwidthandfullwidthformsrecommendeduncommonusei"
"narabicpresentationformsbcombiningmarksforsymbolsprependedconcate"
"nationmarkis_in_multi_char_foldeuropeanseparatorblk=supplementalc"
"anonicalcombiningclass=128nclosedcjklettersandmonthsgeneralcatego"
"ry=othestatus=restrictedymbolsandpictographsextanojoininggroupteh"
"marbutagoalopticalcharacterrecognitionbidiclass=lefttorightbidicl"
"ass=righttoleftatarprecedingrephatakanaphoneticextensionssuppleme"
"ntaryprivateuseareaacanonicalcombiningclass=ccc1succeedingrephalp"
"habeticpresentationformsancientgreekmusicalnotationlb=conditional"
"japanesestarteriscellaneoussymbolsandarrowsdecompositiontype=nonh"
"angulsyllabletype=lvtinitialpostfixedryprivateuseareabvariationse"
"lectorssupplementjoininggroup=manichaeantpopdirectionalisolatencl"
"osedideographicsupplementathematicalalphanumericsymbolsideographi"
"cdescriptioncharactersincjkunifiedideographsextensnclosedalphanum"
"ericsupplementiscjkunifiedideographsextensuneiformnumbersandpunct"
"uationymbolsandpictographsextendedaaboveleftiscellaneousmathemati"
"calsymbolsablk=cjkunifiedideographsextensbelowrightgyptianhierogl"
"yphformatcontrolsideographicsymbolsandpunctuationmathematicalalph"
"abeticsymbolsdoublebelowombiningdiacriticalmarksextendedindicposi"
"tionalcategory=topandinmiscellaneousmathematicalsymbolsbblock=cjk"
"unifiedideographsextensindicsyllabiccategory=consonantiscellaneou"
"ssymbolsandpictographsombiningdiacriticalmarksforsymbols_perl_pro"
"blematic_locale_foldeds_compatibilityideographssupplement=bottoma"
"ndrightvowelindependentverticalorientation=transformombiningdiacr"
"iticalmarkssupplementblock=supplementalmathematicaloperatorsattac"
"hedaboverightisunifiedcanadianaboriginalsyllabicsextendeda";
/* mph_blob length: 8703 */
struct mph_struct {
U16 seed2;
U16 pfx;
U16 sfx;
U8 pfx_len;
U8 sfx_len;
MPH_VALt value;
};
#define MPH_RSHIFT 8
#define MPH_BUCKETS 7498
STATIC const U32 MPH_SEED1 = 0x5065726f;
STATIC const U32 MPH_FNV32_PRIME = 0x01000193;
/* The comments give the input key for the row it is in */
STATIC const struct mph_struct mph_table[MPH_BUCKETS] = {
{ 12, 2732, 4987, 5, 9, UNI_ALCHEMICAL } /* blk=alchemical */,
{ 1, 2, 8214, 1, 32, UNI_DIACRITICALSEXT } /* combiningdiacriticalmarksextended */,
{ 2, 517, 1072, 4, 3, UNI_NV__7_SLASH_12 } /* nv=7/12 */,
{ 0, 1823, 1385, 7, 6, UNI_SC__THAA } /* script=thaana */,
{ 5, 895, 569, 5, 2, UNI_AGE__5_DOT_2 } /* age=v52 */,
{ 0, 1823, 137, 8, 3, UNI_SC__MYMR } /* script=mymr */,
{ 1, 292, 2655, 3, 10, UNI_NV___MINUS_1_SLASH_2 } /* nv=-5.000e-01 */,
{ 0, 5658, 5940, 18, 9, UNI_IDENTIFIERTYPE__NOTCHARACTER } /* identifiertype=notcharacter */,
{ 0, 2324, 991, 6, 6, UNI_INHATRAN } /* block=hatran */,
{ 3, 339, 582, 5, 2, UNI_CCC__122 } /* ccc=122 */,
{ 1, 1397, 585, 4, 5, UNI_IDST } /* idst=true */,
{ 0, 5937, 585, 21, 5, UNI__PERL_NCHAR } /* noncharactercodepoint=true */,
{ 3, 461, 208, 2, 4, UNI_TGLG } /* istglg */,
{ 0, 3633, 5635, 13, 3, UNI_LATINEXTG } /* inlatinextendedg */,
{ 5, 1396, 6621, 3, 3, UNI_XIDC } /* xidc=t */,
{ 0, 2766, 2483, 3, 11, UNI_CASEDLETTER } /* gc=casedletter */,
{ 5, 4002, 0, 14, 0, UNI_SK } /* modifiersymbol */,
{ 1, 4043, 599, 4, 2, -UNI_IDSB } /* idsb=n */,
{ 0, 6165, 2009, 3, 6, UNI_SC__SYRC } /* sc=syriac */,
{ 2, 4970, 933, 16, 7, -UNI_EBASE } /* emojimodifierbase=false */,
{ 3, 1492, 6945, 5, 12, UNI_GEOMETRICSHAPES } /* ingeometricshapes */,
{ 0, 2324, 1376, 6, 9, UNI_INSAMARITAN } /* block=samaritan */,
{ 1, 339, 2735, 3, 3, UNI_CCC__AR } /* ccc=ar */,
{ 3, 8601, 4441, 7, 16, UNI_SMALLFORMS } /* block=smallformvariants */,
{ 1, 7274, 3554, 9, 13, UNI_ZL } /* category=lineseparator */,
{ 0, 339, 288, 5, 2, UNI_CCC__130 } /* ccc=130 */,
{ 0, 461, 248, 2, 5, UNI_XPOSIXCNTRL } /* iscntrl */,
{ 0, 1823, 369, 7, 6, UNI_GOTH } /* script=gothic */,
{ 0, 10, 2631, 1, 12, UNI_MAYANNUMERALS } /* mayannumerals */,
{ 6, 309, 3954, 2, 17, UNI_INCAUCASIANALBANIAN } /* incaucasianalbanian */,
{ 0, 1396, 934, 8, 6, -UNI_XIDS } /* xidstart=false */,
{ 6, 1396, 341, 3, 2, UNI_xidc_values_index } /* xidc= */,
{ 0, 1102, 430, 4, 4, UNI_NKO } /* scx=nkoo */,
{ 5, 339, 295, 4, 1, UNI_CCC__9 } /* ccc=9 */,
{ 0, 1671, 0, 7, 0, UNI_CJKEXTD } /* cjkextd */,
{ 0, 735, 2538, 2, 2, UNI_EA__A } /* ea=a */,
{ 0, 461, 3026, 2, 2, UNI_PS } /* isps */,
{ 1, 2324, 5958, 6, 21, UNI_SINHALAARCHAICNUMBERS } /* block=sinhalaarchaicnumbers */,
{ 2, 1823, 790, 7, 4, UNI_SC__KALI } /* script=kali */,
{ 0, 7495, 388, 27, 2, UNI_CCC__26 } /* canonicalcombiningclass=ccc26 */,
{ 10, 3633, 4659, 7, 9, UNI_LATINEXTC } /* inlatinextendedc */,
{ 1, 4896, 0, 8, 0, UNI_BAMUMSUP } /* bamumsup */,
{ 4, 172, 0, 4, 0, UNI_RJNG } /* rjng */,
{ 1, 1397, 934, 7, 2, -UNI_IDS } /* idstart=f */,
{ 1, 11, 2312, 1, 12, UNI_AEGEANNUMBERS } /* aegeannumbers */,
{ 1, 6163, 6661, 14, 10, UNI_INSC__CONSONANTHEADLETTER } /* insc=consonantheadletter */,
{ 1, 406, 599, 2, 3, -UNI_DI } /* di=no */,
{ 0, 257, 934, 4, 6, -UNI_CWCM } /* cwcm=false */,
{ 8, 292, 2090, 3, 9, UNI_NV__1_SLASH_8 } /* nv=1.250e-01 */,
{ 1, 1409, 4698, 4, 12, UNI_LATIN1 } /* latin1supplement */,
{ 0, 4360, 1479, 10, 5, UNI_LB__SP } /* linebreak=space */,
{ 0, 1223, 0, 4, 0, UNI_KANA } /* kana */,
{ 1, 4360, 2043, 10, 2, UNI_GCB__V } /* linebreak=jv */,
{ 2, 216, 216, 2, 2, UNI_TOTO } /* toto */,
{ 0, 1494, 5863, 5, 6, UNI_GEORGIANSUP } /* georgiansup */,
{ 1, 16, 2773, 1, 13, UNI_INGREEK } /* greekandcoptic */,
{ 3, 1667, 1914, 4, 4, UNI_UCAS } /* blk=ucas */,
{ 1, 1667, 5778, 4, 21, UNI_ININSCRIPTIONALPARTHIAN } /* blk=inscriptionalparthian */,
{ 0, 2256, 0, 12, 0, UNI_PHAISTOS } /* phaistosdisc */,
{ 0, 1102, 4271, 4, 17, UNI_KITS } /* scx=khitansmallscript */,
{ 0, 6165, 1322, 3, 9, UNI_ITAL } /* sc=olditalic */,
{ 0, 940, 934, 6, 6, -UNI_COMPEX } /* compex=false */,
{ 0, 6450, 306, 14, 2, UNI_SB__SP } /* sentencebreak=sp */,
{ 0, 1906, 1037, 8, 4, UNI_KANAEXTB } /* blk=kanaextb */,
{ 2, 1667, 5712, 4, 19, UNI_MERO } /* blk=meroitichieroglyphs */,
{ 0, 7274, 5235, 9, 20, UNI_PC } /* category=connectorpunctuation */,
{ 0, 1404, 1409, 5, 5, UNI_ASCII } /* basiclatin */,
{ 3, 2232, 1314, 4, 3, UNI_NV__8000 } /* nv=8000 */,
{ 2, 5939, 599, 5, 2, -UNI__PERL_NCHAR } /* nchar=n */,
{ 0, 7495, 346, 27, 2, UNI_CCC__84 } /* canonicalcombiningclass=ccc84 */,
{ 0, 4424, 1978, 17, 4, UNI_SOGD } /* scriptextensions=sogd */,
{ 1, 1667, 967, 4, 8, UNI_INGUJARATI } /* blk=gujarati */,
{ 0, 4424, 406, 17, 4, UNI_DIAK } /* scriptextensions=diak */,
{ 0, 461, 4845, 2, 17, UNI__PERL_PATWS } /* ispatternwhitespace */,
{ 0, 4424, 1331, 17, 9, UNI_PERM } /* scriptextensions=oldpermic */,
{ 0, 309, 499, 2, 6, UNI_INLYDIAN } /* inlydian */,
{ 1, 2503, 599, 5, 2, -UNI_JOINC } /* joinc=n */,
{ 1, 2324, 7086, 6, 24, UNI_ARABICPFB } /* block=arabicpresentationformsb */,
{ 0, 2324, 746, 6, 7, UNI_INMARCHEN } /* block=marchen */,
{ 0, 4191, 585, 5, 2, UNI_XPOSIXLOWER } /* lower=t */,
{ 3, 2208, 0, 12, 0, UNI_NV__7_SLASH_12 } /* nv=5.833e-01 */,
{ 0, 309, 6487, 2, 23, UNI_ZNAMENNYMUSIC } /* inznamennymusicalnotation */,
{ 2, 6165, 779, 3, 7, UNI_OSMA } /* sc=osmanya */,
{ 4, 1391, 3191, 2, 3, UNI_WB__LE } /* wb=le */,
{ 0, 1667, 4725, 4, 16, UNI_TANGUTSUP } /* blk=tangutsupplement */,
{ 0, 832, 353, 5, 2, UNI_STERM } /* sterm=y */,
{ 5, 1102, 1829, 3, 5, UNI_MLYM } /* scx=mlym */,
{ 3, 1667, 3421, 4, 15, UNI_NARB } /* blk=oldnortharabian */,
{ 1, 1726, 6193, 6, 12, UNI_ARABICSUP } /* isarabicsupplement */,
{ 0, 1667, 430, 4, 3, UNI_INNKO } /* blk=nko */,
{ 1, 3984, 353, 17, 4, UNI_EPRES } /* emojipresentation=yes */,
{ 19, 6163, 1985, 5, 7, UNI_INSC__VISARGA } /* insc=visarga */,
{ 1, 309, 8660, 2, 42, UNI_UCASEXT } /* inunifiedcanadianaboriginalsyllabicsextended */,
{ 2, 521, 8556, 5, 3, UNI_PATSYN } /* patsyn=t */,
{ 0, 461, 168, 2, 4, UNI_COPT } /* isqaac */,
{ 1, 1582, 0, 10, 0, UNI_PHNX } /* phoenician */,
{ 6, 2432, 4511, 9, 9, UNI_MYANMAREXTB } /* inmyanmarextendedb */,
{ 3, 4424, 216, 17, 4, UNI_TOTO } /* scriptextensions=toto */,
{ 2, 2324, 861, 6, 7, UNI_INTIBETAN } /* block=tibetan */,
{ 2, 8, 0, 3, 0, UNI_PCM } /* pcm */,
{ 4, 7134, 1669, 25, 2, UNI_pcm_values_index } /* prependedconcatenationmark= */,
{ 0, 1823, 4620, 7, 7, UNI_SC__LINB } /* script=linearb */,
{ 0, 1272, 1037, 5, 4, UNI_CJKEXTB } /* iscjkextb */,
{ 2, 4424, 493, 17, 4, UNI_KHOJ } /* scriptextensions=khoj */,
{ 1, 5205, 1553, 5, 9, UNI_MISCARROWS } /* blk=miscarrows */,
{ 1, 2324, 6228, 8, 8, UNI_CJKSYMBOLS } /* block=cjksymbols */,
{ 1, 3677, 589, 13, 3, UNI_LATINEXTE } /* islatinextendede */,
{ 1, 7537, 934, 10, 6, -UNI_XPOSIXALPHA } /* alphabetic=false */,
{ 3, 380, 0, 6, 0, UNI_HYPHEN } /* hyphen */,
{ 2, 375, 585, 5, 5, UNI_GREXT } /* grext=true */,
{ 2, 461, 4620, 2, 7, UNI_LINB } /* islinearb */,
{ 0, 4360, 209, 10, 2, UNI_LB__GL } /* linebreak=gl */,
{ 1, 232, 0, 2, 0, UNI_YI } /* yi */,
{ 1, 5595, 934, 21, 6, -UNI_CWT } /* changeswhentitlecased=false */,
{ 2, 3502, 7241, 5, 26, UNI_ENCLOSEDCJK } /* blk=enclosedcjklettersandmonths */,
{ 9, 7274, 8, 9, 1, UNI_P } /* category=p */,
{ 0, 298, 599, 2, 2, -UNI_RI } /* ri=n */,
{ 0, 1994, 0, 7, 0, UNI_RADICAL } /* radical */,
{ 0, 2324, 847, 6, 7, UNI_INTAITHAM } /* block=taitham */,
{ 0, 4941, 324, 10, 3, UNI_KANASUP } /* block=kanasup */,
{ 1, 6165, 658, 3, 4, UNI_SC__DOGR } /* sc=dogr */,
{ 9, 2324, 1834, 6, 11, UNI_INSORASOMPENG } /* block=sorasompeng */,
{ 4, 21, 2931, 2, 3, UNI_EXT } /* ext=t */,
{ 2, 4845, 352, 16, 3, UNI__PERL_PATWS } /* patternwhitespace=y */,
{ 0, 7267, 535, 15, 2, UNI_S } /* generalcategory=s */,
{ 0, 4360, 2955, 10, 11, UNI_LB__EX } /* linebreak=exclamation */,
{ 0, 2718, 6312, 3, 3, UNI_BC__PDI } /* bc=pdi */,
{ 0, 30, 4209, 1, 12, UNI_INPUNCTUATION } /* inpunctuation */,
{ 4, 1667, 683, 4, 5, UNI_INTAKRI } /* blk=takri */,
{ 0, 1823, 615, 7, 4, UNI_ELYM } /* script=elym */,
{ 0, 16, 1426, 1, 4, UNI_XPOSIXCNTRL } /* gc=cc */,
{ 3, 2514, 2046, 3, 11, UNI_GONM } /* ismasaramgondi */,
{ 2, 4424, 499, 17, 4, UNI_LYDI } /* scriptextensions=lydi */,
{ 5, 1823, 1572, 7, 10, UNI_XPEO } /* script=oldpersian */,
{ 9, 423, 2800, 3, 11, UNI_ALPHABETICPF } /* inalphabeticpf */,
{ 0, 2842, 5848, 10, 9, UNI_ETHIOPICEXTA } /* isethiopicextendeda */,
{ 2, 309, 668, 2, 5, UNI_INOGHAM } /* inogham */,
{ 4, 1509, 0, 4, 0, UNI_JAVA } /* java */,
{ 7, 6165, 1484, 3, 4, UNI_SC__BUGI } /* sc=bugi */,
{ 16, 6427, 6447, 13, 3, UNI_JG__QAF } /* joininggroup=qaf */,
{ 0, 59, 0, 4, 0, UNI_CHRS } /* chrs */,
{ 2, 7591, 283, 3, 2, UNI_LB__NU } /* lb=nu */,
{ 2, 2324, 3692, 6, 7, UNI_LISUSUP } /* block=lisusup */,
{ 0, 7274, 4206, 9, 15, UNI_PS } /* category=openpunctuation */,
{ 2, 461, 6642, 2, 6, UNI_BRAH } /* isbrahmi */,
{ 1, 5216, 1505, 11, 4, UNI_LATINEXTA } /* block=latinexta */,
{ 3, 1776, 1184, 4, 7, UNI_EMOTICONS } /* inemoticons */,
{ 2, 292, 2084, 3, 2, UNI_NV__11 } /* nv=11 */,
{ 1, 2536, 6447, 3, 3, UNI_JG__QAF } /* jg=qaf */,
{ 2, 2324, 1914, 6, 4, UNI_UCAS } /* block=ucas */,
{ 0, 6076, 2773, 7, 13, UNI_INGREEK } /* block=greekandcoptic */,
{ 0, 11, 2705, 1, 13, UNI_ANCIENTSYMBOLS } /* ancientsymbols */,
{ 1, 339, 288, 4, 2, UNI_CCC__30 } /* ccc=30 */,
{ 2, 3391, 1070, 13, 2, UNI_NV__31 } /* numericvalue=31 */,
{ 0, 3502, 1037, 12, 4, UNI_ETHIOPICEXTB } /* blk=ethiopicextb */,
{ 0, 1391, 281, 3, 2, UNI_WB__XX } /* wb=xx */,
{ 2, 7591, 1864, 3, 5, UNI_EBASE } /* lb=ebase */,
{ 8, 6165, 1205, 3, 7, UNI_SC__GRAN } /* sc=grantha */,
{ 3, 2536, 702, 10, 4, UNI_JG__AFRICANNOON } /* jg=africannoon */,
{ 5, 2842, 2374, 10, 8, UNI_ETHIOPICEXT } /* isethiopicextended */,
{ 2, 1198, 6557, 5, 19, UNI_CJKCOMPATIDEOGRAPHSSUP } /* incjkcompatideographssup */,
{ 0, 6165, 608, 3, 4, UNI_ELBA } /* sc=elba */,
{ 0, 30, 6486, 1, 14, UNI_ZNAMENNYMUSIC } /* isznamennymusic */,
{ 1, 1823, 1834, 7, 11, UNI_SORA } /* script=sorasompeng */,
{ 1, 6816, 585, 25, 5, UNI_CWKCF } /* changeswhennfkccasefolded=true */,
{ 3, 2324, 967, 6, 8, UNI_INGUJARATI } /* block=gujarati */,
{ 0, 7274, 2814, 12, 8, UNI_SO } /* category=othersymbol */,
{ 9, 2302, 933, 9, 7, -UNI_IDC } /* idcontinue=false */,
{ 1, 461, 6692, 2, 15, UNI_TRANSPORTANDMAP } /* istransportandmap */,
{ 1, 578, 0, 6, 0, UNI_CCC__22 } /* ccc=22 */,
{ 2, 7134, 353, 26, 4, UNI_PCM } /* prependedconcatenationmark=yes */,
{ 2, 1790, 0, 11, 0, UNI_NFCQC__M } /* nfcqc=maybe */,
{ 1, 2324, 4951, 6, 19, UNI_INEGYPTIANHIEROGLYPHS } /* block=egyptianhieroglyphs */,
{ 0, 1479, 584, 4, 6, UNI_XPOSIXSPACE } /* space=true */,
{ 0, 5168, 5939, 6, 5, UNI__PERL_NCHAR } /* _perl_nchar */,
{ 12, 461, 1975, 2, 10, UNI_SOGO } /* isoldsogdian */,
{ 0, 4502, 70, 11, 2, UNI_LATINEXTC } /* blk=latinextc */,
{ 0, 1823, 991, 7, 4, UNI_HATR } /* script=hatr */,
{ 2, 30, 1454, 1, 11, UNI_DEP } /* isdeprecated */,
{ 1, 1728, 7545, 4, 20, UNI_ARABICPFA } /* arabicpresentationformsa */,
{ 1, 1102, 1909, 3, 5, UNI_KANA } /* scx=kana */,
{ 0, 2, 7972, 1, 15, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbers */,
{ 3, 4424, 1205, 17, 7, UNI_GRAN } /* scriptextensions=grantha */,
{ 1, 7011, 2538, 23, 2, UNI_CCC__A } /* canonicalcombiningclass=a */,
{ 0, 11, 0, 4, 0, UNI_ADLM } /* adlm */,
{ 2, 6165, 1248, 3, 4, UNI_SC__PHAG } /* sc=phag */,
{ 0, 7214, 345, 25, 2, UNI_CCC__118 } /* canonicalcombiningclass=118 */,
{ 1, 461, 54, 2, 2, UNI_SC } /* issc */,
{ 9, 2324, 739, 6, 7, UNI_INMANDAIC } /* block=mandaic */,
{ 2, 4506, 0, 14, 0, UNI_LATINEXTB } /* latinextendedb */,
{ 1, 4896, 0, 4, 0, UNI_BAMU } /* bamu */,
{ 1, 1667, 8660, 4, 43, UNI_UCASEXTA } /* blk=unifiedcanadianaboriginalsyllabicsextendeda */,
{ 12, 1823, 232, 7, 4, UNI_SC__YI } /* script=yiii */,
{ 0, 461, 1015, 2, 6, UNI_TELU } /* istelugu */,
{ 0, 0, 273, 1, 4, UNI_LB__B2 } /* lb=b2 */,
{ 3, 2, 5694, 1, 10, UNI_COUNTINGROD } /* countingrod */,
{ 0, 7752, 2270, 23, 4, UNI_JG__MANICHAEANAYIN } /* joininggroup=manichaeanayin */,
{ 0, 991, 0, 6, 0, UNI_HATR } /* hatran */,
{ 0, 1015, 0, 4, 0, UNI_TELU } /* telu */,
{ 0, 271, 2768, 3, 6, UNI_GCB__XX } /* gcb=other */,
{ 0, 5769, 599, 4, 2, -UNI_EMOD } /* emod=n */,
{ 0, 3391, 2107, 14, 8, UNI_NV__5_SLASH_2 } /* numericvalue=2.500e+00 */,
{ 0, 7011, 1678, 24, 2, UNI_CCC__1 } /* canonicalcombiningclass=ov */,
{ 17, 2324, 6120, 6, 22, UNI_DIACRITICALSFORSYMBOLS } /* block=diacriticalsforsymbols */,
{ 1, 1823, 156, 7, 4, UNI_SC__OUGR } /* script=ougr */,
{ 7, 5916, 934, 21, 6, -UNI_LOE } /* logicalorderexception=false */,
{ 0, 30, 1941, 1, 13, UNI_GRBASE } /* isgraphemebase */,
{ 0, 2434, 1037, 7, 4, UNI_MYANMAREXTB } /* myanmarextb */,
{ 0, 1830, 0, 4, 0, UNI_MLYM } /* mlym */,
{ 1, 4191, 5671, 8, 3, -UNI_XPOSIXLOWER } /* lowercase=n */,
{ 1, 32, 353, 2, 4, UNI_VS } /* vs=yes */,
{ 11, 1823, 3436, 7, 15, UNI_SARB } /* script=oldsoutharabian */,
{ 2, 6427, 4761, 14, 4, UNI_JG__ALAPH } /* joininggroup=alaph */,
{ 0, 2220, 2107, 4, 8, UNI_NV__13_SLASH_2 } /* nv=6.500e+00 */,
{ 7, 5574, 599, 21, 3, -UNI_CWL } /* changeswhenlowercased=no */,
{ 3, 533, 959, 3, 6, UNI_SB__EX } /* sb=extend */,
{ 0, 461, 176, 2, 4, UNI_ROHG } /* isrohg */,
{ 0, 2324, 297, 6, 5, UNI_INORIYA } /* block=oriya */,
{ 4, 4360, 4206, 10, 15, UNI_LB__OP } /* linebreak=openpunctuation */,
{ 0, 309, 3228, 2, 15, UNI_INIMPERIALARAMAIC } /* inimperialaramaic */,
{ 2, 271, 585, 3, 2, UNI_GCB__T } /* gcb=t */,
{ 1, 2324, 3349, 6, 15, UNI_INMEROITICCURSIVE } /* block=meroiticcursive */,
{ 17, 1479, 933, 4, 3, -UNI_XPOSIXSPACE } /* space=f */,
{ 0, 34, 4726, 1, 8, UNI_TANGUTSUP } /* tangutsup */,
{ 1, 2324, 1914, 6, 7, UNI_UCASEXT } /* block=ucasext */,
{ 4, 6165, 4089, 3, 4, UNI_SC__SIND } /* sc=sind */,
{ 3, 3014, 343, 11, 3, UNI_IN__12_DOT_1 } /* presentin=v121 */,
{ 1, 461, 1241, 2, 7, UNI_NB } /* isnoblock */,
{ 0, 2302, 352, 9, 3, UNI_IDC } /* idcontinue=y */,
{ 1, 1455, 274, 10, 1, UNI_dep_values_index } /* deprecated= */,
{ 1, 309, 917, 2, 8, UNI_INBASSAVAH } /* inbassavah */,
{ 13, 380, 934, 6, 2, -UNI_HYPHEN } /* hyphen=f */,
{ 2, 997, 0, 6, 0, UNI_KTHI } /* kaithi */,
{ 1, 2, 7972, 1, 29, UNI_CUNEIFORMNUMBERS } /* cuneiformnumbersandpunctuation */,
{ 1, 2536, 20, 3, 2, UNI_JG__HE } /* jg=he */,
{ 2, 7011, 391, 24, 2, UNI_CCC__34 } /* canonicalcombiningclass=34 */,
{ 4, 4424, 571, 17, 7, UNI_AVST } /* scriptextensions=avestan */,
{ 2, 6165, 1978, 3, 7, UNI_SC__SOGD } /* sc=sogdian */,
{ 4, 1456, 4439, 4, 2, UNI_epres_values_index } /* epres= */,
{ 2, 1102, 951, 4, 4, UNI_DUPL } /* scx=dupl */,
{ 1, 6165, 3421, 3, 15, UNI_NARB } /* sc=oldnortharabian */,
{ 3, 1728, 1037, 6, 4, UNI_ARABICEXTB } /* arabicextb */,
{ 0, 1200, 3611, 3, 6, UNI_CJKCOMPAT } /* cjkcompat */,
{ 0, 991, 0, 4, 0, UNI_HATR } /* hatr */,
{ 0, 4424, 1133, 17, 8, UNI_VITH } /* scriptextensions=vithkuqi */,
{ 3, 1823, 3228, 7, 15, UNI_ARMI } /* script=imperialaramaic */,
{ 2, 4424, 6185, 17, 10, UNI_GLAG } /* scriptextensions=glagolitic */,
{ 1, 2432, 8039, 3, 32, UNI_MISCMATHSYMBOLSA } /* inmiscellaneousmathematicalsymbolsa */,
{ 0, 30, 6796, 1, 19, UNI_DEVANAGARIEXT } /* isdevanagariextended */,
{ 15, 7267, 4667, 16, 16, UNI_PE } /* generalcategory=closepunctuation */,
{ 0, 4424, 951, 17, 4, UNI_DUPL } /* scriptextensions=dupl */,
{ 35658, 6165, 3436, 3, 15, UNI_SARB } /* sc=oldsoutharabian */,
{ 2, 2324, 8660, 6, 34, UNI_UCAS } /* block=unifiedcanadianaboriginalsyllabics */,
{ 0, 7011, 1243, 24, 2, UNI_CCC__BL } /* canonicalcombiningclass=bl */,
{ 1, 2966, 2767, 3, 7, UNI_INSC__OTHER } /* insc=other */,
{ 0, 1102, 1294, 4, 9, UNI_NBAT } /* scx=nabataean */,
{ 7, 2766, 269, 3, 2, UNI_ZP } /* gc=zp */,
{ 1, 1823, 160, 7, 4, UNI_SC__PHLP } /* script=phlp */,
{ 0, 309, 854, 2, 7, UNI_INTAIVIET } /* intaiviet */,
{ 9, 959, 599, 8, 2, -UNI_EXT } /* extender=n */,
{ 0, 461, 3892, 2, 16, UNI_STERM } /* issentenceterminal */,
{ 1, 6427, 1046, 13, 5, UNI_JG__KHAPH } /* joininggroup=khaph */,
{ 1, 8658, 5949, 5, 4, UNI_ANY } /* isunicode */,
{ 4, 7669, 0, 19, 0, UNI_hst_values_index } /* hangulsyllabletype= */,
{ 0, 1409, 1674, 5, 4, UNI_LATINEXTD } /* latinextd */,
{ 2, 461, 1543, 2, 4, UNI_KHAR } /* iskhar */,
{ 1, 2324, 1033, 6, 4, UNI_JAMO } /* block=jamo */,
{ 5, 54, 5067, 2, 11, UNI_SC__MANI } /* sc=manichaean */,
{ 3, 6165, 82, 3, 4, UNI_SC__GONG } /* sc=gong */,
{ 0, 6163, 0, 14, 0, UNI_INSC__CONSONANT } /* insc=consonant */,
{ 0, 1479, 5671, 4, 4, -UNI_XPOSIXSPACE } /* space=no */,
{ 1, 1102, 180, 4, 4, UNI_RUNR } /* scx=runr */,
{ 4, 6427, 2875, 13, 11, UNI_JG__STRAIGHTWAW } /* joininggroup=straightwaw */,
{ 0, 271, 7134, 4, 7, UNI_GCB__PP } /* gcb=prepend */,
{ 2, 1823, 2244, 7, 12, UNI_HUNG } /* script=oldhungarian */,
{ 0, 406, 0, 4, 0, UNI_DIAK } /* diak */,
{ 5, 1102, 1027, 4, 6, UNI_YEZI } /* scx=yezidi */,
{ 3, 8343, 7692, 32, 15, UNI_INSC__CONSONANTINITIALPOSTFIXED } /* indicsyllabiccategory=consonantinitialpostfixed */,
{ 0, 309, 1572, 2, 10, UNI_INOLDPERSIAN } /* inoldpersian */,
{ 0, 461, 1144, 2, 9, UNI_BHKS } /* isbhaiksuki */,
{ 0, 2832, 6193, 8, 12, UNI_CYRILLICSUP } /* iscyrillicsupplement */,
{ 1, 4502, 590, 16, 2, UNI_LATINEXTE } /* blk=latinextendede */,
{ 0, 2514, 2643, 3, 12, UNI_MISCTECHNICAL } /* ismisctechnical */,
{ 0, 1883, 934, 11, 2, -UNI_BIDIC } /* bidicontrol=f */,
{ 2, 4845, 352, 16, 2, UNI_patws_values_index } /* patternwhitespace= */,
{ 6, 2324, 7796, 6, 22, UNI_ENCLOSEDIDEOGRAPHICSUP } /* block=enclosedideographicsup */,
{ 17, 4424, 4176, 17, 4, UNI_HANG } /* scriptextensions=hang */,
{ 3, 622, 934, 7, 6, -UNI_EXTPICT } /* extpict=false */,
{ 1, 2324, 1349, 6, 9, UNI_INOLDUYGHUR } /* block=olduyghur */,
{ 0, 6165, 1819, 3, 4, UNI_SC__MONG } /* sc=mong */,
{ 1, 3817, 2123, 14, 8, UNI_NV__1_SLASH_64 } /* numericvalue=1.563e-02 */,
{ 0, 6450, 281, 14, 2, UNI_SB__XX } /* sentencebreak=xx */,
{ 0, 4970, 584, 16, 3, UNI_EBASE } /* emojimodifierbase=t */,
{ 7, 3391, 1805, 14, 4, UNI_NV__20000 } /* numericvalue=20000 */,
{ 2, 5637, 4407, 21, 17, UNI_RI } /* graphemeclusterbreak=regionalindicator */,
{ 0, 2324, 1117, 6, 8, UNI_INTAGBANWA } /* block=tagbanwa */,
{ 3, 597, 1743, 3, 4, UNI_DT__VERT } /* dt=vert */,
{ 2, 6041, 599, 21, 2, UNI_BPT__N } /* bidipairedbrackettype=n */,
{ 16, 6165, 5857, 3, 9, UNI_SC__MONG } /* sc=mongolian */,
{ 0, 5532, 934, 21, 2, -UNI_CWCF } /* changeswhencasefolded=f */,
{ 1, 2766, 50, 3, 2, UNI_MC } /* gc=mc */,
{ 1, 718, 490, 3, 3, UNI_KANBUN } /* kanbun */,
{ 0, 257, 0, 4, 0, UNI_CWCM } /* cwcm */,
{ 0, 3130, 5863, 9, 6, UNI_GEORGIANSUP } /* blk=georgiansup */,
{ 0, 1823, 450, 7, 4, UNI_MIAO } /* script=plrd */,
{ 2, 552, 557, 4, 3, UNI_AGE__6 } /* age=6.0 */,
{ 0, 1102, 6185, 4, 10, UNI_GLAG } /* scx=glagolitic */,
{ 1, 6062, 1183, 7, 8, UNI_EMOTICONS } /* block=emoticons */,
{ 57317, 1075, 0, 4, 0, UNI_NV__2 } /* nv=2 */,
{ 0, 1174, 1933, 3, 9, UNI_EA__A } /* ea=ambiguous */,
{ 0, 30, 4553, 1, 10, UNI_TITLE } /* istitlecase */,
{ 0, 4043, 0, 4, 0, UNI_IDSB } /* idsb */,
{ 3, 466, 82, 2, 2, UNI_SOGO } /* sogo */,
{ 1, 1667, 3475, 4, 15, UNI_INZANABAZARSQUARE } /* blk=zanabazarsquare */,
{ 0, 7011, 1905, 24, 2, UNI_CCC__DB } /* canonicalcombiningclass=db */,
{ 0, 461, 1894, 2, 12, UNI_BIDIM } /* isbidimirrored */,
{ 0, 309, 1779, 2, 11, UNI_INMEDEFAIDRIN } /* inmedefaidrin */,
{ 0, 5637, 6, 21, 2, UNI_LB__CR } /* graphemeclusterbreak=cr */,
{ 2, 725, 0, 7, 0, UNI_KALI } /* kayahli */,
{ 5, 1200, 377, 3, 4, UNI_CJKEXTH } /* cjkexth */,
{ 8, 4043, 934, 17, 2, -UNI_IDSB } /* idsbinaryoperator=f */,
{ 0, 2324, 8214, 7, 32, UNI_DIACRITICALSEXT } /* block=combiningdiacriticalmarksextended */,
{ 1, 6165, 236, 3, 4, UNI_ZANB } /* sc=zanb */,
{ 3, 2832, 1037, 10, 4, UNI_CYRILLICEXTB } /* iscyrillicextb */,
{ 2, 4424, 137, 18, 3, UNI_MYMR } /* scriptextensions=mymr */,
{ 4, 4360, 7804, 10, 11, UNI_LB__ID } /* linebreak=ideographic */,
{ 5, 2401, 0, 10, 0, UNI_INETHIOPIC } /* inethiopic */,
{ 0, 461, 1872, 2, 11, UNI_YISYLLABLES } /* isyisyllables */,
{ 2, 3502, 4511, 12, 9, UNI_ETHIOPICEXTB } /* blk=ethiopicextendedb */,
{ 3, 7495, 345, 27, 2, UNI_CCC__18 } /* canonicalcombiningclass=ccc18 */,
{ 5, 4651, 0, 16, 0, UNI_BOPOMOFOEXT } /* bopomofoextended */,
{ 0, 1667, 5373, 4, 11, UNI_TAIXUANJING } /* blk=taixuanjing */,
{ 0, 4206, 0, 15, 0, UNI_PS } /* openpunctuation */,
{ 0, 1667, 7449, 4, 28, UNI_PHONETICEXTSUP } /* blk=phoneticextensionssupplement */,
{ 3, 1102, 790, 4, 4, UNI_KALI } /* scx=kali */,
{ 1, 7383, 6310, 10, 20, UNI_BC__PDF } /* bidiclass=popdirectionalformat */,
{ 1, 1272, 8474, 5, 23, UNI_CJKCOMPATIDEOGRAPHS } /* iscjkcompatibilityideographs */,
{ 1, 1102, 39, 4, 4, UNI_BHKS } /* scx=bhks */,
{ 1, 6185, 0, 4, 0, UNI_GLAG } /* glag */,
{ 2, 5353, 0, 20, 0, UNI_PHLI } /* inscriptionalpahlavi */,
{ 0, 2766, 3709, 3, 11, UNI_MC } /* gc=spacingmark */,
{ 0, 4360, 4667, 10, 16, UNI_LB__CL } /* linebreak=closepunctuation */,
{ 2, 30, 1925, 1, 7, UNI_S } /* issymbol */,
{ 0, 3391, 759, 13, 4, UNI_NV___MINUS_1_SLASH_2 } /* numericvalue=-1/2 */,
{ 2, 1942, 584, 11, 3, UNI_GRBASE } /* graphemebase=t */,
{ 1, 3093, 585, 13, 5, UNI_POSIXXDIGIT } /* asciihexdigit=true */,
{ 3, 1102, 1209, 4, 4, UNI_THAI } /* scx=thai */,
{ 3, 3013, 585, 5, 2, UNI_EPRES } /* epres=t */,
{ 0, 7274, 3191, 8, 13, UNI_NL } /* category=letternumber */,
{ 0, 3817, 769, 14, 3, UNI_NV__17_SLASH_2 } /* numericvalue=17/2 */,
{ 4, 1667, 5897, 4, 19, UNI_SUPARROWSC } /* blk=supplementalarrowsc */,
{ 0, 461, 283, 2, 5, UNI_NSHU } /* isnushu */,
{ 1, 2018, 584, 10, 3, UNI_JT__T } /* joiningtype=t */,
{ 1, 309, 1367, 2, 9, UNI_INPAUCINHAU } /* inpaucinhau */,
{ 0, 597, 693, 3, 3, UNI_DT__ISO } /* dt=iso */,
{ 0, 7383, 6291, 11, 19, UNI_BC__LRE } /* bidiclass=lefttorightembedding */,
{ 2, 5156, 5769, 10, 9, UNI_WB__EB } /* wordbreak=emodifier */,
{ 0, 5156, 3064, 10, 11, UNI_WB__SQ } /* wordbreak=singlequote */,
{ 5, 2391, 7467, 10, 13, UNI_CYRILLICSUP } /* incyrillicsupplementary */,
{ 7, 3633, 4698, 6, 5, UNI_LATIN1 } /* inlatin1sup */,
{ 1, 6165, 6642, 3, 6, UNI_BRAH } /* sc=brahmi */,
{ 3, 1102, 1465, 4, 10, UNI_DIAK } /* scx=divesakuru */,
{ 1, 1102, 402, 4, 4, UNI_ARMN } /* scx=armn */,
{ 2, 2766, 225, 3, 2, UNI_PE } /* gc=pe */,
{ 1, 6735, 661, 22, 2, UNI_JG__MALAYALAMRA } /* joininggroup=malayalamra */,
{ 3, 461, 6776, 2, 21, UNI_MEETEIMAYEKEXT } /* ismeeteimayekextensions */,
{ 4, 5216, 0, 15, 0, UNI_LATINEXTE } /* block=latinexte */,
{ 0, 1391, 1645, 3, 7, UNI_WB__LE } /* wb=aletter */,
{ 2, 461, 1696, 2, 11, UNI_DOMINO } /* isdominotiles */,
{ 1, 461, 951, 2, 4, UNI_DUPL } /* isdupl */,
{ 7, 4424, 673, 17, 5, UNI_OSGE } /* scriptextensions=osage */,
{ 2, 4519, 4511, 14, 9, UNI_CYRILLICEXTB } /* block=cyrillicextendedb */,
{ 10, 7648, 3276, 18, 3, UNI_DT__ENC } /* decompositiontype=enc */,
{ 2, 4424, 668, 17, 5, UNI_OGAM } /* scriptextensions=ogham */,
{ 3, 2301, 933, 10, 7, -UNI_XIDC } /* xidcontinue=false */,
{ 0, 6735, 783, 22, 3, UNI_JG__MALAYALAMNYA } /* joininggroup=malayalamnya */,
{ 12, 1102, 909, 4, 8, UNI_BALI } /* scx=balinese */,
{ 0, 2665, 599, 13, 3, -UNI_PATSYN } /* patternsyntax=no */,
{ 1, 271, 3191, 2, 7, UNI_L } /* gc=letter */,
{ 0, 461, 663, 2, 5, UNI_LIMB } /* islimbu */,
{ 0, 461, 6103, 2, 13, UNI_MATHOPERATORS } /* ismathoperators */,
{ 0, 2536, 4235, 3, 4, UNI_JG__BETH } /* jg=beth */,
{ 0, 753, 1792, 3, 5, UNI_NFCQC__M } /* nfkcqc=m */,
{ 5, 2966, 5409, 3, 17, UNI_SMALLKANAEXT } /* insmallkanaextension */,
{ 10, 7011, 2290, 25, 2, UNI_CCC__214 } /* canonicalcombiningclass=214 */,
{ 2, 7274, 3709, 9, 11, UNI_MC } /* category=spacingmark */,
{ 1, 7274, 199, 9, 2, UNI_TITLE } /* category=lt */,
{ 0, 7404, 1715, 21, 7, UNI_BC__RLI } /* bidiclass=righttoleftisolate */,
{ 0, 3391, 1803, 12, 9, UNI_NV__10000000 } /* numericvalue=10000000 */,
{ 4, 1102, 1438, 4, 10, UNI_CHRS } /* scx=chorasmian */,
{ 16, 6450, 325, 14, 2, UNI_SB__UP } /* sentencebreak=up */,
{ 3, 2732, 1037, 10, 4, UNI_ARABICEXTB } /* blk=arabicextb */,
{ 1, 3817, 389, 14, 1, UNI_NV__16 } /* numericvalue=16 */,
{ 1, 4845, 5671, 16, 3, -UNI__PERL_PATWS } /* patternwhitespace=n */,
{ 1, 2, 3938, 1, 16, UNI_UCAS } /* canadiansyllabics */,
{ 2, 1823, 1205, 7, 4, UNI_SC__GRAN } /* script=gran */,
{ 0, 2536, 2566, 3, 3, UNI_JG__HEH } /* jg=heh */,
{ 0, 410, 0, 4, 0, UNI_GONM } /* gonm */,
{ 5, 2514, 2057, 3, 11, UNI_MATHALPHANUM } /* ismathalphanum */,
{ 0, 1198, 8214, 3, 32, UNI_DIACRITICALSEXT } /* incombiningdiacriticalmarksextended */,
{ 2, 309, 6693, 3, 21, UNI_TRANSPORTANDMAP } /* intransportandmapsymbols */,
{ 0, 7591, 3001, 3, 7, UNI_LB__NU } /* lb=numeric */,
{ 2, 6427, 7328, 13, 14, UNI_JG__NOJOININGGROUP } /* joininggroup=nojoininggroup */,
{ 2, 65, 0, 2, 0, UNI_MN } /* mn */,
{ 0, 1823, 333, 7, 4, UNI_CARI } /* script=cari */,
{ 1, 33, 463, 1, 3, UNI_SHAW } /* shaw */,
{ 0, 1906, 3622, 7, 3, UNI_KANGXI } /* blk=kangxi */,
{ 0, 6427, 7342, 13, 14, UNI_JG__HAMZAONHEHGOAL } /* joininggroup=tehmarbutagoal */,
{ 0, 5937, 2931, 20, 3, UNI__PERL_NCHAR } /* noncharactercodepoint=t */,
{ 1, 461, 4620, 2, 16, UNI_LINEARBSYLLABARY } /* islinearbsyllabary */,
{ 4, 461, 3984, 2, 17, UNI_EPRES } /* isemojipresentation */,
{ 10, 2766, 3706, 3, 14, UNI_MN } /* gc=nonspacingmark */,
{ 1, 2536, 6205, 3, 19, UNI_JG__BURUSHASKIYEHBARREE } /* jg=burushaskiyehbarree */,
{ 2, 1823, 1223, 7, 4, UNI_SC__KANA } /* script=kana */,
{ 0, 6165, 5440, 3, 20, UNI_HMNP } /* sc=nyiakengpuachuehmong */,
{ 4, 1272, 1214, 3, 3, UNI_CHER } /* ischer */,
{ 1, 1715, 440, 4, 2, UNI_OLCK } /* isolck */,
{ 0, 292, 1318, 3, 3, UNI_NV__200 } /* nv=200 */,
{ 0, 461, 1397, 2, 4, UNI_IDST } /* isidst */,
{ 1, 461, 5068, 2, 4, UNI_MANI } /* ismani */,
{ 0, 2280, 2656, 10, 3, UNI_IN__5 } /* presentin=5.0 */,
{ 0, 1059, 599, 6, 2, UNI_NFKDQC__N } /* nfkdqc=n */,
{ 0, 552, 386, 4, 3, UNI_AGE__3_DOT_2 } /* age=3.2 */,
{ 1, 6185, 0, 20, 0, UNI_GLAGOLITICSUP } /* glagoliticsupplement */,
{ 0, 1667, 825, 4, 7, UNI_SHAW } /* blk=shavian */,
{ 1, 916, 584, 4, 3, UNI_EBASE } /* ebase=t */,
{ 0, 6165, 1144, 3, 9, UNI_BHKS } /* sc=bhaiksuki */,
{ 0, 1396, 353, 8, 2, UNI_XIDS } /* xidstart=y */,
{ 1, 1102, 120, 4, 4, UNI_LAO } /* scx=laoo */,
{ 4, 1667, 746, 4, 7, UNI_INMARCHEN } /* blk=marchen */,
{ 1, 30, 1591, 1, 11, UNI_INSAURASHTRA } /* insaurashtra */,
{ 2, 3349, 0, 15, 0, UNI_MERC } /* meroiticcursive */,
{ 6, 339, 8030, 4, 9, UNI_CCC__AL } /* ccc=aboveleft */,
{ 16, 1424, 2290, 7, 2, UNI_CCC__14 } /* ccc=ccc14 */,
{ 1, 461, 1212, 2, 9, UNI_QAAI } /* isinherited */,
{ 1, 6450, 5090, 13, 6, UNI_SB__CL } /* sentencebreak=close */,
{ 3, 1011, 599, 2, 2, -UNI_CI } /* ci=n */,
{ 0, 4424, 3692, 17, 4, UNI_LISU } /* scriptextensions=lisu */,
{ 0, 257, 934, 4, 2, -UNI_CWCM } /* cwcm=f */,
{ 0, 1102, 1572, 4, 10, UNI_XPEO } /* scx=oldpersian */,
{ 2, 292, 393, 3, 2, UNI_NV__15 } /* nv=15 */,
{ 2, 7669, 32, 20, 1, UNI_LB__H2 } /* hangulsyllabletype=lv */,
{ 1, 261, 353, 5, 4, UNI_CWKCF } /* cwkcf=yes */,
{ 3, 6165, 732, 3, 7, UNI_SC__LINA } /* sc=lineara */,
{ 2, 7648, 363, 18, 3, UNI_DT__SML } /* decompositiontype=sml */,
{ 0, 339, 388, 4, 2, UNI_CCC__26 } /* ccc=26 */,
{ 3, 309, 8619, 2, 21, UNI_MATHOPERATORS } /* inmathematicaloperators */,
{ 8, 3514, 2705, 7, 13, UNI_ANCIENTSYMBOLS } /* block=ancientsymbols */,
{ 0, 8343, 2613, 22, 6, UNI_LB__ZWJ } /* indicsyllabiccategory=joiner */,
{ 2, 609, 928, 2, 3, UNI_LB__OP } /* lb=op */,
{ 0, 2483, 585, 5, 2, UNI_CASED } /* cased=t */,
{ 3, 5460, 934, 19, 6, -UNI_TERM } /* terminalpunctuation=false */,
{ 0, 21, 7241, 1, 10, UNI_ENCLOSEDCJK } /* enclosedcjk */,
{ 8, 3021, 295, 4, 2, UNI_IN__9 } /* in=v90 */,
{ 16, 7591, 2944, 3, 11, UNI_LB__BB } /* lb=breakbefore */,
{ 1, 4360, 63, 10, 2, UNI_LB__CP } /* linebreak=cp */,
{ 3, 4941, 1037, 10, 4, UNI_KANAEXTB } /* block=kanaextb */,
{ 0, 6165, 1465, 3, 10, UNI_DIAK } /* sc=divesakuru */,
{ 0, 3013, 934, 5, 6, -UNI_EPRES } /* epres=false */,
{ 0, 1667, 3093, 4, 5, UNI_ASCII } /* blk=ascii */,
{ 0, 1191, 0, 4, 0, UNI_BENG } /* beng */,
{ 4, 1397, 598, 3, 3, -UNI_IDST } /* idst=n */,
{ 2, 309, 2222, 2, 2, UNI_IN__6 } /* in=6 */,
{ 0, 4360, 9, 10, 2, UNI_LB__CM } /* linebreak=cm */,
{ 7, 461, 2468, 2, 13, UNI_IPAEXT } /* isipaextensions */,
{ 1, 3490, 1037, 12, 4, UNI_CYRILLICEXTB } /* blk=cyrillicextb */,
{ 1, 4424, 430, 17, 4, UNI_NKO } /* scriptextensions=nkoo */,
{ 0, 1667, 4176, 4, 15, UNI_INHANGUL } /* blk=hangulsyllables */,
{ 0, 2766, 6677, 3, 14, UNI_LM } /* gc=modifierletter */,
{ 1, 19, 599, 4, 2, -UNI_POSIXXDIGIT } /* ahex=n */,
{ 7, 6427, 484, 13, 3, UNI_JG__HAH } /* joininggroup=hah */,
{ 5, 6165, 527, 3, 6, UNI_RJNG } /* sc=rejang */,
{ 4, 1086, 0, 4, 0, UNI_KTHI } /* kthi */,
{ 4, 7011, 6289, 23, 5, UNI_CCC__L } /* canonicalcombiningclass=left */,
{ 4, 7752, 225, 23, 2, UNI_JG__MANICHAEANPE } /* joininggroup=manichaeanpe */,
{ 0, 6165, 369, 3, 6, UNI_GOTH } /* sc=gothic */,
{ 2, 1667, 5185, 4, 20, UNI_INANATOLIANHIEROGLYPHS } /* blk=anatolianhieroglyphs */,
{ 2, 1391, 1652, 3, 7, UNI_WB__NL } /* wb=newline */,
{ 2, 1065, 2083, 4, 8, UNI_NV__1_SLASH_9 } /* nv=1.111e-01 */,
{ 0, 5156, 1645, 10, 7, UNI_WB__LE } /* wordbreak=aletter */,
{ 0, 2232, 2119, 8, 4, UNI_NV__1_SLASH_12 } /* nv=8.333e-02 */,
{ 0, 292, 2106, 3, 9, UNI_NV__3_SLASH_2 } /* nv=1.500e+00 */,
{ 4, 6870, 353, 20, 2, UNI_CE } /* compositionexclusion=y */,
{ 4, 3817, 3876, 15, 2, UNI_NV__1_SLASH_80 } /* numericvalue=1/80 */,
{ 0, 4424, 5876, 17, 9, UNI_SUND } /* scriptextensions=sundanese */,
{ 2, 7537, 353, 10, 2, UNI_XPOSIXALPHA } /* alphabetic=y */,
{ 0, 1272, 7972, 3, 29, UNI_CUNEIFORMNUMBERS } /* iscuneiformnumbersandpunctuation */,
{ 8, 1455, 934, 3, 2, -UNI_DEP } /* dep=f */,
{ 1, 1823, 5958, 7, 7, UNI_SC__SINH } /* script=sinhala */,
{ 0, 5065, 4255, 13, 4, UNI_JG__MANICHAEANRESH } /* jg=manichaeanresh */,
{ 0, 7274, 4602, 9, 18, UNI_PI } /* category=initialpunctuation */,
{ 2, 1102, 369, 4, 4, UNI_GOTH } /* scx=goth */,
{ 5, 2348, 5671, 12, 4, -UNI_CI } /* caseignorable=no */,
{ 1, 2718, 327, 3, 3, UNI_BC__FSI } /* bc=fsi */,
{ 1, 3021, 3861, 4, 2, UNI_IN__7 } /* in=v70 */,
{ 4, 6165, 414, 3, 3, UNI_SC__HAN } /* sc=han */,
{ 1, 4043, 353, 4, 4, UNI_IDSB } /* idsb=yes */,
{ 2, 2002, 1479, 7, 5, UNI_POSIXSPACE } /* isposixspace */,
{ 4, 8246, 5308, 24, 15, UNI_LOE } /* indicpositionalcategory=visualorderleft */,
{ 2, 4424, 462, 17, 4, UNI_SHAW } /* scriptextensions=shaw */,
{ 4, 2220, 0, 12, 0, UNI_NV__1_SLASH_16 } /* nv=6.250e-02 */,
{ 4, 1455, 353, 3, 2, UNI_DEP } /* dep=y */,
{ 0, 3791, 585, 4, 5, UNI_MATH } /* math=true */,
{ 0, 2280, 2080, 11, 3, UNI_IN__11 } /* presentin=11.0 */,
{ 1, 622, 934, 7, 2, -UNI_EXTPICT } /* extpict=f */,
{ 2, 2068, 0, 4, 0, UNI_MEND } /* mend */,
{ 0, 6427, 6205, 13, 19, UNI_JG__BURUSHASKIYEHBARREE } /* joininggroup=burushaskiyehbarree */,
{ 0, 461, 3101, 2, 5, UNI_XPOSIXDIGIT } /* isdigit */,
{ 2, 3817, 891, 15, 2, UNI_NV__1_SLASH_10 } /* numericvalue=1/10 */,
{ 0, 2324, 3228, 6, 15, UNI_INIMPERIALARAMAIC } /* block=imperialaramaic */,
{ 0, 2, 1966, 1, 9, UNI_COMPATJAMO } /* compatjamo */,
{ 0, 30, 5124, 1, 20, UNI_OTTOMANSIYAQNUMBERS } /* isottomansiyaqnumbers */,
{ 3, 6062, 5848, 14, 9, UNI_ETHIOPICEXTA } /* block=ethiopicextendeda */,
{ 7, 4407, 274, 17, 1, UNI_ri_values_index } /* regionalindicator= */,
{ 0, 7011, 2735, 23, 3, UNI_CCC__AR } /* canonicalcombiningclass=ar */,
{ 1, 30, 2263, 1, 3, UNI_DI } /* isdi */,
{ 0, 7011, 288, 24, 2, UNI_CCC__30 } /* canonicalcombiningclass=30 */,
{ 1, 6866, 353, 24, 4, UNI_COMPEX } /* fullcompositionexclusion=yes */,
{ 0, 7537, 353, 10, 4, UNI_XPOSIXALPHA } /* alphabetic=yes */,
{ 0, 1667, 499, 4, 6, UNI_INLYDIAN } /* blk=lydian */,
{ 1, 597, 1127, 3, 3, UNI_DT__FIN } /* dt=fin */,
{ 0, 298, 274, 2, 1, UNI_ri_values_index } /* ri= */,
{ 0, 1223, 5848, 4, 9, UNI_KANAEXTA } /* kanaextendeda */,
{ 2, 1823, 1975, 7, 10, UNI_SOGO } /* script=oldsogdian */,
{ 1, 271, 363, 4, 2, UNI_GCB__SM } /* gcb=sm */,
{ 1, 3848, 0, 14, 0, UNI_NV__7 } /* numericvalue=7 */,
{ 0, 309, 3663, 2, 10, UNI_INDEVANAGARI } /* indevanagari */,
{ 2, 622, 598, 6, 2, UNI_extpict_values_index } /* extpict= */,
{ 0, 2324, 4176, 6, 6, UNI_INHANGUL } /* block=hangul */,
{ 0, 1065, 2131, 4, 8, UNI_NV__1_SLASH_6 } /* nv=1.667e-01 */,
{ 0, 461, 236, 2, 4, UNI_ZANB } /* iszanb */,
{ 0, 2018, 2908, 12, 11, UNI_JT__C } /* joiningtype=joincausing */,
{ 0, 461, 13, 2, 2, UNI_LM } /* islm */,
{ 1, 3130, 5292, 6, 16, UNI_INPUNCTUATION } /* blk=generalpunctuation */,
{ 0, 461, 3098, 2, 8, UNI_XPOSIXXDIGIT } /* ishexdigit */,
{ 1, 1823, 414, 7, 3, UNI_SC__HAN } /* script=han */,
{ 0, 4360, 2599, 10, 10, UNI_LB__NS } /* linebreak=nonstarter */,
{ 1, 6120, 0, 22, 0, UNI_DIACRITICALSFORSYMBOLS } /* diacriticalsforsymbols */,
{ 0, 7383, 4827, 10, 18, UNI_BC__B } /* bidiclass=paragraphseparator */,
{ 1, 7591, 4667, 3, 16, UNI_LB__CL } /* lb=closepunctuation */,
{ 0, 1243, 8073, 4, 22, UNI_CJK } /* block=cjkunifiedideographs */,
{ 1, 5658, 6374, 15, 8, UNI_IDENTIFIERTYPE__OBSOLETE } /* identifiertype=obsolete */,
{ 1, 887, 546, 5, 3, UNI_AGE__13 } /* age=13.0 */,
{ 1, 1801, 0, 8, 0, UNI_NV__10000 } /* nv=10000 */,
{ 0, 2324, 2068, 6, 12, UNI_INMENDEKIKAKUI } /* block=mendekikakui */,
{ 0, 1102, 658, 4, 5, UNI_DOGR } /* scx=dogra */,
{ 0, 5916, 353, 21, 2, UNI_LOE } /* logicalorderexception=y */,
{ 2, 1823, 5067, 6, 5, UNI_SC__MANI } /* script=mani */,
{ 2, 8601, 837, 10, 3, UNI_SUPPUAA } /* block=suppuaa */,
{ 2, 253, 353, 4, 4, UNI_CWCF } /* cwcf=yes */,
{ 16, 1823, 673, 7, 5, UNI_OSGE } /* script=osage */,
{ 0, 30, 4089, 1, 18, UNI_INDICSIYAQNUMBERS } /* isindicsiyaqnumbers */,
{ 1, 152, 0, 4, 0, UNI_OSGE } /* osge */,
{ 0, 641, 644, 3, 4, UNI_LB__H3 } /* hst=lvt */,
{ 2, 2287, 2199, 4, 3, UNI_IN__12 } /* in=12.0 */,
{ 3, 5156, 1829, 9, 3, UNI_WB__ML } /* wordbreak=ml */,
{ 2, 461, 3093, 2, 13, UNI_POSIXXDIGIT } /* isasciihexdigit */,
{ 4, 3391, 2155, 13, 9, UNI_NV__1_SLASH_32 } /* numericvalue=3.125e-02 */,
{ 0, 1102, 446, 4, 4, UNI_PHLI } /* scx=phli */,
{ 10, 2324, 4896, 6, 8, UNI_BAMUMSUP } /* block=bamumsup */,
{ 0, 309, 8142, 2, 32, UNI_IDEOGRAPHICSYMBOLS } /* inideographicsymbolsandpunctuation */,
{ 1, 1272, 6228, 4, 8, UNI_CJKSYMBOLS } /* iscjksymbols */,
{ 0, 461, 967, 2, 8, UNI_GUJR } /* isgujarati */,
{ 0, 3724, 919, 12, 3, UNI_JG__MALAYALAMSSA } /* jg=malayalamssa */,
{ 0, 461, 5769, 2, 4, UNI_EMOD } /* isemod */,
{ 4, 4502, 5848, 9, 9, UNI_LATINEXTA } /* blk=latinextendeda */,
{ 1, 2766, 1611, 3, 2, UNI_LOWERCASELETTER } /* gc=ll */,
{ 2, 7495, 582, 28, 2, UNI_CCC__122 } /* canonicalcombiningclass=ccc122 */,
{ 1, 4043, 934, 4, 6, -UNI_IDSB } /* idsb=false */,
{ 5, 6165, 840, 3, 7, UNI_SC__TGLG } /* sc=tagalog */,
{ 3, 461, 1610, 2, 3, UNI_ALL } /* isall */,
{ 0, 2842, 6142, 3, 21, UNI_EARLYDYNASTICCUNEIFORM } /* isearlydynasticcuneiform */,
{ 0, 461, 454, 2, 4, UNI_PRTI } /* isprti */,
{ 0, 2766, 3263, 3, 13, UNI_XPOSIXDIGIT } /* gc=decimalnumber */,
{ 0, 3817, 2091, 14, 8, UNI_NV__1_SLASH_8 } /* numericvalue=1.250e-01 */,
{ 3, 1424, 288, 8, 2, UNI_CCC__130 } /* ccc=ccc130 */,
{ 0, 309, 32, 2, 2, UNI_INVS } /* invs */,
{ 0, 499, 0, 4, 0, UNI_LYDI } /* lydi */,
{ 2, 5065, 3740, 13, 3, UNI_JG__MANICHAEANMEM } /* jg=manichaeanmem */,
{ 4, 597, 604, 3, 4, UNI_EA__F } /* dt=wide */,
{ 0, 6103, 0, 13, 0, UNI_MATHOPERATORS } /* mathoperators */,
{ 1, 2403, 4511, 8, 9, UNI_ETHIOPICEXTB } /* ethiopicextendedb */,
{ 0, 309, 1562, 2, 10, UNI_INNAGMUNDARI } /* innagmundari */,
{ 0, 32, 353, 2, 2, UNI_VS } /* vs=y */,
{ 3, 7274, 117, 9, 2, UNI_XPOSIXDIGIT } /* category=nd */,
{ 8, 7804, 599, 11, 2, -UNI_IDEO } /* ideographic=n */,
{ 1, 7084, 4659, 8, 9, UNI_ARABICEXTC } /* inarabicextendedc */,
{ 2, 1823, 1358, 7, 4, UNI_PALM } /* script=palm */,
{ 29636, 309, 3663, 2, 13, UNI_DEVANAGARIEXT } /* indevanagariext */,
{ 0, 3391, 0, 13, 0, UNI_nv_values_index } /* numericvalue= */,
{ 8, 461, 5876, 2, 4, UNI_SUND } /* issund */,
{ 2, 2718, 5497, 3, 18, UNI_BC__FSI } /* bc=firststrongisolate */,
{ 0, 7752, 636, 23, 3, UNI_JG__MANICHAEANNUN } /* joininggroup=manichaeannun */,
{ 3, 461, 537, 2, 6, UNI_TNSA } /* istangsa */,
{ 0, 6510, 0, 24, 0, UNI_HIGHPUSURROGATES } /* highprivateusesurrogates */,
{ 0, 1102, 1125, 4, 8, UNI_TFNG } /* scx=tifinagh */,
{ 2, 2220, 0, 4, 0, UNI_NV__6 } /* nv=6 */,
{ 0, 7480, 0, 14, 0, UNI_PUA } /* privateusearea */,
{ 0, 1823, 3538, 7, 7, UNI_SC__CPRT } /* script=cypriot */,
{ 2, 1530, 1505, 6, 4, UNI_KANAEXTA } /* iskanaexta */,
{ 0, 461, 2301, 2, 11, UNI_XIDC } /* isxidcontinue */,
{ 6, 1667, 3649, 4, 11, UNI_PHONETICEXT } /* blk=phoneticext */,
{ 6, 3803, 599, 14, 3, UNI_NFKCQC__N } /* nfkcquickcheck=no */,
{ 2, 7669, 3218, 20, 10, UNI_GCB__L } /* hangulsyllabletype=leadingjamo */,
{ 0, 461, 132, 2, 4, UNI_MTEI } /* ismtei */,
{ 2, 3490, 5848, 12, 9, UNI_CYRILLICEXTA } /* blk=cyrillicextendeda */,
{ 0, 6076, 5292, 8, 16, UNI_INPUNCTUATION } /* block=generalpunctuation */,
{ 4, 4424, 2780, 17, 6, UNI_COPT } /* scriptextensions=coptic */,
{ 0, 309, 2009, 2, 6, UNI_INSYRIAC } /* insyriac */,
{ 0, 461, 2301, 2, 4, UNI_XIDC } /* isxidc */,
{ 2, 1823, 1582, 7, 10, UNI_PHNX } /* script=phoenician */,
{ 0, 1102, 1107, 5, 3, UNI_TALU } /* scx=talu */,
{ 14, 5958, 0, 4, 0, UNI_SINH } /* sinh */,
{ 0, 3724, 699, 4, 3, UNI_JG__MEEM } /* jg=meem */,
{ 0, 309, 5876, 2, 12, UNI_SUNDANESESUP } /* insundanesesup */,
{ 8, 2324, 2335, 6, 13, UNI_BLOCKELEMENTS } /* block=blockelements */,
{ 0, 1994, 585, 7, 5, UNI_RADICAL } /* radical=true */,
{ 4, 3677, 4770, 15, 10, UNI_LATINEXTADDITIONAL } /* islatinextendedadditional */,
{ 0, 6165, 1592, 3, 10, UNI_SAUR } /* sc=saurashtra */,
{ 3, 253, 274, 4, 1, UNI_cwcf_values_index } /* cwcf= */,
{ 0, 6163, 4119, 5, 12, UNI_INSC__NUMBERJOINER } /* insc=numberjoiner */,
{ 0, 2018, 5089, 10, 3, UNI_JT__C } /* joiningtype=c */,
{ 0, 732, 5652, 4, 8, UNI_LB__ID } /* linebreak=id */,
{ 0, 2514, 129, 3, 3, UNI_MEDF } /* ismedf */,
{ 0, 406, 0, 3, 0, UNI_DIA } /* dia */,
{ 0, 3633, 1674, 7, 4, UNI_LATINEXTD } /* inlatinextd */,
{ 0, 1102, 4896, 4, 5, UNI_BAMU } /* scx=bamum */,
{ 1, 7198, 4457, 6, 15, UNI_SUTTONSIGNWRITING } /* blk=suttonsignwriting */,
{ 1, 4941, 4511, 10, 9, UNI_KANAEXTB } /* block=kanaextendedb */,
{ 0, 461, 32, 2, 2, UNI_VS } /* isvs */,
{ 0, 2324, 5876, 6, 19, UNI_SUNDANESESUP } /* block=sundanesesupplement */,
{ 2, 6165, 1262, 3, 7, UNI_SOYO } /* sc=soyombo */,
{ 0, 1396, 0, 4, 0, UNI_XIDS } /* xids */,
{ 0, 1823, 653, 7, 5, UNI_SC__BUHD } /* script=buhid */,
{ 2, 533, 54, 3, 2, UNI_SB__SC } /* sb=sc */,
{ 4, 4424, 3436, 17, 15, UNI_SARB } /* scriptextensions=oldsoutharabian */,
{ 2, 5799, 837, 6, 3, UNI_SUPPUAA } /* insuppuaa */,
{ 1, 4970, 352, 16, 2, UNI_ebase_values_index } /* emojimodifierbase= */,
{ 5, 1667, 2852, 4, 7, UNI_MAHJONG } /* blk=mahjong */,
{ 0, 2391, 4659, 10, 9, UNI_CYRILLICEXTC } /* incyrillicextendedc */,
{ 1, 2766, 625, 3, 2, UNI_PI } /* gc=pi */,
{ 0, 2930, 2919, 3, 11, UNI_JT__L } /* jt=leftjoining */,
{ 4, 309, 3349, 2, 15, UNI_INMEROITICCURSIVE } /* inmeroiticcursive */,
{ 0, 7084, 0, 26, 0, UNI_ARABICPFB } /* inarabicpresentationformsb */,
{ 0, 7011, 3526, 24, 12, UNI_CCC__0 } /* canonicalcombiningclass=notreordered */,
{ 1, 5939, 934, 5, 2, -UNI__PERL_NCHAR } /* nchar=f */,
{ 2, 1823, 909, 7, 4, UNI_BALI } /* script=bali */,
{ 0, 1200, 6557, 3, 19, UNI_CJKCOMPATIDEOGRAPHSSUP } /* cjkcompatideographssup */,
{ 2, 2494, 3639, 9, 9, UNI_GEORGIANEXT } /* isgeorgianextended */,
{ 0, 2324, 6900, 6, 14, UNI_BYZANTINEMUSIC } /* block=byzantinemusic */,
{ 1, 6816, 599, 25, 2, -UNI_CWKCF } /* changeswhennfkccasefolded=n */,
{ 0, 5065, 2015, 13, 3, UNI_JG__MANICHAEANWAW } /* jg=manichaeanwaw */,
{ 4, 5205, 1505, 11, 4, UNI_MYANMAREXTA } /* blk=myanmarexta */,
{ 0, 3677, 204, 9, 2, UNI_LATINEXTF } /* islatinextf */,
{ 0, 292, 295, 3, 2, UNI_NV__90 } /* nv=90 */,
{ 0, 4360, 2609, 10, 10, UNI_LB__WJ } /* linebreak=wordjoiner */,
{ 3, 5595, 585, 21, 2, UNI_CWT } /* changeswhentitlecased=t */,
{ 3, 7011, 344, 24, 3, UNI_CCC__BL } /* canonicalcombiningclass=218 */,
{ 0, 6165, 499, 3, 6, UNI_LYDI } /* sc=lydian */,
{ 0, 461, 7537, 2, 27, UNI_ALPHABETICPF } /* isalphabeticpresentationforms */,
{ 1, 4407, 353, 17, 4, UNI_RI } /* regionalindicator=yes */,
{ 1, 461, 6332, 2, 19, UNI_JAMOEXTB } /* ishanguljamoextendedb */,
{ 4, 309, 283, 2, 5, UNI_INNUSHU } /* innushu */,
{ 0, 5274, 8575, 9, 26, UNI_DIACRITICALSSUP } /* combiningdiacriticalmarkssupplement */,
{ 3, 2536, 1536, 3, 7, UNI_JG__THINYEH } /* jg=thinyeh */,
{ 3, 8276, 4639, 6, 12, UNI_MISCMATHSYMBOLSB } /* inmiscmathsymbolsb */,
{ 0, 1102, 67, 4, 4, UNI_CPRT } /* scx=cprt */,
{ 0, 4424, 1191, 17, 4, UNI_BENG } /* scriptextensions=beng */,
{ 1, 4424, 4951, 17, 4, UNI_EGYP } /* scriptextensions=egyp */,
{ 1, 15, 4806, 2, 3, UNI_AGE__6 } /* age=6 */,
{ 0, 1243, 1669, 4, 9, UNI_CJKEXTD } /* block=cjkextd */,
{ 0, 510, 395, 5, 2, UNI_NV__3_SLASH_16 } /* nv=3/16 */,
{ 1, 2732, 2705, 5, 13, UNI_ANCIENTSYMBOLS } /* blk=ancientsymbols */,
{ 0, 1667, 6576, 5, 21, UNI_INDICNUMBERFORMS } /* blk=commonindicnumberforms */,
{ 3, 6165, 4176, 3, 6, UNI_SC__HANG } /* sc=hangul */,
{ 4, 1212, 0, 9, 0, UNI_QAAI } /* inherited */,
{ 1, 3391, 342, 12, 3, UNI_NV__12 } /* numericvalue=12 */,
{ 0, 1414, 0, 10, 0, UNI_BOXDRAWING } /* boxdrawing */,
{ 1, 8246, 140, 24, 2, UNI_INPC__NA } /* indicpositionalcategory=na */,
{ 0, 2, 6576, 1, 21, UNI_INDICNUMBERFORMS } /* commonindicnumberforms */,
{ 1, 2503, 353, 11, 2, UNI_JOINC } /* joincontrol=y */,
{ 1, 7404, 0, 11, 0, UNI_BC__R } /* bidiclass=r */,
{ 8, 4424, 1098, 17, 4, UNI_NSHU } /* scriptextensions=nshu */,
{ 1, 1667, 3026, 4, 14, UNI_INPSALTERPAHLAVI } /* blk=psalterpahlavi */,
{ 15, 461, 1484, 2, 4, UNI_BUGI } /* isbugi */,
{ 8, 298, 934, 2, 2, -UNI_RI } /* ri=f */,
{ 1, 5065, 4741, 13, 5, UNI_JG__MANICHAEANALEPH } /* jg=manichaeanaleph */,
{ 4, 1331, 0, 9, 0, UNI_PERM } /* oldpermic */,
{ 3, 2766, 4150, 3, 5, UNI_P } /* gc=punct */,
{ 4, 6618, 6629, 5, 13, UNI_INPC__BOTTOMANDLEFT } /* inpc=bottomandleft */,
{ 5, 5216, 4770, 14, 10, UNI_LATINEXTADDITIONAL } /* block=latinextadditional */,
{ 5, 1102, 454, 4, 4, UNI_PRTI } /* scx=prti */,
{ 1, 271, 644, 2, 2, UNI_L } /* gc=l */,
{ 2, 2503, 599, 11, 3, -UNI_JOINC } /* joincontrol=no */,
{ 0, 1334, 0, 4, 0, UNI_PERM } /* perm */,
{ 2, 7752, 4235, 23, 4, UNI_JG__MANICHAEANBETH } /* joininggroup=manichaeanbeth */,
{ 1, 292, 3860, 2, 3, UNI_NV__70 } /* nv=70 */,
{ 1, 461, 4176, 2, 15, UNI_INHANGUL } /* ishangulsyllables */,
{ 3, 2324, 8142, 6, 32, UNI_IDEOGRAPHICSYMBOLS } /* block=ideographicsymbolsandpunctuation */,
{ 12, 6427, 3743, 13, 3, UNI_JG__TAW } /* joininggroup=taw */,
{ 0, 7198, 4150, 7, 11, UNI_SUPPUNCTUATION } /* blk=suppunctuation */,
{ 0, 461, 673, 2, 5, UNI_OSGE } /* isosage */,
{ 2, 3502, 0, 12, 0, UNI_INETHIOPIC } /* blk=ethiopic */,
{ 1, 1823, 802, 7, 4, UNI_SARB } /* script=sarb */,
{ 11, 3863, 1805, 14, 5, UNI_NV__800000 } /* numericvalue=800000 */,
{ 0, 1272, 3611, 5, 6, UNI_CJKCOMPAT } /* iscjkcompat */,
{ 0, 8601, 5909, 9, 7, UNI_SUPARROWSC } /* block=suparrowsc */,
{ 0, 4360, 7110, 10, 13, UNI_LB__CM } /* linebreak=combiningmark */,
{ 4, 339, 350, 4, 2, UNI_CCC__9 } /* ccc=vr */,
{ 1, 13, 0, 2, 0, UNI_LM } /* lm */,
{ 5, 8607, 0, 33, 0, UNI_SUPMATHOPERATORS } /* supplementalmathematicaloperators */,
{ 2, 2, 8214, 1, 24, UNI_DIACRITICALS } /* combiningdiacriticalmarks */,
{ 2, 4371, 933, 5, 7, -UNI_XPOSIXSPACE } /* wspace=false */,
{ 0, 339, 430, 4, 2, UNI_CCC__7 } /* ccc=nk */,
{ 0, 1424, 891, 7, 2, UNI_CCC__10 } /* ccc=ccc10 */,
{ 2, 30, 6486, 1, 24, UNI_ZNAMENNYMUSIC } /* isznamennymusicalnotation */,
{ 2, 6165, 63, 3, 4, UNI_SC__CPMN } /* sc=cpmn */,
{ 0, 7648, 7011, 21, 5, UNI_DT__NONCANON } /* decompositiontype=noncanon */,
{ 0, 6165, 1133, 3, 8, UNI_VITH } /* sc=vithkuqi */,
{ 1, 6165, 1358, 3, 9, UNI_PALM } /* sc=palmyrene */,
{ 2, 461, 7889, 2, 20, UNI_CJK } /* iscjkunifiedideographs */,
{ 1, 5460, 599, 19, 2, -UNI_TERM } /* terminalpunctuation=n */,
{ 0, 2324, 3908, 6, 16, UNI_TANGUTCOMPONENTS } /* block=tangutcomponents */,
{ 0, 461, 2441, 2, 4, UNI_NAND } /* isnand */,
{ 1, 7449, 3696, 18, 10, UNI_PHONETICEXTSUP } /* phoneticextensionssupplement */,
{ 0, 6062, 6193, 12, 5, UNI_ETHIOPICSUP } /* block=ethiopicsup */,
{ 2, 1102, 1191, 4, 4, UNI_BENG } /* scx=beng */,
{ 2, 5205, 0, 11, 0, UNI_INMYANMAR } /* blk=myanmar */,
{ 1, 461, 5448, 2, 3, UNI_PUA } /* ispua */,
{ 3, 309, 4819, 2, 8, UNI_DINGBATS } /* indingbats */,
{ 2, 461, 4896, 2, 4, UNI_BAMU } /* isbamu */,
{ 0, 339, 348, 4, 2, UNI_CCC__91 } /* ccc=91 */,
{ 0, 2766, 4002, 3, 14, UNI_SK } /* gc=modifiersymbol */,
{ 0, 6165, 4951, 3, 19, UNI_EGYP } /* sc=egyptianhieroglyphs */,
{ 0, 7537, 341, 9, 2, UNI_alpha_values_index } /* alphabetic= */,
{ 4, 7669, 2382, 19, 9, UNI_GCB__V } /* hangulsyllabletype=voweljamo */,
{ 1, 3514, 4511, 12, 9, UNI_ARABICEXTB } /* block=arabicextendedb */,
{ 4, 339, 345, 4, 2, UNI_CCC__18 } /* ccc=18 */,
{ 0, 5616, 585, 21, 5, UNI_CWU } /* changeswhenuppercased=true */,
{ 0, 8601, 8386, 9, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* block=supsymbolsandpictographs */,
{ 8, 7011, 3152, 24, 11, UNI_CCC__8 } /* canonicalcombiningclass=kanavoicing */,
{ 0, 461, 2811, 2, 12, UNI_KHMERSYMBOLS } /* iskhmersymbols */,
{ 0, 1823, 1322, 7, 9, UNI_ITAL } /* script=olditalic */,
{ 0, 2280, 6262, 10, 3, UNI_IN__2_DOT_1 } /* presentin=2.1 */,
{ 1, 6163, 6923, 14, 11, UNI_INSC__CONSONANTPLACEHOLDER } /* insc=consonantplaceholder */,
{ 0, 3014, 290, 12, 2, UNI_IN__14 } /* presentin=v140 */,
{ 1, 1823, 1015, 7, 4, UNI_SC__TELU } /* script=telu */,
{ 0, 2718, 4472, 3, 15, UNI_BC__BN } /* bc=boundaryneutral */,
{ 2, 1102, 3505, 3, 9, UNI_ETHI } /* scx=ethiopic */,
{ 0, 4360, 5090, 9, 17, UNI_LB__CP } /* linebreak=closeparenthesis */,
{ 1, 1272, 0, 5, 0, UNI_CJK } /* iscjk */,
{ 6, 1011, 0, 2, 0, UNI_CI } /* ci */,
{ 8, 517, 761, 4, 2, UNI_NV__7_SLASH_2 } /* nv=7/2 */,
{ 1, 309, 581, 2, 2, UNI_IN__2 } /* in=2 */,
{ 0, 461, 20, 2, 3, UNI_XPOSIXXDIGIT } /* ishex */,
{ 0, 2811, 0, 5, 0, UNI_KHMR } /* khmer */,
{ 3, 6165, 1562, 3, 4, UNI_NAGM } /* sc=nagm */,
{ 1, 1102, 232, 4, 2, UNI_YI } /* scx=yi */,
{ 2, 1102, 1358, 4, 4, UNI_PALM } /* scx=palm */,
{ 0, 2732, 2312, 5, 12, UNI_AEGEANNUMBERS } /* blk=aegeannumbers */,
{ 3, 461, 1285, 2, 9, UNI_SIND } /* iskhudawadi */,
{ 1, 1396, 585, 8, 5, UNI_XIDS } /* xidstart=true */,
{ 25, 3848, 1805, 14, 5, UNI_NV__700000 } /* numericvalue=700000 */,
{ 0, 875, 934, 5, 2, -UNI_UIDEO } /* uideo=f */,
{ 1, 2503, 0, 5, 0, UNI_JOINC } /* joinc */,
{ 0, 6450, 1612, 14, 2, UNI_LB__LF } /* sentencebreak=lf */,
{ 0, 1391, 3451, 3, 12, UNI_WB__EX } /* wb=extendnumlet */,
{ 0, 2732, 1723, 10, 3, UNI_ARABICPFB } /* blk=arabicpfb */,
{ 3, 634, 0, 7, 0, UNI_HANO } /* hanunoo */,
{ 0, 2004, 3100, 5, 6, UNI_POSIXXDIGIT } /* posixxdigit */,
{ 2, 6841, 598, 24, 4, -UNI_DI } /* defaultignorablecodepoint=no */,
{ 0, 887, 2080, 5, 3, UNI_AGE__11 } /* age=11.0 */,
{ 1, 7591, 2043, 3, 2, UNI_GCB__V } /* lb=jv */,
{ 0, 6090, 2643, 7, 12, UNI_MISCTECHNICAL } /* block=misctechnical */,
{ 5, 1823, 2780, 7, 6, UNI_SC__COPT } /* script=coptic */,
{ 1, 1726, 0, 6, 0, UNI_ARAB } /* isarab */,
{ 2, 4424, 6642, 17, 6, UNI_BRAH } /* scriptextensions=brahmi */,
{ 0, 30, 8141, 1, 33, UNI_IDEOGRAPHICSYMBOLS } /* isideographicsymbolsandpunctuation */,
{ 8, 461, 200, 2, 4, UNI_TAVT } /* istavt */,
{ 10, 461, 5172, 2, 2, UNI_CASEDLETTER } /* isl_ */,
{ 3, 3984, 599, 17, 3, -UNI_EPRES } /* emojipresentation=no */,
{ 6, 7011, 8101, 24, 10, UNI_CCC__BR } /* canonicalcombiningclass=belowright */,
{ 4, 5065, 4235, 13, 4, UNI_JG__MANICHAEANBETH } /* jg=manichaeanbeth */,
{ 5, 895, 392, 5, 2, UNI_AGE__4_DOT_1 } /* age=v41 */,
{ 3, 461, 1582, 2, 10, UNI_PHNX } /* isphoenician */,
{ 0, 6062, 5820, 7, 18, UNI_ENCLOSEDALPHANUMSUP } /* block=enclosedalphanumsup */,
{ 0, 3633, 4698, 6, 12, UNI_LATIN1 } /* inlatin1supplement */,
{ 1, 430, 0, 4, 0, UNI_NKO } /* nkoo */,
{ 0, 461, 152, 2, 4, UNI_OSGE } /* isosge */,
{ 0, 461, 4150, 2, 11, UNI_P } /* ispunctuation */,
{ 4, 552, 2656, 4, 3, UNI_AGE__5 } /* age=5.0 */,
{ 14, 1823, 5682, 7, 5, UNI_SC__GREK } /* script=greek */,
{ 1, 3040, 934, 13, 6, -UNI_QMARK } /* quotationmark=false */,
{ 0, 2302, 934, 3, 2, -UNI_IDC } /* idc=f */,
{ 2, 1396, 934, 4, 6, -UNI_XIDS } /* xids=false */,
{ 7, 590, 6438, 2, 2, UNI_dep_values_index } /* dep= */,
{ 1, 7591, 6, 3, 2, UNI_LB__CR } /* lb=cr */,
{ 2, 5, 0, 3, 0, UNI_OCR } /* ocr */,
{ 1, 461, 148, 2, 4, UNI_ORYA } /* isorya */,
{ 1, 6427, 6714, 13, 21, UNI_JG__HANIFIROHINGYAKINNAYA } /* joininggroup=hanifirohingyakinnaya */,
{ 3, 3021, 2117, 4, 2, UNI_IN__6_DOT_2 } /* in=v62 */,
{ 1, 461, 1117, 2, 8, UNI_TAGB } /* istagbanwa */,
{ 0, 4391, 0, 14, 0, UNI_NV__3 } /* numericvalue=3 */,
{ 4, 1059, 1793, 4, 3, UNI_nfkdqc_values_index } /* nfkdqc= */,
{ 1, 1385, 0, 4, 0, UNI_THAA } /* thaa */,
{ 1, 1667, 1992, 4, 10, UNI_YIRADICALS } /* blk=yiradicals */,
{ 0, 3677, 2619, 3, 12, UNI_LOWSURROGATES } /* islowsurrogates */,
{ 1, 1102, 132, 4, 4, UNI_MTEI } /* scx=mtei */,
{ 0, 1790, 353, 5, 2, UNI_NFCQC__Y } /* nfcqc=y */,
{ 5, 4731, 8386, 12, 21, UNI_SUPSYMBOLSANDPICTOGRAPHS } /* supplementalsymbolsandpictographs */,
{ 6, 3832, 1314, 14, 3, UNI_NV__5000 } /* numericvalue=5000 */,
{ 3, 302, 934, 5, 2, -UNI__PERL_PATWS } /* patws=f */,
{ 1, 1065, 0, 6, 0, UNI_NV__1_SLASH_3 } /* nv=1/3 */,
{ 2, 461, 608, 2, 7, UNI_ELBA } /* iselbasan */,
{ 0, 2766, 313, 3, 4, UNI_M } /* gc=mark */,
{ 1, 461, 339, 2, 2, UNI_XPOSIXCNTRL } /* iscc */,
{ 1, 406, 353, 2, 4, UNI_DI } /* di=yes */,
{ 1, 3021, 2093, 4, 2, UNI_IN__5 } /* in=v50 */,
{ 3, 8505, 590, 3, 2, UNI_XPOSIXDIGIT } /* nt=de */,
{ 0, 461, 4016, 2, 14, UNI_ZS } /* isspaceseparator */,
{ 0, 2766, 2424, 3, 2, UNI__PERL_SURROGATE } /* gc=cs */,
{ 1, 2259, 216, 4, 2, UNI_TOTO } /* istoto */,
{ 1, 461, 6586, 2, 11, UNI_NUMBERFORMS } /* isnumberforms */,