-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathentities.ml
2239 lines (2237 loc) · 59 KB
/
entities.ml
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
(* Copyright © 2014 W3C® (MIT, ERCIM, Keio, Beihang). This software or document
includes material copied from or derived from W3C Recommendation HTML5
[https://www.w3.org/TR/2014/REC-html5-20141028/]. *)
(* Generated automatically from entities.json. *)
let entities : (string * [ `One of int | `Two of int * int ]) array = [|
"Aacute", `One 0x000C1;
"Aacut", `One 0x000C1;
"aacute", `One 0x000E1;
"aacut", `One 0x000E1;
"Abreve", `One 0x00102;
"abreve", `One 0x00103;
"ac", `One 0x0223E;
"acd", `One 0x0223F;
"acE", `Two (0x0223E, 0x00333);
"Acirc", `One 0x000C2;
"Acir", `One 0x000C2;
"acirc", `One 0x000E2;
"acir", `One 0x000E2;
"acute", `One 0x000B4;
"acut", `One 0x000B4;
"Acy", `One 0x00410;
"acy", `One 0x00430;
"AElig", `One 0x000C6;
"AEli", `One 0x000C6;
"aelig", `One 0x000E6;
"aeli", `One 0x000E6;
"af", `One 0x02061;
"Afr", `One 0x1D504;
"afr", `One 0x1D51E;
"Agrave", `One 0x000C0;
"Agrav", `One 0x000C0;
"agrave", `One 0x000E0;
"agrav", `One 0x000E0;
"alefsym", `One 0x02135;
"aleph", `One 0x02135;
"Alpha", `One 0x00391;
"alpha", `One 0x003B1;
"Amacr", `One 0x00100;
"amacr", `One 0x00101;
"amalg", `One 0x02A3F;
"AMP", `One 0x00026;
"AM", `One 0x00026;
"amp", `One 0x00026;
"am", `One 0x00026;
"And", `One 0x02A53;
"and", `One 0x02227;
"andand", `One 0x02A55;
"andd", `One 0x02A5C;
"andslope", `One 0x02A58;
"andv", `One 0x02A5A;
"ang", `One 0x02220;
"ange", `One 0x029A4;
"angle", `One 0x02220;
"angmsd", `One 0x02221;
"angmsdaa", `One 0x029A8;
"angmsdab", `One 0x029A9;
"angmsdac", `One 0x029AA;
"angmsdad", `One 0x029AB;
"angmsdae", `One 0x029AC;
"angmsdaf", `One 0x029AD;
"angmsdag", `One 0x029AE;
"angmsdah", `One 0x029AF;
"angrt", `One 0x0221F;
"angrtvb", `One 0x022BE;
"angrtvbd", `One 0x0299D;
"angsph", `One 0x02222;
"angst", `One 0x000C5;
"angzarr", `One 0x0237C;
"Aogon", `One 0x00104;
"aogon", `One 0x00105;
"Aopf", `One 0x1D538;
"aopf", `One 0x1D552;
"ap", `One 0x02248;
"apacir", `One 0x02A6F;
"apE", `One 0x02A70;
"ape", `One 0x0224A;
"apid", `One 0x0224B;
"apos", `One 0x00027;
"ApplyFunction", `One 0x02061;
"approx", `One 0x02248;
"approxeq", `One 0x0224A;
"Aring", `One 0x000C5;
"Arin", `One 0x000C5;
"aring", `One 0x000E5;
"arin", `One 0x000E5;
"Ascr", `One 0x1D49C;
"ascr", `One 0x1D4B6;
"Assign", `One 0x02254;
"ast", `One 0x0002A;
"asymp", `One 0x02248;
"asympeq", `One 0x0224D;
"Atilde", `One 0x000C3;
"Atild", `One 0x000C3;
"atilde", `One 0x000E3;
"atild", `One 0x000E3;
"Auml", `One 0x000C4;
"Aum", `One 0x000C4;
"auml", `One 0x000E4;
"aum", `One 0x000E4;
"awconint", `One 0x02233;
"awint", `One 0x02A11;
"backcong", `One 0x0224C;
"backepsilon", `One 0x003F6;
"backprime", `One 0x02035;
"backsim", `One 0x0223D;
"backsimeq", `One 0x022CD;
"Backslash", `One 0x02216;
"Barv", `One 0x02AE7;
"barvee", `One 0x022BD;
"Barwed", `One 0x02306;
"barwed", `One 0x02305;
"barwedge", `One 0x02305;
"bbrk", `One 0x023B5;
"bbrktbrk", `One 0x023B6;
"bcong", `One 0x0224C;
"Bcy", `One 0x00411;
"bcy", `One 0x00431;
"bdquo", `One 0x0201E;
"becaus", `One 0x02235;
"Because", `One 0x02235;
"because", `One 0x02235;
"bemptyv", `One 0x029B0;
"bepsi", `One 0x003F6;
"bernou", `One 0x0212C;
"Bernoullis", `One 0x0212C;
"Beta", `One 0x00392;
"beta", `One 0x003B2;
"beth", `One 0x02136;
"between", `One 0x0226C;
"Bfr", `One 0x1D505;
"bfr", `One 0x1D51F;
"bigcap", `One 0x022C2;
"bigcirc", `One 0x025EF;
"bigcup", `One 0x022C3;
"bigodot", `One 0x02A00;
"bigoplus", `One 0x02A01;
"bigotimes", `One 0x02A02;
"bigsqcup", `One 0x02A06;
"bigstar", `One 0x02605;
"bigtriangledown", `One 0x025BD;
"bigtriangleup", `One 0x025B3;
"biguplus", `One 0x02A04;
"bigvee", `One 0x022C1;
"bigwedge", `One 0x022C0;
"bkarow", `One 0x0290D;
"blacklozenge", `One 0x029EB;
"blacksquare", `One 0x025AA;
"blacktriangle", `One 0x025B4;
"blacktriangledown", `One 0x025BE;
"blacktriangleleft", `One 0x025C2;
"blacktriangleright", `One 0x025B8;
"blank", `One 0x02423;
"blk12", `One 0x02592;
"blk14", `One 0x02591;
"blk34", `One 0x02593;
"block", `One 0x02588;
"bne", `Two (0x0003D, 0x020E5);
"bnequiv", `Two (0x02261, 0x020E5);
"bNot", `One 0x02AED;
"bnot", `One 0x02310;
"Bopf", `One 0x1D539;
"bopf", `One 0x1D553;
"bot", `One 0x022A5;
"bottom", `One 0x022A5;
"bowtie", `One 0x022C8;
"boxbox", `One 0x029C9;
"boxDL", `One 0x02557;
"boxDl", `One 0x02556;
"boxdL", `One 0x02555;
"boxdl", `One 0x02510;
"boxDR", `One 0x02554;
"boxDr", `One 0x02553;
"boxdR", `One 0x02552;
"boxdr", `One 0x0250C;
"boxH", `One 0x02550;
"boxh", `One 0x02500;
"boxHD", `One 0x02566;
"boxHd", `One 0x02564;
"boxhD", `One 0x02565;
"boxhd", `One 0x0252C;
"boxHU", `One 0x02569;
"boxHu", `One 0x02567;
"boxhU", `One 0x02568;
"boxhu", `One 0x02534;
"boxminus", `One 0x0229F;
"boxplus", `One 0x0229E;
"boxtimes", `One 0x022A0;
"boxUL", `One 0x0255D;
"boxUl", `One 0x0255C;
"boxuL", `One 0x0255B;
"boxul", `One 0x02518;
"boxUR", `One 0x0255A;
"boxUr", `One 0x02559;
"boxuR", `One 0x02558;
"boxur", `One 0x02514;
"boxV", `One 0x02551;
"boxv", `One 0x02502;
"boxVH", `One 0x0256C;
"boxVh", `One 0x0256B;
"boxvH", `One 0x0256A;
"boxvh", `One 0x0253C;
"boxVL", `One 0x02563;
"boxVl", `One 0x02562;
"boxvL", `One 0x02561;
"boxvl", `One 0x02524;
"boxVR", `One 0x02560;
"boxVr", `One 0x0255F;
"boxvR", `One 0x0255E;
"boxvr", `One 0x0251C;
"bprime", `One 0x02035;
"Breve", `One 0x002D8;
"breve", `One 0x002D8;
"brvbar", `One 0x000A6;
"brvba", `One 0x000A6;
"Bscr", `One 0x0212C;
"bscr", `One 0x1D4B7;
"bsemi", `One 0x0204F;
"bsim", `One 0x0223D;
"bsime", `One 0x022CD;
"bsol", `One 0x0005C;
"bsolb", `One 0x029C5;
"bsolhsub", `One 0x027C8;
"bull", `One 0x02022;
"bullet", `One 0x02022;
"bump", `One 0x0224E;
"bumpE", `One 0x02AAE;
"bumpe", `One 0x0224F;
"Bumpeq", `One 0x0224E;
"bumpeq", `One 0x0224F;
"Cacute", `One 0x00106;
"cacute", `One 0x00107;
"Cap", `One 0x022D2;
"cap", `One 0x02229;
"capand", `One 0x02A44;
"capbrcup", `One 0x02A49;
"capcap", `One 0x02A4B;
"capcup", `One 0x02A47;
"capdot", `One 0x02A40;
"CapitalDifferentialD", `One 0x02145;
"caps", `Two (0x02229, 0x0FE00);
"caret", `One 0x02041;
"caron", `One 0x002C7;
"Cayleys", `One 0x0212D;
"ccaps", `One 0x02A4D;
"Ccaron", `One 0x0010C;
"ccaron", `One 0x0010D;
"Ccedil", `One 0x000C7;
"Ccedi", `One 0x000C7;
"ccedil", `One 0x000E7;
"ccedi", `One 0x000E7;
"Ccirc", `One 0x00108;
"ccirc", `One 0x00109;
"Cconint", `One 0x02230;
"ccups", `One 0x02A4C;
"ccupssm", `One 0x02A50;
"Cdot", `One 0x0010A;
"cdot", `One 0x0010B;
"cedil", `One 0x000B8;
"cedi", `One 0x000B8;
"Cedilla", `One 0x000B8;
"cemptyv", `One 0x029B2;
"cent", `One 0x000A2;
"cen", `One 0x000A2;
"CenterDot", `One 0x000B7;
"centerdot", `One 0x000B7;
"Cfr", `One 0x0212D;
"cfr", `One 0x1D520;
"CHcy", `One 0x00427;
"chcy", `One 0x00447;
"check", `One 0x02713;
"checkmark", `One 0x02713;
"Chi", `One 0x003A7;
"chi", `One 0x003C7;
"cir", `One 0x025CB;
"circ", `One 0x002C6;
"circeq", `One 0x02257;
"circlearrowleft", `One 0x021BA;
"circlearrowright", `One 0x021BB;
"circledast", `One 0x0229B;
"circledcirc", `One 0x0229A;
"circleddash", `One 0x0229D;
"CircleDot", `One 0x02299;
"circledR", `One 0x000AE;
"circledS", `One 0x024C8;
"CircleMinus", `One 0x02296;
"CirclePlus", `One 0x02295;
"CircleTimes", `One 0x02297;
"cirE", `One 0x029C3;
"cire", `One 0x02257;
"cirfnint", `One 0x02A10;
"cirmid", `One 0x02AEF;
"cirscir", `One 0x029C2;
"ClockwiseContourIntegral", `One 0x02232;
"CloseCurlyDoubleQuote", `One 0x0201D;
"CloseCurlyQuote", `One 0x02019;
"clubs", `One 0x02663;
"clubsuit", `One 0x02663;
"Colon", `One 0x02237;
"colon", `One 0x0003A;
"Colone", `One 0x02A74;
"colone", `One 0x02254;
"coloneq", `One 0x02254;
"comma", `One 0x0002C;
"commat", `One 0x00040;
"comp", `One 0x02201;
"compfn", `One 0x02218;
"complement", `One 0x02201;
"complexes", `One 0x02102;
"cong", `One 0x02245;
"congdot", `One 0x02A6D;
"Congruent", `One 0x02261;
"Conint", `One 0x0222F;
"conint", `One 0x0222E;
"ContourIntegral", `One 0x0222E;
"Copf", `One 0x02102;
"copf", `One 0x1D554;
"coprod", `One 0x02210;
"Coproduct", `One 0x02210;
"COPY", `One 0x000A9;
"COP", `One 0x000A9;
"copy", `One 0x000A9;
"cop", `One 0x000A9;
"copysr", `One 0x02117;
"CounterClockwiseContourIntegral", `One 0x02233;
"crarr", `One 0x021B5;
"Cross", `One 0x02A2F;
"cross", `One 0x02717;
"Cscr", `One 0x1D49E;
"cscr", `One 0x1D4B8;
"csub", `One 0x02ACF;
"csube", `One 0x02AD1;
"csup", `One 0x02AD0;
"csupe", `One 0x02AD2;
"ctdot", `One 0x022EF;
"cudarrl", `One 0x02938;
"cudarrr", `One 0x02935;
"cuepr", `One 0x022DE;
"cuesc", `One 0x022DF;
"cularr", `One 0x021B6;
"cularrp", `One 0x0293D;
"Cup", `One 0x022D3;
"cup", `One 0x0222A;
"cupbrcap", `One 0x02A48;
"CupCap", `One 0x0224D;
"cupcap", `One 0x02A46;
"cupcup", `One 0x02A4A;
"cupdot", `One 0x0228D;
"cupor", `One 0x02A45;
"cups", `Two (0x0222A, 0x0FE00);
"curarr", `One 0x021B7;
"curarrm", `One 0x0293C;
"curlyeqprec", `One 0x022DE;
"curlyeqsucc", `One 0x022DF;
"curlyvee", `One 0x022CE;
"curlywedge", `One 0x022CF;
"curren", `One 0x000A4;
"curre", `One 0x000A4;
"curvearrowleft", `One 0x021B6;
"curvearrowright", `One 0x021B7;
"cuvee", `One 0x022CE;
"cuwed", `One 0x022CF;
"cwconint", `One 0x02232;
"cwint", `One 0x02231;
"cylcty", `One 0x0232D;
"Dagger", `One 0x02021;
"dagger", `One 0x02020;
"daleth", `One 0x02138;
"Darr", `One 0x021A1;
"dArr", `One 0x021D3;
"darr", `One 0x02193;
"dash", `One 0x02010;
"Dashv", `One 0x02AE4;
"dashv", `One 0x022A3;
"dbkarow", `One 0x0290F;
"dblac", `One 0x002DD;
"Dcaron", `One 0x0010E;
"dcaron", `One 0x0010F;
"Dcy", `One 0x00414;
"dcy", `One 0x00434;
"DD", `One 0x02145;
"dd", `One 0x02146;
"ddagger", `One 0x02021;
"ddarr", `One 0x021CA;
"DDotrahd", `One 0x02911;
"ddotseq", `One 0x02A77;
"deg", `One 0x000B0;
"de", `One 0x000B0;
"Del", `One 0x02207;
"Delta", `One 0x00394;
"delta", `One 0x003B4;
"demptyv", `One 0x029B1;
"dfisht", `One 0x0297F;
"Dfr", `One 0x1D507;
"dfr", `One 0x1D521;
"dHar", `One 0x02965;
"dharl", `One 0x021C3;
"dharr", `One 0x021C2;
"DiacriticalAcute", `One 0x000B4;
"DiacriticalDot", `One 0x002D9;
"DiacriticalDoubleAcute", `One 0x002DD;
"DiacriticalGrave", `One 0x00060;
"DiacriticalTilde", `One 0x002DC;
"diam", `One 0x022C4;
"Diamond", `One 0x022C4;
"diamond", `One 0x022C4;
"diamondsuit", `One 0x02666;
"diams", `One 0x02666;
"die", `One 0x000A8;
"DifferentialD", `One 0x02146;
"digamma", `One 0x003DD;
"disin", `One 0x022F2;
"div", `One 0x000F7;
"divide", `One 0x000F7;
"divid", `One 0x000F7;
"divideontimes", `One 0x022C7;
"divonx", `One 0x022C7;
"DJcy", `One 0x00402;
"djcy", `One 0x00452;
"dlcorn", `One 0x0231E;
"dlcrop", `One 0x0230D;
"dollar", `One 0x00024;
"Dopf", `One 0x1D53B;
"dopf", `One 0x1D555;
"Dot", `One 0x000A8;
"dot", `One 0x002D9;
"DotDot", `One 0x020DC;
"doteq", `One 0x02250;
"doteqdot", `One 0x02251;
"DotEqual", `One 0x02250;
"dotminus", `One 0x02238;
"dotplus", `One 0x02214;
"dotsquare", `One 0x022A1;
"doublebarwedge", `One 0x02306;
"DoubleContourIntegral", `One 0x0222F;
"DoubleDot", `One 0x000A8;
"DoubleDownArrow", `One 0x021D3;
"DoubleLeftArrow", `One 0x021D0;
"DoubleLeftRightArrow", `One 0x021D4;
"DoubleLeftTee", `One 0x02AE4;
"DoubleLongLeftArrow", `One 0x027F8;
"DoubleLongLeftRightArrow", `One 0x027FA;
"DoubleLongRightArrow", `One 0x027F9;
"DoubleRightArrow", `One 0x021D2;
"DoubleRightTee", `One 0x022A8;
"DoubleUpArrow", `One 0x021D1;
"DoubleUpDownArrow", `One 0x021D5;
"DoubleVerticalBar", `One 0x02225;
"DownArrow", `One 0x02193;
"Downarrow", `One 0x021D3;
"downarrow", `One 0x02193;
"DownArrowBar", `One 0x02913;
"DownArrowUpArrow", `One 0x021F5;
"DownBreve", `One 0x00311;
"downdownarrows", `One 0x021CA;
"downharpoonleft", `One 0x021C3;
"downharpoonright", `One 0x021C2;
"DownLeftRightVector", `One 0x02950;
"DownLeftTeeVector", `One 0x0295E;
"DownLeftVector", `One 0x021BD;
"DownLeftVectorBar", `One 0x02956;
"DownRightTeeVector", `One 0x0295F;
"DownRightVector", `One 0x021C1;
"DownRightVectorBar", `One 0x02957;
"DownTee", `One 0x022A4;
"DownTeeArrow", `One 0x021A7;
"drbkarow", `One 0x02910;
"drcorn", `One 0x0231F;
"drcrop", `One 0x0230C;
"Dscr", `One 0x1D49F;
"dscr", `One 0x1D4B9;
"DScy", `One 0x00405;
"dscy", `One 0x00455;
"dsol", `One 0x029F6;
"Dstrok", `One 0x00110;
"dstrok", `One 0x00111;
"dtdot", `One 0x022F1;
"dtri", `One 0x025BF;
"dtrif", `One 0x025BE;
"duarr", `One 0x021F5;
"duhar", `One 0x0296F;
"dwangle", `One 0x029A6;
"DZcy", `One 0x0040F;
"dzcy", `One 0x0045F;
"dzigrarr", `One 0x027FF;
"Eacute", `One 0x000C9;
"Eacut", `One 0x000C9;
"eacute", `One 0x000E9;
"eacut", `One 0x000E9;
"easter", `One 0x02A6E;
"Ecaron", `One 0x0011A;
"ecaron", `One 0x0011B;
"ecir", `One 0x02256;
"Ecirc", `One 0x000CA;
"Ecir", `One 0x000CA;
"ecirc", `One 0x000EA;
"ecir", `One 0x000EA;
"ecolon", `One 0x02255;
"Ecy", `One 0x0042D;
"ecy", `One 0x0044D;
"eDDot", `One 0x02A77;
"Edot", `One 0x00116;
"eDot", `One 0x02251;
"edot", `One 0x00117;
"ee", `One 0x02147;
"efDot", `One 0x02252;
"Efr", `One 0x1D508;
"efr", `One 0x1D522;
"eg", `One 0x02A9A;
"Egrave", `One 0x000C8;
"Egrav", `One 0x000C8;
"egrave", `One 0x000E8;
"egrav", `One 0x000E8;
"egs", `One 0x02A96;
"egsdot", `One 0x02A98;
"el", `One 0x02A99;
"Element", `One 0x02208;
"elinters", `One 0x023E7;
"ell", `One 0x02113;
"els", `One 0x02A95;
"elsdot", `One 0x02A97;
"Emacr", `One 0x00112;
"emacr", `One 0x00113;
"empty", `One 0x02205;
"emptyset", `One 0x02205;
"EmptySmallSquare", `One 0x025FB;
"emptyv", `One 0x02205;
"EmptyVerySmallSquare", `One 0x025AB;
"emsp", `One 0x02003;
"emsp13", `One 0x02004;
"emsp14", `One 0x02005;
"ENG", `One 0x0014A;
"eng", `One 0x0014B;
"ensp", `One 0x02002;
"Eogon", `One 0x00118;
"eogon", `One 0x00119;
"Eopf", `One 0x1D53C;
"eopf", `One 0x1D556;
"epar", `One 0x022D5;
"eparsl", `One 0x029E3;
"eplus", `One 0x02A71;
"epsi", `One 0x003B5;
"Epsilon", `One 0x00395;
"epsilon", `One 0x003B5;
"epsiv", `One 0x003F5;
"eqcirc", `One 0x02256;
"eqcolon", `One 0x02255;
"eqsim", `One 0x02242;
"eqslantgtr", `One 0x02A96;
"eqslantless", `One 0x02A95;
"Equal", `One 0x02A75;
"equals", `One 0x0003D;
"EqualTilde", `One 0x02242;
"equest", `One 0x0225F;
"Equilibrium", `One 0x021CC;
"equiv", `One 0x02261;
"equivDD", `One 0x02A78;
"eqvparsl", `One 0x029E5;
"erarr", `One 0x02971;
"erDot", `One 0x02253;
"Escr", `One 0x02130;
"escr", `One 0x0212F;
"esdot", `One 0x02250;
"Esim", `One 0x02A73;
"esim", `One 0x02242;
"Eta", `One 0x00397;
"eta", `One 0x003B7;
"ETH", `One 0x000D0;
"ET", `One 0x000D0;
"eth", `One 0x000F0;
"et", `One 0x000F0;
"Euml", `One 0x000CB;
"Eum", `One 0x000CB;
"euml", `One 0x000EB;
"eum", `One 0x000EB;
"euro", `One 0x020AC;
"excl", `One 0x00021;
"exist", `One 0x02203;
"Exists", `One 0x02203;
"expectation", `One 0x02130;
"ExponentialE", `One 0x02147;
"exponentiale", `One 0x02147;
"fallingdotseq", `One 0x02252;
"Fcy", `One 0x00424;
"fcy", `One 0x00444;
"female", `One 0x02640;
"ffilig", `One 0x0FB03;
"fflig", `One 0x0FB00;
"ffllig", `One 0x0FB04;
"Ffr", `One 0x1D509;
"ffr", `One 0x1D523;
"filig", `One 0x0FB01;
"FilledSmallSquare", `One 0x025FC;
"FilledVerySmallSquare", `One 0x025AA;
"fjlig", `Two (0x00066, 0x0006A);
"flat", `One 0x0266D;
"fllig", `One 0x0FB02;
"fltns", `One 0x025B1;
"fnof", `One 0x00192;
"Fopf", `One 0x1D53D;
"fopf", `One 0x1D557;
"ForAll", `One 0x02200;
"forall", `One 0x02200;
"fork", `One 0x022D4;
"forkv", `One 0x02AD9;
"Fouriertrf", `One 0x02131;
"fpartint", `One 0x02A0D;
"frac12", `One 0x000BD;
"frac1", `One 0x000BD;
"frac13", `One 0x02153;
"frac14", `One 0x000BC;
"frac1", `One 0x000BC;
"frac15", `One 0x02155;
"frac16", `One 0x02159;
"frac18", `One 0x0215B;
"frac23", `One 0x02154;
"frac25", `One 0x02156;
"frac34", `One 0x000BE;
"frac3", `One 0x000BE;
"frac35", `One 0x02157;
"frac38", `One 0x0215C;
"frac45", `One 0x02158;
"frac56", `One 0x0215A;
"frac58", `One 0x0215D;
"frac78", `One 0x0215E;
"frasl", `One 0x02044;
"frown", `One 0x02322;
"Fscr", `One 0x02131;
"fscr", `One 0x1D4BB;
"gacute", `One 0x001F5;
"Gamma", `One 0x00393;
"gamma", `One 0x003B3;
"Gammad", `One 0x003DC;
"gammad", `One 0x003DD;
"gap", `One 0x02A86;
"Gbreve", `One 0x0011E;
"gbreve", `One 0x0011F;
"Gcedil", `One 0x00122;
"Gcirc", `One 0x0011C;
"gcirc", `One 0x0011D;
"Gcy", `One 0x00413;
"gcy", `One 0x00433;
"Gdot", `One 0x00120;
"gdot", `One 0x00121;
"gE", `One 0x02267;
"ge", `One 0x02265;
"gEl", `One 0x02A8C;
"gel", `One 0x022DB;
"geq", `One 0x02265;
"geqq", `One 0x02267;
"geqslant", `One 0x02A7E;
"ges", `One 0x02A7E;
"gescc", `One 0x02AA9;
"gesdot", `One 0x02A80;
"gesdoto", `One 0x02A82;
"gesdotol", `One 0x02A84;
"gesl", `Two (0x022DB, 0x0FE00);
"gesles", `One 0x02A94;
"Gfr", `One 0x1D50A;
"gfr", `One 0x1D524;
"Gg", `One 0x022D9;
"gg", `One 0x0226B;
"ggg", `One 0x022D9;
"gimel", `One 0x02137;
"GJcy", `One 0x00403;
"gjcy", `One 0x00453;
"gl", `One 0x02277;
"gla", `One 0x02AA5;
"glE", `One 0x02A92;
"glj", `One 0x02AA4;
"gnap", `One 0x02A8A;
"gnapprox", `One 0x02A8A;
"gnE", `One 0x02269;
"gne", `One 0x02A88;
"gneq", `One 0x02A88;
"gneqq", `One 0x02269;
"gnsim", `One 0x022E7;
"Gopf", `One 0x1D53E;
"gopf", `One 0x1D558;
"grave", `One 0x00060;
"GreaterEqual", `One 0x02265;
"GreaterEqualLess", `One 0x022DB;
"GreaterFullEqual", `One 0x02267;
"GreaterGreater", `One 0x02AA2;
"GreaterLess", `One 0x02277;
"GreaterSlantEqual", `One 0x02A7E;
"GreaterTilde", `One 0x02273;
"Gscr", `One 0x1D4A2;
"gscr", `One 0x0210A;
"gsim", `One 0x02273;
"gsime", `One 0x02A8E;
"gsiml", `One 0x02A90;
"GT", `One 0x0003E;
"G", `One 0x0003E;
"Gt", `One 0x0226B;
"gt", `One 0x0003E;
"g", `One 0x0003E;
"gtcc", `One 0x02AA7;
"gtcir", `One 0x02A7A;
"gtdot", `One 0x022D7;
"gtlPar", `One 0x02995;
"gtquest", `One 0x02A7C;
"gtrapprox", `One 0x02A86;
"gtrarr", `One 0x02978;
"gtrdot", `One 0x022D7;
"gtreqless", `One 0x022DB;
"gtreqqless", `One 0x02A8C;
"gtrless", `One 0x02277;
"gtrsim", `One 0x02273;
"gvertneqq", `Two (0x02269, 0x0FE00);
"gvnE", `Two (0x02269, 0x0FE00);
"Hacek", `One 0x002C7;
"hairsp", `One 0x0200A;
"half", `One 0x000BD;
"hamilt", `One 0x0210B;
"HARDcy", `One 0x0042A;
"hardcy", `One 0x0044A;
"hArr", `One 0x021D4;
"harr", `One 0x02194;
"harrcir", `One 0x02948;
"harrw", `One 0x021AD;
"Hat", `One 0x0005E;
"hbar", `One 0x0210F;
"Hcirc", `One 0x00124;
"hcirc", `One 0x00125;
"hearts", `One 0x02665;
"heartsuit", `One 0x02665;
"hellip", `One 0x02026;
"hercon", `One 0x022B9;
"Hfr", `One 0x0210C;
"hfr", `One 0x1D525;
"HilbertSpace", `One 0x0210B;
"hksearow", `One 0x02925;
"hkswarow", `One 0x02926;
"hoarr", `One 0x021FF;
"homtht", `One 0x0223B;
"hookleftarrow", `One 0x021A9;
"hookrightarrow", `One 0x021AA;
"Hopf", `One 0x0210D;
"hopf", `One 0x1D559;
"horbar", `One 0x02015;
"HorizontalLine", `One 0x02500;
"Hscr", `One 0x0210B;
"hscr", `One 0x1D4BD;
"hslash", `One 0x0210F;
"Hstrok", `One 0x00126;
"hstrok", `One 0x00127;
"HumpDownHump", `One 0x0224E;
"HumpEqual", `One 0x0224F;
"hybull", `One 0x02043;
"hyphen", `One 0x02010;
"Iacute", `One 0x000CD;
"Iacut", `One 0x000CD;
"iacute", `One 0x000ED;
"iacut", `One 0x000ED;
"ic", `One 0x02063;
"Icirc", `One 0x000CE;
"Icir", `One 0x000CE;
"icirc", `One 0x000EE;
"icir", `One 0x000EE;
"Icy", `One 0x00418;
"icy", `One 0x00438;
"Idot", `One 0x00130;
"IEcy", `One 0x00415;
"iecy", `One 0x00435;
"iexcl", `One 0x000A1;
"iexc", `One 0x000A1;
"iff", `One 0x021D4;
"Ifr", `One 0x02111;
"ifr", `One 0x1D526;
"Igrave", `One 0x000CC;
"Igrav", `One 0x000CC;
"igrave", `One 0x000EC;
"igrav", `One 0x000EC;
"ii", `One 0x02148;
"iiiint", `One 0x02A0C;
"iiint", `One 0x0222D;
"iinfin", `One 0x029DC;
"iiota", `One 0x02129;
"IJlig", `One 0x00132;
"ijlig", `One 0x00133;
"Im", `One 0x02111;
"Imacr", `One 0x0012A;
"imacr", `One 0x0012B;
"image", `One 0x02111;
"ImaginaryI", `One 0x02148;
"imagline", `One 0x02110;
"imagpart", `One 0x02111;
"imath", `One 0x00131;
"imof", `One 0x022B7;
"imped", `One 0x001B5;
"Implies", `One 0x021D2;
"in", `One 0x02208;
"incare", `One 0x02105;
"infin", `One 0x0221E;
"infintie", `One 0x029DD;
"inodot", `One 0x00131;
"Int", `One 0x0222C;
"int", `One 0x0222B;
"intcal", `One 0x022BA;
"integers", `One 0x02124;
"Integral", `One 0x0222B;
"intercal", `One 0x022BA;
"Intersection", `One 0x022C2;
"intlarhk", `One 0x02A17;
"intprod", `One 0x02A3C;
"InvisibleComma", `One 0x02063;
"InvisibleTimes", `One 0x02062;
"IOcy", `One 0x00401;
"iocy", `One 0x00451;
"Iogon", `One 0x0012E;
"iogon", `One 0x0012F;
"Iopf", `One 0x1D540;
"iopf", `One 0x1D55A;
"Iota", `One 0x00399;
"iota", `One 0x003B9;
"iprod", `One 0x02A3C;
"iquest", `One 0x000BF;
"iques", `One 0x000BF;
"Iscr", `One 0x02110;
"iscr", `One 0x1D4BE;
"isin", `One 0x02208;
"isindot", `One 0x022F5;
"isinE", `One 0x022F9;
"isins", `One 0x022F4;
"isinsv", `One 0x022F3;
"isinv", `One 0x02208;
"it", `One 0x02062;
"Itilde", `One 0x00128;
"itilde", `One 0x00129;
"Iukcy", `One 0x00406;
"iukcy", `One 0x00456;
"Iuml", `One 0x000CF;
"Ium", `One 0x000CF;
"iuml", `One 0x000EF;
"ium", `One 0x000EF;
"Jcirc", `One 0x00134;
"jcirc", `One 0x00135;
"Jcy", `One 0x00419;
"jcy", `One 0x00439;
"Jfr", `One 0x1D50D;
"jfr", `One 0x1D527;
"jmath", `One 0x00237;
"Jopf", `One 0x1D541;
"jopf", `One 0x1D55B;
"Jscr", `One 0x1D4A5;
"jscr", `One 0x1D4BF;
"Jsercy", `One 0x00408;
"jsercy", `One 0x00458;
"Jukcy", `One 0x00404;
"jukcy", `One 0x00454;
"Kappa", `One 0x0039A;
"kappa", `One 0x003BA;
"kappav", `One 0x003F0;
"Kcedil", `One 0x00136;
"kcedil", `One 0x00137;
"Kcy", `One 0x0041A;
"kcy", `One 0x0043A;
"Kfr", `One 0x1D50E;
"kfr", `One 0x1D528;
"kgreen", `One 0x00138;
"KHcy", `One 0x00425;
"khcy", `One 0x00445;
"KJcy", `One 0x0040C;
"kjcy", `One 0x0045C;
"Kopf", `One 0x1D542;
"kopf", `One 0x1D55C;
"Kscr", `One 0x1D4A6;
"kscr", `One 0x1D4C0;
"lAarr", `One 0x021DA;
"Lacute", `One 0x00139;
"lacute", `One 0x0013A;
"laemptyv", `One 0x029B4;
"lagran", `One 0x02112;
"Lambda", `One 0x0039B;
"lambda", `One 0x003BB;
"Lang", `One 0x027EA;
"lang", `One 0x027E8;
"langd", `One 0x02991;
"langle", `One 0x027E8;
"lap", `One 0x02A85;
"Laplacetrf", `One 0x02112;
"laquo", `One 0x000AB;
"laqu", `One 0x000AB;
"Larr", `One 0x0219E;
"lArr", `One 0x021D0;
"larr", `One 0x02190;
"larrb", `One 0x021E4;
"larrbfs", `One 0x0291F;
"larrfs", `One 0x0291D;
"larrhk", `One 0x021A9;
"larrlp", `One 0x021AB;
"larrpl", `One 0x02939;
"larrsim", `One 0x02973;
"larrtl", `One 0x021A2;
"lat", `One 0x02AAB;
"lAtail", `One 0x0291B;
"latail", `One 0x02919;
"late", `One 0x02AAD;
"lates", `Two (0x02AAD, 0x0FE00);
"lBarr", `One 0x0290E;
"lbarr", `One 0x0290C;
"lbbrk", `One 0x02772;
"lbrace", `One 0x0007B;
"lbrack", `One 0x0005B;
"lbrke", `One 0x0298B;
"lbrksld", `One 0x0298F;
"lbrkslu", `One 0x0298D;
"Lcaron", `One 0x0013D;
"lcaron", `One 0x0013E;
"Lcedil", `One 0x0013B;
"lcedil", `One 0x0013C;
"lceil", `One 0x02308;
"lcub", `One 0x0007B;
"Lcy", `One 0x0041B;
"lcy", `One 0x0043B;
"ldca", `One 0x02936;
"ldquo", `One 0x0201C;
"ldquor", `One 0x0201E;
"ldrdhar", `One 0x02967;
"ldrushar", `One 0x0294B;
"ldsh", `One 0x021B2;
"lE", `One 0x02266;
"le", `One 0x02264;
"LeftAngleBracket", `One 0x027E8;
"LeftArrow", `One 0x02190;
"Leftarrow", `One 0x021D0;
"leftarrow", `One 0x02190;
"LeftArrowBar", `One 0x021E4;
"LeftArrowRightArrow", `One 0x021C6;
"leftarrowtail", `One 0x021A2;
"LeftCeiling", `One 0x02308;
"LeftDoubleBracket", `One 0x027E6;
"LeftDownTeeVector", `One 0x02961;
"LeftDownVector", `One 0x021C3;
"LeftDownVectorBar", `One 0x02959;
"LeftFloor", `One 0x0230A;
"leftharpoondown", `One 0x021BD;
"leftharpoonup", `One 0x021BC;
"leftleftarrows", `One 0x021C7;
"LeftRightArrow", `One 0x02194;
"Leftrightarrow", `One 0x021D4;
"leftrightarrow", `One 0x02194;
"leftrightarrows", `One 0x021C6;
"leftrightharpoons", `One 0x021CB;
"leftrightsquigarrow", `One 0x021AD;
"LeftRightVector", `One 0x0294E;
"LeftTee", `One 0x022A3;
"LeftTeeArrow", `One 0x021A4;
"LeftTeeVector", `One 0x0295A;
"leftthreetimes", `One 0x022CB;
"LeftTriangle", `One 0x022B2;
"LeftTriangleBar", `One 0x029CF;
"LeftTriangleEqual", `One 0x022B4;
"LeftUpDownVector", `One 0x02951;
"LeftUpTeeVector", `One 0x02960;
"LeftUpVector", `One 0x021BF;
"LeftUpVectorBar", `One 0x02958;
"LeftVector", `One 0x021BC;
"LeftVectorBar", `One 0x02952;
"lEg", `One 0x02A8B;
"leg", `One 0x022DA;
"leq", `One 0x02264;
"leqq", `One 0x02266;
"leqslant", `One 0x02A7D;
"les", `One 0x02A7D;
"lescc", `One 0x02AA8;
"lesdot", `One 0x02A7F;
"lesdoto", `One 0x02A81;
"lesdotor", `One 0x02A83;
"lesg", `Two (0x022DA, 0x0FE00);
"lesges", `One 0x02A93;
"lessapprox", `One 0x02A85;
"lessdot", `One 0x022D6;
"lesseqgtr", `One 0x022DA;
"lesseqqgtr", `One 0x02A8B;
"LessEqualGreater", `One 0x022DA;
"LessFullEqual", `One 0x02266;
"LessGreater", `One 0x02276;
"lessgtr", `One 0x02276;
"LessLess", `One 0x02AA1;
"lesssim", `One 0x02272;
"LessSlantEqual", `One 0x02A7D;
"LessTilde", `One 0x02272;
"lfisht", `One 0x0297C;
"lfloor", `One 0x0230A;
"Lfr", `One 0x1D50F;
"lfr", `One 0x1D529;
"lg", `One 0x02276;
"lgE", `One 0x02A91;
"lHar", `One 0x02962;
"lhard", `One 0x021BD;
"lharu", `One 0x021BC;
"lharul", `One 0x0296A;
"lhblk", `One 0x02584;
"LJcy", `One 0x00409;
"ljcy", `One 0x00459;
"Ll", `One 0x022D8;
"ll", `One 0x0226A;