Commit 82c0eb53c4b99b14366934d5e3b72d1f517b9215

Martin Mitas 2017-07-13T16:23:45

entity_lookup: Make it return UTF-32 codepoints. And adapted callers accordingly. Fixes #12.

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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
diff --git a/md2html/entity.c b/md2html/entity.c
index 3226cf8..e28b8af 100644
--- a/md2html/entity.c
+++ b/md2html/entity.c
@@ -3,2168 +3,2164 @@
 #include <string.h>
 
 
-struct entity {
-    const char* verbatim;
-    unsigned char utf8_bytes[8];
-};
-
-
 /* The table is generated from https://html.spec.whatwg.org/entities.json */
 static const struct entity entity_table[] = {
-    { "&AElig;",                            { 195, 134, 0 } },
-    { "&AMP;",                              { 38, 0 } },
-    { "&Aacute;",                           { 195, 129, 0 } },
-    { "&Abreve;",                           { 196, 130, 0 } },
-    { "&Acirc;",                            { 195, 130, 0 } },
-    { "&Acy;",                              { 208, 144, 0 } },
-    { "&Afr;",                              { 240, 157, 148, 132, 0 } },
-    { "&Agrave;",                           { 195, 128, 0 } },
-    { "&Alpha;",                            { 206, 145, 0 } },
-    { "&Amacr;",                            { 196, 128, 0 } },
-    { "&And;",                              { 226, 169, 147, 0 } },
-    { "&Aogon;",                            { 196, 132, 0 } },
-    { "&Aopf;",                             { 240, 157, 148, 184, 0 } },
-    { "&ApplyFunction;",                    { 226, 129, 161, 0 } },
-    { "&Aring;",                            { 195, 133, 0 } },
-    { "&Ascr;",                             { 240, 157, 146, 156, 0 } },
-    { "&Assign;",                           { 226, 137, 148, 0 } },
-    { "&Atilde;",                           { 195, 131, 0 } },
-    { "&Auml;",                             { 195, 132, 0 } },
-    { "&Backslash;",                        { 226, 136, 150, 0 } },
-    { "&Barv;",                             { 226, 171, 167, 0 } },
-    { "&Barwed;",                           { 226, 140, 134, 0 } },
-    { "&Bcy;",                              { 208, 145, 0 } },
-    { "&Because;",                          { 226, 136, 181, 0 } },
-    { "&Bernoullis;",                       { 226, 132, 172, 0 } },
-    { "&Beta;",                             { 206, 146, 0 } },
-    { "&Bfr;",                              { 240, 157, 148, 133, 0 } },
-    { "&Bopf;",                             { 240, 157, 148, 185, 0 } },
-    { "&Breve;",                            { 203, 152, 0 } },
-    { "&Bscr;",                             { 226, 132, 172, 0 } },
-    { "&Bumpeq;",                           { 226, 137, 142, 0 } },
-    { "&CHcy;",                             { 208, 167, 0 } },
-    { "&COPY;",                             { 194, 169, 0 } },
-    { "&Cacute;",                           { 196, 134, 0 } },
-    { "&Cap;",                              { 226, 139, 146, 0 } },
-    { "&CapitalDifferentialD;",             { 226, 133, 133, 0 } },
-    { "&Cayleys;",                          { 226, 132, 173, 0 } },
-    { "&Ccaron;",                           { 196, 140, 0 } },
-    { "&Ccedil;",                           { 195, 135, 0 } },
-    { "&Ccirc;",                            { 196, 136, 0 } },
-    { "&Cconint;",                          { 226, 136, 176, 0 } },
-    { "&Cdot;",                             { 196, 138, 0 } },
-    { "&Cedilla;",                          { 194, 184, 0 } },
-    { "&CenterDot;",                        { 194, 183, 0 } },
-    { "&Cfr;",                              { 226, 132, 173, 0 } },
-    { "&Chi;",                              { 206, 167, 0 } },
-    { "&CircleDot;",                        { 226, 138, 153, 0 } },
-    { "&CircleMinus;",                      { 226, 138, 150, 0 } },
-    { "&CirclePlus;",                       { 226, 138, 149, 0 } },
-    { "&CircleTimes;",                      { 226, 138, 151, 0 } },
-    { "&ClockwiseContourIntegral;",         { 226, 136, 178, 0 } },
-    { "&CloseCurlyDoubleQuote;",            { 226, 128, 157, 0 } },
-    { "&CloseCurlyQuote;",                  { 226, 128, 153, 0 } },
-    { "&Colon;",                            { 226, 136, 183, 0 } },
-    { "&Colone;",                           { 226, 169, 180, 0 } },
-    { "&Congruent;",                        { 226, 137, 161, 0 } },
-    { "&Conint;",                           { 226, 136, 175, 0 } },
-    { "&ContourIntegral;",                  { 226, 136, 174, 0 } },
-    { "&Copf;",                             { 226, 132, 130, 0 } },
-    { "&Coproduct;",                        { 226, 136, 144, 0 } },
-    { "&CounterClockwiseContourIntegral;",  { 226, 136, 179, 0 } },
-    { "&Cross;",                            { 226, 168, 175, 0 } },
-    { "&Cscr;",                             { 240, 157, 146, 158, 0 } },
-    { "&Cup;",                              { 226, 139, 147, 0 } },
-    { "&CupCap;",                           { 226, 137, 141, 0 } },
-    { "&DD;",                               { 226, 133, 133, 0 } },
-    { "&DDotrahd;",                         { 226, 164, 145, 0 } },
-    { "&DJcy;",                             { 208, 130, 0 } },
-    { "&DScy;",                             { 208, 133, 0 } },
-    { "&DZcy;",                             { 208, 143, 0 } },
-    { "&Dagger;",                           { 226, 128, 161, 0 } },
-    { "&Darr;",                             { 226, 134, 161, 0 } },
-    { "&Dashv;",                            { 226, 171, 164, 0 } },
-    { "&Dcaron;",                           { 196, 142, 0 } },
-    { "&Dcy;",                              { 208, 148, 0 } },
-    { "&Del;",                              { 226, 136, 135, 0 } },
-    { "&Delta;",                            { 206, 148, 0 } },
-    { "&Dfr;",                              { 240, 157, 148, 135, 0 } },
-    { "&DiacriticalAcute;",                 { 194, 180, 0 } },
-    { "&DiacriticalDot;",                   { 203, 153, 0 } },
-    { "&DiacriticalDoubleAcute;",           { 203, 157, 0 } },
-    { "&DiacriticalGrave;",                 {  96, 0 } },
-    { "&DiacriticalTilde;",                 { 203, 156, 0 } },
-    { "&Diamond;",                          { 226, 139, 132, 0 } },
-    { "&DifferentialD;",                    { 226, 133, 134, 0 } },
-    { "&Dopf;",                             { 240, 157, 148, 187, 0 } },
-    { "&Dot;",                              { 194, 168, 0 } },
-    { "&DotDot;",                           { 226, 131, 156, 0 } },
-    { "&DotEqual;",                         { 226, 137, 144, 0 } },
-    { "&DoubleContourIntegral;",            { 226, 136, 175, 0 } },
-    { "&DoubleDot;",                        { 194, 168, 0 } },
-    { "&DoubleDownArrow;",                  { 226, 135, 147, 0 } },
-    { "&DoubleLeftArrow;",                  { 226, 135, 144, 0 } },
-    { "&DoubleLeftRightArrow;",             { 226, 135, 148, 0 } },
-    { "&DoubleLeftTee;",                    { 226, 171, 164, 0 } },
-    { "&DoubleLongLeftArrow;",              { 226, 159, 184, 0 } },
-    { "&DoubleLongLeftRightArrow;",         { 226, 159, 186, 0 } },
-    { "&DoubleLongRightArrow;",             { 226, 159, 185, 0 } },
-    { "&DoubleRightArrow;",                 { 226, 135, 146, 0 } },
-    { "&DoubleRightTee;",                   { 226, 138, 168, 0 } },
-    { "&DoubleUpArrow;",                    { 226, 135, 145, 0 } },
-    { "&DoubleUpDownArrow;",                { 226, 135, 149, 0 } },
-    { "&DoubleVerticalBar;",                { 226, 136, 165, 0 } },
-    { "&DownArrow;",                        { 226, 134, 147, 0 } },
-    { "&DownArrowBar;",                     { 226, 164, 147, 0 } },
-    { "&DownArrowUpArrow;",                 { 226, 135, 181, 0 } },
-    { "&DownBreve;",                        { 204, 145, 0 } },
-    { "&DownLeftRightVector;",              { 226, 165, 144, 0 } },
-    { "&DownLeftTeeVector;",                { 226, 165, 158, 0 } },
-    { "&DownLeftVector;",                   { 226, 134, 189, 0 } },
-    { "&DownLeftVectorBar;",                { 226, 165, 150, 0 } },
-    { "&DownRightTeeVector;",               { 226, 165, 159, 0 } },
-    { "&DownRightVector;",                  { 226, 135, 129, 0 } },
-    { "&DownRightVectorBar;",               { 226, 165, 151, 0 } },
-    { "&DownTee;",                          { 226, 138, 164, 0 } },
-    { "&DownTeeArrow;",                     { 226, 134, 167, 0 } },
-    { "&Downarrow;",                        { 226, 135, 147, 0 } },
-    { "&Dscr;",                             { 240, 157, 146, 159, 0 } },
-    { "&Dstrok;",                           { 196, 144, 0 } },
-    { "&ENG;",                              { 197, 138, 0 } },
-    { "&ETH;",                              { 195, 144, 0 } },
-    { "&Eacute;",                           { 195, 137, 0 } },
-    { "&Ecaron;",                           { 196, 154, 0 } },
-    { "&Ecirc;",                            { 195, 138, 0 } },
-    { "&Ecy;",                              { 208, 173, 0 } },
-    { "&Edot;",                             { 196, 150, 0 } },
-    { "&Efr;",                              { 240, 157, 148, 136, 0 } },
-    { "&Egrave;",                           { 195, 136, 0 } },
-    { "&Element;",                          { 226, 136, 136, 0 } },
-    { "&Emacr;",                            { 196, 146, 0 } },
-    { "&EmptySmallSquare;",                 { 226, 151, 187, 0 } },
-    { "&EmptyVerySmallSquare;",             { 226, 150, 171, 0 } },
-    { "&Eogon;",                            { 196, 152, 0 } },
-    { "&Eopf;",                             { 240, 157, 148, 188, 0 } },
-    { "&Epsilon;",                          { 206, 149, 0 } },
-    { "&Equal;",                            { 226, 169, 181, 0 } },
-    { "&EqualTilde;",                       { 226, 137, 130, 0 } },
-    { "&Equilibrium;",                      { 226, 135, 140, 0 } },
-    { "&Escr;",                             { 226, 132, 176, 0 } },
-    { "&Esim;",                             { 226, 169, 179, 0 } },
-    { "&Eta;",                              { 206, 151, 0 } },
-    { "&Euml;",                             { 195, 139, 0 } },
-    { "&Exists;",                           { 226, 136, 131, 0 } },
-    { "&ExponentialE;",                     { 226, 133, 135, 0 } },
-    { "&Fcy;",                              { 208, 164, 0 } },
-    { "&Ffr;",                              { 240, 157, 148, 137, 0 } },
-    { "&FilledSmallSquare;",                { 226, 151, 188, 0 } },
-    { "&FilledVerySmallSquare;",            { 226, 150, 170, 0 } },
-    { "&Fopf;",                             { 240, 157, 148, 189, 0 } },
-    { "&ForAll;",                           { 226, 136, 128, 0 } },
-    { "&Fouriertrf;",                       { 226, 132, 177, 0 } },
-    { "&Fscr;",                             { 226, 132, 177, 0 } },
-    { "&GJcy;",                             { 208, 131, 0 } },
-    { "&GT;",                               {  62, 0 } },
-    { "&Gamma;",                            { 206, 147, 0 } },
-    { "&Gammad;",                           { 207, 156, 0 } },
-    { "&Gbreve;",                           { 196, 158, 0 } },
-    { "&Gcedil;",                           { 196, 162, 0 } },
-    { "&Gcirc;",                            { 196, 156, 0 } },
-    { "&Gcy;",                              { 208, 147, 0 } },
-    { "&Gdot;",                             { 196, 160, 0 } },
-    { "&Gfr;",                              { 240, 157, 148, 138, 0 } },
-    { "&Gg;",                               { 226, 139, 153, 0 } },
-    { "&Gopf;",                             { 240, 157, 148, 190, 0 } },
-    { "&GreaterEqual;",                     { 226, 137, 165, 0 } },
-    { "&GreaterEqualLess;",                 { 226, 139, 155, 0 } },
-    { "&GreaterFullEqual;",                 { 226, 137, 167, 0 } },
-    { "&GreaterGreater;",                   { 226, 170, 162, 0 } },
-    { "&GreaterLess;",                      { 226, 137, 183, 0 } },
-    { "&GreaterSlantEqual;",                { 226, 169, 190, 0 } },
-    { "&GreaterTilde;",                     { 226, 137, 179, 0 } },
-    { "&Gscr;",                             { 240, 157, 146, 162, 0 } },
-    { "&Gt;",                               { 226, 137, 171, 0 } },
-    { "&HARDcy;",                           { 208, 170, 0 } },
-    { "&Hacek;",                            { 203, 135, 0 } },
-    { "&Hat;",                              {  94, 0 } },
-    { "&Hcirc;",                            { 196, 164, 0 } },
-    { "&Hfr;",                              { 226, 132, 140, 0 } },
-    { "&HilbertSpace;",                     { 226, 132, 139, 0 } },
-    { "&Hopf;",                             { 226, 132, 141, 0 } },
-    { "&HorizontalLine;",                   { 226, 148, 128, 0 } },
-    { "&Hscr;",                             { 226, 132, 139, 0 } },
-    { "&Hstrok;",                           { 196, 166, 0 } },
-    { "&HumpDownHump;",                     { 226, 137, 142, 0 } },
-    { "&HumpEqual;",                        { 226, 137, 143, 0 } },
-    { "&IEcy;",                             { 208, 149, 0 } },
-    { "&IJlig;",                            { 196, 178, 0 } },
-    { "&IOcy;",                             { 208, 129, 0 } },
-    { "&Iacute;",                           { 195, 141, 0 } },
-    { "&Icirc;",                            { 195, 142, 0 } },
-    { "&Icy;",                              { 208, 152, 0 } },
-    { "&Idot;",                             { 196, 176, 0 } },
-    { "&Ifr;",                              { 226, 132, 145, 0 } },
-    { "&Igrave;",                           { 195, 140, 0 } },
-    { "&Im;",                               { 226, 132, 145, 0 } },
-    { "&Imacr;",                            { 196, 170, 0 } },
-    { "&ImaginaryI;",                       { 226, 133, 136, 0 } },
-    { "&Implies;",                          { 226, 135, 146, 0 } },
-    { "&Int;",                              { 226, 136, 172, 0 } },
-    { "&Integral;",                         { 226, 136, 171, 0 } },
-    { "&Intersection;",                     { 226, 139, 130, 0 } },
-    { "&InvisibleComma;",                   { 226, 129, 163, 0 } },
-    { "&InvisibleTimes;",                   { 226, 129, 162, 0 } },
-    { "&Iogon;",                            { 196, 174, 0 } },
-    { "&Iopf;",                             { 240, 157, 149, 128, 0 } },
-    { "&Iota;",                             { 206, 153, 0 } },
-    { "&Iscr;",                             { 226, 132, 144, 0 } },
-    { "&Itilde;",                           { 196, 168, 0 } },
-    { "&Iukcy;",                            { 208, 134, 0 } },
-    { "&Iuml;",                             { 195, 143, 0 } },
-    { "&Jcirc;",                            { 196, 180, 0 } },
-    { "&Jcy;",                              { 208, 153, 0 } },
-    { "&Jfr;",                              { 240, 157, 148, 141, 0 } },
-    { "&Jopf;",                             { 240, 157, 149, 129, 0 } },
-    { "&Jscr;",                             { 240, 157, 146, 165, 0 } },
-    { "&Jsercy;",                           { 208, 136, 0 } },
-    { "&Jukcy;",                            { 208, 132, 0 } },
-    { "&KHcy;",                             { 208, 165, 0 } },
-    { "&KJcy;",                             { 208, 140, 0 } },
-    { "&Kappa;",                            { 206, 154, 0 } },
-    { "&Kcedil;",                           { 196, 182, 0 } },
-    { "&Kcy;",                              { 208, 154, 0 } },
-    { "&Kfr;",                              { 240, 157, 148, 142, 0 } },
-    { "&Kopf;",                             { 240, 157, 149, 130, 0 } },
-    { "&Kscr;",                             { 240, 157, 146, 166, 0 } },
-    { "&LJcy;",                             { 208, 137, 0 } },
-    { "&LT;",                               { 60, 0 } },
-    { "&Lacute;",                           { 196, 185, 0 } },
-    { "&Lambda;",                           { 206, 155, 0 } },
-    { "&Lang;",                             { 226, 159, 170, 0 } },
-    { "&Laplacetrf;",                       { 226, 132, 146, 0 } },
-    { "&Larr;",                             { 226, 134, 158, 0 } },
-    { "&Lcaron;",                           { 196, 189, 0 } },
-    { "&Lcedil;",                           { 196, 187, 0 } },
-    { "&Lcy;",                              { 208, 155, 0 } },
-    { "&LeftAngleBracket;",                 { 226, 159, 168, 0 } },
-    { "&LeftArrow;",                        { 226, 134, 144, 0 } },
-    { "&LeftArrowBar;",                     { 226, 135, 164, 0 } },
-    { "&LeftArrowRightArrow;",              { 226, 135, 134, 0 } },
-    { "&LeftCeiling;",                      { 226, 140, 136, 0 } },
-    { "&LeftDoubleBracket;",                { 226, 159, 166, 0 } },
-    { "&LeftDownTeeVector;",                { 226, 165, 161, 0 } },
-    { "&LeftDownVector;",                   { 226, 135, 131, 0 } },
-    { "&LeftDownVectorBar;",                { 226, 165, 153, 0 } },
-    { "&LeftFloor;",                        { 226, 140, 138, 0 } },
-    { "&LeftRightArrow;",                   { 226, 134, 148, 0 } },
-    { "&LeftRightVector;",                  { 226, 165, 142, 0 } },
-    { "&LeftTee;",                          { 226, 138, 163, 0 } },
-    { "&LeftTeeArrow;",                     { 226, 134, 164, 0 } },
-    { "&LeftTeeVector;",                    { 226, 165, 154, 0 } },
-    { "&LeftTriangle;",                     { 226, 138, 178, 0 } },
-    { "&LeftTriangleBar;",                  { 226, 167, 143, 0 } },
-    { "&LeftTriangleEqual;",                { 226, 138, 180, 0 } },
-    { "&LeftUpDownVector;",                 { 226, 165, 145, 0 } },
-    { "&LeftUpTeeVector;",                  { 226, 165, 160, 0 } },
-    { "&LeftUpVector;",                     { 226, 134, 191, 0 } },
-    { "&LeftUpVectorBar;",                  { 226, 165, 152, 0 } },
-    { "&LeftVector;",                       { 226, 134, 188, 0 } },
-    { "&LeftVectorBar;",                    { 226, 165, 146, 0 } },
-    { "&Leftarrow;",                        { 226, 135, 144, 0 } },
-    { "&Leftrightarrow;",                   { 226, 135, 148, 0 } },
-    { "&LessEqualGreater;",                 { 226, 139, 154, 0 } },
-    { "&LessFullEqual;",                    { 226, 137, 166, 0 } },
-    { "&LessGreater;",                      { 226, 137, 182, 0 } },
-    { "&LessLess;",                         { 226, 170, 161, 0 } },
-    { "&LessSlantEqual;",                   { 226, 169, 189, 0 } },
-    { "&LessTilde;",                        { 226, 137, 178, 0 } },
-    { "&Lfr;",                              { 240, 157, 148, 143, 0 } },
-    { "&Ll;",                               { 226, 139, 152, 0 } },
-    { "&Lleftarrow;",                       { 226, 135, 154, 0 } },
-    { "&Lmidot;",                           { 196, 191, 0 } },
-    { "&LongLeftArrow;",                    { 226, 159, 181, 0 } },
-    { "&LongLeftRightArrow;",               { 226, 159, 183, 0 } },
-    { "&LongRightArrow;",                   { 226, 159, 182, 0 } },
-    { "&Longleftarrow;",                    { 226, 159, 184, 0 } },
-    { "&Longleftrightarrow;",               { 226, 159, 186, 0 } },
-    { "&Longrightarrow;",                   { 226, 159, 185, 0 } },
-    { "&Lopf;",                             { 240, 157, 149, 131, 0 } },
-    { "&LowerLeftArrow;",                   { 226, 134, 153, 0 } },
-    { "&LowerRightArrow;",                  { 226, 134, 152, 0 } },
-    { "&Lscr;",                             { 226, 132, 146, 0 } },
-    { "&Lsh;",                              { 226, 134, 176, 0 } },
-    { "&Lstrok;",                           { 197, 129, 0 } },
-    { "&Lt;",                               { 226, 137, 170, 0 } },
-    { "&Map;",                              { 226, 164, 133, 0 } },
-    { "&Mcy;",                              { 208, 156, 0 } },
-    { "&MediumSpace;",                      { 226, 129, 159, 0 } },
-    { "&Mellintrf;",                        { 226, 132, 179, 0 } },
-    { "&Mfr;",                              { 240, 157, 148, 144, 0 } },
-    { "&MinusPlus;",                        { 226, 136, 147, 0 } },
-    { "&Mopf;",                             { 240, 157, 149, 132, 0 } },
-    { "&Mscr;",                             { 226, 132, 179, 0 } },
-    { "&Mu;",                               { 206, 156, 0 } },
-    { "&NJcy;",                             { 208, 138, 0 } },
-    { "&Nacute;",                           { 197, 131, 0 } },
-    { "&Ncaron;",                           { 197, 135, 0 } },
-    { "&Ncedil;",                           { 197, 133, 0 } },
-    { "&Ncy;",                              { 208, 157, 0 } },
-    { "&NegativeMediumSpace;",              { 226, 128, 139, 0 } },
-    { "&NegativeThickSpace;",               { 226, 128, 139, 0 } },
-    { "&NegativeThinSpace;",                { 226, 128, 139, 0 } },
-    { "&NegativeVeryThinSpace;",            { 226, 128, 139, 0 } },
-    { "&NestedGreaterGreater;",             { 226, 137, 171, 0 } },
-    { "&NestedLessLess;",                   { 226, 137, 170, 0 } },
-    { "&NewLine;",                          { 10, 0 } },
-    { "&Nfr;",                              { 240, 157, 148, 145, 0 } },
-    { "&NoBreak;",                          { 226, 129, 160, 0 } },
-    { "&NonBreakingSpace;",                 { 194, 160, 0 } },
-    { "&Nopf;",                             { 226, 132, 149, 0 } },
-    { "&Not;",                              { 226, 171, 172, 0 } },
-    { "&NotCongruent;",                     { 226, 137, 162, 0 } },
-    { "&NotCupCap;",                        { 226, 137, 173, 0 } },
-    { "&NotDoubleVerticalBar;",             { 226, 136, 166, 0 } },
-    { "&NotElement;",                       { 226, 136, 137, 0 } },
-    { "&NotEqual;",                         { 226, 137, 160, 0 } },
-    { "&NotEqualTilde;",                    { 226, 137, 130, 204, 184, 0 } },
-    { "&NotExists;",                        { 226, 136, 132, 0 } },
-    { "&NotGreater;",                       { 226, 137, 175, 0 } },
-    { "&NotGreaterEqual;",                  { 226, 137, 177, 0 } },
-    { "&NotGreaterFullEqual;",              { 226, 137, 167, 204, 184, 0 } },
-    { "&NotGreaterGreater;",                { 226, 137, 171, 204, 184, 0 } },
-    { "&NotGreaterLess;",                   { 226, 137, 185, 0 } },
-    { "&NotGreaterSlantEqual;",             { 226, 169, 190, 204, 184, 0 } },
-    { "&NotGreaterTilde;",                  { 226, 137, 181, 0 } },
-    { "&NotHumpDownHump;",                  { 226, 137, 142, 204, 184, 0 } },
-    { "&NotHumpEqual;",                     { 226, 137, 143, 204, 184, 0 } },
-    { "&NotLeftTriangle;",                  { 226, 139, 170, 0 } },
-    { "&NotLeftTriangleBar;",               { 226, 167, 143, 204, 184, 0 } },
-    { "&NotLeftTriangleEqual;",             { 226, 139, 172, 0 } },
-    { "&NotLess;",                          { 226, 137, 174, 0 } },
-    { "&NotLessEqual;",                     { 226, 137, 176, 0 } },
-    { "&NotLessGreater;",                   { 226, 137, 184, 0 } },
-    { "&NotLessLess;",                      { 226, 137, 170, 204, 184, 0 } },
-    { "&NotLessSlantEqual;",                { 226, 169, 189, 204, 184, 0 } },
-    { "&NotLessTilde;",                     { 226, 137, 180, 0 } },
-    { "&NotNestedGreaterGreater;",          { 226, 170, 162, 204, 184, 0 } },
-    { "&NotNestedLessLess;",                { 226, 170, 161, 204, 184, 0 } },
-    { "&NotPrecedes;",                      { 226, 138, 128, 0 } },
-    { "&NotPrecedesEqual;",                 { 226, 170, 175, 204, 184, 0 } },
-    { "&NotPrecedesSlantEqual;",            { 226, 139, 160, 0 } },
-    { "&NotReverseElement;",                { 226, 136, 140, 0 } },
-    { "&NotRightTriangle;",                 { 226, 139, 171, 0 } },
-    { "&NotRightTriangleBar;",              { 226, 167, 144, 204, 184, 0 } },
-    { "&NotRightTriangleEqual;",            { 226, 139, 173, 0 } },
-    { "&NotSquareSubset;",                  { 226, 138, 143, 204, 184, 0 } },
-    { "&NotSquareSubsetEqual;",             { 226, 139, 162, 0 } },
-    { "&NotSquareSuperset;",                { 226, 138, 144, 204, 184, 0 } },
-    { "&NotSquareSupersetEqual;",           { 226, 139, 163, 0 } },
-    { "&NotSubset;",                        { 226, 138, 130, 226, 131, 146, 0 } },
-    { "&NotSubsetEqual;",                   { 226, 138, 136, 0 } },
-    { "&NotSucceeds;",                      { 226, 138, 129, 0 } },
-    { "&NotSucceedsEqual;",                 { 226, 170, 176, 204, 184, 0 } },
-    { "&NotSucceedsSlantEqual;",            { 226, 139, 161, 0 } },
-    { "&NotSucceedsTilde;",                 { 226, 137, 191, 204, 184, 0 } },
-    { "&NotSuperset;",                      { 226, 138, 131, 226, 131, 146, 0 } },
-    { "&NotSupersetEqual;",                 { 226, 138, 137, 0 } },
-    { "&NotTilde;",                         { 226, 137, 129, 0 } },
-    { "&NotTildeEqual;",                    { 226, 137, 132, 0 } },
-    { "&NotTildeFullEqual;",                { 226, 137, 135, 0 } },
-    { "&NotTildeTilde;",                    { 226, 137, 137, 0 } },
-    { "&NotVerticalBar;",                   { 226, 136, 164, 0 } },
-    { "&Nscr;",                             { 240, 157, 146, 169, 0 } },
-    { "&Ntilde;",                           { 195, 145, 0 } },
-    { "&Nu;",                               { 206, 157, 0 } },
-    { "&OElig;",                            { 197, 146, 0 } },
-    { "&Oacute;",                           { 195, 147, 0 } },
-    { "&Ocirc;",                            { 195, 148, 0 } },
-    { "&Ocy;",                              { 208, 158, 0 } },
-    { "&Odblac;",                           { 197, 144, 0 } },
-    { "&Ofr;",                              { 240, 157, 148, 146, 0 } },
-    { "&Ograve;",                           { 195, 146, 0 } },
-    { "&Omacr;",                            { 197, 140, 0 } },
-    { "&Omega;",                            { 206, 169, 0 } },
-    { "&Omicron;",                          { 206, 159, 0 } },
-    { "&Oopf;",                             { 240, 157, 149, 134, 0 } },
-    { "&OpenCurlyDoubleQuote;",             { 226, 128, 156, 0 } },
-    { "&OpenCurlyQuote;",                   { 226, 128, 152, 0 } },
-    { "&Or;",                               { 226, 169, 148, 0 } },
-    { "&Oscr;",                             { 240, 157, 146, 170, 0 } },
-    { "&Oslash;",                           { 195, 152, 0 } },
-    { "&Otilde;",                           { 195, 149, 0 } },
-    { "&Otimes;",                           { 226, 168, 183, 0 } },
-    { "&Ouml;",                             { 195, 150, 0 } },
-    { "&OverBar;",                          { 226, 128, 190, 0 } },
-    { "&OverBrace;",                        { 226, 143, 158, 0 } },
-    { "&OverBracket;",                      { 226, 142, 180, 0 } },
-    { "&OverParenthesis;",                  { 226, 143, 156, 0 } },
-    { "&PartialD;",                         { 226, 136, 130, 0 } },
-    { "&Pcy;",                              { 208, 159, 0 } },
-    { "&Pfr;",                              { 240, 157, 148, 147, 0 } },
-    { "&Phi;",                              { 206, 166, 0 } },
-    { "&Pi;",                               { 206, 160, 0 } },
-    { "&PlusMinus;",                        { 194, 177, 0 } },
-    { "&Poincareplane;",                    { 226, 132, 140, 0 } },
-    { "&Popf;",                             { 226, 132, 153, 0 } },
-    { "&Pr;",                               { 226, 170, 187, 0 } },
-    { "&Precedes;",                         { 226, 137, 186, 0 } },
-    { "&PrecedesEqual;",                    { 226, 170, 175, 0 } },
-    { "&PrecedesSlantEqual;",               { 226, 137, 188, 0 } },
-    { "&PrecedesTilde;",                    { 226, 137, 190, 0 } },
-    { "&Prime;",                            { 226, 128, 179, 0 } },
-    { "&Product;",                          { 226, 136, 143, 0 } },
-    { "&Proportion;",                       { 226, 136, 183, 0 } },
-    { "&Proportional;",                     { 226, 136, 157, 0 } },
-    { "&Pscr;",                             { 240, 157, 146, 171, 0 } },
-    { "&Psi;",                              { 206, 168, 0 } },
-    { "&QUOT;",                             {  34, 0 } },
-    { "&Qfr;",                              { 240, 157, 148, 148, 0 } },
-    { "&Qopf;",                             { 226, 132, 154, 0 } },
-    { "&Qscr;",                             { 240, 157, 146, 172, 0 } },
-    { "&RBarr;",                            { 226, 164, 144, 0 } },
-    { "&REG;",                              { 194, 174, 0 } },
-    { "&Racute;",                           { 197, 148, 0 } },
-    { "&Rang;",                             { 226, 159, 171, 0 } },
-    { "&Rarr;",                             { 226, 134, 160, 0 } },
-    { "&Rarrtl;",                           { 226, 164, 150, 0 } },
-    { "&Rcaron;",                           { 197, 152, 0 } },
-    { "&Rcedil;",                           { 197, 150, 0 } },
-    { "&Rcy;",                              { 208, 160, 0 } },
-    { "&Re;",                               { 226, 132, 156, 0 } },
-    { "&ReverseElement;",                   { 226, 136, 139, 0 } },
-    { "&ReverseEquilibrium;",               { 226, 135, 139, 0 } },
-    { "&ReverseUpEquilibrium;",             { 226, 165, 175, 0 } },
-    { "&Rfr;",                              { 226, 132, 156, 0 } },
-    { "&Rho;",                              { 206, 161, 0 } },
-    { "&RightAngleBracket;",                { 226, 159, 169, 0 } },
-    { "&RightArrow;",                       { 226, 134, 146, 0 } },
-    { "&RightArrowBar;",                    { 226, 135, 165, 0 } },
-    { "&RightArrowLeftArrow;",              { 226, 135, 132, 0 } },
-    { "&RightCeiling;",                     { 226, 140, 137, 0 } },
-    { "&RightDoubleBracket;",               { 226, 159, 167, 0 } },
-    { "&RightDownTeeVector;",               { 226, 165, 157, 0 } },
-    { "&RightDownVector;",                  { 226, 135, 130, 0 } },
-    { "&RightDownVectorBar;",               { 226, 165, 149, 0 } },
-    { "&RightFloor;",                       { 226, 140, 139, 0 } },
-    { "&RightTee;",                         { 226, 138, 162, 0 } },
-    { "&RightTeeArrow;",                    { 226, 134, 166, 0 } },
-    { "&RightTeeVector;",                   { 226, 165, 155, 0 } },
-    { "&RightTriangle;",                    { 226, 138, 179, 0 } },
-    { "&RightTriangleBar;",                 { 226, 167, 144, 0 } },
-    { "&RightTriangleEqual;",               { 226, 138, 181, 0 } },
-    { "&RightUpDownVector;",                { 226, 165, 143, 0 } },
-    { "&RightUpTeeVector;",                 { 226, 165, 156, 0 } },
-    { "&RightUpVector;",                    { 226, 134, 190, 0 } },
-    { "&RightUpVectorBar;",                 { 226, 165, 148, 0 } },
-    { "&RightVector;",                      { 226, 135, 128, 0 } },
-    { "&RightVectorBar;",                   { 226, 165, 147, 0 } },
-    { "&Rightarrow;",                       { 226, 135, 146, 0 } },
-    { "&Ropf;",                             { 226, 132, 157, 0 } },
-    { "&RoundImplies;",                     { 226, 165, 176, 0 } },
-    { "&Rrightarrow;",                      { 226, 135, 155, 0 } },
-    { "&Rscr;",                             { 226, 132, 155, 0 } },
-    { "&Rsh;",                              { 226, 134, 177, 0 } },
-    { "&RuleDelayed;",                      { 226, 167, 180, 0 } },
-    { "&SHCHcy;",                           { 208, 169, 0 } },
-    { "&SHcy;",                             { 208, 168, 0 } },
-    { "&SOFTcy;",                           { 208, 172, 0 } },
-    { "&Sacute;",                           { 197, 154, 0 } },
-    { "&Sc;",                               { 226, 170, 188, 0 } },
-    { "&Scaron;",                           { 197, 160, 0 } },
-    { "&Scedil;",                           { 197, 158, 0 } },
-    { "&Scirc;",                            { 197, 156, 0 } },
-    { "&Scy;",                              { 208, 161, 0 } },
-    { "&Sfr;",                              { 240, 157, 148, 150, 0 } },
-    { "&ShortDownArrow;",                   { 226, 134, 147, 0 } },
-    { "&ShortLeftArrow;",                   { 226, 134, 144, 0 } },
-    { "&ShortRightArrow;",                  { 226, 134, 146, 0 } },
-    { "&ShortUpArrow;",                     { 226, 134, 145, 0 } },
-    { "&Sigma;",                            { 206, 163, 0 } },
-    { "&SmallCircle;",                      { 226, 136, 152, 0 } },
-    { "&Sopf;",                             { 240, 157, 149, 138, 0 } },
-    { "&Sqrt;",                             { 226, 136, 154, 0 } },
-    { "&Square;",                           { 226, 150, 161, 0 } },
-    { "&SquareIntersection;",               { 226, 138, 147, 0 } },
-    { "&SquareSubset;",                     { 226, 138, 143, 0 } },
-    { "&SquareSubsetEqual;",                { 226, 138, 145, 0 } },
-    { "&SquareSuperset;",                   { 226, 138, 144, 0 } },
-    { "&SquareSupersetEqual;",              { 226, 138, 146, 0 } },
-    { "&SquareUnion;",                      { 226, 138, 148, 0 } },
-    { "&Sscr;",                             { 240, 157, 146, 174, 0 } },
-    { "&Star;",                             { 226, 139, 134, 0 } },
-    { "&Sub;",                              { 226, 139, 144, 0 } },
-    { "&Subset;",                           { 226, 139, 144, 0 } },
-    { "&SubsetEqual;",                      { 226, 138, 134, 0 } },
-    { "&Succeeds;",                         { 226, 137, 187, 0 } },
-    { "&SucceedsEqual;",                    { 226, 170, 176, 0 } },
-    { "&SucceedsSlantEqual;",               { 226, 137, 189, 0 } },
-    { "&SucceedsTilde;",                    { 226, 137, 191, 0 } },
-    { "&SuchThat;",                         { 226, 136, 139, 0 } },
-    { "&Sum;",                              { 226, 136, 145, 0 } },
-    { "&Sup;",                              { 226, 139, 145, 0 } },
-    { "&Superset;",                         { 226, 138, 131, 0 } },
-    { "&SupersetEqual;",                    { 226, 138, 135, 0 } },
-    { "&Supset;",                           { 226, 139, 145, 0 } },
-    { "&THORN;",                            { 195, 158, 0 } },
-    { "&TRADE;",                            { 226, 132, 162, 0 } },
-    { "&TSHcy;",                            { 208, 139, 0 } },
-    { "&TScy;",                             { 208, 166, 0 } },
-    { "&Tab;",                              {   9, 0 } },
-    { "&Tau;",                              { 206, 164, 0 } },
-    { "&Tcaron;",                           { 197, 164, 0 } },
-    { "&Tcedil;",                           { 197, 162, 0 } },
-    { "&Tcy;",                              { 208, 162, 0 } },
-    { "&Tfr;",                              { 240, 157, 148, 151, 0 } },
-    { "&Therefore;",                        { 226, 136, 180, 0 } },
-    { "&Theta;",                            { 206, 152, 0 } },
-    { "&ThickSpace;",                       { 226, 129, 159, 226, 128, 138, 0 } },
-    { "&ThinSpace;",                        { 226, 128, 137, 0 } },
-    { "&Tilde;",                            { 226, 136, 188, 0 } },
-    { "&TildeEqual;",                       { 226, 137, 131, 0 } },
-    { "&TildeFullEqual;",                   { 226, 137, 133, 0 } },
-    { "&TildeTilde;",                       { 226, 137, 136, 0 } },
-    { "&Topf;",                             { 240, 157, 149, 139, 0 } },
-    { "&TripleDot;",                        { 226, 131, 155, 0 } },
-    { "&Tscr;",                             { 240, 157, 146, 175, 0 } },
-    { "&Tstrok;",                           { 197, 166, 0 } },
-    { "&Uacute;",                           { 195, 154, 0 } },
-    { "&Uarr;",                             { 226, 134, 159, 0 } },
-    { "&Uarrocir;",                         { 226, 165, 137, 0 } },
-    { "&Ubrcy;",                            { 208, 142, 0 } },
-    { "&Ubreve;",                           { 197, 172, 0 } },
-    { "&Ucirc;",                            { 195, 155, 0 } },
-    { "&Ucy;",                              { 208, 163, 0 } },
-    { "&Udblac;",                           { 197, 176, 0 } },
-    { "&Ufr;",                              { 240, 157, 148, 152, 0 } },
-    { "&Ugrave;",                           { 195, 153, 0 } },
-    { "&Umacr;",                            { 197, 170, 0 } },
-    { "&UnderBar;",                         {  95, 0 } },
-    { "&UnderBrace;",                       { 226, 143, 159, 0 } },
-    { "&UnderBracket;",                     { 226, 142, 181, 0 } },
-    { "&UnderParenthesis;",                 { 226, 143, 157, 0 } },
-    { "&Union;",                            { 226, 139, 131, 0 } },
-    { "&UnionPlus;",                        { 226, 138, 142, 0 } },
-    { "&Uogon;",                            { 197, 178, 0 } },
-    { "&Uopf;",                             { 240, 157, 149, 140, 0 } },
-    { "&UpArrow;",                          { 226, 134, 145, 0 } },
-    { "&UpArrowBar;",                       { 226, 164, 146, 0 } },
-    { "&UpArrowDownArrow;",                 { 226, 135, 133, 0 } },
-    { "&UpDownArrow;",                      { 226, 134, 149, 0 } },
-    { "&UpEquilibrium;",                    { 226, 165, 174, 0 } },
-    { "&UpTee;",                            { 226, 138, 165, 0 } },
-    { "&UpTeeArrow;",                       { 226, 134, 165, 0 } },
-    { "&Uparrow;",                          { 226, 135, 145, 0 } },
-    { "&Updownarrow;",                      { 226, 135, 149, 0 } },
-    { "&UpperLeftArrow;",                   { 226, 134, 150, 0 } },
-    { "&UpperRightArrow;",                  { 226, 134, 151, 0 } },
-    { "&Upsi;",                             { 207, 146, 0 } },
-    { "&Upsilon;",                          { 206, 165, 0 } },
-    { "&Uring;",                            { 197, 174, 0 } },
-    { "&Uscr;",                             { 240, 157, 146, 176, 0 } },
-    { "&Utilde;",                           { 197, 168, 0 } },
-    { "&Uuml;",                             { 195, 156, 0 } },
-    { "&VDash;",                            { 226, 138, 171, 0 } },
-    { "&Vbar;",                             { 226, 171, 171, 0 } },
-    { "&Vcy;",                              { 208, 146, 0 } },
-    { "&Vdash;",                            { 226, 138, 169, 0 } },
-    { "&Vdashl;",                           { 226, 171, 166, 0 } },
-    { "&Vee;",                              { 226, 139, 129, 0 } },
-    { "&Verbar;",                           { 226, 128, 150, 0 } },
-    { "&Vert;",                             { 226, 128, 150, 0 } },
-    { "&VerticalBar;",                      { 226, 136, 163, 0 } },
-    { "&VerticalLine;",                     { 124, 0 } },
-    { "&VerticalSeparator;",                { 226, 157, 152, 0 } },
-    { "&VerticalTilde;",                    { 226, 137, 128, 0 } },
-    { "&VeryThinSpace;",                    { 226, 128, 138, 0 } },
-    { "&Vfr;",                              { 240, 157, 148, 153, 0 } },
-    { "&Vopf;",                             { 240, 157, 149, 141, 0 } },
-    { "&Vscr;",                             { 240, 157, 146, 177, 0 } },
-    { "&Vvdash;",                           { 226, 138, 170, 0 } },
-    { "&Wcirc;",                            { 197, 180, 0 } },
-    { "&Wedge;",                            { 226, 139, 128, 0 } },
-    { "&Wfr;",                              { 240, 157, 148, 154, 0 } },
-    { "&Wopf;",                             { 240, 157, 149, 142, 0 } },
-    { "&Wscr;",                             { 240, 157, 146, 178, 0 } },
-    { "&Xfr;",                              { 240, 157, 148, 155, 0 } },
-    { "&Xi;",                               { 206, 158, 0 } },
-    { "&Xopf;",                             { 240, 157, 149, 143, 0 } },
-    { "&Xscr;",                             { 240, 157, 146, 179, 0 } },
-    { "&YAcy;",                             { 208, 175, 0 } },
-    { "&YIcy;",                             { 208, 135, 0 } },
-    { "&YUcy;",                             { 208, 174, 0 } },
-    { "&Yacute;",                           { 195, 157, 0 } },
-    { "&Ycirc;",                            { 197, 182, 0 } },
-    { "&Ycy;",                              { 208, 171, 0 } },
-    { "&Yfr;",                              { 240, 157, 148, 156, 0 } },
-    { "&Yopf;",                             { 240, 157, 149, 144, 0 } },
-    { "&Yscr;",                             { 240, 157, 146, 180, 0 } },
-    { "&Yuml;",                             { 197, 184, 0 } },
-    { "&ZHcy;",                             { 208, 150, 0 } },
-    { "&Zacute;",                           { 197, 185, 0 } },
-    { "&Zcaron;",                           { 197, 189, 0 } },
-    { "&Zcy;",                              { 208, 151, 0 } },
-    { "&Zdot;",                             { 197, 187, 0 } },
-    { "&ZeroWidthSpace;",                   { 226, 128, 139, 0 } },
-    { "&Zeta;",                             { 206, 150, 0 } },
-    { "&Zfr;",                              { 226, 132, 168, 0 } },
-    { "&Zopf;",                             { 226, 132, 164, 0 } },
-    { "&Zscr;",                             { 240, 157, 146, 181, 0 } },
-    { "&aacute;",                           { 195, 161, 0 } },
-    { "&abreve;",                           { 196, 131, 0 } },
-    { "&ac;",                               { 226, 136, 190, 0 } },
-    { "&acE;",                              { 226, 136, 190, 204, 179, 0 } },
-    { "&acd;",                              { 226, 136, 191, 0 } },
-    { "&acirc;",                            { 195, 162, 0 } },
-    { "&acute;",                            { 194, 180, 0 } },
-    { "&acy;",                              { 208, 176, 0 } },
-    { "&aelig;",                            { 195, 166, 0 } },
-    { "&af;",                               { 226, 129, 161, 0 } },
-    { "&afr;",                              { 240, 157, 148, 158, 0 } },
-    { "&agrave;",                           { 195, 160, 0 } },
-    { "&alefsym;",                          { 226, 132, 181, 0 } },
-    { "&aleph;",                            { 226, 132, 181, 0 } },
-    { "&alpha;",                            { 206, 177, 0 } },
-    { "&amacr;",                            { 196, 129, 0 } },
-    { "&amalg;",                            { 226, 168, 191, 0 } },
-    { "&amp;",                              {  38, 0 } },
-    { "&and;",                              { 226, 136, 167, 0 } },
-    { "&andand;",                           { 226, 169, 149, 0 } },
-    { "&andd;",                             { 226, 169, 156, 0 } },
-    { "&andslope;",                         { 226, 169, 152, 0 } },
-    { "&andv;",                             { 226, 169, 154, 0 } },
-    { "&ang;",                              { 226, 136, 160, 0 } },
-    { "&ange;",                             { 226, 166, 164, 0 } },
-    { "&angle;",                            { 226, 136, 160, 0 } },
-    { "&angmsd;",                           { 226, 136, 161, 0 } },
-    { "&angmsdaa;",                         { 226, 166, 168, 0 } },
-    { "&angmsdab;",                         { 226, 166, 169, 0 } },
-    { "&angmsdac;",                         { 226, 166, 170, 0 } },
-    { "&angmsdad;",                         { 226, 166, 171, 0 } },
-    { "&angmsdae;",                         { 226, 166, 172, 0 } },
-    { "&angmsdaf;",                         { 226, 166, 173, 0 } },
-    { "&angmsdag;",                         { 226, 166, 174, 0 } },
-    { "&angmsdah;",                         { 226, 166, 175, 0 } },
-    { "&angrt;",                            { 226, 136, 159, 0 } },
-    { "&angrtvb;",                          { 226, 138, 190, 0 } },
-    { "&angrtvbd;",                         { 226, 166, 157, 0 } },
-    { "&angsph;",                           { 226, 136, 162, 0 } },
-    { "&angst;",                            { 195, 133, 0 } },
-    { "&angzarr;",                          { 226, 141, 188, 0 } },
-    { "&aogon;",                            { 196, 133, 0 } },
-    { "&aopf;",                             { 240, 157, 149, 146, 0 } },
-    { "&ap;",                               { 226, 137, 136, 0 } },
-    { "&apE;",                              { 226, 169, 176, 0 } },
-    { "&apacir;",                           { 226, 169, 175, 0 } },
-    { "&ape;",                              { 226, 137, 138, 0 } },
-    { "&apid;",                             { 226, 137, 139, 0 } },
-    { "&apos;",                             {  39, 0 } },
-    { "&approx;",                           { 226, 137, 136, 0 } },
-    { "&approxeq;",                         { 226, 137, 138, 0 } },
-    { "&aring;",                            { 195, 165, 0 } },
-    { "&ascr;",                             { 240, 157, 146, 182, 0 } },
-    { "&ast;",                              {  42, 0 } },
-    { "&asymp;",                            { 226, 137, 136, 0 } },
-    { "&asympeq;",                          { 226, 137, 141, 0 } },
-    { "&atilde;",                           { 195, 163, 0 } },
-    { "&auml;",                             { 195, 164, 0 } },
-    { "&awconint;",                         { 226, 136, 179, 0 } },
-    { "&awint;",                            { 226, 168, 145, 0 } },
-    { "&bNot;",                             { 226, 171, 173, 0 } },
-    { "&backcong;",                         { 226, 137, 140, 0 } },
-    { "&backepsilon;",                      { 207, 182, 0 } },
-    { "&backprime;",                        { 226, 128, 181, 0 } },
-    { "&backsim;",                          { 226, 136, 189, 0 } },
-    { "&backsimeq;",                        { 226, 139, 141, 0 } },
-    { "&barvee;",                           { 226, 138, 189, 0 } },
-    { "&barwed;",                           { 226, 140, 133, 0 } },
-    { "&barwedge;",                         { 226, 140, 133, 0 } },
-    { "&bbrk;",                             { 226, 142, 181, 0 } },
-    { "&bbrktbrk;",                         { 226, 142, 182, 0 } },
-    { "&bcong;",                            { 226, 137, 140, 0 } },
-    { "&bcy;",                              { 208, 177, 0 } },
-    { "&bdquo;",                            { 226, 128, 158, 0 } },
-    { "&becaus;",                           { 226, 136, 181, 0 } },
-    { "&because;",                          { 226, 136, 181, 0 } },
-    { "&bemptyv;",                          { 226, 166, 176, 0 } },
-    { "&bepsi;",                            { 207, 182, 0 } },
-    { "&bernou;",                           { 226, 132, 172, 0 } },
-    { "&beta;",                             { 206, 178, 0 } },
-    { "&beth;",                             { 226, 132, 182, 0 } },
-    { "&between;",                          { 226, 137, 172, 0 } },
-    { "&bfr;",                              { 240, 157, 148, 159, 0 } },
-    { "&bigcap;",                           { 226, 139, 130, 0 } },
-    { "&bigcirc;",                          { 226, 151, 175, 0 } },
-    { "&bigcup;",                           { 226, 139, 131, 0 } },
-    { "&bigodot;",                          { 226, 168, 128, 0 } },
-    { "&bigoplus;",                         { 226, 168, 129, 0 } },
-    { "&bigotimes;",                        { 226, 168, 130, 0 } },
-    { "&bigsqcup;",                         { 226, 168, 134, 0 } },
-    { "&bigstar;",                          { 226, 152, 133, 0 } },
-    { "&bigtriangledown;",                  { 226, 150, 189, 0 } },
-    { "&bigtriangleup;",                    { 226, 150, 179, 0 } },
-    { "&biguplus;",                         { 226, 168, 132, 0 } },
-    { "&bigvee;",                           { 226, 139, 129, 0 } },
-    { "&bigwedge;",                         { 226, 139, 128, 0 } },
-    { "&bkarow;",                           { 226, 164, 141, 0 } },
-    { "&blacklozenge;",                     { 226, 167, 171, 0 } },
-    { "&blacksquare;",                      { 226, 150, 170, 0 } },
-    { "&blacktriangle;",                    { 226, 150, 180, 0 } },
-    { "&blacktriangledown;",                { 226, 150, 190, 0 } },
-    { "&blacktriangleleft;",                { 226, 151, 130, 0 } },
-    { "&blacktriangleright;",               { 226, 150, 184, 0 } },
-    { "&blank;",                            { 226, 144, 163, 0 } },
-    { "&blk12;",                            { 226, 150, 146, 0 } },
-    { "&blk14;",                            { 226, 150, 145, 0 } },
-    { "&blk34;",                            { 226, 150, 147, 0 } },
-    { "&block;",                            { 226, 150, 136, 0 } },
-    { "&bne;",                              {  61, 226, 131, 165, 0 } },
-    { "&bnequiv;",                          { 226, 137, 161, 226, 131, 165, 0 } },
-    { "&bnot;",                             { 226, 140, 144, 0 } },
-    { "&bopf;",                             { 240, 157, 149, 147, 0 } },
-    { "&bot;",                              { 226, 138, 165, 0 } },
-    { "&bottom;",                           { 226, 138, 165, 0 } },
-    { "&bowtie;",                           { 226, 139, 136, 0 } },
-    { "&boxDL;",                            { 226, 149, 151, 0 } },
-    { "&boxDR;",                            { 226, 149, 148, 0 } },
-    { "&boxDl;",                            { 226, 149, 150, 0 } },
-    { "&boxDr;",                            { 226, 149, 147, 0 } },
-    { "&boxH;",                             { 226, 149, 144, 0 } },
-    { "&boxHD;",                            { 226, 149, 166, 0 } },
-    { "&boxHU;",                            { 226, 149, 169, 0 } },
-    { "&boxHd;",                            { 226, 149, 164, 0 } },
-    { "&boxHu;",                            { 226, 149, 167, 0 } },
-    { "&boxUL;",                            { 226, 149, 157, 0 } },
-    { "&boxUR;",                            { 226, 149, 154, 0 } },
-    { "&boxUl;",                            { 226, 149, 156, 0 } },
-    { "&boxUr;",                            { 226, 149, 153, 0 } },
-    { "&boxV;",                             { 226, 149, 145, 0 } },
-    { "&boxVH;",                            { 226, 149, 172, 0 } },
-    { "&boxVL;",                            { 226, 149, 163, 0 } },
-    { "&boxVR;",                            { 226, 149, 160, 0 } },
-    { "&boxVh;",                            { 226, 149, 171, 0 } },
-    { "&boxVl;",                            { 226, 149, 162, 0 } },
-    { "&boxVr;",                            { 226, 149, 159, 0 } },
-    { "&boxbox;",                           { 226, 167, 137, 0 } },
-    { "&boxdL;",                            { 226, 149, 149, 0 } },
-    { "&boxdR;",                            { 226, 149, 146, 0 } },
-    { "&boxdl;",                            { 226, 148, 144, 0 } },
-    { "&boxdr;",                            { 226, 148, 140, 0 } },
-    { "&boxh;",                             { 226, 148, 128, 0 } },
-    { "&boxhD;",                            { 226, 149, 165, 0 } },
-    { "&boxhU;",                            { 226, 149, 168, 0 } },
-    { "&boxhd;",                            { 226, 148, 172, 0 } },
-    { "&boxhu;",                            { 226, 148, 180, 0 } },
-    { "&boxminus;",                         { 226, 138, 159, 0 } },
-    { "&boxplus;",                          { 226, 138, 158, 0 } },
-    { "&boxtimes;",                         { 226, 138, 160, 0 } },
-    { "&boxuL;",                            { 226, 149, 155, 0 } },
-    { "&boxuR;",                            { 226, 149, 152, 0 } },
-    { "&boxul;",                            { 226, 148, 152, 0 } },
-    { "&boxur;",                            { 226, 148, 148, 0 } },
-    { "&boxv;",                             { 226, 148, 130, 0 } },
-    { "&boxvH;",                            { 226, 149, 170, 0 } },
-    { "&boxvL;",                            { 226, 149, 161, 0 } },
-    { "&boxvR;",                            { 226, 149, 158, 0 } },
-    { "&boxvh;",                            { 226, 148, 188, 0 } },
-    { "&boxvl;",                            { 226, 148, 164, 0 } },
-    { "&boxvr;",                            { 226, 148, 156, 0 } },
-    { "&bprime;",                           { 226, 128, 181, 0 } },
-    { "&breve;",                            { 203, 152, 0 } },
-    { "&brvbar;",                           { 194, 166, 0 } },
-    { "&bscr;",                             { 240, 157, 146, 183, 0 } },
-    { "&bsemi;",                            { 226, 129, 143, 0 } },
-    { "&bsim;",                             { 226, 136, 189, 0 } },
-    { "&bsime;",                            { 226, 139, 141, 0 } },
-    { "&bsol;",                             {  92, 0 } },
-    { "&bsolb;",                            { 226, 167, 133, 0 } },
-    { "&bsolhsub;",                         { 226, 159, 136, 0 } },
-    { "&bull;",                             { 226, 128, 162, 0 } },
-    { "&bullet;",                           { 226, 128, 162, 0 } },
-    { "&bump;",                             { 226, 137, 142, 0 } },
-    { "&bumpE;",                            { 226, 170, 174, 0 } },
-    { "&bumpe;",                            { 226, 137, 143, 0 } },
-    { "&bumpeq;",                           { 226, 137, 143, 0 } },
-    { "&cacute;",                           { 196, 135, 0 } },
-    { "&cap;",                              { 226, 136, 169, 0 } },
-    { "&capand;",                           { 226, 169, 132, 0 } },
-    { "&capbrcup;",                         { 226, 169, 137, 0 } },
-    { "&capcap;",                           { 226, 169, 139, 0 } },
-    { "&capcup;",                           { 226, 169, 135, 0 } },
-    { "&capdot;",                           { 226, 169, 128, 0 } },
-    { "&caps;",                             { 226, 136, 169, 239, 184, 128, 0 } },
-    { "&caret;",                            { 226, 129, 129, 0 } },
-    { "&caron;",                            { 203, 135, 0 } },
-    { "&ccaps;",                            { 226, 169, 141, 0 } },
-    { "&ccaron;",                           { 196, 141, 0 } },
-    { "&ccedil;",                           { 195, 167, 0 } },
-    { "&ccirc;",                            { 196, 137, 0 } },
-    { "&ccups;",                            { 226, 169, 140, 0 } },
-    { "&ccupssm;",                          { 226, 169, 144, 0 } },
-    { "&cdot;",                             { 196, 139, 0 } },
-    { "&cedil;",                            { 194, 184, 0 } },
-    { "&cemptyv;",                          { 226, 166, 178, 0 } },
-    { "&cent;",                             { 194, 162, 0 } },
-    { "&centerdot;",                        { 194, 183, 0 } },
-    { "&cfr;",                              { 240, 157, 148, 160, 0 } },
-    { "&chcy;",                             { 209, 135, 0 } },
-    { "&check;",                            { 226, 156, 147, 0 } },
-    { "&checkmark;",                        { 226, 156, 147, 0 } },
-    { "&chi;",                              { 207, 135, 0 } },
-    { "&cir;",                              { 226, 151, 139, 0 } },
-    { "&cirE;",                             { 226, 167, 131, 0 } },
-    { "&circ;",                             { 203, 134, 0 } },
-    { "&circeq;",                           { 226, 137, 151, 0 } },
-    { "&circlearrowleft;",                  { 226, 134, 186, 0 } },
-    { "&circlearrowright;",                 { 226, 134, 187, 0 } },
-    { "&circledR;",                         { 194, 174, 0 } },
-    { "&circledS;",                         { 226, 147, 136, 0 } },
-    { "&circledast;",                       { 226, 138, 155, 0 } },
-    { "&circledcirc;",                      { 226, 138, 154, 0 } },
-    { "&circleddash;",                      { 226, 138, 157, 0 } },
-    { "&cire;",                             { 226, 137, 151, 0 } },
-    { "&cirfnint;",                         { 226, 168, 144, 0 } },
-    { "&cirmid;",                           { 226, 171, 175, 0 } },
-    { "&cirscir;",                          { 226, 167, 130, 0 } },
-    { "&clubs;",                            { 226, 153, 163, 0 } },
-    { "&clubsuit;",                         { 226, 153, 163, 0 } },
-    { "&colon;",                            {  58, 0 } },
-    { "&colone;",                           { 226, 137, 148, 0 } },
-    { "&coloneq;",                          { 226, 137, 148, 0 } },
-    { "&comma;",                            {  44, 0 } },
-    { "&commat;",                           {  64, 0 } },
-    { "&comp;",                             { 226, 136, 129, 0 } },
-    { "&compfn;",                           { 226, 136, 152, 0 } },
-    { "&complement;",                       { 226, 136, 129, 0 } },
-    { "&complexes;",                        { 226, 132, 130, 0 } },
-    { "&cong;",                             { 226, 137, 133, 0 } },
-    { "&congdot;",                          { 226, 169, 173, 0 } },
-    { "&conint;",                           { 226, 136, 174, 0 } },
-    { "&copf;",                             { 240, 157, 149, 148, 0 } },
-    { "&coprod;",                           { 226, 136, 144, 0 } },
-    { "&copy;",                             { 194, 169, 0 } },
-    { "&copysr;",                           { 226, 132, 151, 0 } },
-    { "&crarr;",                            { 226, 134, 181, 0 } },
-    { "&cross;",                            { 226, 156, 151, 0 } },
-    { "&cscr;",                             { 240, 157, 146, 184, 0 } },
-    { "&csub;",                             { 226, 171, 143, 0 } },
-    { "&csube;",                            { 226, 171, 145, 0 } },
-    { "&csup;",                             { 226, 171, 144, 0 } },
-    { "&csupe;",                            { 226, 171, 146, 0 } },
-    { "&ctdot;",                            { 226, 139, 175, 0 } },
-    { "&cudarrl;",                          { 226, 164, 184, 0 } },
-    { "&cudarrr;",                          { 226, 164, 181, 0 } },
-    { "&cuepr;",                            { 226, 139, 158, 0 } },
-    { "&cuesc;",                            { 226, 139, 159, 0 } },
-    { "&cularr;",                           { 226, 134, 182, 0 } },
-    { "&cularrp;",                          { 226, 164, 189, 0 } },
-    { "&cup;",                              { 226, 136, 170, 0 } },
-    { "&cupbrcap;",                         { 226, 169, 136, 0 } },
-    { "&cupcap;",                           { 226, 169, 134, 0 } },
-    { "&cupcup;",                           { 226, 169, 138, 0 } },
-    { "&cupdot;",                           { 226, 138, 141, 0 } },
-    { "&cupor;",                            { 226, 169, 133, 0 } },
-    { "&cups;",                             { 226, 136, 170, 239, 184, 128, 0 } },
-    { "&curarr;",                           { 226, 134, 183, 0 } },
-    { "&curarrm;",                          { 226, 164, 188, 0 } },
-    { "&curlyeqprec;",                      { 226, 139, 158, 0 } },
-    { "&curlyeqsucc;",                      { 226, 139, 159, 0 } },
-    { "&curlyvee;",                         { 226, 139, 142, 0 } },
-    { "&curlywedge;",                       { 226, 139, 143, 0 } },
-    { "&curren;",                           { 194, 164, 0 } },
-    { "&curvearrowleft;",                   { 226, 134, 182, 0 } },
-    { "&curvearrowright;",                  { 226, 134, 183, 0 } },
-    { "&cuvee;",                            { 226, 139, 142, 0 } },
-    { "&cuwed;",                            { 226, 139, 143, 0 } },
-    { "&cwconint;",                         { 226, 136, 178, 0 } },
-    { "&cwint;",                            { 226, 136, 177, 0 } },
-    { "&cylcty;",                           { 226, 140, 173, 0 } },
-    { "&dArr;",                             { 226, 135, 147, 0 } },
-    { "&dHar;",                             { 226, 165, 165, 0 } },
-    { "&dagger;",                           { 226, 128, 160, 0 } },
-    { "&daleth;",                           { 226, 132, 184, 0 } },
-    { "&darr;",                             { 226, 134, 147, 0 } },
-    { "&dash;",                             { 226, 128, 144, 0 } },
-    { "&dashv;",                            { 226, 138, 163, 0 } },
-    { "&dbkarow;",                          { 226, 164, 143, 0 } },
-    { "&dblac;",                            { 203, 157, 0 } },
-    { "&dcaron;",                           { 196, 143, 0 } },
-    { "&dcy;",                              { 208, 180, 0 } },
-    { "&dd;",                               { 226, 133, 134, 0 } },
-    { "&ddagger;",                          { 226, 128, 161, 0 } },
-    { "&ddarr;",                            { 226, 135, 138, 0 } },
-    { "&ddotseq;",                          { 226, 169, 183, 0 } },
-    { "&deg;",                              { 194, 176, 0 } },
-    { "&delta;",                            { 206, 180, 0 } },
-    { "&demptyv;",                          { 226, 166, 177, 0 } },
-    { "&dfisht;",                           { 226, 165, 191, 0 } },
-    { "&dfr;",                              { 240, 157, 148, 161, 0 } },
-    { "&dharl;",                            { 226, 135, 131, 0 } },
-    { "&dharr;",                            { 226, 135, 130, 0 } },
-    { "&diam;",                             { 226, 139, 132, 0 } },
-    { "&diamond;",                          { 226, 139, 132, 0 } },
-    { "&diamondsuit;",                      { 226, 153, 166, 0 } },
-    { "&diams;",                            { 226, 153, 166, 0 } },
-    { "&die;",                              { 194, 168, 0 } },
-    { "&digamma;",                          { 207, 157, 0 } },
-    { "&disin;",                            { 226, 139, 178, 0 } },
-    { "&div;",                              { 195, 183, 0 } },
-    { "&divide;",                           { 195, 183, 0 } },
-    { "&divideontimes;",                    { 226, 139, 135, 0 } },
-    { "&divonx;",                           { 226, 139, 135, 0 } },
-    { "&djcy;",                             { 209, 146, 0 } },
-    { "&dlcorn;",                           { 226, 140, 158, 0 } },
-    { "&dlcrop;",                           { 226, 140, 141, 0 } },
-    { "&dollar;",                           {  36, 0 } },
-    { "&dopf;",                             { 240, 157, 149, 149, 0 } },
-    { "&dot;",                              { 203, 153, 0 } },
-    { "&doteq;",                            { 226, 137, 144, 0 } },
-    { "&doteqdot;",                         { 226, 137, 145, 0 } },
-    { "&dotminus;",                         { 226, 136, 184, 0 } },
-    { "&dotplus;",                          { 226, 136, 148, 0 } },
-    { "&dotsquare;",                        { 226, 138, 161, 0 } },
-    { "&doublebarwedge;",                   { 226, 140, 134, 0 } },
-    { "&downarrow;",                        { 226, 134, 147, 0 } },
-    { "&downdownarrows;",                   { 226, 135, 138, 0 } },
-    { "&downharpoonleft;",                  { 226, 135, 131, 0 } },
-    { "&downharpoonright;",                 { 226, 135, 130, 0 } },
-    { "&drbkarow;",                         { 226, 164, 144, 0 } },
-    { "&drcorn;",                           { 226, 140, 159, 0 } },
-    { "&drcrop;",                           { 226, 140, 140, 0 } },
-    { "&dscr;",                             { 240, 157, 146, 185, 0 } },
-    { "&dscy;",                             { 209, 149, 0 } },
-    { "&dsol;",                             { 226, 167, 182, 0 } },
-    { "&dstrok;",                           { 196, 145, 0 } },
-    { "&dtdot;",                            { 226, 139, 177, 0 } },
-    { "&dtri;",                             { 226, 150, 191, 0 } },
-    { "&dtrif;",                            { 226, 150, 190, 0 } },
-    { "&duarr;",                            { 226, 135, 181, 0 } },
-    { "&duhar;",                            { 226, 165, 175, 0 } },
-    { "&dwangle;",                          { 226, 166, 166, 0 } },
-    { "&dzcy;",                             { 209, 159, 0 } },
-    { "&dzigrarr;",                         { 226, 159, 191, 0 } },
-    { "&eDDot;",                            { 226, 169, 183, 0 } },
-    { "&eDot;",                             { 226, 137, 145, 0 } },
-    { "&eacute;",                           { 195, 169, 0 } },
-    { "&easter;",                           { 226, 169, 174, 0 } },
-    { "&ecaron;",                           { 196, 155, 0 } },
-    { "&ecir;",                             { 226, 137, 150, 0 } },
-    { "&ecirc;",                            { 195, 170, 0 } },
-    { "&ecolon;",                           { 226, 137, 149, 0 } },
-    { "&ecy;",                              { 209, 141, 0 } },
-    { "&edot;",                             { 196, 151, 0 } },
-    { "&ee;",                               { 226, 133, 135, 0 } },
-    { "&efDot;",                            { 226, 137, 146, 0 } },
-    { "&efr;",                              { 240, 157, 148, 162, 0 } },
-    { "&eg;",                               { 226, 170, 154, 0 } },
-    { "&egrave;",                           { 195, 168, 0 } },
-    { "&egs;",                              { 226, 170, 150, 0 } },
-    { "&egsdot;",                           { 226, 170, 152, 0 } },
-    { "&el;",                               { 226, 170, 153, 0 } },
-    { "&elinters;",                         { 226, 143, 167, 0 } },
-    { "&ell;",                              { 226, 132, 147, 0 } },
-    { "&els;",                              { 226, 170, 149, 0 } },
-    { "&elsdot;",                           { 226, 170, 151, 0 } },
-    { "&emacr;",                            { 196, 147, 0 } },
-    { "&empty;",                            { 226, 136, 133, 0 } },
-    { "&emptyset;",                         { 226, 136, 133, 0 } },
-    { "&emptyv;",                           { 226, 136, 133, 0 } },
-    { "&emsp;",                             { 226, 128, 131, 0 } },
-    { "&emsp13;",                           { 226, 128, 132, 0 } },
-    { "&emsp14;",                           { 226, 128, 133, 0 } },
-    { "&eng;",                              { 197, 139, 0 } },
-    { "&ensp;",                             { 226, 128, 130, 0 } },
-    { "&eogon;",                            { 196, 153, 0 } },
-    { "&eopf;",                             { 240, 157, 149, 150, 0 } },
-    { "&epar;",                             { 226, 139, 149, 0 } },
-    { "&eparsl;",                           { 226, 167, 163, 0 } },
-    { "&eplus;",                            { 226, 169, 177, 0 } },
-    { "&epsi;",                             { 206, 181, 0 } },
-    { "&epsilon;",                          { 206, 181, 0 } },
-    { "&epsiv;",                            { 207, 181, 0 } },
-    { "&eqcirc;",                           { 226, 137, 150, 0 } },
-    { "&eqcolon;",                          { 226, 137, 149, 0 } },
-    { "&eqsim;",                            { 226, 137, 130, 0 } },
-    { "&eqslantgtr;",                       { 226, 170, 150, 0 } },
-    { "&eqslantless;",                      { 226, 170, 149, 0 } },
-    { "&equals;",                           { 61, 0 } },
-    { "&equest;",                           { 226, 137, 159, 0 } },
-    { "&equiv;",                            { 226, 137, 161, 0 } },
-    { "&equivDD;",                          { 226, 169, 184, 0 } },
-    { "&eqvparsl;",                         { 226, 167, 165, 0 } },
-    { "&erDot;",                            { 226, 137, 147, 0 } },
-    { "&erarr;",                            { 226, 165, 177, 0 } },
-    { "&escr;",                             { 226, 132, 175, 0 } },
-    { "&esdot;",                            { 226, 137, 144, 0 } },
-    { "&esim;",                             { 226, 137, 130, 0 } },
-    { "&eta;",                              { 206, 183, 0 } },
-    { "&eth;",                              { 195, 176, 0 } },
-    { "&euml;",                             { 195, 171, 0 } },
-    { "&euro;",                             { 226, 130, 172, 0 } },
-    { "&excl;",                             {  33, 0 } },
-    { "&exist;",                            { 226, 136, 131, 0 } },
-    { "&expectation;",                      { 226, 132, 176, 0 } },
-    { "&exponentiale;",                     { 226, 133, 135, 0 } },
-    { "&fallingdotseq;",                    { 226, 137, 146, 0 } },
-    { "&fcy;",                              { 209, 132, 0 } },
-    { "&female;",                           { 226, 153, 128, 0 } },
-    { "&ffilig;",                           { 239, 172, 131, 0 } },
-    { "&fflig;",                            { 239, 172, 128, 0 } },
-    { "&ffllig;",                           { 239, 172, 132, 0 } },
-    { "&ffr;",                              { 240, 157, 148, 163, 0 } },
-    { "&filig;",                            { 239, 172, 129, 0 } },
-    { "&fjlig;",                            { 102, 106, 0 } },
-    { "&flat;",                             { 226, 153, 173, 0 } },
-    { "&fllig;",                            { 239, 172, 130, 0 } },
-    { "&fltns;",                            { 226, 150, 177, 0 } },
-    { "&fnof;",                             { 198, 146, 0 } },
-    { "&fopf;",                             { 240, 157, 149, 151, 0 } },
-    { "&forall;",                           { 226, 136, 128, 0 } },
-    { "&fork;",                             { 226, 139, 148, 0 } },
-    { "&forkv;",                            { 226, 171, 153, 0 } },
-    { "&fpartint;",                         { 226, 168, 141, 0 } },
-    { "&frac12;",                           { 194, 189, 0 } },
-    { "&frac13;",                           { 226, 133, 147, 0 } },
-    { "&frac14;",                           { 194, 188, 0 } },
-    { "&frac15;",                           { 226, 133, 149, 0 } },
-    { "&frac16;",                           { 226, 133, 153, 0 } },
-    { "&frac18;",                           { 226, 133, 155, 0 } },
-    { "&frac23;",                           { 226, 133, 148, 0 } },
-    { "&frac25;",                           { 226, 133, 150, 0 } },
-    { "&frac34;",                           { 194, 190, 0 } },
-    { "&frac35;",                           { 226, 133, 151, 0 } },
-    { "&frac38;",                           { 226, 133, 156, 0 } },
-    { "&frac45;",                           { 226, 133, 152, 0 } },
-    { "&frac56;",                           { 226, 133, 154, 0 } },
-    { "&frac58;",                           { 226, 133, 157, 0 } },
-    { "&frac78;",                           { 226, 133, 158, 0 } },
-    { "&frasl;",                            { 226, 129, 132, 0 } },
-    { "&frown;",                            { 226, 140, 162, 0 } },
-    { "&fscr;",                             { 240, 157, 146, 187, 0 } },
-    { "&gE;",                               { 226, 137, 167, 0 } },
-    { "&gEl;",                              { 226, 170, 140, 0 } },
-    { "&gacute;",                           { 199, 181, 0 } },
-    { "&gamma;",                            { 206, 179, 0 } },
-    { "&gammad;",                           { 207, 157, 0 } },
-    { "&gap;",                              { 226, 170, 134, 0 } },
-    { "&gbreve;",                           { 196, 159, 0 } },
-    { "&gcirc;",                            { 196, 157, 0 } },
-    { "&gcy;",                              { 208, 179, 0 } },
-    { "&gdot;",                             { 196, 161, 0 } },
-    { "&ge;",                               { 226, 137, 165, 0 } },
-    { "&gel;",                              { 226, 139, 155, 0 } },
-    { "&geq;",                              { 226, 137, 165, 0 } },
-    { "&geqq;",                             { 226, 137, 167, 0 } },
-    { "&geqslant;",                         { 226, 169, 190, 0 } },
-    { "&ges;",                              { 226, 169, 190, 0 } },
-    { "&gescc;",                            { 226, 170, 169, 0 } },
-    { "&gesdot;",                           { 226, 170, 128, 0 } },
-    { "&gesdoto;",                          { 226, 170, 130, 0 } },
-    { "&gesdotol;",                         { 226, 170, 132, 0 } },
-    { "&gesl;",                             { 226, 139, 155, 239, 184, 128, 0 } },
-    { "&gesles;",                           { 226, 170, 148, 0 } },
-    { "&gfr;",                              { 240, 157, 148, 164, 0 } },
-    { "&gg;",                               { 226, 137, 171, 0 } },
-    { "&ggg;",                              { 226, 139, 153, 0 } },
-    { "&gimel;",                            { 226, 132, 183, 0 } },
-    { "&gjcy;",                             { 209, 147, 0 } },
-    { "&gl;",                               { 226, 137, 183, 0 } },
-    { "&glE;",                              { 226, 170, 146, 0 } },
-    { "&gla;",                              { 226, 170, 165, 0 } },
-    { "&glj;",                              { 226, 170, 164, 0 } },
-    { "&gnE;",                              { 226, 137, 169, 0 } },
-    { "&gnap;",                             { 226, 170, 138, 0 } },
-    { "&gnapprox;",                         { 226, 170, 138, 0 } },
-    { "&gne;",                              { 226, 170, 136, 0 } },
-    { "&gneq;",                             { 226, 170, 136, 0 } },
-    { "&gneqq;",                            { 226, 137, 169, 0 } },
-    { "&gnsim;",                            { 226, 139, 167, 0 } },
-    { "&gopf;",                             { 240, 157, 149, 152, 0 } },
-    { "&grave;",                            {  96, 0 } },
-    { "&gscr;",                             { 226, 132, 138, 0 } },
-    { "&gsim;",                             { 226, 137, 179, 0 } },
-    { "&gsime;",                            { 226, 170, 142, 0 } },
-    { "&gsiml;",                            { 226, 170, 144, 0 } },
-    { "&gt;",                               {  62, 0 } },
-    { "&gtcc;",                             { 226, 170, 167, 0 } },
-    { "&gtcir;",                            { 226, 169, 186, 0 } },
-    { "&gtdot;",                            { 226, 139, 151, 0 } },
-    { "&gtlPar;",                           { 226, 166, 149, 0 } },
-    { "&gtquest;",                          { 226, 169, 188, 0 } },
-    { "&gtrapprox;",                        { 226, 170, 134, 0 } },
-    { "&gtrarr;",                           { 226, 165, 184, 0 } },
-    { "&gtrdot;",                           { 226, 139, 151, 0 } },
-    { "&gtreqless;",                        { 226, 139, 155, 0 } },
-    { "&gtreqqless;",                       { 226, 170, 140, 0 } },
-    { "&gtrless;",                          { 226, 137, 183, 0 } },
-    { "&gtrsim;",                           { 226, 137, 179, 0 } },
-    { "&gvertneqq;",                        { 226, 137, 169, 239, 184, 128, 0 } },
-    { "&gvnE;",                             { 226, 137, 169, 239, 184, 128, 0 } },
-    { "&hArr;",                             { 226, 135, 148, 0 } },
-    { "&hairsp;",                           { 226, 128, 138, 0 } },
-    { "&half;",                             { 194, 189, 0 } },
-    { "&hamilt;",                           { 226, 132, 139, 0 } },
-    { "&hardcy;",                           { 209, 138, 0 } },
-    { "&harr;",                             { 226, 134, 148, 0 } },
-    { "&harrcir;",                          { 226, 165, 136, 0 } },
-    { "&harrw;",                            { 226, 134, 173, 0 } },
-    { "&hbar;",                             { 226, 132, 143, 0 } },
-    { "&hcirc;",                            { 196, 165, 0 } },
-    { "&hearts;",                           { 226, 153, 165, 0 } },
-    { "&heartsuit;",                        { 226, 153, 165, 0 } },
-    { "&hellip;",                           { 226, 128, 166, 0 } },
-    { "&hercon;",                           { 226, 138, 185, 0 } },
-    { "&hfr;",                              { 240, 157, 148, 165, 0 } },
-    { "&hksearow;",                         { 226, 164, 165, 0 } },
-    { "&hkswarow;",                         { 226, 164, 166, 0 } },
-    { "&hoarr;",                            { 226, 135, 191, 0 } },
-    { "&homtht;",                           { 226, 136, 187, 0 } },
-    { "&hookleftarrow;",                    { 226, 134, 169, 0 } },
-    { "&hookrightarrow;",                   { 226, 134, 170, 0 } },
-    { "&hopf;",                             { 240, 157, 149, 153, 0 } },
-    { "&horbar;",                           { 226, 128, 149, 0 } },
-    { "&hscr;",                             { 240, 157, 146, 189, 0 } },
-    { "&hslash;",                           { 226, 132, 143, 0 } },
-    { "&hstrok;",                           { 196, 167, 0 } },
-    { "&hybull;",                           { 226, 129, 131, 0 } },
-    { "&hyphen;",                           { 226, 128, 144, 0 } },
-    { "&iacute;",                           { 195, 173, 0 } },
-    { "&ic;",                               { 226, 129, 163, 0 } },
-    { "&icirc;",                            { 195, 174, 0 } },
-    { "&icy;",                              { 208, 184, 0 } },
-    { "&iecy;",                             { 208, 181, 0 } },
-    { "&iexcl;",                            { 194, 161, 0 } },
-    { "&iff;",                              { 226, 135, 148, 0 } },
-    { "&ifr;",                              { 240, 157, 148, 166, 0 } },
-    { "&igrave;",                           { 195, 172, 0 } },
-    { "&ii;",                               { 226, 133, 136, 0 } },
-    { "&iiiint;",                           { 226, 168, 140, 0 } },
-    { "&iiint;",                            { 226, 136, 173, 0 } },
-    { "&iinfin;",                           { 226, 167, 156, 0 } },
-    { "&iiota;",                            { 226, 132, 169, 0 } },
-    { "&ijlig;",                            { 196, 179, 0 } },
-    { "&imacr;",                            { 196, 171, 0 } },
-    { "&image;",                            { 226, 132, 145, 0 } },
-    { "&imagline;",                         { 226, 132, 144, 0 } },
-    { "&imagpart;",                         { 226, 132, 145, 0 } },
-    { "&imath;",                            { 196, 177, 0 } },
-    { "&imof;",                             { 226, 138, 183, 0 } },
-    { "&imped;",                            { 198, 181, 0 } },
-    { "&in;",                               { 226, 136, 136, 0 } },
-    { "&incare;",                           { 226, 132, 133, 0 } },
-    { "&infin;",                            { 226, 136, 158, 0 } },
-    { "&infintie;",                         { 226, 167, 157, 0 } },
-    { "&inodot;",                           { 196, 177, 0 } },
-    { "&int;",                              { 226, 136, 171, 0 } },
-    { "&intcal;",                           { 226, 138, 186, 0 } },
-    { "&integers;",                         { 226, 132, 164, 0 } },
-    { "&intercal;",                         { 226, 138, 186, 0 } },
-    { "&intlarhk;",                         { 226, 168, 151, 0 } },
-    { "&intprod;",                          { 226, 168, 188, 0 } },
-    { "&iocy;",                             { 209, 145, 0 } },
-    { "&iogon;",                            { 196, 175, 0 } },
-    { "&iopf;",                             { 240, 157, 149, 154, 0 } },
-    { "&iota;",                             { 206, 185, 0 } },
-    { "&iprod;",                            { 226, 168, 188, 0 } },
-    { "&iquest;",                           { 194, 191, 0 } },
-    { "&iscr;",                             { 240, 157, 146, 190, 0 } },
-    { "&isin;",                             { 226, 136, 136, 0 } },
-    { "&isinE;",                            { 226, 139, 185, 0 } },
-    { "&isindot;",                          { 226, 139, 181, 0 } },
-    { "&isins;",                            { 226, 139, 180, 0 } },
-    { "&isinsv;",                           { 226, 139, 179, 0 } },
-    { "&isinv;",                            { 226, 136, 136, 0 } },
-    { "&it;",                               { 226, 129, 162, 0 } },
-    { "&itilde;",                           { 196, 169, 0 } },
-    { "&iukcy;",                            { 209, 150, 0 } },
-    { "&iuml;",                             { 195, 175, 0 } },
-    { "&jcirc;",                            { 196, 181, 0 } },
-    { "&jcy;",                              { 208, 185, 0 } },
-    { "&jfr;",                              { 240, 157, 148, 167, 0 } },
-    { "&jmath;",                            { 200, 183, 0 } },
-    { "&jopf;",                             { 240, 157, 149, 155, 0 } },
-    { "&jscr;",                             { 240, 157, 146, 191, 0 } },
-    { "&jsercy;",                           { 209, 152, 0 } },
-    { "&jukcy;",                            { 209, 148, 0 } },
-    { "&kappa;",                            { 206, 186, 0 } },
-    { "&kappav;",                           { 207, 176, 0 } },
-    { "&kcedil;",                           { 196, 183, 0 } },
-    { "&kcy;",                              { 208, 186, 0 } },
-    { "&kfr;",                              { 240, 157, 148, 168, 0 } },
-    { "&kgreen;",                           { 196, 184, 0 } },
-    { "&khcy;",                             { 209, 133, 0 } },
-    { "&kjcy;",                             { 209, 156, 0 } },
-    { "&kopf;",                             { 240, 157, 149, 156, 0 } },
-    { "&kscr;",                             { 240, 157, 147, 128, 0 } },
-    { "&lAarr;",                            { 226, 135, 154, 0 } },
-    { "&lArr;",                             { 226, 135, 144, 0 } },
-    { "&lAtail;",                           { 226, 164, 155, 0 } },
-    { "&lBarr;",                            { 226, 164, 142, 0 } },
-    { "&lE;",                               { 226, 137, 166, 0 } },
-    { "&lEg;",                              { 226, 170, 139, 0 } },
-    { "&lHar;",                             { 226, 165, 162, 0 } },
-    { "&lacute;",                           { 196, 186, 0 } },
-    { "&laemptyv;",                         { 226, 166, 180, 0 } },
-    { "&lagran;",                           { 226, 132, 146, 0 } },
-    { "&lambda;",                           { 206, 187, 0 } },
-    { "&lang;",                             { 226, 159, 168, 0 } },
-    { "&langd;",                            { 226, 166, 145, 0 } },
-    { "&langle;",                           { 226, 159, 168, 0 } },
-    { "&lap;",                              { 226, 170, 133, 0 } },
-    { "&laquo;",                            { 194, 171, 0 } },
-    { "&larr;",                             { 226, 134, 144, 0 } },
-    { "&larrb;",                            { 226, 135, 164, 0 } },
-    { "&larrbfs;",                          { 226, 164, 159, 0 } },
-    { "&larrfs;",                           { 226, 164, 157, 0 } },
-    { "&larrhk;",                           { 226, 134, 169, 0 } },
-    { "&larrlp;",                           { 226, 134, 171, 0 } },
-    { "&larrpl;",                           { 226, 164, 185, 0 } },
-    { "&larrsim;",                          { 226, 165, 179, 0 } },
-    { "&larrtl;",                           { 226, 134, 162, 0 } },
-    { "&lat;",                              { 226, 170, 171, 0 } },
-    { "&latail;",                           { 226, 164, 153, 0 } },
-    { "&late;",                             { 226, 170, 173, 0 } },
-    { "&lates;",                            { 226, 170, 173, 239, 184, 128, 0 } },
-    { "&lbarr;",                            { 226, 164, 140, 0 } },
-    { "&lbbrk;",                            { 226, 157, 178, 0 } },
-    { "&lbrace;",                           { 123, 0 } },
-    { "&lbrack;",                           {  91, 0 } },
-    { "&lbrke;",                            { 226, 166, 139, 0 } },
-    { "&lbrksld;",                          { 226, 166, 143, 0 } },
-    { "&lbrkslu;",                          { 226, 166, 141, 0 } },
-    { "&lcaron;",                           { 196, 190, 0 } },
-    { "&lcedil;",                           { 196, 188, 0 } },
-    { "&lceil;",                            { 226, 140, 136, 0 } },
-    { "&lcub;",                             { 123, 0 } },
-    { "&lcy;",                              { 208, 187, 0 } },
-    { "&ldca;",                             { 226, 164, 182, 0 } },
-    { "&ldquo;",                            { 226, 128, 156, 0 } },
-    { "&ldquor;",                           { 226, 128, 158, 0 } },
-    { "&ldrdhar;",                          { 226, 165, 167, 0 } },
-    { "&ldrushar;",                         { 226, 165, 139, 0 } },
-    { "&ldsh;",                             { 226, 134, 178, 0 } },
-    { "&le;",                               { 226, 137, 164, 0 } },
-    { "&leftarrow;",                        { 226, 134, 144, 0 } },
-    { "&leftarrowtail;",                    { 226, 134, 162, 0 } },
-    { "&leftharpoondown;",                  { 226, 134, 189, 0 } },
-    { "&leftharpoonup;",                    { 226, 134, 188, 0 } },
-    { "&leftleftarrows;",                   { 226, 135, 135, 0 } },
-    { "&leftrightarrow;",                   { 226, 134, 148, 0 } },
-    { "&leftrightarrows;",                  { 226, 135, 134, 0 } },
-    { "&leftrightharpoons;",                { 226, 135, 139, 0 } },
-    { "&leftrightsquigarrow;",              { 226, 134, 173, 0 } },
-    { "&leftthreetimes;",                   { 226, 139, 139, 0 } },
-    { "&leg;",                              { 226, 139, 154, 0 } },
-    { "&leq;",                              { 226, 137, 164, 0 } },
-    { "&leqq;",                             { 226, 137, 166, 0 } },
-    { "&leqslant;",                         { 226, 169, 189, 0 } },
-    { "&les;",                              { 226, 169, 189, 0 } },
-    { "&lescc;",                            { 226, 170, 168, 0 } },
-    { "&lesdot;",                           { 226, 169, 191, 0 } },
-    { "&lesdoto;",                          { 226, 170, 129, 0 } },
-    { "&lesdotor;",                         { 226, 170, 131, 0 } },
-    { "&lesg;",                             { 226, 139, 154, 239, 184, 128, 0 } },
-    { "&lesges;",                           { 226, 170, 147, 0 } },
-    { "&lessapprox;",                       { 226, 170, 133, 0 } },
-    { "&lessdot;",                          { 226, 139, 150, 0 } },
-    { "&lesseqgtr;",                        { 226, 139, 154, 0 } },
-    { "&lesseqqgtr;",                       { 226, 170, 139, 0 } },
-    { "&lessgtr;",                          { 226, 137, 182, 0 } },
-    { "&lesssim;",                          { 226, 137, 178, 0 } },
-    { "&lfisht;",                           { 226, 165, 188, 0 } },
-    { "&lfloor;",                           { 226, 140, 138, 0 } },
-    { "&lfr;",                              { 240, 157, 148, 169, 0 } },
-    { "&lg;",                               { 226, 137, 182, 0 } },
-    { "&lgE;",                              { 226, 170, 145, 0 } },
-    { "&lhard;",                            { 226, 134, 189, 0 } },
-    { "&lharu;",                            { 226, 134, 188, 0 } },
-    { "&lharul;",                           { 226, 165, 170, 0 } },
-    { "&lhblk;",                            { 226, 150, 132, 0 } },
-    { "&ljcy;",                             { 209, 153, 0 } },
-    { "&ll;",                               { 226, 137, 170, 0 } },
-    { "&llarr;",                            { 226, 135, 135, 0 } },
-    { "&llcorner;",                         { 226, 140, 158, 0 } },
-    { "&llhard;",                           { 226, 165, 171, 0 } },
-    { "&lltri;",                            { 226, 151, 186, 0 } },
-    { "&lmidot;",                           { 197, 128, 0 } },
-    { "&lmoust;",                           { 226, 142, 176, 0 } },
-    { "&lmoustache;",                       { 226, 142, 176, 0 } },
-    { "&lnE;",                              { 226, 137, 168, 0 } },
-    { "&lnap;",                             { 226, 170, 137, 0 } },
-    { "&lnapprox;",                         { 226, 170, 137, 0 } },
-    { "&lne;",                              { 226, 170, 135, 0 } },
-    { "&lneq;",                             { 226, 170, 135, 0 } },
-    { "&lneqq;",                            { 226, 137, 168, 0 } },
-    { "&lnsim;",                            { 226, 139, 166, 0 } },
-    { "&loang;",                            { 226, 159, 172, 0 } },
-    { "&loarr;",                            { 226, 135, 189, 0 } },
-    { "&lobrk;",                            { 226, 159, 166, 0 } },
-    { "&longleftarrow;",                    { 226, 159, 181, 0 } },
-    { "&longleftrightarrow;",               { 226, 159, 183, 0 } },
-    { "&longmapsto;",                       { 226, 159, 188, 0 } },
-    { "&longrightarrow;",                   { 226, 159, 182, 0 } },
-    { "&looparrowleft;",                    { 226, 134, 171, 0 } },
-    { "&looparrowright;",                   { 226, 134, 172, 0 } },
-    { "&lopar;",                            { 226, 166, 133, 0 } },
-    { "&lopf;",                             { 240, 157, 149, 157, 0 } },
-    { "&loplus;",                           { 226, 168, 173, 0 } },
-    { "&lotimes;",                          { 226, 168, 180, 0 } },
-    { "&lowast;",                           { 226, 136, 151, 0 } },
-    { "&lowbar;",                           {  95, 0 } },
-    { "&loz;",                              { 226, 151, 138, 0 } },
-    { "&lozenge;",                          { 226, 151, 138, 0 } },
-    { "&lozf;",                             { 226, 167, 171, 0 } },
-    { "&lpar;",                             {  40, 0 } },
-    { "&lparlt;",                           { 226, 166, 147, 0 } },
-    { "&lrarr;",                            { 226, 135, 134, 0 } },
-    { "&lrcorner;",                         { 226, 140, 159, 0 } },
-    { "&lrhar;",                            { 226, 135, 139, 0 } },
-    { "&lrhard;",                           { 226, 165, 173, 0 } },
-    { "&lrm;",                              { 226, 128, 142, 0 } },
-    { "&lrtri;",                            { 226, 138, 191, 0 } },
-    { "&lsaquo;",                           { 226, 128, 185, 0 } },
-    { "&lscr;",                             { 240, 157, 147, 129, 0 } },
-    { "&lsh;",                              { 226, 134, 176, 0 } },
-    { "&lsim;",                             { 226, 137, 178, 0 } },
-    { "&lsime;",                            { 226, 170, 141, 0 } },
-    { "&lsimg;",                            { 226, 170, 143, 0 } },
-    { "&lsqb;",                             {  91, 0 } },
-    { "&lsquo;",                            { 226, 128, 152, 0 } },
-    { "&lsquor;",                           { 226, 128, 154, 0 } },
-    { "&lstrok;",                           { 197, 130, 0 } },
-    { "&lt;",                               {  60, 0 } },
-    { "&ltcc;",                             { 226, 170, 166, 0 } },
-    { "&ltcir;",                            { 226, 169, 185, 0 } },
-    { "&ltdot;",                            { 226, 139, 150, 0 } },
-    { "&lthree;",                           { 226, 139, 139, 0 } },
-    { "&ltimes;",                           { 226, 139, 137, 0 } },
-    { "&ltlarr;",                           { 226, 165, 182, 0 } },
-    { "&ltquest;",                          { 226, 169, 187, 0 } },
-    { "&ltrPar;",                           { 226, 166, 150, 0 } },
-    { "&ltri;",                             { 226, 151, 131, 0 } },
-    { "&ltrie;",                            { 226, 138, 180, 0 } },
-    { "&ltrif;",                            { 226, 151, 130, 0 } },
-    { "&lurdshar;",                         { 226, 165, 138, 0 } },
-    { "&luruhar;",                          { 226, 165, 166, 0 } },
-    { "&lvertneqq;",                        { 226, 137, 168, 239, 184, 128, 0 } },
-    { "&lvnE;",                             { 226, 137, 168, 239, 184, 128, 0 } },
-    { "&mDDot;",                            { 226, 136, 186, 0 } },
-    { "&macr;",                             { 194, 175, 0 } },
-    { "&male;",                             { 226, 153, 130, 0 } },
-    { "&malt;",                             { 226, 156, 160, 0 } },
-    { "&maltese;",                          { 226, 156, 160, 0 } },
-    { "&map;",                              { 226, 134, 166, 0 } },
-    { "&mapsto;",                           { 226, 134, 166, 0 } },
-    { "&mapstodown;",                       { 226, 134, 167, 0 } },
-    { "&mapstoleft;",                       { 226, 134, 164, 0 } },
-    { "&mapstoup;",                         { 226, 134, 165, 0 } },
-    { "&marker;",                           { 226, 150, 174, 0 } },
-    { "&mcomma;",                           { 226, 168, 169, 0 } },
-    { "&mcy;",                              { 208, 188, 0 } },
-    { "&mdash;",                            { 226, 128, 148, 0 } },
-    { "&measuredangle;",                    { 226, 136, 161, 0 } },
-    { "&mfr;",                              { 240, 157, 148, 170, 0 } },
-    { "&mho;",                              { 226, 132, 167, 0 } },
-    { "&micro;",                            { 194, 181, 0 } },
-    { "&mid;",                              { 226, 136, 163, 0 } },
-    { "&midast;",                           {  42, 0 } },
-    { "&midcir;",                           { 226, 171, 176, 0 } },
-    { "&middot;",                           { 194, 183, 0 } },
-    { "&minus;",                            { 226, 136, 146, 0 } },
-    { "&minusb;",                           { 226, 138, 159, 0 } },
-    { "&minusd;",                           { 226, 136, 184, 0 } },
-    { "&minusdu;",                          { 226, 168, 170, 0 } },
-    { "&mlcp;",                             { 226, 171, 155, 0 } },
-    { "&mldr;",                             { 226, 128, 166, 0 } },
-    { "&mnplus;",                           { 226, 136, 147, 0 } },
-    { "&models;",                           { 226, 138, 167, 0 } },
-    { "&mopf;",                             { 240, 157, 149, 158, 0 } },
-    { "&mp;",                               { 226, 136, 147, 0 } },
-    { "&mscr;",                             { 240, 157, 147, 130, 0 } },
-    { "&mstpos;",                           { 226, 136, 190, 0 } },
-    { "&mu;",                               { 206, 188, 0 } },
-    { "&multimap;",                         { 226, 138, 184, 0 } },
-    { "&mumap;",                            { 226, 138, 184, 0 } },
-    { "&nGg;",                              { 226, 139, 153, 204, 184, 0 } },
-    { "&nGt;",                              { 226, 137, 171, 226, 131, 146, 0 } },
-    { "&nGtv;",                             { 226, 137, 171, 204, 184, 0 } },
-    { "&nLeftarrow;",                       { 226, 135, 141, 0 } },
-    { "&nLeftrightarrow;",                  { 226, 135, 142, 0 } },
-    { "&nLl;",                              { 226, 139, 152, 204, 184, 0 } },
-    { "&nLt;",                              { 226, 137, 170, 226, 131, 146, 0 } },
-    { "&nLtv;",                             { 226, 137, 170, 204, 184, 0 } },
-    { "&nRightarrow;",                      { 226, 135, 143, 0 } },
-    { "&nVDash;",                           { 226, 138, 175, 0 } },
-    { "&nVdash;",                           { 226, 138, 174, 0 } },
-    { "&nabla;",                            { 226, 136, 135, 0 } },
-    { "&nacute;",                           { 197, 132, 0 } },
-    { "&nang;",                             { 226, 136, 160, 226, 131, 146, 0 } },
-    { "&nap;",                              { 226, 137, 137, 0 } },
-    { "&napE;",                             { 226, 169, 176, 204, 184, 0 } },
-    { "&napid;",                            { 226, 137, 139, 204, 184, 0 } },
-    { "&napos;",                            { 197, 137, 0 } },
-    { "&napprox;",                          { 226, 137, 137, 0 } },
-    { "&natur;",                            { 226, 153, 174, 0 } },
-    { "&natural;",                          { 226, 153, 174, 0 } },
-    { "&naturals;",                         { 226, 132, 149, 0 } },
-    { "&nbsp;",                             { 194, 160, 0 } },
-    { "&nbump;",                            { 226, 137, 142, 204, 184, 0 } },
-    { "&nbumpe;",                           { 226, 137, 143, 204, 184, 0 } },
-    { "&ncap;",                             { 226, 169, 131, 0 } },
-    { "&ncaron;",                           { 197, 136, 0 } },
-    { "&ncedil;",                           { 197, 134, 0 } },
-    { "&ncong;",                            { 226, 137, 135, 0 } },
-    { "&ncongdot;",                         { 226, 169, 173, 204, 184, 0 } },
-    { "&ncup;",                             { 226, 169, 130, 0 } },
-    { "&ncy;",                              { 208, 189, 0 } },
-    { "&ndash;",                            { 226, 128, 147, 0 } },
-    { "&ne;",                               { 226, 137, 160, 0 } },
-    { "&neArr;",                            { 226, 135, 151, 0 } },
-    { "&nearhk;",                           { 226, 164, 164, 0 } },
-    { "&nearr;",                            { 226, 134, 151, 0 } },
-    { "&nearrow;",                          { 226, 134, 151, 0 } },
-    { "&nedot;",                            { 226, 137, 144, 204, 184, 0 } },
-    { "&nequiv;",                           { 226, 137, 162, 0 } },
-    { "&nesear;",                           { 226, 164, 168, 0 } },
-    { "&nesim;",                            { 226, 137, 130, 204, 184, 0 } },
-    { "&nexist;",                           { 226, 136, 132, 0 } },
-    { "&nexists;",                          { 226, 136, 132, 0 } },
-    { "&nfr;",                              { 240, 157, 148, 171, 0 } },
-    { "&ngE;",                              { 226, 137, 167, 204, 184, 0 } },
-    { "&nge;",                              { 226, 137, 177, 0 } },
-    { "&ngeq;",                             { 226, 137, 177, 0 } },
-    { "&ngeqq;",                            { 226, 137, 167, 204, 184, 0 } },
-    { "&ngeqslant;",                        { 226, 169, 190, 204, 184, 0 } },
-    { "&nges;",                             { 226, 169, 190, 204, 184, 0 } },
-    { "&ngsim;",                            { 226, 137, 181, 0 } },
-    { "&ngt;",                              { 226, 137, 175, 0 } },
-    { "&ngtr;",                             { 226, 137, 175, 0 } },
-    { "&nhArr;",                            { 226, 135, 142, 0 } },
-    { "&nharr;",                            { 226, 134, 174, 0 } },
-    { "&nhpar;",                            { 226, 171, 178, 0 } },
-    { "&ni;",                               { 226, 136, 139, 0 } },
-    { "&nis;",                              { 226, 139, 188, 0 } },
-    { "&nisd;",                             { 226, 139, 186, 0 } },
-    { "&niv;",                              { 226, 136, 139, 0 } },
-    { "&njcy;",                             { 209, 154, 0 } },
-    { "&nlArr;",                            { 226, 135, 141, 0 } },
-    { "&nlE;",                              { 226, 137, 166, 204, 184, 0 } },
-    { "&nlarr;",                            { 226, 134, 154, 0 } },
-    { "&nldr;",                             { 226, 128, 165, 0 } },
-    { "&nle;",                              { 226, 137, 176, 0 } },
-    { "&nleftarrow;",                       { 226, 134, 154, 0 } },
-    { "&nleftrightarrow;",                  { 226, 134, 174, 0 } },
-    { "&nleq;",                             { 226, 137, 176, 0 } },
-    { "&nleqq;",                            { 226, 137, 166, 204, 184, 0 } },
-    { "&nleqslant;",                        { 226, 169, 189, 204, 184, 0 } },
-    { "&nles;",                             { 226, 169, 189, 204, 184, 0 } },
-    { "&nless;",                            { 226, 137, 174, 0 } },
-    { "&nlsim;",                            { 226, 137, 180, 0 } },
-    { "&nlt;",                              { 226, 137, 174, 0 } },
-    { "&nltri;",                            { 226, 139, 170, 0 } },
-    { "&nltrie;",                           { 226, 139, 172, 0 } },
-    { "&nmid;",                             { 226, 136, 164, 0 } },
-    { "&nopf;",                             { 240, 157, 149, 159, 0 } },
-    { "&not;",                              { 194, 172, 0 } },
-    { "&notin;",                            { 226, 136, 137, 0 } },
-    { "&notinE;",                           { 226, 139, 185, 204, 184, 0 } },
-    { "&notindot;",                         { 226, 139, 181, 204, 184, 0 } },
-    { "&notinva;",                          { 226, 136, 137, 0 } },
-    { "&notinvb;",                          { 226, 139, 183, 0 } },
-    { "&notinvc;",                          { 226, 139, 182, 0 } },
-    { "&notni;",                            { 226, 136, 140, 0 } },
-    { "&notniva;",                          { 226, 136, 140, 0 } },
-    { "&notnivb;",                          { 226, 139, 190, 0 } },
-    { "&notnivc;",                          { 226, 139, 189, 0 } },
-    { "&npar;",                             { 226, 136, 166, 0 } },
-    { "&nparallel;",                        { 226, 136, 166, 0 } },
-    { "&nparsl;",                           { 226, 171, 189, 226, 131, 165, 0 } },
-    { "&npart;",                            { 226, 136, 130, 204, 184, 0 } },
-    { "&npolint;",                          { 226, 168, 148, 0 } },
-    { "&npr;",                              { 226, 138, 128, 0 } },
-    { "&nprcue;",                           { 226, 139, 160, 0 } },
-    { "&npre;",                             { 226, 170, 175, 204, 184, 0 } },
-    { "&nprec;",                            { 226, 138, 128, 0 } },
-    { "&npreceq;",                          { 226, 170, 175, 204, 184, 0 } },
-    { "&nrArr;",                            { 226, 135, 143, 0 } },
-    { "&nrarr;",                            { 226, 134, 155, 0 } },
-    { "&nrarrc;",                           { 226, 164, 179, 204, 184, 0 } },
-    { "&nrarrw;",                           { 226, 134, 157, 204, 184, 0 } },
-    { "&nrightarrow;",                      { 226, 134, 155, 0 } },
-    { "&nrtri;",                            { 226, 139, 171, 0 } },
-    { "&nrtrie;",                           { 226, 139, 173, 0 } },
-    { "&nsc;",                              { 226, 138, 129, 0 } },
-    { "&nsccue;",                           { 226, 139, 161, 0 } },
-    { "&nsce;",                             { 226, 170, 176, 204, 184, 0 } },
-    { "&nscr;",                             { 240, 157, 147, 131, 0 } },
-    { "&nshortmid;",                        { 226, 136, 164, 0 } },
-    { "&nshortparallel;",                   { 226, 136, 166, 0 } },
-    { "&nsim;",                             { 226, 137, 129, 0 } },
-    { "&nsime;",                            { 226, 137, 132, 0 } },
-    { "&nsimeq;",                           { 226, 137, 132, 0 } },
-    { "&nsmid;",                            { 226, 136, 164, 0 } },
-    { "&nspar;",                            { 226, 136, 166, 0 } },
-    { "&nsqsube;",                          { 226, 139, 162, 0 } },
-    { "&nsqsupe;",                          { 226, 139, 163, 0 } },
-    { "&nsub;",                             { 226, 138, 132, 0 } },
-    { "&nsubE;",                            { 226, 171, 133, 204, 184, 0 } },
-    { "&nsube;",                            { 226, 138, 136, 0 } },
-    { "&nsubset;",                          { 226, 138, 130, 226, 131, 146, 0 } },
-    { "&nsubseteq;",                        { 226, 138, 136, 0 } },
-    { "&nsubseteqq;",                       { 226, 171, 133, 204, 184, 0 } },
-    { "&nsucc;",                            { 226, 138, 129, 0 } },
-    { "&nsucceq;",                          { 226, 170, 176, 204, 184, 0 } },
-    { "&nsup;",                             { 226, 138, 133, 0 } },
-    { "&nsupE;",                            { 226, 171, 134, 204, 184, 0 } },
-    { "&nsupe;",                            { 226, 138, 137, 0 } },
-    { "&nsupset;",                          { 226, 138, 131, 226, 131, 146, 0 } },
-    { "&nsupseteq;",                        { 226, 138, 137, 0 } },
-    { "&nsupseteqq;",                       { 226, 171, 134, 204, 184, 0 } },
-    { "&ntgl;",                             { 226, 137, 185, 0 } },
-    { "&ntilde;",                           { 195, 177, 0 } },
-    { "&ntlg;",                             { 226, 137, 184, 0 } },
-    { "&ntriangleleft;",                    { 226, 139, 170, 0 } },
-    { "&ntrianglelefteq;",                  { 226, 139, 172, 0 } },
-    { "&ntriangleright;",                   { 226, 139, 171, 0 } },
-    { "&ntrianglerighteq;",                 { 226, 139, 173, 0 } },
-    { "&nu;",                               { 206, 189, 0 } },
-    { "&num;",                              {  35, 0 } },
-    { "&numero;",                           { 226, 132, 150, 0 } },
-    { "&numsp;",                            { 226, 128, 135, 0 } },
-    { "&nvDash;",                           { 226, 138, 173, 0 } },
-    { "&nvHarr;",                           { 226, 164, 132, 0 } },
-    { "&nvap;",                             { 226, 137, 141, 226, 131, 146, 0 } },
-    { "&nvdash;",                           { 226, 138, 172, 0 } },
-    { "&nvge;",                             { 226, 137, 165, 226, 131, 146, 0 } },
-    { "&nvgt;",                             { 62, 226, 131, 146, 0 } },
-    { "&nvinfin;",                          { 226, 167, 158, 0 } },
-    { "&nvlArr;",                           { 226, 164, 130, 0 } },
-    { "&nvle;",                             { 226, 137, 164, 226, 131, 146, 0 } },
-    { "&nvlt;",                             { 60, 226, 131, 146, 0 } },
-    { "&nvltrie;",                          { 226, 138, 180, 226, 131, 146, 0 } },
-    { "&nvrArr;",                           { 226, 164, 131, 0 } },
-    { "&nvrtrie;",                          { 226, 138, 181, 226, 131, 146, 0 } },
-    { "&nvsim;",                            { 226, 136, 188, 226, 131, 146, 0 } },
-    { "&nwArr;",                            { 226, 135, 150, 0 } },
-    { "&nwarhk;",                           { 226, 164, 163, 0 } },
-    { "&nwarr;",                            { 226, 134, 150, 0 } },
-    { "&nwarrow;",                          { 226, 134, 150, 0 } },
-    { "&nwnear;",                           { 226, 164, 167, 0 } },
-    { "&oS;",                               { 226, 147, 136, 0 } },
-    { "&oacute;",                           { 195, 179, 0 } },
-    { "&oast;",                             { 226, 138, 155, 0 } },
-    { "&ocir;",                             { 226, 138, 154, 0 } },
-    { "&ocirc;",                            { 195, 180, 0 } },
-    { "&ocy;",                              { 208, 190, 0 } },
-    { "&odash;",                            { 226, 138, 157, 0 } },
-    { "&odblac;",                           { 197, 145, 0 } },
-    { "&odiv;",                             { 226, 168, 184, 0 } },
-    { "&odot;",                             { 226, 138, 153, 0 } },
-    { "&odsold;",                           { 226, 166, 188, 0 } },
-    { "&oelig;",                            { 197, 147, 0 } },
-    { "&ofcir;",                            { 226, 166, 191, 0 } },
-    { "&ofr;",                              { 240, 157, 148, 172, 0 } },
-    { "&ogon;",                             { 203, 155, 0 } },
-    { "&ograve;",                           { 195, 178, 0 } },
-    { "&ogt;",                              { 226, 167, 129, 0 } },
-    { "&ohbar;",                            { 226, 166, 181, 0 } },
-    { "&ohm;",                              { 206, 169, 0 } },
-    { "&oint;",                             { 226, 136, 174, 0 } },
-    { "&olarr;",                            { 226, 134, 186, 0 } },
-    { "&olcir;",                            { 226, 166, 190, 0 } },
-    { "&olcross;",                          { 226, 166, 187, 0 } },
-    { "&oline;",                            { 226, 128, 190, 0 } },
-    { "&olt;",                              { 226, 167, 128, 0 } },
-    { "&omacr;",                            { 197, 141, 0 } },
-    { "&omega;",                            { 207, 137, 0 } },
-    { "&omicron;",                          { 206, 191, 0 } },
-    { "&omid;",                             { 226, 166, 182, 0 } },
-    { "&ominus;",                           { 226, 138, 150, 0 } },
-    { "&oopf;",                             { 240, 157, 149, 160, 0 } },
-    { "&opar;",                             { 226, 166, 183, 0 } },
-    { "&operp;",                            { 226, 166, 185, 0 } },
-    { "&oplus;",                            { 226, 138, 149, 0 } },
-    { "&or;",                               { 226, 136, 168, 0 } },
-    { "&orarr;",                            { 226, 134, 187, 0 } },
-    { "&ord;",                              { 226, 169, 157, 0 } },
-    { "&order;",                            { 226, 132, 180, 0 } },
-    { "&orderof;",                          { 226, 132, 180, 0 } },
-    { "&ordf;",                             { 194, 170, 0 } },
-    { "&ordm;",                             { 194, 186, 0 } },
-    { "&origof;",                           { 226, 138, 182, 0 } },
-    { "&oror;",                             { 226, 169, 150, 0 } },
-    { "&orslope;",                          { 226, 169, 151, 0 } },
-    { "&orv;",                              { 226, 169, 155, 0 } },
-    { "&oscr;",                             { 226, 132, 180, 0 } },
-    { "&oslash;",                           { 195, 184, 0 } },
-    { "&osol;",                             { 226, 138, 152, 0 } },
-    { "&otilde;",                           { 195, 181, 0 } },
-    { "&otimes;",                           { 226, 138, 151, 0 } },
-    { "&otimesas;",                         { 226, 168, 182, 0 } },
-    { "&ouml;",                             { 195, 182, 0 } },
-    { "&ovbar;",                            { 226, 140, 189, 0 } },
-    { "&par;",                              { 226, 136, 165, 0 } },
-    { "&para;",                             { 194, 182, 0 } },
-    { "&parallel;",                         { 226, 136, 165, 0 } },
-    { "&parsim;",                           { 226, 171, 179, 0 } },
-    { "&parsl;",                            { 226, 171, 189, 0 } },
-    { "&part;",                             { 226, 136, 130, 0 } },
-    { "&pcy;",                              { 208, 191, 0 } },
-    { "&percnt;",                           {  37, 0 } },
-    { "&period;",                           {  46, 0 } },
-    { "&permil;",                           { 226, 128, 176, 0 } },
-    { "&perp;",                             { 226, 138, 165, 0 } },
-    { "&pertenk;",                          { 226, 128, 177, 0 } },
-    { "&pfr;",                              { 240, 157, 148, 173, 0 } },
-    { "&phi;",                              { 207, 134, 0 } },
-    { "&phiv;",                             { 207, 149, 0 } },
-    { "&phmmat;",                           { 226, 132, 179, 0 } },
-    { "&phone;",                            { 226, 152, 142, 0 } },
-    { "&pi;",                               { 207, 128, 0 } },
-    { "&pitchfork;",                        { 226, 139, 148, 0 } },
-    { "&piv;",                              { 207, 150, 0 } },
-    { "&planck;",                           { 226, 132, 143, 0 } },
-    { "&planckh;",                          { 226, 132, 142, 0 } },
-    { "&plankv;",                           { 226, 132, 143, 0 } },
-    { "&plus;",                             {  43, 0 } },
-    { "&plusacir;",                         { 226, 168, 163, 0 } },
-    { "&plusb;",                            { 226, 138, 158, 0 } },
-    { "&pluscir;",                          { 226, 168, 162, 0 } },
-    { "&plusdo;",                           { 226, 136, 148, 0 } },
-    { "&plusdu;",                           { 226, 168, 165, 0 } },
-    { "&pluse;",                            { 226, 169, 178, 0 } },
-    { "&plusmn;",                           { 194, 177, 0 } },
-    { "&plussim;",                          { 226, 168, 166, 0 } },
-    { "&plustwo;",                          { 226, 168, 167, 0 } },
-    { "&pm;",                               { 194, 177, 0 } },
-    { "&pointint;",                         { 226, 168, 149, 0 } },
-    { "&popf;",                             { 240, 157, 149, 161, 0 } },
-    { "&pound;",                            { 194, 163, 0 } },
-    { "&pr;",                               { 226, 137, 186, 0 } },
-    { "&prE;",                              { 226, 170, 179, 0 } },
-    { "&prap;",                             { 226, 170, 183, 0 } },
-    { "&prcue;",                            { 226, 137, 188, 0 } },
-    { "&pre;",                              { 226, 170, 175, 0 } },
-    { "&prec;",                             { 226, 137, 186, 0 } },
-    { "&precapprox;",                       { 226, 170, 183, 0 } },
-    { "&preccurlyeq;",                      { 226, 137, 188, 0 } },
-    { "&preceq;",                           { 226, 170, 175, 0 } },
-    { "&precnapprox;",                      { 226, 170, 185, 0 } },
-    { "&precneqq;",                         { 226, 170, 181, 0 } },
-    { "&precnsim;",                         { 226, 139, 168, 0 } },
-    { "&precsim;",                          { 226, 137, 190, 0 } },
-    { "&prime;",                            { 226, 128, 178, 0 } },
-    { "&primes;",                           { 226, 132, 153, 0 } },
-    { "&prnE;",                             { 226, 170, 181, 0 } },
-    { "&prnap;",                            { 226, 170, 185, 0 } },
-    { "&prnsim;",                           { 226, 139, 168, 0 } },
-    { "&prod;",                             { 226, 136, 143, 0 } },
-    { "&profalar;",                         { 226, 140, 174, 0 } },
-    { "&profline;",                         { 226, 140, 146, 0 } },
-    { "&profsurf;",                         { 226, 140, 147, 0 } },
-    { "&prop;",                             { 226, 136, 157, 0 } },
-    { "&propto;",                           { 226, 136, 157, 0 } },
-    { "&prsim;",                            { 226, 137, 190, 0 } },
-    { "&prurel;",                           { 226, 138, 176, 0 } },
-    { "&pscr;",                             { 240, 157, 147, 133, 0 } },
-    { "&psi;",                              { 207, 136, 0 } },
-    { "&puncsp;",                           { 226, 128, 136, 0 } },
-    { "&qfr;",                              { 240, 157, 148, 174, 0 } },
-    { "&qint;",                             { 226, 168, 140, 0 } },
-    { "&qopf;",                             { 240, 157, 149, 162, 0 } },
-    { "&qprime;",                           { 226, 129, 151, 0 } },
-    { "&qscr;",                             { 240, 157, 147, 134, 0 } },
-    { "&quaternions;",                      { 226, 132, 141, 0 } },
-    { "&quatint;",                          { 226, 168, 150, 0 } },
-    { "&quest;",                            {  63, 0 } },
-    { "&questeq;",                          { 226, 137, 159, 0 } },
-    { "&quot;",                             {  34, 0 } },
-    { "&rAarr;",                            { 226, 135, 155, 0 } },
-    { "&rArr;",                             { 226, 135, 146, 0 } },
-    { "&rAtail;",                           { 226, 164, 156, 0 } },
-    { "&rBarr;",                            { 226, 164, 143, 0 } },
-    { "&rHar;",                             { 226, 165, 164, 0 } },
-    { "&race;",                             { 226, 136, 189, 204, 177, 0 } },
-    { "&racute;",                           { 197, 149, 0 } },
-    { "&radic;",                            { 226, 136, 154, 0 } },
-    { "&raemptyv;",                         { 226, 166, 179, 0 } },
-    { "&rang;",                             { 226, 159, 169, 0 } },
-    { "&rangd;",                            { 226, 166, 146, 0 } },
-    { "&range;",                            { 226, 166, 165, 0 } },
-    { "&rangle;",                           { 226, 159, 169, 0 } },
-    { "&raquo;",                            { 194, 187, 0 } },
-    { "&rarr;",                             { 226, 134, 146, 0 } },
-    { "&rarrap;",                           { 226, 165, 181, 0 } },
-    { "&rarrb;",                            { 226, 135, 165, 0 } },
-    { "&rarrbfs;",                          { 226, 164, 160, 0 } },
-    { "&rarrc;",                            { 226, 164, 179, 0 } },
-    { "&rarrfs;",                           { 226, 164, 158, 0 } },
-    { "&rarrhk;",                           { 226, 134, 170, 0 } },
-    { "&rarrlp;",                           { 226, 134, 172, 0 } },
-    { "&rarrpl;",                           { 226, 165, 133, 0 } },
-    { "&rarrsim;",                          { 226, 165, 180, 0 } },
-    { "&rarrtl;",                           { 226, 134, 163, 0 } },
-    { "&rarrw;",                            { 226, 134, 157, 0 } },
-    { "&ratail;",                           { 226, 164, 154, 0 } },
-    { "&ratio;",                            { 226, 136, 182, 0 } },
-    { "&rationals;",                        { 226, 132, 154, 0 } },
-    { "&rbarr;",                            { 226, 164, 141, 0 } },
-    { "&rbbrk;",                            { 226, 157, 179, 0 } },
-    { "&rbrace;",                           { 125, 0 } },
-    { "&rbrack;",                           {  93, 0 } },
-    { "&rbrke;",                            { 226, 166, 140, 0 } },
-    { "&rbrksld;",                          { 226, 166, 142, 0 } },
-    { "&rbrkslu;",                          { 226, 166, 144, 0 } },
-    { "&rcaron;",                           { 197, 153, 0 } },
-    { "&rcedil;",                           { 197, 151, 0 } },
-    { "&rceil;",                            { 226, 140, 137, 0 } },
-    { "&rcub;",                             { 125, 0 } },
-    { "&rcy;",                              { 209, 128, 0 } },
-    { "&rdca;",                             { 226, 164, 183, 0 } },
-    { "&rdldhar;",                          { 226, 165, 169, 0 } },
-    { "&rdquo;",                            { 226, 128, 157, 0 } },
-    { "&rdquor;",                           { 226, 128, 157, 0 } },
-    { "&rdsh;",                             { 226, 134, 179, 0 } },
-    { "&real;",                             { 226, 132, 156, 0 } },
-    { "&realine;",                          { 226, 132, 155, 0 } },
-    { "&realpart;",                         { 226, 132, 156, 0 } },
-    { "&reals;",                            { 226, 132, 157, 0 } },
-    { "&rect;",                             { 226, 150, 173, 0 } },
-    { "&reg;",                              { 194, 174, 0 } },
-    { "&rfisht;",                           { 226, 165, 189, 0 } },
-    { "&rfloor;",                           { 226, 140, 139, 0 } },
-    { "&rfr;",                              { 240, 157, 148, 175, 0 } },
-    { "&rhard;",                            { 226, 135, 129, 0 } },
-    { "&rharu;",                            { 226, 135, 128, 0 } },
-    { "&rharul;",                           { 226, 165, 172, 0 } },
-    { "&rho;",                              { 207, 129, 0 } },
-    { "&rhov;",                             { 207, 177, 0 } },
-    { "&rightarrow;",                       { 226, 134, 146, 0 } },
-    { "&rightarrowtail;",                   { 226, 134, 163, 0 } },
-    { "&rightharpoondown;",                 { 226, 135, 129, 0 } },
-    { "&rightharpoonup;",                   { 226, 135, 128, 0 } },
-    { "&rightleftarrows;",                  { 226, 135, 132, 0 } },
-    { "&rightleftharpoons;",                { 226, 135, 140, 0 } },
-    { "&rightrightarrows;",                 { 226, 135, 137, 0 } },
-    { "&rightsquigarrow;",                  { 226, 134, 157, 0 } },
-    { "&rightthreetimes;",                  { 226, 139, 140, 0 } },
-    { "&ring;",                             { 203, 154, 0 } },
-    { "&risingdotseq;",                     { 226, 137, 147, 0 } },
-    { "&rlarr;",                            { 226, 135, 132, 0 } },
-    { "&rlhar;",                            { 226, 135, 140, 0 } },
-    { "&rlm;",                              { 226, 128, 143, 0 } },
-    { "&rmoust;",                           { 226, 142, 177, 0 } },
-    { "&rmoustache;",                       { 226, 142, 177, 0 } },
-    { "&rnmid;",                            { 226, 171, 174, 0 } },
-    { "&roang;",                            { 226, 159, 173, 0 } },
-    { "&roarr;",                            { 226, 135, 190, 0 } },
-    { "&robrk;",                            { 226, 159, 167, 0 } },
-    { "&ropar;",                            { 226, 166, 134, 0 } },
-    { "&ropf;",                             { 240, 157, 149, 163, 0 } },
-    { "&roplus;",                           { 226, 168, 174, 0 } },
-    { "&rotimes;",                          { 226, 168, 181, 0 } },
-    { "&rpar;",                             {  41, 0 } },
-    { "&rpargt;",                           { 226, 166, 148, 0 } },
-    { "&rppolint;",                         { 226, 168, 146, 0 } },
-    { "&rrarr;",                            { 226, 135, 137, 0 } },
-    { "&rsaquo;",                           { 226, 128, 186, 0 } },
-    { "&rscr;",                             { 240, 157, 147, 135, 0 } },
-    { "&rsh;",                              { 226, 134, 177, 0 } },
-    { "&rsqb;",                             {  93, 0 } },
-    { "&rsquo;",                            { 226, 128, 153, 0 } },
-    { "&rsquor;",                           { 226, 128, 153, 0 } },
-    { "&rthree;",                           { 226, 139, 140, 0 } },
-    { "&rtimes;",                           { 226, 139, 138, 0 } },
-    { "&rtri;",                             { 226, 150, 185, 0 } },
-    { "&rtrie;",                            { 226, 138, 181, 0 } },
-    { "&rtrif;",                            { 226, 150, 184, 0 } },
-    { "&rtriltri;",                         { 226, 167, 142, 0 } },
-    { "&ruluhar;",                          { 226, 165, 168, 0 } },
-    { "&rx;",                               { 226, 132, 158, 0 } },
-    { "&sacute;",                           { 197, 155, 0 } },
-    { "&sbquo;",                            { 226, 128, 154, 0 } },
-    { "&sc;",                               { 226, 137, 187, 0 } },
-    { "&scE;",                              { 226, 170, 180, 0 } },
-    { "&scap;",                             { 226, 170, 184, 0 } },
-    { "&scaron;",                           { 197, 161, 0 } },
-    { "&sccue;",                            { 226, 137, 189, 0 } },
-    { "&sce;",                              { 226, 170, 176, 0 } },
-    { "&scedil;",                           { 197, 159, 0 } },
-    { "&scirc;",                            { 197, 157, 0 } },
-    { "&scnE;",                             { 226, 170, 182, 0 } },
-    { "&scnap;",                            { 226, 170, 186, 0 } },
-    { "&scnsim;",                           { 226, 139, 169, 0 } },
-    { "&scpolint;",                         { 226, 168, 147, 0 } },
-    { "&scsim;",                            { 226, 137, 191, 0 } },
-    { "&scy;",                              { 209, 129, 0 } },
-    { "&sdot;",                             { 226, 139, 133, 0 } },
-    { "&sdotb;",                            { 226, 138, 161, 0 } },
-    { "&sdote;",                            { 226, 169, 166, 0 } },
-    { "&seArr;",                            { 226, 135, 152, 0 } },
-    { "&searhk;",                           { 226, 164, 165, 0 } },
-    { "&searr;",                            { 226, 134, 152, 0 } },
-    { "&searrow;",                          { 226, 134, 152, 0 } },
-    { "&sect;",                             { 194, 167, 0 } },
-    { "&semi;",                             {  59, 0 } },
-    { "&seswar;",                           { 226, 164, 169, 0 } },
-    { "&setminus;",                         { 226, 136, 150, 0 } },
-    { "&setmn;",                            { 226, 136, 150, 0 } },
-    { "&sext;",                             { 226, 156, 182, 0 } },
-    { "&sfr;",                              { 240, 157, 148, 176, 0 } },
-    { "&sfrown;",                           { 226, 140, 162, 0 } },
-    { "&sharp;",                            { 226, 153, 175, 0 } },
-    { "&shchcy;",                           { 209, 137, 0 } },
-    { "&shcy;",                             { 209, 136, 0 } },
-    { "&shortmid;",                         { 226, 136, 163, 0 } },
-    { "&shortparallel;",                    { 226, 136, 165, 0 } },
-    { "&shy;",                              { 194, 173, 0 } },
-    { "&sigma;",                            { 207, 131, 0 } },
-    { "&sigmaf;",                           { 207, 130, 0 } },
-    { "&sigmav;",                           { 207, 130, 0 } },
-    { "&sim;",                              { 226, 136, 188, 0 } },
-    { "&simdot;",                           { 226, 169, 170, 0 } },
-    { "&sime;",                             { 226, 137, 131, 0 } },
-    { "&simeq;",                            { 226, 137, 131, 0 } },
-    { "&simg;",                             { 226, 170, 158, 0 } },
-    { "&simgE;",                            { 226, 170, 160, 0 } },
-    { "&siml;",                             { 226, 170, 157, 0 } },
-    { "&simlE;",                            { 226, 170, 159, 0 } },
-    { "&simne;",                            { 226, 137, 134, 0 } },
-    { "&simplus;",                          { 226, 168, 164, 0 } },
-    { "&simrarr;",                          { 226, 165, 178, 0 } },
-    { "&slarr;",                            { 226, 134, 144, 0 } },
-    { "&smallsetminus;",                    { 226, 136, 150, 0 } },
-    { "&smashp;",                           { 226, 168, 179, 0 } },
-    { "&smeparsl;",                         { 226, 167, 164, 0 } },
-    { "&smid;",                             { 226, 136, 163, 0 } },
-    { "&smile;",                            { 226, 140, 163, 0 } },
-    { "&smt;",                              { 226, 170, 170, 0 } },
-    { "&smte;",                             { 226, 170, 172, 0 } },
-    { "&smtes;",                            { 226, 170, 172, 239, 184, 128, 0 } },
-    { "&softcy;",                           { 209, 140, 0 } },
-    { "&sol;",                              {  47, 0 } },
-    { "&solb;",                             { 226, 167, 132, 0 } },
-    { "&solbar;",                           { 226, 140, 191, 0 } },
-    { "&sopf;",                             { 240, 157, 149, 164, 0 } },
-    { "&spades;",                           { 226, 153, 160, 0 } },
-    { "&spadesuit;",                        { 226, 153, 160, 0 } },
-    { "&spar;",                             { 226, 136, 165, 0 } },
-    { "&sqcap;",                            { 226, 138, 147, 0 } },
-    { "&sqcaps;",                           { 226, 138, 147, 239, 184, 128, 0 } },
-    { "&sqcup;",                            { 226, 138, 148, 0 } },
-    { "&sqcups;",                           { 226, 138, 148, 239, 184, 128, 0 } },
-    { "&sqsub;",                            { 226, 138, 143, 0 } },
-    { "&sqsube;",                           { 226, 138, 145, 0 } },
-    { "&sqsubset;",                         { 226, 138, 143, 0 } },
-    { "&sqsubseteq;",                       { 226, 138, 145, 0 } },
-    { "&sqsup;",                            { 226, 138, 144, 0 } },
-    { "&sqsupe;",                           { 226, 138, 146, 0 } },
-    { "&sqsupset;",                         { 226, 138, 144, 0 } },
-    { "&sqsupseteq;",                       { 226, 138, 146, 0 } },
-    { "&squ;",                              { 226, 150, 161, 0 } },
-    { "&square;",                           { 226, 150, 161, 0 } },
-    { "&squarf;",                           { 226, 150, 170, 0 } },
-    { "&squf;",                             { 226, 150, 170, 0 } },
-    { "&srarr;",                            { 226, 134, 146, 0 } },
-    { "&sscr;",                             { 240, 157, 147, 136, 0 } },
-    { "&ssetmn;",                           { 226, 136, 150, 0 } },
-    { "&ssmile;",                           { 226, 140, 163, 0 } },
-    { "&sstarf;",                           { 226, 139, 134, 0 } },
-    { "&star;",                             { 226, 152, 134, 0 } },
-    { "&starf;",                            { 226, 152, 133, 0 } },
-    { "&straightepsilon;",                  { 207, 181, 0 } },
-    { "&straightphi;",                      { 207, 149, 0 } },
-    { "&strns;",                            { 194, 175, 0 } },
-    { "&sub;",                              { 226, 138, 130, 0 } },
-    { "&subE;",                             { 226, 171, 133, 0 } },
-    { "&subdot;",                           { 226, 170, 189, 0 } },
-    { "&sube;",                             { 226, 138, 134, 0 } },
-    { "&subedot;",                          { 226, 171, 131, 0 } },
-    { "&submult;",                          { 226, 171, 129, 0 } },
-    { "&subnE;",                            { 226, 171, 139, 0 } },
-    { "&subne;",                            { 226, 138, 138, 0 } },
-    { "&subplus;",                          { 226, 170, 191, 0 } },
-    { "&subrarr;",                          { 226, 165, 185, 0 } },
-    { "&subset;",                           { 226, 138, 130, 0 } },
-    { "&subseteq;",                         { 226, 138, 134, 0 } },
-    { "&subseteqq;",                        { 226, 171, 133, 0 } },
-    { "&subsetneq;",                        { 226, 138, 138, 0 } },
-    { "&subsetneqq;",                       { 226, 171, 139, 0 } },
-    { "&subsim;",                           { 226, 171, 135, 0 } },
-    { "&subsub;",                           { 226, 171, 149, 0 } },
-    { "&subsup;",                           { 226, 171, 147, 0 } },
-    { "&succ;",                             { 226, 137, 187, 0 } },
-    { "&succapprox;",                       { 226, 170, 184, 0 } },
-    { "&succcurlyeq;",                      { 226, 137, 189, 0 } },
-    { "&succeq;",                           { 226, 170, 176, 0 } },
-    { "&succnapprox;",                      { 226, 170, 186, 0 } },
-    { "&succneqq;",                         { 226, 170, 182, 0 } },
-    { "&succnsim;",                         { 226, 139, 169, 0 } },
-    { "&succsim;",                          { 226, 137, 191, 0 } },
-    { "&sum;",                              { 226, 136, 145, 0 } },
-    { "&sung;",                             { 226, 153, 170, 0 } },
-    { "&sup;",                              { 226, 138, 131, 0 } },
-    { "&sup1;",                             { 194, 185, 0 } },
-    { "&sup2;",                             { 194, 178, 0 } },
-    { "&sup3;",                             { 194, 179, 0 } },
-    { "&supE;",                             { 226, 171, 134, 0 } },
-    { "&supdot;",                           { 226, 170, 190, 0 } },
-    { "&supdsub;",                          { 226, 171, 152, 0 } },
-    { "&supe;",                             { 226, 138, 135, 0 } },
-    { "&supedot;",                          { 226, 171, 132, 0 } },
-    { "&suphsol;",                          { 226, 159, 137, 0 } },
-    { "&suphsub;",                          { 226, 171, 151, 0 } },
-    { "&suplarr;",                          { 226, 165, 187, 0 } },
-    { "&supmult;",                          { 226, 171, 130, 0 } },
-    { "&supnE;",                            { 226, 171, 140, 0 } },
-    { "&supne;",                            { 226, 138, 139, 0 } },
-    { "&supplus;",                          { 226, 171, 128, 0 } },
-    { "&supset;",                           { 226, 138, 131, 0 } },
-    { "&supseteq;",                         { 226, 138, 135, 0 } },
-    { "&supseteqq;",                        { 226, 171, 134, 0 } },
-    { "&supsetneq;",                        { 226, 138, 139, 0 } },
-    { "&supsetneqq;",                       { 226, 171, 140, 0 } },
-    { "&supsim;",                           { 226, 171, 136, 0 } },
-    { "&supsub;",                           { 226, 171, 148, 0 } },
-    { "&supsup;",                           { 226, 171, 150, 0 } },
-    { "&swArr;",                            { 226, 135, 153, 0 } },
-    { "&swarhk;",                           { 226, 164, 166, 0 } },
-    { "&swarr;",                            { 226, 134, 153, 0 } },
-    { "&swarrow;",                          { 226, 134, 153, 0 } },
-    { "&swnwar;",                           { 226, 164, 170, 0 } },
-    { "&szlig;",                            { 195, 159, 0 } },
-    { "&target;",                           { 226, 140, 150, 0 } },
-    { "&tau;",                              { 207, 132, 0 } },
-    { "&tbrk;",                             { 226, 142, 180, 0 } },
-    { "&tcaron;",                           { 197, 165, 0 } },
-    { "&tcedil;",                           { 197, 163, 0 } },
-    { "&tcy;",                              { 209, 130, 0 } },
-    { "&tdot;",                             { 226, 131, 155, 0 } },
-    { "&telrec;",                           { 226, 140, 149, 0 } },
-    { "&tfr;",                              { 240, 157, 148, 177, 0 } },
-    { "&there4;",                           { 226, 136, 180, 0 } },
-    { "&therefore;",                        { 226, 136, 180, 0 } },
-    { "&theta;",                            { 206, 184, 0 } },
-    { "&thetasym;",                         { 207, 145, 0 } },
-    { "&thetav;",                           { 207, 145, 0 } },
-    { "&thickapprox;",                      { 226, 137, 136, 0 } },
-    { "&thicksim;",                         { 226, 136, 188, 0 } },
-    { "&thinsp;",                           { 226, 128, 137, 0 } },
-    { "&thkap;",                            { 226, 137, 136, 0 } },
-    { "&thksim;",                           { 226, 136, 188, 0 } },
-    { "&thorn;",                            { 195, 190, 0 } },
-    { "&tilde;",                            { 203, 156, 0 } },
-    { "&times;",                            { 195, 151, 0 } },
-    { "&timesb;",                           { 226, 138, 160, 0 } },
-    { "&timesbar;",                         { 226, 168, 177, 0 } },
-    { "&timesd;",                           { 226, 168, 176, 0 } },
-    { "&tint;",                             { 226, 136, 173, 0 } },
-    { "&toea;",                             { 226, 164, 168, 0 } },
-    { "&top;",                              { 226, 138, 164, 0 } },
-    { "&topbot;",                           { 226, 140, 182, 0 } },
-    { "&topcir;",                           { 226, 171, 177, 0 } },
-    { "&topf;",                             { 240, 157, 149, 165, 0 } },
-    { "&topfork;",                          { 226, 171, 154, 0 } },
-    { "&tosa;",                             { 226, 164, 169, 0 } },
-    { "&tprime;",                           { 226, 128, 180, 0 } },
-    { "&trade;",                            { 226, 132, 162, 0 } },
-    { "&triangle;",                         { 226, 150, 181, 0 } },
-    { "&triangledown;",                     { 226, 150, 191, 0 } },
-    { "&triangleleft;",                     { 226, 151, 131, 0 } },
-    { "&trianglelefteq;",                   { 226, 138, 180, 0 } },
-    { "&triangleq;",                        { 226, 137, 156, 0 } },
-    { "&triangleright;",                    { 226, 150, 185, 0 } },
-    { "&trianglerighteq;",                  { 226, 138, 181, 0 } },
-    { "&tridot;",                           { 226, 151, 172, 0 } },
-    { "&trie;",                             { 226, 137, 156, 0 } },
-    { "&triminus;",                         { 226, 168, 186, 0 } },
-    { "&triplus;",                          { 226, 168, 185, 0 } },
-    { "&trisb;",                            { 226, 167, 141, 0 } },
-    { "&tritime;",                          { 226, 168, 187, 0 } },
-    { "&trpezium;",                         { 226, 143, 162, 0 } },
-    { "&tscr;",                             { 240, 157, 147, 137, 0 } },
-    { "&tscy;",                             { 209, 134, 0 } },
-    { "&tshcy;",                            { 209, 155, 0 } },
-    { "&tstrok;",                           { 197, 167, 0 } },
-    { "&twixt;",                            { 226, 137, 172, 0 } },
-    { "&twoheadleftarrow;",                 { 226, 134, 158, 0 } },
-    { "&twoheadrightarrow;",                { 226, 134, 160, 0 } },
-    { "&uArr;",                             { 226, 135, 145, 0 } },
-    { "&uHar;",                             { 226, 165, 163, 0 } },
-    { "&uacute;",                           { 195, 186, 0 } },
-    { "&uarr;",                             { 226, 134, 145, 0 } },
-    { "&ubrcy;",                            { 209, 158, 0 } },
-    { "&ubreve;",                           { 197, 173, 0 } },
-    { "&ucirc;",                            { 195, 187, 0 } },
-    { "&ucy;",                              { 209, 131, 0 } },
-    { "&udarr;",                            { 226, 135, 133, 0 } },
-    { "&udblac;",                           { 197, 177, 0 } },
-    { "&udhar;",                            { 226, 165, 174, 0 } },
-    { "&ufisht;",                           { 226, 165, 190, 0 } },
-    { "&ufr;",                              { 240, 157, 148, 178, 0 } },
-    { "&ugrave;",                           { 195, 185, 0 } },
-    { "&uharl;",                            { 226, 134, 191, 0 } },
-    { "&uharr;",                            { 226, 134, 190, 0 } },
-    { "&uhblk;",                            { 226, 150, 128, 0 } },
-    { "&ulcorn;",                           { 226, 140, 156, 0 } },
-    { "&ulcorner;",                         { 226, 140, 156, 0 } },
-    { "&ulcrop;",                           { 226, 140, 143, 0 } },
-    { "&ultri;",                            { 226, 151, 184, 0 } },
-    { "&umacr;",                            { 197, 171, 0 } },
-    { "&uml;",                              { 194, 168, 0 } },
-    { "&uogon;",                            { 197, 179, 0 } },
-    { "&uopf;",                             { 240, 157, 149, 166, 0 } },
-    { "&uparrow;",                          { 226, 134, 145, 0 } },
-    { "&updownarrow;",                      { 226, 134, 149, 0 } },
-    { "&upharpoonleft;",                    { 226, 134, 191, 0 } },
-    { "&upharpoonright;",                   { 226, 134, 190, 0 } },
-    { "&uplus;",                            { 226, 138, 142, 0 } },
-    { "&upsi;",                             { 207, 133, 0 } },
-    { "&upsih;",                            { 207, 146, 0 } },
-    { "&upsilon;",                          { 207, 133, 0 } },
-    { "&upuparrows;",                       { 226, 135, 136, 0 } },
-    { "&urcorn;",                           { 226, 140, 157, 0 } },
-    { "&urcorner;",                         { 226, 140, 157, 0 } },
-    { "&urcrop;",                           { 226, 140, 142, 0 } },
-    { "&uring;",                            { 197, 175, 0 } },
-    { "&urtri;",                            { 226, 151, 185, 0 } },
-    { "&uscr;",                             { 240, 157, 147, 138, 0 } },
-    { "&utdot;",                            { 226, 139, 176, 0 } },
-    { "&utilde;",                           { 197, 169, 0 } },
-    { "&utri;",                             { 226, 150, 181, 0 } },
-    { "&utrif;",                            { 226, 150, 180, 0 } },
-    { "&uuarr;",                            { 226, 135, 136, 0 } },
-    { "&uuml;",                             { 195, 188, 0 } },
-    { "&uwangle;",                          { 226, 166, 167, 0 } },
-    { "&vArr;",                             { 226, 135, 149, 0 } },
-    { "&vBar;",                             { 226, 171, 168, 0 } },
-    { "&vBarv;",                            { 226, 171, 169, 0 } },
-    { "&vDash;",                            { 226, 138, 168, 0 } },
-    { "&vangrt;",                           { 226, 166, 156, 0 } },
-    { "&varepsilon;",                       { 207, 181, 0 } },
-    { "&varkappa;",                         { 207, 176, 0 } },
-    { "&varnothing;",                       { 226, 136, 133, 0 } },
-    { "&varphi;",                           { 207, 149, 0 } },
-    { "&varpi;",                            { 207, 150, 0 } },
-    { "&varpropto;",                        { 226, 136, 157, 0 } },
-    { "&varr;",                             { 226, 134, 149, 0 } },
-    { "&varrho;",                           { 207, 177, 0 } },
-    { "&varsigma;",                         { 207, 130, 0 } },
-    { "&varsubsetneq;",                     { 226, 138, 138, 239, 184, 128, 0 } },
-    { "&varsubsetneqq;",                    { 226, 171, 139, 239, 184, 128, 0 } },
-    { "&varsupsetneq;",                     { 226, 138, 139, 239, 184, 128, 0 } },
-    { "&varsupsetneqq;",                    { 226, 171, 140, 239, 184, 128, 0 } },
-    { "&vartheta;",                         { 207, 145, 0 } },
-    { "&vartriangleleft;",                  { 226, 138, 178, 0 } },
-    { "&vartriangleright;",                 { 226, 138, 179, 0 } },
-    { "&vcy;",                              { 208, 178, 0 } },
-    { "&vdash;",                            { 226, 138, 162, 0 } },
-    { "&vee;",                              { 226, 136, 168, 0 } },
-    { "&veebar;",                           { 226, 138, 187, 0 } },
-    { "&veeeq;",                            { 226, 137, 154, 0 } },
-    { "&vellip;",                           { 226, 139, 174, 0 } },
-    { "&verbar;",                           { 124, 0 } },
-    { "&vert;",                             { 124, 0 } },
-    { "&vfr;",                              { 240, 157, 148, 179, 0 } },
-    { "&vltri;",                            { 226, 138, 178, 0 } },
-    { "&vnsub;",                            { 226, 138, 130, 226, 131, 146, 0 } },
-    { "&vnsup;",                            { 226, 138, 131, 226, 131, 146, 0 } },
-    { "&vopf;",                             { 240, 157, 149, 167, 0 } },
-    { "&vprop;",                            { 226, 136, 157, 0 } },
-    { "&vrtri;",                            { 226, 138, 179, 0 } },
-    { "&vscr;",                             { 240, 157, 147, 139, 0 } },
-    { "&vsubnE;",                           { 226, 171, 139, 239, 184, 128, 0 } },
-    { "&vsubne;",                           { 226, 138, 138, 239, 184, 128, 0 } },
-    { "&vsupnE;",                           { 226, 171, 140, 239, 184, 128, 0 } },
-    { "&vsupne;",                           { 226, 138, 139, 239, 184, 128, 0 } },
-    { "&vzigzag;",                          { 226, 166, 154, 0 } },
-    { "&wcirc;",                            { 197, 181, 0 } },
-    { "&wedbar;",                           { 226, 169, 159, 0 } },
-    { "&wedge;",                            { 226, 136, 167, 0 } },
-    { "&wedgeq;",                           { 226, 137, 153, 0 } },
-    { "&weierp;",                           { 226, 132, 152, 0 } },
-    { "&wfr;",                              { 240, 157, 148, 180, 0 } },
-    { "&wopf;",                             { 240, 157, 149, 168, 0 } },
-    { "&wp;",                               { 226, 132, 152, 0 } },
-    { "&wr;",                               { 226, 137, 128, 0 } },
-    { "&wreath;",                           { 226, 137, 128, 0 } },
-    { "&wscr;",                             { 240, 157, 147, 140, 0 } },
-    { "&xcap;",                             { 226, 139, 130, 0 } },
-    { "&xcirc;",                            { 226, 151, 175, 0 } },
-    { "&xcup;",                             { 226, 139, 131, 0 } },
-    { "&xdtri;",                            { 226, 150, 189, 0 } },
-    { "&xfr;",                              { 240, 157, 148, 181, 0 } },
-    { "&xhArr;",                            { 226, 159, 186, 0 } },
-    { "&xharr;",                            { 226, 159, 183, 0 } },
-    { "&xi;",                               { 206, 190, 0 } },
-    { "&xlArr;",                            { 226, 159, 184, 0 } },
-    { "&xlarr;",                            { 226, 159, 181, 0 } },
-    { "&xmap;",                             { 226, 159, 188, 0 } },
-    { "&xnis;",                             { 226, 139, 187, 0 } },
-    { "&xodot;",                            { 226, 168, 128, 0 } },
-    { "&xopf;",                             { 240, 157, 149, 169, 0 } },
-    { "&xoplus;",                           { 226, 168, 129, 0 } },
-    { "&xotime;",                           { 226, 168, 130, 0 } },
-    { "&xrArr;",                            { 226, 159, 185, 0 } },
-    { "&xrarr;",                            { 226, 159, 182, 0 } },
-    { "&xscr;",                             { 240, 157, 147, 141, 0 } },
-    { "&xsqcup;",                           { 226, 168, 134, 0 } },
-    { "&xuplus;",                           { 226, 168, 132, 0 } },
-    { "&xutri;",                            { 226, 150, 179, 0 } },
-    { "&xvee;",                             { 226, 139, 129, 0 } },
-    { "&xwedge;",                           { 226, 139, 128, 0 } },
-    { "&yacute;",                           { 195, 189, 0 } },
-    { "&yacy;",                             { 209, 143, 0 } },
-    { "&ycirc;",                            { 197, 183, 0 } },
-    { "&ycy;",                              { 209, 139, 0 } },
-    { "&yen;",                              { 194, 165, 0 } },
-    { "&yfr;",                              { 240, 157, 148, 182, 0 } },
-    { "&yicy;",                             { 209, 151, 0 } },
-    { "&yopf;",                             { 240, 157, 149, 170, 0 } },
-    { "&yscr;",                             { 240, 157, 147, 142, 0 } },
-    { "&yucy;",                             { 209, 142, 0 } },
-    { "&yuml;",                             { 195, 191, 0 } },
-    { "&zacute;",                           { 197, 186, 0 } },
-    { "&zcaron;",                           { 197, 190, 0 } },
-    { "&zcy;",                              { 208, 183, 0 } },
-    { "&zdot;",                             { 197, 188, 0 } },
-    { "&zeetrf;",                           { 226, 132, 168, 0 } },
-    { "&zeta;",                             { 206, 182, 0 } },
-    { "&zfr;",                              { 240, 157, 148, 183, 0 } },
-    { "&zhcy;",                             { 208, 182, 0 } },
-    { "&zigrarr;",                          { 226, 135, 157, 0 } },
-    { "&zopf;",                             { 240, 157, 149, 171, 0 } },
-    { "&zscr;",                             { 240, 157, 147, 143, 0 } },
-    { "&zwj;",                              { 226, 128, 141, 0 } },
-    { "&zwnj;",                             { 226, 128, 140, 0 } }
+    { "&AElig;", { 198, 0 } },
+    { "&AMP;", { 38, 0 } },
+    { "&Aacute;", { 193, 0 } },
+    { "&Abreve;", { 258, 0 } },
+    { "&Acirc;", { 194, 0 } },
+    { "&Acy;", { 1040, 0 } },
+    { "&Afr;", { 120068, 0 } },
+    { "&Agrave;", { 192, 0 } },
+    { "&Alpha;", { 913, 0 } },
+    { "&Amacr;", { 256, 0 } },
+    { "&And;", { 10835, 0 } },
+    { "&Aogon;", { 260, 0 } },
+    { "&Aopf;", { 120120, 0 } },
+    { "&ApplyFunction;", { 8289, 0 } },
+    { "&Aring;", { 197, 0 } },
+    { "&Ascr;", { 119964, 0 } },
+    { "&Assign;", { 8788, 0 } },
+    { "&Atilde;", { 195, 0 } },
+    { "&Auml;", { 196, 0 } },
+    { "&Backslash;", { 8726, 0 } },
+    { "&Barv;", { 10983, 0 } },
+    { "&Barwed;", { 8966, 0 } },
+    { "&Bcy;", { 1041, 0 } },
+    { "&Because;", { 8757, 0 } },
+    { "&Bernoullis;", { 8492, 0 } },
+    { "&Beta;", { 914, 0 } },
+    { "&Bfr;", { 120069, 0 } },
+    { "&Bopf;", { 120121, 0 } },
+    { "&Breve;", { 728, 0 } },
+    { "&Bscr;", { 8492, 0 } },
+    { "&Bumpeq;", { 8782, 0 } },
+    { "&CHcy;", { 1063, 0 } },
+    { "&COPY;", { 169, 0 } },
+    { "&Cacute;", { 262, 0 } },
+    { "&Cap;", { 8914, 0 } },
+    { "&CapitalDifferentialD;", { 8517, 0 } },
+    { "&Cayleys;", { 8493, 0 } },
+    { "&Ccaron;", { 268, 0 } },
+    { "&Ccedil;", { 199, 0 } },
+    { "&Ccirc;", { 264, 0 } },
+    { "&Cconint;", { 8752, 0 } },
+    { "&Cdot;", { 266, 0 } },
+    { "&Cedilla;", { 184, 0 } },
+    { "&CenterDot;", { 183, 0 } },
+    { "&Cfr;", { 8493, 0 } },
+    { "&Chi;", { 935, 0 } },
+    { "&CircleDot;", { 8857, 0 } },
+    { "&CircleMinus;", { 8854, 0 } },
+    { "&CirclePlus;", { 8853, 0 } },
+    { "&CircleTimes;", { 8855, 0 } },
+    { "&ClockwiseContourIntegral;", { 8754, 0 } },
+    { "&CloseCurlyDoubleQuote;", { 8221, 0 } },
+    { "&CloseCurlyQuote;", { 8217, 0 } },
+    { "&Colon;", { 8759, 0 } },
+    { "&Colone;", { 10868, 0 } },
+    { "&Congruent;", { 8801, 0 } },
+    { "&Conint;", { 8751, 0 } },
+    { "&ContourIntegral;", { 8750, 0 } },
+    { "&Copf;", { 8450, 0 } },
+    { "&Coproduct;", { 8720, 0 } },
+    { "&CounterClockwiseContourIntegral;", { 8755, 0 } },
+    { "&Cross;", { 10799, 0 } },
+    { "&Cscr;", { 119966, 0 } },
+    { "&Cup;", { 8915, 0 } },
+    { "&CupCap;", { 8781, 0 } },
+    { "&DD;", { 8517, 0 } },
+    { "&DDotrahd;", { 10513, 0 } },
+    { "&DJcy;", { 1026, 0 } },
+    { "&DScy;", { 1029, 0 } },
+    { "&DZcy;", { 1039, 0 } },
+    { "&Dagger;", { 8225, 0 } },
+    { "&Darr;", { 8609, 0 } },
+    { "&Dashv;", { 10980, 0 } },
+    { "&Dcaron;", { 270, 0 } },
+    { "&Dcy;", { 1044, 0 } },
+    { "&Del;", { 8711, 0 } },
+    { "&Delta;", { 916, 0 } },
+    { "&Dfr;", { 120071, 0 } },
+    { "&DiacriticalAcute;", { 180, 0 } },
+    { "&DiacriticalDot;", { 729, 0 } },
+    { "&DiacriticalDoubleAcute;", { 733, 0 } },
+    { "&DiacriticalGrave;", { 96, 0 } },
+    { "&DiacriticalTilde;", { 732, 0 } },
+    { "&Diamond;", { 8900, 0 } },
+    { "&DifferentialD;", { 8518, 0 } },
+    { "&Dopf;", { 120123, 0 } },
+    { "&Dot;", { 168, 0 } },
+    { "&DotDot;", { 8412, 0 } },
+    { "&DotEqual;", { 8784, 0 } },
+    { "&DoubleContourIntegral;", { 8751, 0 } },
+    { "&DoubleDot;", { 168, 0 } },
+    { "&DoubleDownArrow;", { 8659, 0 } },
+    { "&DoubleLeftArrow;", { 8656, 0 } },
+    { "&DoubleLeftRightArrow;", { 8660, 0 } },
+    { "&DoubleLeftTee;", { 10980, 0 } },
+    { "&DoubleLongLeftArrow;", { 10232, 0 } },
+    { "&DoubleLongLeftRightArrow;", { 10234, 0 } },
+    { "&DoubleLongRightArrow;", { 10233, 0 } },
+    { "&DoubleRightArrow;", { 8658, 0 } },
+    { "&DoubleRightTee;", { 8872, 0 } },
+    { "&DoubleUpArrow;", { 8657, 0 } },
+    { "&DoubleUpDownArrow;", { 8661, 0 } },
+    { "&DoubleVerticalBar;", { 8741, 0 } },
+    { "&DownArrow;", { 8595, 0 } },
+    { "&DownArrowBar;", { 10515, 0 } },
+    { "&DownArrowUpArrow;", { 8693, 0 } },
+    { "&DownBreve;", { 785, 0 } },
+    { "&DownLeftRightVector;", { 10576, 0 } },
+    { "&DownLeftTeeVector;", { 10590, 0 } },
+    { "&DownLeftVector;", { 8637, 0 } },
+    { "&DownLeftVectorBar;", { 10582, 0 } },
+    { "&DownRightTeeVector;", { 10591, 0 } },
+    { "&DownRightVector;", { 8641, 0 } },
+    { "&DownRightVectorBar;", { 10583, 0 } },
+    { "&DownTee;", { 8868, 0 } },
+    { "&DownTeeArrow;", { 8615, 0 } },
+    { "&Downarrow;", { 8659, 0 } },
+    { "&Dscr;", { 119967, 0 } },
+    { "&Dstrok;", { 272, 0 } },
+    { "&ENG;", { 330, 0 } },
+    { "&ETH;", { 208, 0 } },
+    { "&Eacute;", { 201, 0 } },
+    { "&Ecaron;", { 282, 0 } },
+    { "&Ecirc;", { 202, 0 } },
+    { "&Ecy;", { 1069, 0 } },
+    { "&Edot;", { 278, 0 } },
+    { "&Efr;", { 120072, 0 } },
+    { "&Egrave;", { 200, 0 } },
+    { "&Element;", { 8712, 0 } },
+    { "&Emacr;", { 274, 0 } },
+    { "&EmptySmallSquare;", { 9723, 0 } },
+    { "&EmptyVerySmallSquare;", { 9643, 0 } },
+    { "&Eogon;", { 280, 0 } },
+    { "&Eopf;", { 120124, 0 } },
+    { "&Epsilon;", { 917, 0 } },
+    { "&Equal;", { 10869, 0 } },
+    { "&EqualTilde;", { 8770, 0 } },
+    { "&Equilibrium;", { 8652, 0 } },
+    { "&Escr;", { 8496, 0 } },
+    { "&Esim;", { 10867, 0 } },
+    { "&Eta;", { 919, 0 } },
+    { "&Euml;", { 203, 0 } },
+    { "&Exists;", { 8707, 0 } },
+    { "&ExponentialE;", { 8519, 0 } },
+    { "&Fcy;", { 1060, 0 } },
+    { "&Ffr;", { 120073, 0 } },
+    { "&FilledSmallSquare;", { 9724, 0 } },
+    { "&FilledVerySmallSquare;", { 9642, 0 } },
+    { "&Fopf;", { 120125, 0 } },
+    { "&ForAll;", { 8704, 0 } },
+    { "&Fouriertrf;", { 8497, 0 } },
+    { "&Fscr;", { 8497, 0 } },
+    { "&GJcy;", { 1027, 0 } },
+    { "&GT;", { 62, 0 } },
+    { "&Gamma;", { 915, 0 } },
+    { "&Gammad;", { 988, 0 } },
+    { "&Gbreve;", { 286, 0 } },
+    { "&Gcedil;", { 290, 0 } },
+    { "&Gcirc;", { 284, 0 } },
+    { "&Gcy;", { 1043, 0 } },
+    { "&Gdot;", { 288, 0 } },
+    { "&Gfr;", { 120074, 0 } },
+    { "&Gg;", { 8921, 0 } },
+    { "&Gopf;", { 120126, 0 } },
+    { "&GreaterEqual;", { 8805, 0 } },
+    { "&GreaterEqualLess;", { 8923, 0 } },
+    { "&GreaterFullEqual;", { 8807, 0 } },
+    { "&GreaterGreater;", { 10914, 0 } },
+    { "&GreaterLess;", { 8823, 0 } },
+    { "&GreaterSlantEqual;", { 10878, 0 } },
+    { "&GreaterTilde;", { 8819, 0 } },
+    { "&Gscr;", { 119970, 0 } },
+    { "&Gt;", { 8811, 0 } },
+    { "&HARDcy;", { 1066, 0 } },
+    { "&Hacek;", { 711, 0 } },
+    { "&Hat;", { 94, 0 } },
+    { "&Hcirc;", { 292, 0 } },
+    { "&Hfr;", { 8460, 0 } },
+    { "&HilbertSpace;", { 8459, 0 } },
+    { "&Hopf;", { 8461, 0 } },
+    { "&HorizontalLine;", { 9472, 0 } },
+    { "&Hscr;", { 8459, 0 } },
+    { "&Hstrok;", { 294, 0 } },
+    { "&HumpDownHump;", { 8782, 0 } },
+    { "&HumpEqual;", { 8783, 0 } },
+    { "&IEcy;", { 1045, 0 } },
+    { "&IJlig;", { 306, 0 } },
+    { "&IOcy;", { 1025, 0 } },
+    { "&Iacute;", { 205, 0 } },
+    { "&Icirc;", { 206, 0 } },
+    { "&Icy;", { 1048, 0 } },
+    { "&Idot;", { 304, 0 } },
+    { "&Ifr;", { 8465, 0 } },
+    { "&Igrave;", { 204, 0 } },
+    { "&Im;", { 8465, 0 } },
+    { "&Imacr;", { 298, 0 } },
+    { "&ImaginaryI;", { 8520, 0 } },
+    { "&Implies;", { 8658, 0 } },
+    { "&Int;", { 8748, 0 } },
+    { "&Integral;", { 8747, 0 } },
+    { "&Intersection;", { 8898, 0 } },
+    { "&InvisibleComma;", { 8291, 0 } },
+    { "&InvisibleTimes;", { 8290, 0 } },
+    { "&Iogon;", { 302, 0 } },
+    { "&Iopf;", { 120128, 0 } },
+    { "&Iota;", { 921, 0 } },
+    { "&Iscr;", { 8464, 0 } },
+    { "&Itilde;", { 296, 0 } },
+    { "&Iukcy;", { 1030, 0 } },
+    { "&Iuml;", { 207, 0 } },
+    { "&Jcirc;", { 308, 0 } },
+    { "&Jcy;", { 1049, 0 } },
+    { "&Jfr;", { 120077, 0 } },
+    { "&Jopf;", { 120129, 0 } },
+    { "&Jscr;", { 119973, 0 } },
+    { "&Jsercy;", { 1032, 0 } },
+    { "&Jukcy;", { 1028, 0 } },
+    { "&KHcy;", { 1061, 0 } },
+    { "&KJcy;", { 1036, 0 } },
+    { "&Kappa;", { 922, 0 } },
+    { "&Kcedil;", { 310, 0 } },
+    { "&Kcy;", { 1050, 0 } },
+    { "&Kfr;", { 120078, 0 } },
+    { "&Kopf;", { 120130, 0 } },
+    { "&Kscr;", { 119974, 0 } },
+    { "&LJcy;", { 1033, 0 } },
+    { "&LT;", { 60, 0 } },
+    { "&Lacute;", { 313, 0 } },
+    { "&Lambda;", { 923, 0 } },
+    { "&Lang;", { 10218, 0 } },
+    { "&Laplacetrf;", { 8466, 0 } },
+    { "&Larr;", { 8606, 0 } },
+    { "&Lcaron;", { 317, 0 } },
+    { "&Lcedil;", { 315, 0 } },
+    { "&Lcy;", { 1051, 0 } },
+    { "&LeftAngleBracket;", { 10216, 0 } },
+    { "&LeftArrow;", { 8592, 0 } },
+    { "&LeftArrowBar;", { 8676, 0 } },
+    { "&LeftArrowRightArrow;", { 8646, 0 } },
+    { "&LeftCeiling;", { 8968, 0 } },
+    { "&LeftDoubleBracket;", { 10214, 0 } },
+    { "&LeftDownTeeVector;", { 10593, 0 } },
+    { "&LeftDownVector;", { 8643, 0 } },
+    { "&LeftDownVectorBar;", { 10585, 0 } },
+    { "&LeftFloor;", { 8970, 0 } },
+    { "&LeftRightArrow;", { 8596, 0 } },
+    { "&LeftRightVector;", { 10574, 0 } },
+    { "&LeftTee;", { 8867, 0 } },
+    { "&LeftTeeArrow;", { 8612, 0 } },
+    { "&LeftTeeVector;", { 10586, 0 } },
+    { "&LeftTriangle;", { 8882, 0 } },
+    { "&LeftTriangleBar;", { 10703, 0 } },
+    { "&LeftTriangleEqual;", { 8884, 0 } },
+    { "&LeftUpDownVector;", { 10577, 0 } },
+    { "&LeftUpTeeVector;", { 10592, 0 } },
+    { "&LeftUpVector;", { 8639, 0 } },
+    { "&LeftUpVectorBar;", { 10584, 0 } },
+    { "&LeftVector;", { 8636, 0 } },
+    { "&LeftVectorBar;", { 10578, 0 } },
+    { "&Leftarrow;", { 8656, 0 } },
+    { "&Leftrightarrow;", { 8660, 0 } },
+    { "&LessEqualGreater;", { 8922, 0 } },
+    { "&LessFullEqual;", { 8806, 0 } },
+    { "&LessGreater;", { 8822, 0 } },
+    { "&LessLess;", { 10913, 0 } },
+    { "&LessSlantEqual;", { 10877, 0 } },
+    { "&LessTilde;", { 8818, 0 } },
+    { "&Lfr;", { 120079, 0 } },
+    { "&Ll;", { 8920, 0 } },
+    { "&Lleftarrow;", { 8666, 0 } },
+    { "&Lmidot;", { 319, 0 } },
+    { "&LongLeftArrow;", { 10229, 0 } },
+    { "&LongLeftRightArrow;", { 10231, 0 } },
+    { "&LongRightArrow;", { 10230, 0 } },
+    { "&Longleftarrow;", { 10232, 0 } },
+    { "&Longleftrightarrow;", { 10234, 0 } },
+    { "&Longrightarrow;", { 10233, 0 } },
+    { "&Lopf;", { 120131, 0 } },
+    { "&LowerLeftArrow;", { 8601, 0 } },
+    { "&LowerRightArrow;", { 8600, 0 } },
+    { "&Lscr;", { 8466, 0 } },
+    { "&Lsh;", { 8624, 0 } },
+    { "&Lstrok;", { 321, 0 } },
+    { "&Lt;", { 8810, 0 } },
+    { "&Map;", { 10501, 0 } },
+    { "&Mcy;", { 1052, 0 } },
+    { "&MediumSpace;", { 8287, 0 } },
+    { "&Mellintrf;", { 8499, 0 } },
+    { "&Mfr;", { 120080, 0 } },
+    { "&MinusPlus;", { 8723, 0 } },
+    { "&Mopf;", { 120132, 0 } },
+    { "&Mscr;", { 8499, 0 } },
+    { "&Mu;", { 924, 0 } },
+    { "&NJcy;", { 1034, 0 } },
+    { "&Nacute;", { 323, 0 } },
+    { "&Ncaron;", { 327, 0 } },
+    { "&Ncedil;", { 325, 0 } },
+    { "&Ncy;", { 1053, 0 } },
+    { "&NegativeMediumSpace;", { 8203, 0 } },
+    { "&NegativeThickSpace;", { 8203, 0 } },
+    { "&NegativeThinSpace;", { 8203, 0 } },
+    { "&NegativeVeryThinSpace;", { 8203, 0 } },
+    { "&NestedGreaterGreater;", { 8811, 0 } },
+    { "&NestedLessLess;", { 8810, 0 } },
+    { "&NewLine;", { 10, 0 } },
+    { "&Nfr;", { 120081, 0 } },
+    { "&NoBreak;", { 8288, 0 } },
+    { "&NonBreakingSpace;", { 160, 0 } },
+    { "&Nopf;", { 8469, 0 } },
+    { "&Not;", { 10988, 0 } },
+    { "&NotCongruent;", { 8802, 0 } },
+    { "&NotCupCap;", { 8813, 0 } },
+    { "&NotDoubleVerticalBar;", { 8742, 0 } },
+    { "&NotElement;", { 8713, 0 } },
+    { "&NotEqual;", { 8800, 0 } },
+    { "&NotEqualTilde;", { 8770, 824 } },
+    { "&NotExists;", { 8708, 0 } },
+    { "&NotGreater;", { 8815, 0 } },
+    { "&NotGreaterEqual;", { 8817, 0 } },
+    { "&NotGreaterFullEqual;", { 8807, 824 } },
+    { "&NotGreaterGreater;", { 8811, 824 } },
+    { "&NotGreaterLess;", { 8825, 0 } },
+    { "&NotGreaterSlantEqual;", { 10878, 824 } },
+    { "&NotGreaterTilde;", { 8821, 0 } },
+    { "&NotHumpDownHump;", { 8782, 824 } },
+    { "&NotHumpEqual;", { 8783, 824 } },
+    { "&NotLeftTriangle;", { 8938, 0 } },
+    { "&NotLeftTriangleBar;", { 10703, 824 } },
+    { "&NotLeftTriangleEqual;", { 8940, 0 } },
+    { "&NotLess;", { 8814, 0 } },
+    { "&NotLessEqual;", { 8816, 0 } },
+    { "&NotLessGreater;", { 8824, 0 } },
+    { "&NotLessLess;", { 8810, 824 } },
+    { "&NotLessSlantEqual;", { 10877, 824 } },
+    { "&NotLessTilde;", { 8820, 0 } },
+    { "&NotNestedGreaterGreater;", { 10914, 824 } },
+    { "&NotNestedLessLess;", { 10913, 824 } },
+    { "&NotPrecedes;", { 8832, 0 } },
+    { "&NotPrecedesEqual;", { 10927, 824 } },
+    { "&NotPrecedesSlantEqual;", { 8928, 0 } },
+    { "&NotReverseElement;", { 8716, 0 } },
+    { "&NotRightTriangle;", { 8939, 0 } },
+    { "&NotRightTriangleBar;", { 10704, 824 } },
+    { "&NotRightTriangleEqual;", { 8941, 0 } },
+    { "&NotSquareSubset;", { 8847, 824 } },
+    { "&NotSquareSubsetEqual;", { 8930, 0 } },
+    { "&NotSquareSuperset;", { 8848, 824 } },
+    { "&NotSquareSupersetEqual;", { 8931, 0 } },
+    { "&NotSubset;", { 8834, 8402 } },
+    { "&NotSubsetEqual;", { 8840, 0 } },
+    { "&NotSucceeds;", { 8833, 0 } },
+    { "&NotSucceedsEqual;", { 10928, 824 } },
+    { "&NotSucceedsSlantEqual;", { 8929, 0 } },
+    { "&NotSucceedsTilde;", { 8831, 824 } },
+    { "&NotSuperset;", { 8835, 8402 } },
+    { "&NotSupersetEqual;", { 8841, 0 } },
+    { "&NotTilde;", { 8769, 0 } },
+    { "&NotTildeEqual;", { 8772, 0 } },
+    { "&NotTildeFullEqual;", { 8775, 0 } },
+    { "&NotTildeTilde;", { 8777, 0 } },
+    { "&NotVerticalBar;", { 8740, 0 } },
+    { "&Nscr;", { 119977, 0 } },
+    { "&Ntilde;", { 209, 0 } },
+    { "&Nu;", { 925, 0 } },
+    { "&OElig;", { 338, 0 } },
+    { "&Oacute;", { 211, 0 } },
+    { "&Ocirc;", { 212, 0 } },
+    { "&Ocy;", { 1054, 0 } },
+    { "&Odblac;", { 336, 0 } },
+    { "&Ofr;", { 120082, 0 } },
+    { "&Ograve;", { 210, 0 } },
+    { "&Omacr;", { 332, 0 } },
+    { "&Omega;", { 937, 0 } },
+    { "&Omicron;", { 927, 0 } },
+    { "&Oopf;", { 120134, 0 } },
+    { "&OpenCurlyDoubleQuote;", { 8220, 0 } },
+    { "&OpenCurlyQuote;", { 8216, 0 } },
+    { "&Or;", { 10836, 0 } },
+    { "&Oscr;", { 119978, 0 } },
+    { "&Oslash;", { 216, 0 } },
+    { "&Otilde;", { 213, 0 } },
+    { "&Otimes;", { 10807, 0 } },
+    { "&Ouml;", { 214, 0 } },
+    { "&OverBar;", { 8254, 0 } },
+    { "&OverBrace;", { 9182, 0 } },
+    { "&OverBracket;", { 9140, 0 } },
+    { "&OverParenthesis;", { 9180, 0 } },
+    { "&PartialD;", { 8706, 0 } },
+    { "&Pcy;", { 1055, 0 } },
+    { "&Pfr;", { 120083, 0 } },
+    { "&Phi;", { 934, 0 } },
+    { "&Pi;", { 928, 0 } },
+    { "&PlusMinus;", { 177, 0 } },
+    { "&Poincareplane;", { 8460, 0 } },
+    { "&Popf;", { 8473, 0 } },
+    { "&Pr;", { 10939, 0 } },
+    { "&Precedes;", { 8826, 0 } },
+    { "&PrecedesEqual;", { 10927, 0 } },
+    { "&PrecedesSlantEqual;", { 8828, 0 } },
+    { "&PrecedesTilde;", { 8830, 0 } },
+    { "&Prime;", { 8243, 0 } },
+    { "&Product;", { 8719, 0 } },
+    { "&Proportion;", { 8759, 0 } },
+    { "&Proportional;", { 8733, 0 } },
+    { "&Pscr;", { 119979, 0 } },
+    { "&Psi;", { 936, 0 } },
+    { "&QUOT;", { 34, 0 } },
+    { "&Qfr;", { 120084, 0 } },
+    { "&Qopf;", { 8474, 0 } },
+    { "&Qscr;", { 119980, 0 } },
+    { "&RBarr;", { 10512, 0 } },
+    { "&REG;", { 174, 0 } },
+    { "&Racute;", { 340, 0 } },
+    { "&Rang;", { 10219, 0 } },
+    { "&Rarr;", { 8608, 0 } },
+    { "&Rarrtl;", { 10518, 0 } },
+    { "&Rcaron;", { 344, 0 } },
+    { "&Rcedil;", { 342, 0 } },
+    { "&Rcy;", { 1056, 0 } },
+    { "&Re;", { 8476, 0 } },
+    { "&ReverseElement;", { 8715, 0 } },
+    { "&ReverseEquilibrium;", { 8651, 0 } },
+    { "&ReverseUpEquilibrium;", { 10607, 0 } },
+    { "&Rfr;", { 8476, 0 } },
+    { "&Rho;", { 929, 0 } },
+    { "&RightAngleBracket;", { 10217, 0 } },
+    { "&RightArrow;", { 8594, 0 } },
+    { "&RightArrowBar;", { 8677, 0 } },
+    { "&RightArrowLeftArrow;", { 8644, 0 } },
+    { "&RightCeiling;", { 8969, 0 } },
+    { "&RightDoubleBracket;", { 10215, 0 } },
+    { "&RightDownTeeVector;", { 10589, 0 } },
+    { "&RightDownVector;", { 8642, 0 } },
+    { "&RightDownVectorBar;", { 10581, 0 } },
+    { "&RightFloor;", { 8971, 0 } },
+    { "&RightTee;", { 8866, 0 } },
+    { "&RightTeeArrow;", { 8614, 0 } },
+    { "&RightTeeVector;", { 10587, 0 } },
+    { "&RightTriangle;", { 8883, 0 } },
+    { "&RightTriangleBar;", { 10704, 0 } },
+    { "&RightTriangleEqual;", { 8885, 0 } },
+    { "&RightUpDownVector;", { 10575, 0 } },
+    { "&RightUpTeeVector;", { 10588, 0 } },
+    { "&RightUpVector;", { 8638, 0 } },
+    { "&RightUpVectorBar;", { 10580, 0 } },
+    { "&RightVector;", { 8640, 0 } },
+    { "&RightVectorBar;", { 10579, 0 } },
+    { "&Rightarrow;", { 8658, 0 } },
+    { "&Ropf;", { 8477, 0 } },
+    { "&RoundImplies;", { 10608, 0 } },
+    { "&Rrightarrow;", { 8667, 0 } },
+    { "&Rscr;", { 8475, 0 } },
+    { "&Rsh;", { 8625, 0 } },
+    { "&RuleDelayed;", { 10740, 0 } },
+    { "&SHCHcy;", { 1065, 0 } },
+    { "&SHcy;", { 1064, 0 } },
+    { "&SOFTcy;", { 1068, 0 } },
+    { "&Sacute;", { 346, 0 } },
+    { "&Sc;", { 10940, 0 } },
+    { "&Scaron;", { 352, 0 } },
+    { "&Scedil;", { 350, 0 } },
+    { "&Scirc;", { 348, 0 } },
+    { "&Scy;", { 1057, 0 } },
+    { "&Sfr;", { 120086, 0 } },
+    { "&ShortDownArrow;", { 8595, 0 } },
+    { "&ShortLeftArrow;", { 8592, 0 } },
+    { "&ShortRightArrow;", { 8594, 0 } },
+    { "&ShortUpArrow;", { 8593, 0 } },
+    { "&Sigma;", { 931, 0 } },
+    { "&SmallCircle;", { 8728, 0 } },
+    { "&Sopf;", { 120138, 0 } },
+    { "&Sqrt;", { 8730, 0 } },
+    { "&Square;", { 9633, 0 } },
+    { "&SquareIntersection;", { 8851, 0 } },
+    { "&SquareSubset;", { 8847, 0 } },
+    { "&SquareSubsetEqual;", { 8849, 0 } },
+    { "&SquareSuperset;", { 8848, 0 } },
+    { "&SquareSupersetEqual;", { 8850, 0 } },
+    { "&SquareUnion;", { 8852, 0 } },
+    { "&Sscr;", { 119982, 0 } },
+    { "&Star;", { 8902, 0 } },
+    { "&Sub;", { 8912, 0 } },
+    { "&Subset;", { 8912, 0 } },
+    { "&SubsetEqual;", { 8838, 0 } },
+    { "&Succeeds;", { 8827, 0 } },
+    { "&SucceedsEqual;", { 10928, 0 } },
+    { "&SucceedsSlantEqual;", { 8829, 0 } },
+    { "&SucceedsTilde;", { 8831, 0 } },
+    { "&SuchThat;", { 8715, 0 } },
+    { "&Sum;", { 8721, 0 } },
+    { "&Sup;", { 8913, 0 } },
+    { "&Superset;", { 8835, 0 } },
+    { "&SupersetEqual;", { 8839, 0 } },
+    { "&Supset;", { 8913, 0 } },
+    { "&THORN;", { 222, 0 } },
+    { "&TRADE;", { 8482, 0 } },
+    { "&TSHcy;", { 1035, 0 } },
+    { "&TScy;", { 1062, 0 } },
+    { "&Tab;", { 9, 0 } },
+    { "&Tau;", { 932, 0 } },
+    { "&Tcaron;", { 356, 0 } },
+    { "&Tcedil;", { 354, 0 } },
+    { "&Tcy;", { 1058, 0 } },
+    { "&Tfr;", { 120087, 0 } },
+    { "&Therefore;", { 8756, 0 } },
+    { "&Theta;", { 920, 0 } },
+    { "&ThickSpace;", { 8287, 8202 } },
+    { "&ThinSpace;", { 8201, 0 } },
+    { "&Tilde;", { 8764, 0 } },
+    { "&TildeEqual;", { 8771, 0 } },
+    { "&TildeFullEqual;", { 8773, 0 } },
+    { "&TildeTilde;", { 8776, 0 } },
+    { "&Topf;", { 120139, 0 } },
+    { "&TripleDot;", { 8411, 0 } },
+    { "&Tscr;", { 119983, 0 } },
+    { "&Tstrok;", { 358, 0 } },
+    { "&Uacute;", { 218, 0 } },
+    { "&Uarr;", { 8607, 0 } },
+    { "&Uarrocir;", { 10569, 0 } },
+    { "&Ubrcy;", { 1038, 0 } },
+    { "&Ubreve;", { 364, 0 } },
+    { "&Ucirc;", { 219, 0 } },
+    { "&Ucy;", { 1059, 0 } },
+    { "&Udblac;", { 368, 0 } },
+    { "&Ufr;", { 120088, 0 } },
+    { "&Ugrave;", { 217, 0 } },
+    { "&Umacr;", { 362, 0 } },
+    { "&UnderBar;", { 95, 0 } },
+    { "&UnderBrace;", { 9183, 0 } },
+    { "&UnderBracket;", { 9141, 0 } },
+    { "&UnderParenthesis;", { 9181, 0 } },
+    { "&Union;", { 8899, 0 } },
+    { "&UnionPlus;", { 8846, 0 } },
+    { "&Uogon;", { 370, 0 } },
+    { "&Uopf;", { 120140, 0 } },
+    { "&UpArrow;", { 8593, 0 } },
+    { "&UpArrowBar;", { 10514, 0 } },
+    { "&UpArrowDownArrow;", { 8645, 0 } },
+    { "&UpDownArrow;", { 8597, 0 } },
+    { "&UpEquilibrium;", { 10606, 0 } },
+    { "&UpTee;", { 8869, 0 } },
+    { "&UpTeeArrow;", { 8613, 0 } },
+    { "&Uparrow;", { 8657, 0 } },
+    { "&Updownarrow;", { 8661, 0 } },
+    { "&UpperLeftArrow;", { 8598, 0 } },
+    { "&UpperRightArrow;", { 8599, 0 } },
+    { "&Upsi;", { 978, 0 } },
+    { "&Upsilon;", { 933, 0 } },
+    { "&Uring;", { 366, 0 } },
+    { "&Uscr;", { 119984, 0 } },
+    { "&Utilde;", { 360, 0 } },
+    { "&Uuml;", { 220, 0 } },
+    { "&VDash;", { 8875, 0 } },
+    { "&Vbar;", { 10987, 0 } },
+    { "&Vcy;", { 1042, 0 } },
+    { "&Vdash;", { 8873, 0 } },
+    { "&Vdashl;", { 10982, 0 } },
+    { "&Vee;", { 8897, 0 } },
+    { "&Verbar;", { 8214, 0 } },
+    { "&Vert;", { 8214, 0 } },
+    { "&VerticalBar;", { 8739, 0 } },
+    { "&VerticalLine;", { 124, 0 } },
+    { "&VerticalSeparator;", { 10072, 0 } },
+    { "&VerticalTilde;", { 8768, 0 } },
+    { "&VeryThinSpace;", { 8202, 0 } },
+    { "&Vfr;", { 120089, 0 } },
+    { "&Vopf;", { 120141, 0 } },
+    { "&Vscr;", { 119985, 0 } },
+    { "&Vvdash;", { 8874, 0 } },
+    { "&Wcirc;", { 372, 0 } },
+    { "&Wedge;", { 8896, 0 } },
+    { "&Wfr;", { 120090, 0 } },
+    { "&Wopf;", { 120142, 0 } },
+    { "&Wscr;", { 119986, 0 } },
+    { "&Xfr;", { 120091, 0 } },
+    { "&Xi;", { 926, 0 } },
+    { "&Xopf;", { 120143, 0 } },
+    { "&Xscr;", { 119987, 0 } },
+    { "&YAcy;", { 1071, 0 } },
+    { "&YIcy;", { 1031, 0 } },
+    { "&YUcy;", { 1070, 0 } },
+    { "&Yacute;", { 221, 0 } },
+    { "&Ycirc;", { 374, 0 } },
+    { "&Ycy;", { 1067, 0 } },
+    { "&Yfr;", { 120092, 0 } },
+    { "&Yopf;", { 120144, 0 } },
+    { "&Yscr;", { 119988, 0 } },
+    { "&Yuml;", { 376, 0 } },
+    { "&ZHcy;", { 1046, 0 } },
+    { "&Zacute;", { 377, 0 } },
+    { "&Zcaron;", { 381, 0 } },
+    { "&Zcy;", { 1047, 0 } },
+    { "&Zdot;", { 379, 0 } },
+    { "&ZeroWidthSpace;", { 8203, 0 } },
+    { "&Zeta;", { 918, 0 } },
+    { "&Zfr;", { 8488, 0 } },
+    { "&Zopf;", { 8484, 0 } },
+    { "&Zscr;", { 119989, 0 } },
+    { "&aacute;", { 225, 0 } },
+    { "&abreve;", { 259, 0 } },
+    { "&ac;", { 8766, 0 } },
+    { "&acE;", { 8766, 819 } },
+    { "&acd;", { 8767, 0 } },
+    { "&acirc;", { 226, 0 } },
+    { "&acute;", { 180, 0 } },
+    { "&acy;", { 1072, 0 } },
+    { "&aelig;", { 230, 0 } },
+    { "&af;", { 8289, 0 } },
+    { "&afr;", { 120094, 0 } },
+    { "&agrave;", { 224, 0 } },
+    { "&alefsym;", { 8501, 0 } },
+    { "&aleph;", { 8501, 0 } },
+    { "&alpha;", { 945, 0 } },
+    { "&amacr;", { 257, 0 } },
+    { "&amalg;", { 10815, 0 } },
+    { "&amp;", { 38, 0 } },
+    { "&and;", { 8743, 0 } },
+    { "&andand;", { 10837, 0 } },
+    { "&andd;", { 10844, 0 } },
+    { "&andslope;", { 10840, 0 } },
+    { "&andv;", { 10842, 0 } },
+    { "&ang;", { 8736, 0 } },
+    { "&ange;", { 10660, 0 } },
+    { "&angle;", { 8736, 0 } },
+    { "&angmsd;", { 8737, 0 } },
+    { "&angmsdaa;", { 10664, 0 } },
+    { "&angmsdab;", { 10665, 0 } },
+    { "&angmsdac;", { 10666, 0 } },
+    { "&angmsdad;", { 10667, 0 } },
+    { "&angmsdae;", { 10668, 0 } },
+    { "&angmsdaf;", { 10669, 0 } },
+    { "&angmsdag;", { 10670, 0 } },
+    { "&angmsdah;", { 10671, 0 } },
+    { "&angrt;", { 8735, 0 } },
+    { "&angrtvb;", { 8894, 0 } },
+    { "&angrtvbd;", { 10653, 0 } },
+    { "&angsph;", { 8738, 0 } },
+    { "&angst;", { 197, 0 } },
+    { "&angzarr;", { 9084, 0 } },
+    { "&aogon;", { 261, 0 } },
+    { "&aopf;", { 120146, 0 } },
+    { "&ap;", { 8776, 0 } },
+    { "&apE;", { 10864, 0 } },
+    { "&apacir;", { 10863, 0 } },
+    { "&ape;", { 8778, 0 } },
+    { "&apid;", { 8779, 0 } },
+    { "&apos;", { 39, 0 } },
+    { "&approx;", { 8776, 0 } },
+    { "&approxeq;", { 8778, 0 } },
+    { "&aring;", { 229, 0 } },
+    { "&ascr;", { 119990, 0 } },
+    { "&ast;", { 42, 0 } },
+    { "&asymp;", { 8776, 0 } },
+    { "&asympeq;", { 8781, 0 } },
+    { "&atilde;", { 227, 0 } },
+    { "&auml;", { 228, 0 } },
+    { "&awconint;", { 8755, 0 } },
+    { "&awint;", { 10769, 0 } },
+    { "&bNot;", { 10989, 0 } },
+    { "&backcong;", { 8780, 0 } },
+    { "&backepsilon;", { 1014, 0 } },
+    { "&backprime;", { 8245, 0 } },
+    { "&backsim;", { 8765, 0 } },
+    { "&backsimeq;", { 8909, 0 } },
+    { "&barvee;", { 8893, 0 } },
+    { "&barwed;", { 8965, 0 } },
+    { "&barwedge;", { 8965, 0 } },
+    { "&bbrk;", { 9141, 0 } },
+    { "&bbrktbrk;", { 9142, 0 } },
+    { "&bcong;", { 8780, 0 } },
+    { "&bcy;", { 1073, 0 } },
+    { "&bdquo;", { 8222, 0 } },
+    { "&becaus;", { 8757, 0 } },
+    { "&because;", { 8757, 0 } },
+    { "&bemptyv;", { 10672, 0 } },
+    { "&bepsi;", { 1014, 0 } },
+    { "&bernou;", { 8492, 0 } },
+    { "&beta;", { 946, 0 } },
+    { "&beth;", { 8502, 0 } },
+    { "&between;", { 8812, 0 } },
+    { "&bfr;", { 120095, 0 } },
+    { "&bigcap;", { 8898, 0 } },
+    { "&bigcirc;", { 9711, 0 } },
+    { "&bigcup;", { 8899, 0 } },
+    { "&bigodot;", { 10752, 0 } },
+    { "&bigoplus;", { 10753, 0 } },
+    { "&bigotimes;", { 10754, 0 } },
+    { "&bigsqcup;", { 10758, 0 } },
+    { "&bigstar;", { 9733, 0 } },
+    { "&bigtriangledown;", { 9661, 0 } },
+    { "&bigtriangleup;", { 9651, 0 } },
+    { "&biguplus;", { 10756, 0 } },
+    { "&bigvee;", { 8897, 0 } },
+    { "&bigwedge;", { 8896, 0 } },
+    { "&bkarow;", { 10509, 0 } },
+    { "&blacklozenge;", { 10731, 0 } },
+    { "&blacksquare;", { 9642, 0 } },
+    { "&blacktriangle;", { 9652, 0 } },
+    { "&blacktriangledown;", { 9662, 0 } },
+    { "&blacktriangleleft;", { 9666, 0 } },
+    { "&blacktriangleright;", { 9656, 0 } },
+    { "&blank;", { 9251, 0 } },
+    { "&blk12;", { 9618, 0 } },
+    { "&blk14;", { 9617, 0 } },
+    { "&blk34;", { 9619, 0 } },
+    { "&block;", { 9608, 0 } },
+    { "&bne;", { 61, 8421 } },
+    { "&bnequiv;", { 8801, 8421 } },
+    { "&bnot;", { 8976, 0 } },
+    { "&bopf;", { 120147, 0 } },
+    { "&bot;", { 8869, 0 } },
+    { "&bottom;", { 8869, 0 } },
+    { "&bowtie;", { 8904, 0 } },
+    { "&boxDL;", { 9559, 0 } },
+    { "&boxDR;", { 9556, 0 } },
+    { "&boxDl;", { 9558, 0 } },
+    { "&boxDr;", { 9555, 0 } },
+    { "&boxH;", { 9552, 0 } },
+    { "&boxHD;", { 9574, 0 } },
+    { "&boxHU;", { 9577, 0 } },
+    { "&boxHd;", { 9572, 0 } },
+    { "&boxHu;", { 9575, 0 } },
+    { "&boxUL;", { 9565, 0 } },
+    { "&boxUR;", { 9562, 0 } },
+    { "&boxUl;", { 9564, 0 } },
+    { "&boxUr;", { 9561, 0 } },
+    { "&boxV;", { 9553, 0 } },
+    { "&boxVH;", { 9580, 0 } },
+    { "&boxVL;", { 9571, 0 } },
+    { "&boxVR;", { 9568, 0 } },
+    { "&boxVh;", { 9579, 0 } },
+    { "&boxVl;", { 9570, 0 } },
+    { "&boxVr;", { 9567, 0 } },
+    { "&boxbox;", { 10697, 0 } },
+    { "&boxdL;", { 9557, 0 } },
+    { "&boxdR;", { 9554, 0 } },
+    { "&boxdl;", { 9488, 0 } },
+    { "&boxdr;", { 9484, 0 } },
+    { "&boxh;", { 9472, 0 } },
+    { "&boxhD;", { 9573, 0 } },
+    { "&boxhU;", { 9576, 0 } },
+    { "&boxhd;", { 9516, 0 } },
+    { "&boxhu;", { 9524, 0 } },
+    { "&boxminus;", { 8863, 0 } },
+    { "&boxplus;", { 8862, 0 } },
+    { "&boxtimes;", { 8864, 0 } },
+    { "&boxuL;", { 9563, 0 } },
+    { "&boxuR;", { 9560, 0 } },
+    { "&boxul;", { 9496, 0 } },
+    { "&boxur;", { 9492, 0 } },
+    { "&boxv;", { 9474, 0 } },
+    { "&boxvH;", { 9578, 0 } },
+    { "&boxvL;", { 9569, 0 } },
+    { "&boxvR;", { 9566, 0 } },
+    { "&boxvh;", { 9532, 0 } },
+    { "&boxvl;", { 9508, 0 } },
+    { "&boxvr;", { 9500, 0 } },
+    { "&bprime;", { 8245, 0 } },
+    { "&breve;", { 728, 0 } },
+    { "&brvbar;", { 166, 0 } },
+    { "&bscr;", { 119991, 0 } },
+    { "&bsemi;", { 8271, 0 } },
+    { "&bsim;", { 8765, 0 } },
+    { "&bsime;", { 8909, 0 } },
+    { "&bsol;", { 92, 0 } },
+    { "&bsolb;", { 10693, 0 } },
+    { "&bsolhsub;", { 10184, 0 } },
+    { "&bull;", { 8226, 0 } },
+    { "&bullet;", { 8226, 0 } },
+    { "&bump;", { 8782, 0 } },
+    { "&bumpE;", { 10926, 0 } },
+    { "&bumpe;", { 8783, 0 } },
+    { "&bumpeq;", { 8783, 0 } },
+    { "&cacute;", { 263, 0 } },
+    { "&cap;", { 8745, 0 } },
+    { "&capand;", { 10820, 0 } },
+    { "&capbrcup;", { 10825, 0 } },
+    { "&capcap;", { 10827, 0 } },
+    { "&capcup;", { 10823, 0 } },
+    { "&capdot;", { 10816, 0 } },
+    { "&caps;", { 8745, 65024 } },
+    { "&caret;", { 8257, 0 } },
+    { "&caron;", { 711, 0 } },
+    { "&ccaps;", { 10829, 0 } },
+    { "&ccaron;", { 269, 0 } },
+    { "&ccedil;", { 231, 0 } },
+    { "&ccirc;", { 265, 0 } },
+    { "&ccups;", { 10828, 0 } },
+    { "&ccupssm;", { 10832, 0 } },
+    { "&cdot;", { 267, 0 } },
+    { "&cedil;", { 184, 0 } },
+    { "&cemptyv;", { 10674, 0 } },
+    { "&cent;", { 162, 0 } },
+    { "&centerdot;", { 183, 0 } },
+    { "&cfr;", { 120096, 0 } },
+    { "&chcy;", { 1095, 0 } },
+    { "&check;", { 10003, 0 } },
+    { "&checkmark;", { 10003, 0 } },
+    { "&chi;", { 967, 0 } },
+    { "&cir;", { 9675, 0 } },
+    { "&cirE;", { 10691, 0 } },
+    { "&circ;", { 710, 0 } },
+    { "&circeq;", { 8791, 0 } },
+    { "&circlearrowleft;", { 8634, 0 } },
+    { "&circlearrowright;", { 8635, 0 } },
+    { "&circledR;", { 174, 0 } },
+    { "&circledS;", { 9416, 0 } },
+    { "&circledast;", { 8859, 0 } },
+    { "&circledcirc;", { 8858, 0 } },
+    { "&circleddash;", { 8861, 0 } },
+    { "&cire;", { 8791, 0 } },
+    { "&cirfnint;", { 10768, 0 } },
+    { "&cirmid;", { 10991, 0 } },
+    { "&cirscir;", { 10690, 0 } },
+    { "&clubs;", { 9827, 0 } },
+    { "&clubsuit;", { 9827, 0 } },
+    { "&colon;", { 58, 0 } },
+    { "&colone;", { 8788, 0 } },
+    { "&coloneq;", { 8788, 0 } },
+    { "&comma;", { 44, 0 } },
+    { "&commat;", { 64, 0 } },
+    { "&comp;", { 8705, 0 } },
+    { "&compfn;", { 8728, 0 } },
+    { "&complement;", { 8705, 0 } },
+    { "&complexes;", { 8450, 0 } },
+    { "&cong;", { 8773, 0 } },
+    { "&congdot;", { 10861, 0 } },
+    { "&conint;", { 8750, 0 } },
+    { "&copf;", { 120148, 0 } },
+    { "&coprod;", { 8720, 0 } },
+    { "&copy;", { 169, 0 } },
+    { "&copysr;", { 8471, 0 } },
+    { "&crarr;", { 8629, 0 } },
+    { "&cross;", { 10007, 0 } },
+    { "&cscr;", { 119992, 0 } },
+    { "&csub;", { 10959, 0 } },
+    { "&csube;", { 10961, 0 } },
+    { "&csup;", { 10960, 0 } },
+    { "&csupe;", { 10962, 0 } },
+    { "&ctdot;", { 8943, 0 } },
+    { "&cudarrl;", { 10552, 0 } },
+    { "&cudarrr;", { 10549, 0 } },
+    { "&cuepr;", { 8926, 0 } },
+    { "&cuesc;", { 8927, 0 } },
+    { "&cularr;", { 8630, 0 } },
+    { "&cularrp;", { 10557, 0 } },
+    { "&cup;", { 8746, 0 } },
+    { "&cupbrcap;", { 10824, 0 } },
+    { "&cupcap;", { 10822, 0 } },
+    { "&cupcup;", { 10826, 0 } },
+    { "&cupdot;", { 8845, 0 } },
+    { "&cupor;", { 10821, 0 } },
+    { "&cups;", { 8746, 65024 } },
+    { "&curarr;", { 8631, 0 } },
+    { "&curarrm;", { 10556, 0 } },
+    { "&curlyeqprec;", { 8926, 0 } },
+    { "&curlyeqsucc;", { 8927, 0 } },
+    { "&curlyvee;", { 8910, 0 } },
+    { "&curlywedge;", { 8911, 0 } },
+    { "&curren;", { 164, 0 } },
+    { "&curvearrowleft;", { 8630, 0 } },
+    { "&curvearrowright;", { 8631, 0 } },
+    { "&cuvee;", { 8910, 0 } },
+    { "&cuwed;", { 8911, 0 } },
+    { "&cwconint;", { 8754, 0 } },
+    { "&cwint;", { 8753, 0 } },
+    { "&cylcty;", { 9005, 0 } },
+    { "&dArr;", { 8659, 0 } },
+    { "&dHar;", { 10597, 0 } },
+    { "&dagger;", { 8224, 0 } },
+    { "&daleth;", { 8504, 0 } },
+    { "&darr;", { 8595, 0 } },
+    { "&dash;", { 8208, 0 } },
+    { "&dashv;", { 8867, 0 } },
+    { "&dbkarow;", { 10511, 0 } },
+    { "&dblac;", { 733, 0 } },
+    { "&dcaron;", { 271, 0 } },
+    { "&dcy;", { 1076, 0 } },
+    { "&dd;", { 8518, 0 } },
+    { "&ddagger;", { 8225, 0 } },
+    { "&ddarr;", { 8650, 0 } },
+    { "&ddotseq;", { 10871, 0 } },
+    { "&deg;", { 176, 0 } },
+    { "&delta;", { 948, 0 } },
+    { "&demptyv;", { 10673, 0 } },
+    { "&dfisht;", { 10623, 0 } },
+    { "&dfr;", { 120097, 0 } },
+    { "&dharl;", { 8643, 0 } },
+    { "&dharr;", { 8642, 0 } },
+    { "&diam;", { 8900, 0 } },
+    { "&diamond;", { 8900, 0 } },
+    { "&diamondsuit;", { 9830, 0 } },
+    { "&diams;", { 9830, 0 } },
+    { "&die;", { 168, 0 } },
+    { "&digamma;", { 989, 0 } },
+    { "&disin;", { 8946, 0 } },
+    { "&div;", { 247, 0 } },
+    { "&divide;", { 247, 0 } },
+    { "&divideontimes;", { 8903, 0 } },
+    { "&divonx;", { 8903, 0 } },
+    { "&djcy;", { 1106, 0 } },
+    { "&dlcorn;", { 8990, 0 } },
+    { "&dlcrop;", { 8973, 0 } },
+    { "&dollar;", { 36, 0 } },
+    { "&dopf;", { 120149, 0 } },
+    { "&dot;", { 729, 0 } },
+    { "&doteq;", { 8784, 0 } },
+    { "&doteqdot;", { 8785, 0 } },
+    { "&dotminus;", { 8760, 0 } },
+    { "&dotplus;", { 8724, 0 } },
+    { "&dotsquare;", { 8865, 0 } },
+    { "&doublebarwedge;", { 8966, 0 } },
+    { "&downarrow;", { 8595, 0 } },
+    { "&downdownarrows;", { 8650, 0 } },
+    { "&downharpoonleft;", { 8643, 0 } },
+    { "&downharpoonright;", { 8642, 0 } },
+    { "&drbkarow;", { 10512, 0 } },
+    { "&drcorn;", { 8991, 0 } },
+    { "&drcrop;", { 8972, 0 } },
+    { "&dscr;", { 119993, 0 } },
+    { "&dscy;", { 1109, 0 } },
+    { "&dsol;", { 10742, 0 } },
+    { "&dstrok;", { 273, 0 } },
+    { "&dtdot;", { 8945, 0 } },
+    { "&dtri;", { 9663, 0 } },
+    { "&dtrif;", { 9662, 0 } },
+    { "&duarr;", { 8693, 0 } },
+    { "&duhar;", { 10607, 0 } },
+    { "&dwangle;", { 10662, 0 } },
+    { "&dzcy;", { 1119, 0 } },
+    { "&dzigrarr;", { 10239, 0 } },
+    { "&eDDot;", { 10871, 0 } },
+    { "&eDot;", { 8785, 0 } },
+    { "&eacute;", { 233, 0 } },
+    { "&easter;", { 10862, 0 } },
+    { "&ecaron;", { 283, 0 } },
+    { "&ecir;", { 8790, 0 } },
+    { "&ecirc;", { 234, 0 } },
+    { "&ecolon;", { 8789, 0 } },
+    { "&ecy;", { 1101, 0 } },
+    { "&edot;", { 279, 0 } },
+    { "&ee;", { 8519, 0 } },
+    { "&efDot;", { 8786, 0 } },
+    { "&efr;", { 120098, 0 } },
+    { "&eg;", { 10906, 0 } },
+    { "&egrave;", { 232, 0 } },
+    { "&egs;", { 10902, 0 } },
+    { "&egsdot;", { 10904, 0 } },
+    { "&el;", { 10905, 0 } },
+    { "&elinters;", { 9191, 0 } },
+    { "&ell;", { 8467, 0 } },
+    { "&els;", { 10901, 0 } },
+    { "&elsdot;", { 10903, 0 } },
+    { "&emacr;", { 275, 0 } },
+    { "&empty;", { 8709, 0 } },
+    { "&emptyset;", { 8709, 0 } },
+    { "&emptyv;", { 8709, 0 } },
+    { "&emsp13;", { 8196, 0 } },
+    { "&emsp14;", { 8197, 0 } },
+    { "&emsp;", { 8195, 0 } },
+    { "&eng;", { 331, 0 } },
+    { "&ensp;", { 8194, 0 } },
+    { "&eogon;", { 281, 0 } },
+    { "&eopf;", { 120150, 0 } },
+    { "&epar;", { 8917, 0 } },
+    { "&eparsl;", { 10723, 0 } },
+    { "&eplus;", { 10865, 0 } },
+    { "&epsi;", { 949, 0 } },
+    { "&epsilon;", { 949, 0 } },
+    { "&epsiv;", { 1013, 0 } },
+    { "&eqcirc;", { 8790, 0 } },
+    { "&eqcolon;", { 8789, 0 } },
+    { "&eqsim;", { 8770, 0 } },
+    { "&eqslantgtr;", { 10902, 0 } },
+    { "&eqslantless;", { 10901, 0 } },
+    { "&equals;", { 61, 0 } },
+    { "&equest;", { 8799, 0 } },
+    { "&equiv;", { 8801, 0 } },
+    { "&equivDD;", { 10872, 0 } },
+    { "&eqvparsl;", { 10725, 0 } },
+    { "&erDot;", { 8787, 0 } },
+    { "&erarr;", { 10609, 0 } },
+    { "&escr;", { 8495, 0 } },
+    { "&esdot;", { 8784, 0 } },
+    { "&esim;", { 8770, 0 } },
+    { "&eta;", { 951, 0 } },
+    { "&eth;", { 240, 0 } },
+    { "&euml;", { 235, 0 } },
+    { "&euro;", { 8364, 0 } },
+    { "&excl;", { 33, 0 } },
+    { "&exist;", { 8707, 0 } },
+    { "&expectation;", { 8496, 0 } },
+    { "&exponentiale;", { 8519, 0 } },
+    { "&fallingdotseq;", { 8786, 0 } },
+    { "&fcy;", { 1092, 0 } },
+    { "&female;", { 9792, 0 } },
+    { "&ffilig;", { 64259, 0 } },
+    { "&fflig;", { 64256, 0 } },
+    { "&ffllig;", { 64260, 0 } },
+    { "&ffr;", { 120099, 0 } },
+    { "&filig;", { 64257, 0 } },
+    { "&fjlig;", { 102, 106 } },
+    { "&flat;", { 9837, 0 } },
+    { "&fllig;", { 64258, 0 } },
+    { "&fltns;", { 9649, 0 } },
+    { "&fnof;", { 402, 0 } },
+    { "&fopf;", { 120151, 0 } },
+    { "&forall;", { 8704, 0 } },
+    { "&fork;", { 8916, 0 } },
+    { "&forkv;", { 10969, 0 } },
+    { "&fpartint;", { 10765, 0 } },
+    { "&frac12", { 189, 0 } },
+    { "&frac12;", { 189, 0 } },
+    { "&frac13;", { 8531, 0 } },
+    { "&frac14", { 188, 0 } },
+    { "&frac14;", { 188, 0 } },
+    { "&frac15;", { 8533, 0 } },
+    { "&frac16;", { 8537, 0 } },
+    { "&frac18;", { 8539, 0 } },
+    { "&frac23;", { 8532, 0 } },
+    { "&frac25;", { 8534, 0 } },
+    { "&frac34", { 190, 0 } },
+    { "&frac34;", { 190, 0 } },
+    { "&frac35;", { 8535, 0 } },
+    { "&frac38;", { 8540, 0 } },
+    { "&frac45;", { 8536, 0 } },
+    { "&frac56;", { 8538, 0 } },
+    { "&frac58;", { 8541, 0 } },
+    { "&frac78;", { 8542, 0 } },
+    { "&frasl;", { 8260, 0 } },
+    { "&frown;", { 8994, 0 } },
+    { "&fscr;", { 119995, 0 } },
+    { "&gE;", { 8807, 0 } },
+    { "&gEl;", { 10892, 0 } },
+    { "&gacute;", { 501, 0 } },
+    { "&gamma;", { 947, 0 } },
+    { "&gammad;", { 989, 0 } },
+    { "&gap;", { 10886, 0 } },
+    { "&gbreve;", { 287, 0 } },
+    { "&gcirc;", { 285, 0 } },
+    { "&gcy;", { 1075, 0 } },
+    { "&gdot;", { 289, 0 } },
+    { "&ge;", { 8805, 0 } },
+    { "&gel;", { 8923, 0 } },
+    { "&geq;", { 8805, 0 } },
+    { "&geqq;", { 8807, 0 } },
+    { "&geqslant;", { 10878, 0 } },
+    { "&ges;", { 10878, 0 } },
+    { "&gescc;", { 10921, 0 } },
+    { "&gesdot;", { 10880, 0 } },
+    { "&gesdoto;", { 10882, 0 } },
+    { "&gesdotol;", { 10884, 0 } },
+    { "&gesl;", { 8923, 65024 } },
+    { "&gesles;", { 10900, 0 } },
+    { "&gfr;", { 120100, 0 } },
+    { "&gg;", { 8811, 0 } },
+    { "&ggg;", { 8921, 0 } },
+    { "&gimel;", { 8503, 0 } },
+    { "&gjcy;", { 1107, 0 } },
+    { "&gl;", { 8823, 0 } },
+    { "&glE;", { 10898, 0 } },
+    { "&gla;", { 10917, 0 } },
+    { "&glj;", { 10916, 0 } },
+    { "&gnE;", { 8809, 0 } },
+    { "&gnap;", { 10890, 0 } },
+    { "&gnapprox;", { 10890, 0 } },
+    { "&gne;", { 10888, 0 } },
+    { "&gneq;", { 10888, 0 } },
+    { "&gneqq;", { 8809, 0 } },
+    { "&gnsim;", { 8935, 0 } },
+    { "&gopf;", { 120152, 0 } },
+    { "&grave;", { 96, 0 } },
+    { "&gscr;", { 8458, 0 } },
+    { "&gsim;", { 8819, 0 } },
+    { "&gsime;", { 10894, 0 } },
+    { "&gsiml;", { 10896, 0 } },
+    { "&gt;", { 62, 0 } },
+    { "&gtcc;", { 10919, 0 } },
+    { "&gtcir;", { 10874, 0 } },
+    { "&gtdot;", { 8919, 0 } },
+    { "&gtlPar;", { 10645, 0 } },
+    { "&gtquest;", { 10876, 0 } },
+    { "&gtrapprox;", { 10886, 0 } },
+    { "&gtrarr;", { 10616, 0 } },
+    { "&gtrdot;", { 8919, 0 } },
+    { "&gtreqless;", { 8923, 0 } },
+    { "&gtreqqless;", { 10892, 0 } },
+    { "&gtrless;", { 8823, 0 } },
+    { "&gtrsim;", { 8819, 0 } },
+    { "&gvertneqq;", { 8809, 65024 } },
+    { "&gvnE;", { 8809, 65024 } },
+    { "&hArr;", { 8660, 0 } },
+    { "&hairsp;", { 8202, 0 } },
+    { "&half;", { 189, 0 } },
+    { "&hamilt;", { 8459, 0 } },
+    { "&hardcy;", { 1098, 0 } },
+    { "&harr;", { 8596, 0 } },
+    { "&harrcir;", { 10568, 0 } },
+    { "&harrw;", { 8621, 0 } },
+    { "&hbar;", { 8463, 0 } },
+    { "&hcirc;", { 293, 0 } },
+    { "&hearts;", { 9829, 0 } },
+    { "&heartsuit;", { 9829, 0 } },
+    { "&hellip;", { 8230, 0 } },
+    { "&hercon;", { 8889, 0 } },
+    { "&hfr;", { 120101, 0 } },
+    { "&hksearow;", { 10533, 0 } },
+    { "&hkswarow;", { 10534, 0 } },
+    { "&hoarr;", { 8703, 0 } },
+    { "&homtht;", { 8763, 0 } },
+    { "&hookleftarrow;", { 8617, 0 } },
+    { "&hookrightarrow;", { 8618, 0 } },
+    { "&hopf;", { 120153, 0 } },
+    { "&horbar;", { 8213, 0 } },
+    { "&hscr;", { 119997, 0 } },
+    { "&hslash;", { 8463, 0 } },
+    { "&hstrok;", { 295, 0 } },
+    { "&hybull;", { 8259, 0 } },
+    { "&hyphen;", { 8208, 0 } },
+    { "&iacute;", { 237, 0 } },
+    { "&ic;", { 8291, 0 } },
+    { "&icirc;", { 238, 0 } },
+    { "&icy;", { 1080, 0 } },
+    { "&iecy;", { 1077, 0 } },
+    { "&iexcl;", { 161, 0 } },
+    { "&iff;", { 8660, 0 } },
+    { "&ifr;", { 120102, 0 } },
+    { "&igrave;", { 236, 0 } },
+    { "&ii;", { 8520, 0 } },
+    { "&iiiint;", { 10764, 0 } },
+    { "&iiint;", { 8749, 0 } },
+    { "&iinfin;", { 10716, 0 } },
+    { "&iiota;", { 8489, 0 } },
+    { "&ijlig;", { 307, 0 } },
+    { "&imacr;", { 299, 0 } },
+    { "&image;", { 8465, 0 } },
+    { "&imagline;", { 8464, 0 } },
+    { "&imagpart;", { 8465, 0 } },
+    { "&imath;", { 305, 0 } },
+    { "&imof;", { 8887, 0 } },
+    { "&imped;", { 437, 0 } },
+    { "&in;", { 8712, 0 } },
+    { "&incare;", { 8453, 0 } },
+    { "&infin;", { 8734, 0 } },
+    { "&infintie;", { 10717, 0 } },
+    { "&inodot;", { 305, 0 } },
+    { "&int;", { 8747, 0 } },
+    { "&intcal;", { 8890, 0 } },
+    { "&integers;", { 8484, 0 } },
+    { "&intercal;", { 8890, 0 } },
+    { "&intlarhk;", { 10775, 0 } },
+    { "&intprod;", { 10812, 0 } },
+    { "&iocy;", { 1105, 0 } },
+    { "&iogon;", { 303, 0 } },
+    { "&iopf;", { 120154, 0 } },
+    { "&iota;", { 953, 0 } },
+    { "&iprod;", { 10812, 0 } },
+    { "&iquest;", { 191, 0 } },
+    { "&iscr;", { 119998, 0 } },
+    { "&isin;", { 8712, 0 } },
+    { "&isinE;", { 8953, 0 } },
+    { "&isindot;", { 8949, 0 } },
+    { "&isins;", { 8948, 0 } },
+    { "&isinsv;", { 8947, 0 } },
+    { "&isinv;", { 8712, 0 } },
+    { "&it;", { 8290, 0 } },
+    { "&itilde;", { 297, 0 } },
+    { "&iukcy;", { 1110, 0 } },
+    { "&iuml;", { 239, 0 } },
+    { "&jcirc;", { 309, 0 } },
+    { "&jcy;", { 1081, 0 } },
+    { "&jfr;", { 120103, 0 } },
+    { "&jmath;", { 567, 0 } },
+    { "&jopf;", { 120155, 0 } },
+    { "&jscr;", { 119999, 0 } },
+    { "&jsercy;", { 1112, 0 } },
+    { "&jukcy;", { 1108, 0 } },
+    { "&kappa;", { 954, 0 } },
+    { "&kappav;", { 1008, 0 } },
+    { "&kcedil;", { 311, 0 } },
+    { "&kcy;", { 1082, 0 } },
+    { "&kfr;", { 120104, 0 } },
+    { "&kgreen;", { 312, 0 } },
+    { "&khcy;", { 1093, 0 } },
+    { "&kjcy;", { 1116, 0 } },
+    { "&kopf;", { 120156, 0 } },
+    { "&kscr;", { 120000, 0 } },
+    { "&lAarr;", { 8666, 0 } },
+    { "&lArr;", { 8656, 0 } },
+    { "&lAtail;", { 10523, 0 } },
+    { "&lBarr;", { 10510, 0 } },
+    { "&lE;", { 8806, 0 } },
+    { "&lEg;", { 10891, 0 } },
+    { "&lHar;", { 10594, 0 } },
+    { "&lacute;", { 314, 0 } },
+    { "&laemptyv;", { 10676, 0 } },
+    { "&lagran;", { 8466, 0 } },
+    { "&lambda;", { 955, 0 } },
+    { "&lang;", { 10216, 0 } },
+    { "&langd;", { 10641, 0 } },
+    { "&langle;", { 10216, 0 } },
+    { "&lap;", { 10885, 0 } },
+    { "&laquo;", { 171, 0 } },
+    { "&larr;", { 8592, 0 } },
+    { "&larrb;", { 8676, 0 } },
+    { "&larrbfs;", { 10527, 0 } },
+    { "&larrfs;", { 10525, 0 } },
+    { "&larrhk;", { 8617, 0 } },
+    { "&larrlp;", { 8619, 0 } },
+    { "&larrpl;", { 10553, 0 } },
+    { "&larrsim;", { 10611, 0 } },
+    { "&larrtl;", { 8610, 0 } },
+    { "&lat;", { 10923, 0 } },
+    { "&latail;", { 10521, 0 } },
+    { "&late;", { 10925, 0 } },
+    { "&lates;", { 10925, 65024 } },
+    { "&lbarr;", { 10508, 0 } },
+    { "&lbbrk;", { 10098, 0 } },
+    { "&lbrace;", { 123, 0 } },
+    { "&lbrack;", { 91, 0 } },
+    { "&lbrke;", { 10635, 0 } },
+    { "&lbrksld;", { 10639, 0 } },
+    { "&lbrkslu;", { 10637, 0 } },
+    { "&lcaron;", { 318, 0 } },
+    { "&lcedil;", { 316, 0 } },
+    { "&lceil;", { 8968, 0 } },
+    { "&lcub;", { 123, 0 } },
+    { "&lcy;", { 1083, 0 } },
+    { "&ldca;", { 10550, 0 } },
+    { "&ldquo;", { 8220, 0 } },
+    { "&ldquor;", { 8222, 0 } },
+    { "&ldrdhar;", { 10599, 0 } },
+    { "&ldrushar;", { 10571, 0 } },
+    { "&ldsh;", { 8626, 0 } },
+    { "&le;", { 8804, 0 } },
+    { "&leftarrow;", { 8592, 0 } },
+    { "&leftarrowtail;", { 8610, 0 } },
+    { "&leftharpoondown;", { 8637, 0 } },
+    { "&leftharpoonup;", { 8636, 0 } },
+    { "&leftleftarrows;", { 8647, 0 } },
+    { "&leftrightarrow;", { 8596, 0 } },
+    { "&leftrightarrows;", { 8646, 0 } },
+    { "&leftrightharpoons;", { 8651, 0 } },
+    { "&leftrightsquigarrow;", { 8621, 0 } },
+    { "&leftthreetimes;", { 8907, 0 } },
+    { "&leg;", { 8922, 0 } },
+    { "&leq;", { 8804, 0 } },
+    { "&leqq;", { 8806, 0 } },
+    { "&leqslant;", { 10877, 0 } },
+    { "&les;", { 10877, 0 } },
+    { "&lescc;", { 10920, 0 } },
+    { "&lesdot;", { 10879, 0 } },
+    { "&lesdoto;", { 10881, 0 } },
+    { "&lesdotor;", { 10883, 0 } },
+    { "&lesg;", { 8922, 65024 } },
+    { "&lesges;", { 10899, 0 } },
+    { "&lessapprox;", { 10885, 0 } },
+    { "&lessdot;", { 8918, 0 } },
+    { "&lesseqgtr;", { 8922, 0 } },
+    { "&lesseqqgtr;", { 10891, 0 } },
+    { "&lessgtr;", { 8822, 0 } },
+    { "&lesssim;", { 8818, 0 } },
+    { "&lfisht;", { 10620, 0 } },
+    { "&lfloor;", { 8970, 0 } },
+    { "&lfr;", { 120105, 0 } },
+    { "&lg;", { 8822, 0 } },
+    { "&lgE;", { 10897, 0 } },
+    { "&lhard;", { 8637, 0 } },
+    { "&lharu;", { 8636, 0 } },
+    { "&lharul;", { 10602, 0 } },
+    { "&lhblk;", { 9604, 0 } },
+    { "&ljcy;", { 1113, 0 } },
+    { "&ll;", { 8810, 0 } },
+    { "&llarr;", { 8647, 0 } },
+    { "&llcorner;", { 8990, 0 } },
+    { "&llhard;", { 10603, 0 } },
+    { "&lltri;", { 9722, 0 } },
+    { "&lmidot;", { 320, 0 } },
+    { "&lmoust;", { 9136, 0 } },
+    { "&lmoustache;", { 9136, 0 } },
+    { "&lnE;", { 8808, 0 } },
+    { "&lnap;", { 10889, 0 } },
+    { "&lnapprox;", { 10889, 0 } },
+    { "&lne;", { 10887, 0 } },
+    { "&lneq;", { 10887, 0 } },
+    { "&lneqq;", { 8808, 0 } },
+    { "&lnsim;", { 8934, 0 } },
+    { "&loang;", { 10220, 0 } },
+    { "&loarr;", { 8701, 0 } },
+    { "&lobrk;", { 10214, 0 } },
+    { "&longleftarrow;", { 10229, 0 } },
+    { "&longleftrightarrow;", { 10231, 0 } },
+    { "&longmapsto;", { 10236, 0 } },
+    { "&longrightarrow;", { 10230, 0 } },
+    { "&looparrowleft;", { 8619, 0 } },
+    { "&looparrowright;", { 8620, 0 } },
+    { "&lopar;", { 10629, 0 } },
+    { "&lopf;", { 120157, 0 } },
+    { "&loplus;", { 10797, 0 } },
+    { "&lotimes;", { 10804, 0 } },
+    { "&lowast;", { 8727, 0 } },
+    { "&lowbar;", { 95, 0 } },
+    { "&loz;", { 9674, 0 } },
+    { "&lozenge;", { 9674, 0 } },
+    { "&lozf;", { 10731, 0 } },
+    { "&lpar;", { 40, 0 } },
+    { "&lparlt;", { 10643, 0 } },
+    { "&lrarr;", { 8646, 0 } },
+    { "&lrcorner;", { 8991, 0 } },
+    { "&lrhar;", { 8651, 0 } },
+    { "&lrhard;", { 10605, 0 } },
+    { "&lrm;", { 8206, 0 } },
+    { "&lrtri;", { 8895, 0 } },
+    { "&lsaquo;", { 8249, 0 } },
+    { "&lscr;", { 120001, 0 } },
+    { "&lsh;", { 8624, 0 } },
+    { "&lsim;", { 8818, 0 } },
+    { "&lsime;", { 10893, 0 } },
+    { "&lsimg;", { 10895, 0 } },
+    { "&lsqb;", { 91, 0 } },
+    { "&lsquo;", { 8216, 0 } },
+    { "&lsquor;", { 8218, 0 } },
+    { "&lstrok;", { 322, 0 } },
+    { "&lt;", { 60, 0 } },
+    { "&ltcc;", { 10918, 0 } },
+    { "&ltcir;", { 10873, 0 } },
+    { "&ltdot;", { 8918, 0 } },
+    { "&lthree;", { 8907, 0 } },
+    { "&ltimes;", { 8905, 0 } },
+    { "&ltlarr;", { 10614, 0 } },
+    { "&ltquest;", { 10875, 0 } },
+    { "&ltrPar;", { 10646, 0 } },
+    { "&ltri;", { 9667, 0 } },
+    { "&ltrie;", { 8884, 0 } },
+    { "&ltrif;", { 9666, 0 } },
+    { "&lurdshar;", { 10570, 0 } },
+    { "&luruhar;", { 10598, 0 } },
+    { "&lvertneqq;", { 8808, 65024 } },
+    { "&lvnE;", { 8808, 65024 } },
+    { "&mDDot;", { 8762, 0 } },
+    { "&macr;", { 175, 0 } },
+    { "&male;", { 9794, 0 } },
+    { "&malt;", { 10016, 0 } },
+    { "&maltese;", { 10016, 0 } },
+    { "&map;", { 8614, 0 } },
+    { "&mapsto;", { 8614, 0 } },
+    { "&mapstodown;", { 8615, 0 } },
+    { "&mapstoleft;", { 8612, 0 } },
+    { "&mapstoup;", { 8613, 0 } },
+    { "&marker;", { 9646, 0 } },
+    { "&mcomma;", { 10793, 0 } },
+    { "&mcy;", { 1084, 0 } },
+    { "&mdash;", { 8212, 0 } },
+    { "&measuredangle;", { 8737, 0 } },
+    { "&mfr;", { 120106, 0 } },
+    { "&mho;", { 8487, 0 } },
+    { "&micro;", { 181, 0 } },
+    { "&mid;", { 8739, 0 } },
+    { "&midast;", { 42, 0 } },
+    { "&midcir;", { 10992, 0 } },
+    { "&middot;", { 183, 0 } },
+    { "&minus;", { 8722, 0 } },
+    { "&minusb;", { 8863, 0 } },
+    { "&minusd;", { 8760, 0 } },
+    { "&minusdu;", { 10794, 0 } },
+    { "&mlcp;", { 10971, 0 } },
+    { "&mldr;", { 8230, 0 } },
+    { "&mnplus;", { 8723, 0 } },
+    { "&models;", { 8871, 0 } },
+    { "&mopf;", { 120158, 0 } },
+    { "&mp;", { 8723, 0 } },
+    { "&mscr;", { 120002, 0 } },
+    { "&mstpos;", { 8766, 0 } },
+    { "&mu;", { 956, 0 } },
+    { "&multimap;", { 8888, 0 } },
+    { "&mumap;", { 8888, 0 } },
+    { "&nGg;", { 8921, 824 } },
+    { "&nGt;", { 8811, 8402 } },
+    { "&nGtv;", { 8811, 824 } },
+    { "&nLeftarrow;", { 8653, 0 } },
+    { "&nLeftrightarrow;", { 8654, 0 } },
+    { "&nLl;", { 8920, 824 } },
+    { "&nLt;", { 8810, 8402 } },
+    { "&nLtv;", { 8810, 824 } },
+    { "&nRightarrow;", { 8655, 0 } },
+    { "&nVDash;", { 8879, 0 } },
+    { "&nVdash;", { 8878, 0 } },
+    { "&nabla;", { 8711, 0 } },
+    { "&nacute;", { 324, 0 } },
+    { "&nang;", { 8736, 8402 } },
+    { "&nap;", { 8777, 0 } },
+    { "&napE;", { 10864, 824 } },
+    { "&napid;", { 8779, 824 } },
+    { "&napos;", { 329, 0 } },
+    { "&napprox;", { 8777, 0 } },
+    { "&natur;", { 9838, 0 } },
+    { "&natural;", { 9838, 0 } },
+    { "&naturals;", { 8469, 0 } },
+    { "&nbsp;", { 160, 0 } },
+    { "&nbump;", { 8782, 824 } },
+    { "&nbumpe;", { 8783, 824 } },
+    { "&ncap;", { 10819, 0 } },
+    { "&ncaron;", { 328, 0 } },
+    { "&ncedil;", { 326, 0 } },
+    { "&ncong;", { 8775, 0 } },
+    { "&ncongdot;", { 10861, 824 } },
+    { "&ncup;", { 10818, 0 } },
+    { "&ncy;", { 1085, 0 } },
+    { "&ndash;", { 8211, 0 } },
+    { "&ne;", { 8800, 0 } },
+    { "&neArr;", { 8663, 0 } },
+    { "&nearhk;", { 10532, 0 } },
+    { "&nearr;", { 8599, 0 } },
+    { "&nearrow;", { 8599, 0 } },
+    { "&nedot;", { 8784, 824 } },
+    { "&nequiv;", { 8802, 0 } },
+    { "&nesear;", { 10536, 0 } },
+    { "&nesim;", { 8770, 824 } },
+    { "&nexist;", { 8708, 0 } },
+    { "&nexists;", { 8708, 0 } },
+    { "&nfr;", { 120107, 0 } },
+    { "&ngE;", { 8807, 824 } },
+    { "&nge;", { 8817, 0 } },
+    { "&ngeq;", { 8817, 0 } },
+    { "&ngeqq;", { 8807, 824 } },
+    { "&ngeqslant;", { 10878, 824 } },
+    { "&nges;", { 10878, 824 } },
+    { "&ngsim;", { 8821, 0 } },
+    { "&ngt;", { 8815, 0 } },
+    { "&ngtr;", { 8815, 0 } },
+    { "&nhArr;", { 8654, 0 } },
+    { "&nharr;", { 8622, 0 } },
+    { "&nhpar;", { 10994, 0 } },
+    { "&ni;", { 8715, 0 } },
+    { "&nis;", { 8956, 0 } },
+    { "&nisd;", { 8954, 0 } },
+    { "&niv;", { 8715, 0 } },
+    { "&njcy;", { 1114, 0 } },
+    { "&nlArr;", { 8653, 0 } },
+    { "&nlE;", { 8806, 824 } },
+    { "&nlarr;", { 8602, 0 } },
+    { "&nldr;", { 8229, 0 } },
+    { "&nle;", { 8816, 0 } },
+    { "&nleftarrow;", { 8602, 0 } },
+    { "&nleftrightarrow;", { 8622, 0 } },
+    { "&nleq;", { 8816, 0 } },
+    { "&nleqq;", { 8806, 824 } },
+    { "&nleqslant;", { 10877, 824 } },
+    { "&nles;", { 10877, 824 } },
+    { "&nless;", { 8814, 0 } },
+    { "&nlsim;", { 8820, 0 } },
+    { "&nlt;", { 8814, 0 } },
+    { "&nltri;", { 8938, 0 } },
+    { "&nltrie;", { 8940, 0 } },
+    { "&nmid;", { 8740, 0 } },
+    { "&nopf;", { 120159, 0 } },
+    { "&not;", { 172, 0 } },
+    { "&notin;", { 8713, 0 } },
+    { "&notinE;", { 8953, 824 } },
+    { "&notindot;", { 8949, 824 } },
+    { "&notinva;", { 8713, 0 } },
+    { "&notinvb;", { 8951, 0 } },
+    { "&notinvc;", { 8950, 0 } },
+    { "&notni;", { 8716, 0 } },
+    { "&notniva;", { 8716, 0 } },
+    { "&notnivb;", { 8958, 0 } },
+    { "&notnivc;", { 8957, 0 } },
+    { "&npar;", { 8742, 0 } },
+    { "&nparallel;", { 8742, 0 } },
+    { "&nparsl;", { 11005, 8421 } },
+    { "&npart;", { 8706, 824 } },
+    { "&npolint;", { 10772, 0 } },
+    { "&npr;", { 8832, 0 } },
+    { "&nprcue;", { 8928, 0 } },
+    { "&npre;", { 10927, 824 } },
+    { "&nprec;", { 8832, 0 } },
+    { "&npreceq;", { 10927, 824 } },
+    { "&nrArr;", { 8655, 0 } },
+    { "&nrarr;", { 8603, 0 } },
+    { "&nrarrc;", { 10547, 824 } },
+    { "&nrarrw;", { 8605, 824 } },
+    { "&nrightarrow;", { 8603, 0 } },
+    { "&nrtri;", { 8939, 0 } },
+    { "&nrtrie;", { 8941, 0 } },
+    { "&nsc;", { 8833, 0 } },
+    { "&nsccue;", { 8929, 0 } },
+    { "&nsce;", { 10928, 824 } },
+    { "&nscr;", { 120003, 0 } },
+    { "&nshortmid;", { 8740, 0 } },
+    { "&nshortparallel;", { 8742, 0 } },
+    { "&nsim;", { 8769, 0 } },
+    { "&nsime;", { 8772, 0 } },
+    { "&nsimeq;", { 8772, 0 } },
+    { "&nsmid;", { 8740, 0 } },
+    { "&nspar;", { 8742, 0 } },
+    { "&nsqsube;", { 8930, 0 } },
+    { "&nsqsupe;", { 8931, 0 } },
+    { "&nsub;", { 8836, 0 } },
+    { "&nsubE;", { 10949, 824 } },
+    { "&nsube;", { 8840, 0 } },
+    { "&nsubset;", { 8834, 8402 } },
+    { "&nsubseteq;", { 8840, 0 } },
+    { "&nsubseteqq;", { 10949, 824 } },
+    { "&nsucc;", { 8833, 0 } },
+    { "&nsucceq;", { 10928, 824 } },
+    { "&nsup;", { 8837, 0 } },
+    { "&nsupE;", { 10950, 824 } },
+    { "&nsupe;", { 8841, 0 } },
+    { "&nsupset;", { 8835, 8402 } },
+    { "&nsupseteq;", { 8841, 0 } },
+    { "&nsupseteqq;", { 10950, 824 } },
+    { "&ntgl;", { 8825, 0 } },
+    { "&ntilde;", { 241, 0 } },
+    { "&ntlg;", { 8824, 0 } },
+    { "&ntriangleleft;", { 8938, 0 } },
+    { "&ntrianglelefteq;", { 8940, 0 } },
+    { "&ntriangleright;", { 8939, 0 } },
+    { "&ntrianglerighteq;", { 8941, 0 } },
+    { "&nu;", { 957, 0 } },
+    { "&num;", { 35, 0 } },
+    { "&numero;", { 8470, 0 } },
+    { "&numsp;", { 8199, 0 } },
+    { "&nvDash;", { 8877, 0 } },
+    { "&nvHarr;", { 10500, 0 } },
+    { "&nvap;", { 8781, 8402 } },
+    { "&nvdash;", { 8876, 0 } },
+    { "&nvge;", { 8805, 8402 } },
+    { "&nvgt;", { 62, 8402 } },
+    { "&nvinfin;", { 10718, 0 } },
+    { "&nvlArr;", { 10498, 0 } },
+    { "&nvle;", { 8804, 8402 } },
+    { "&nvlt;", { 60, 8402 } },
+    { "&nvltrie;", { 8884, 8402 } },
+    { "&nvrArr;", { 10499, 0 } },
+    { "&nvrtrie;", { 8885, 8402 } },
+    { "&nvsim;", { 8764, 8402 } },
+    { "&nwArr;", { 8662, 0 } },
+    { "&nwarhk;", { 10531, 0 } },
+    { "&nwarr;", { 8598, 0 } },
+    { "&nwarrow;", { 8598, 0 } },
+    { "&nwnear;", { 10535, 0 } },
+    { "&oS;", { 9416, 0 } },
+    { "&oacute;", { 243, 0 } },
+    { "&oast;", { 8859, 0 } },
+    { "&ocir;", { 8858, 0 } },
+    { "&ocirc;", { 244, 0 } },
+    { "&ocy;", { 1086, 0 } },
+    { "&odash;", { 8861, 0 } },
+    { "&odblac;", { 337, 0 } },
+    { "&odiv;", { 10808, 0 } },
+    { "&odot;", { 8857, 0 } },
+    { "&odsold;", { 10684, 0 } },
+    { "&oelig;", { 339, 0 } },
+    { "&ofcir;", { 10687, 0 } },
+    { "&ofr;", { 120108, 0 } },
+    { "&ogon;", { 731, 0 } },
+    { "&ograve;", { 242, 0 } },
+    { "&ogt;", { 10689, 0 } },
+    { "&ohbar;", { 10677, 0 } },
+    { "&ohm;", { 937, 0 } },
+    { "&oint;", { 8750, 0 } },
+    { "&olarr;", { 8634, 0 } },
+    { "&olcir;", { 10686, 0 } },
+    { "&olcross;", { 10683, 0 } },
+    { "&oline;", { 8254, 0 } },
+    { "&olt;", { 10688, 0 } },
+    { "&omacr;", { 333, 0 } },
+    { "&omega;", { 969, 0 } },
+    { "&omicron;", { 959, 0 } },
+    { "&omid;", { 10678, 0 } },
+    { "&ominus;", { 8854, 0 } },
+    { "&oopf;", { 120160, 0 } },
+    { "&opar;", { 10679, 0 } },
+    { "&operp;", { 10681, 0 } },
+    { "&oplus;", { 8853, 0 } },
+    { "&or;", { 8744, 0 } },
+    { "&orarr;", { 8635, 0 } },
+    { "&ord;", { 10845, 0 } },
+    { "&order;", { 8500, 0 } },
+    { "&orderof;", { 8500, 0 } },
+    { "&ordf;", { 170, 0 } },
+    { "&ordm;", { 186, 0 } },
+    { "&origof;", { 8886, 0 } },
+    { "&oror;", { 10838, 0 } },
+    { "&orslope;", { 10839, 0 } },
+    { "&orv;", { 10843, 0 } },
+    { "&oscr;", { 8500, 0 } },
+    { "&oslash;", { 248, 0 } },
+    { "&osol;", { 8856, 0 } },
+    { "&otilde;", { 245, 0 } },
+    { "&otimes;", { 8855, 0 } },
+    { "&otimesas;", { 10806, 0 } },
+    { "&ouml;", { 246, 0 } },
+    { "&ovbar;", { 9021, 0 } },
+    { "&par;", { 8741, 0 } },
+    { "&para;", { 182, 0 } },
+    { "&parallel;", { 8741, 0 } },
+    { "&parsim;", { 10995, 0 } },
+    { "&parsl;", { 11005, 0 } },
+    { "&part;", { 8706, 0 } },
+    { "&pcy;", { 1087, 0 } },
+    { "&percnt;", { 37, 0 } },
+    { "&period;", { 46, 0 } },
+    { "&permil;", { 8240, 0 } },
+    { "&perp;", { 8869, 0 } },
+    { "&pertenk;", { 8241, 0 } },
+    { "&pfr;", { 120109, 0 } },
+    { "&phi;", { 966, 0 } },
+    { "&phiv;", { 981, 0 } },
+    { "&phmmat;", { 8499, 0 } },
+    { "&phone;", { 9742, 0 } },
+    { "&pi;", { 960, 0 } },
+    { "&pitchfork;", { 8916, 0 } },
+    { "&piv;", { 982, 0 } },
+    { "&planck;", { 8463, 0 } },
+    { "&planckh;", { 8462, 0 } },
+    { "&plankv;", { 8463, 0 } },
+    { "&plus;", { 43, 0 } },
+    { "&plusacir;", { 10787, 0 } },
+    { "&plusb;", { 8862, 0 } },
+    { "&pluscir;", { 10786, 0 } },
+    { "&plusdo;", { 8724, 0 } },
+    { "&plusdu;", { 10789, 0 } },
+    { "&pluse;", { 10866, 0 } },
+    { "&plusmn;", { 177, 0 } },
+    { "&plussim;", { 10790, 0 } },
+    { "&plustwo;", { 10791, 0 } },
+    { "&pm;", { 177, 0 } },
+    { "&pointint;", { 10773, 0 } },
+    { "&popf;", { 120161, 0 } },
+    { "&pound;", { 163, 0 } },
+    { "&pr;", { 8826, 0 } },
+    { "&prE;", { 10931, 0 } },
+    { "&prap;", { 10935, 0 } },
+    { "&prcue;", { 8828, 0 } },
+    { "&pre;", { 10927, 0 } },
+    { "&prec;", { 8826, 0 } },
+    { "&precapprox;", { 10935, 0 } },
+    { "&preccurlyeq;", { 8828, 0 } },
+    { "&preceq;", { 10927, 0 } },
+    { "&precnapprox;", { 10937, 0 } },
+    { "&precneqq;", { 10933, 0 } },
+    { "&precnsim;", { 8936, 0 } },
+    { "&precsim;", { 8830, 0 } },
+    { "&prime;", { 8242, 0 } },
+    { "&primes;", { 8473, 0 } },
+    { "&prnE;", { 10933, 0 } },
+    { "&prnap;", { 10937, 0 } },
+    { "&prnsim;", { 8936, 0 } },
+    { "&prod;", { 8719, 0 } },
+    { "&profalar;", { 9006, 0 } },
+    { "&profline;", { 8978, 0 } },
+    { "&profsurf;", { 8979, 0 } },
+    { "&prop;", { 8733, 0 } },
+    { "&propto;", { 8733, 0 } },
+    { "&prsim;", { 8830, 0 } },
+    { "&prurel;", { 8880, 0 } },
+    { "&pscr;", { 120005, 0 } },
+    { "&psi;", { 968, 0 } },
+    { "&puncsp;", { 8200, 0 } },
+    { "&qfr;", { 120110, 0 } },
+    { "&qint;", { 10764, 0 } },
+    { "&qopf;", { 120162, 0 } },
+    { "&qprime;", { 8279, 0 } },
+    { "&qscr;", { 120006, 0 } },
+    { "&quaternions;", { 8461, 0 } },
+    { "&quatint;", { 10774, 0 } },
+    { "&quest;", { 63, 0 } },
+    { "&questeq;", { 8799, 0 } },
+    { "&quot;", { 34, 0 } },
+    { "&rAarr;", { 8667, 0 } },
+    { "&rArr;", { 8658, 0 } },
+    { "&rAtail;", { 10524, 0 } },
+    { "&rBarr;", { 10511, 0 } },
+    { "&rHar;", { 10596, 0 } },
+    { "&race;", { 8765, 817 } },
+    { "&racute;", { 341, 0 } },
+    { "&radic;", { 8730, 0 } },
+    { "&raemptyv;", { 10675, 0 } },
+    { "&rang;", { 10217, 0 } },
+    { "&rangd;", { 10642, 0 } },
+    { "&range;", { 10661, 0 } },
+    { "&rangle;", { 10217, 0 } },
+    { "&raquo;", { 187, 0 } },
+    { "&rarr;", { 8594, 0 } },
+    { "&rarrap;", { 10613, 0 } },
+    { "&rarrb;", { 8677, 0 } },
+    { "&rarrbfs;", { 10528, 0 } },
+    { "&rarrc;", { 10547, 0 } },
+    { "&rarrfs;", { 10526, 0 } },
+    { "&rarrhk;", { 8618, 0 } },
+    { "&rarrlp;", { 8620, 0 } },
+    { "&rarrpl;", { 10565, 0 } },
+    { "&rarrsim;", { 10612, 0 } },
+    { "&rarrtl;", { 8611, 0 } },
+    { "&rarrw;", { 8605, 0 } },
+    { "&ratail;", { 10522, 0 } },
+    { "&ratio;", { 8758, 0 } },
+    { "&rationals;", { 8474, 0 } },
+    { "&rbarr;", { 10509, 0 } },
+    { "&rbbrk;", { 10099, 0 } },
+    { "&rbrace;", { 125, 0 } },
+    { "&rbrack;", { 93, 0 } },
+    { "&rbrke;", { 10636, 0 } },
+    { "&rbrksld;", { 10638, 0 } },
+    { "&rbrkslu;", { 10640, 0 } },
+    { "&rcaron;", { 345, 0 } },
+    { "&rcedil;", { 343, 0 } },
+    { "&rceil;", { 8969, 0 } },
+    { "&rcub;", { 125, 0 } },
+    { "&rcy;", { 1088, 0 } },
+    { "&rdca;", { 10551, 0 } },
+    { "&rdldhar;", { 10601, 0 } },
+    { "&rdquo;", { 8221, 0 } },
+    { "&rdquor;", { 8221, 0 } },
+    { "&rdsh;", { 8627, 0 } },
+    { "&real;", { 8476, 0 } },
+    { "&realine;", { 8475, 0 } },
+    { "&realpart;", { 8476, 0 } },
+    { "&reals;", { 8477, 0 } },
+    { "&rect;", { 9645, 0 } },
+    { "&reg;", { 174, 0 } },
+    { "&rfisht;", { 10621, 0 } },
+    { "&rfloor;", { 8971, 0 } },
+    { "&rfr;", { 120111, 0 } },
+    { "&rhard;", { 8641, 0 } },
+    { "&rharu;", { 8640, 0 } },
+    { "&rharul;", { 10604, 0 } },
+    { "&rho;", { 961, 0 } },
+    { "&rhov;", { 1009, 0 } },
+    { "&rightarrow;", { 8594, 0 } },
+    { "&rightarrowtail;", { 8611, 0 } },
+    { "&rightharpoondown;", { 8641, 0 } },
+    { "&rightharpoonup;", { 8640, 0 } },
+    { "&rightleftarrows;", { 8644, 0 } },
+    { "&rightleftharpoons;", { 8652, 0 } },
+    { "&rightrightarrows;", { 8649, 0 } },
+    { "&rightsquigarrow;", { 8605, 0 } },
+    { "&rightthreetimes;", { 8908, 0 } },
+    { "&ring;", { 730, 0 } },
+    { "&risingdotseq;", { 8787, 0 } },
+    { "&rlarr;", { 8644, 0 } },
+    { "&rlhar;", { 8652, 0 } },
+    { "&rlm;", { 8207, 0 } },
+    { "&rmoust;", { 9137, 0 } },
+    { "&rmoustache;", { 9137, 0 } },
+    { "&rnmid;", { 10990, 0 } },
+    { "&roang;", { 10221, 0 } },
+    { "&roarr;", { 8702, 0 } },
+    { "&robrk;", { 10215, 0 } },
+    { "&ropar;", { 10630, 0 } },
+    { "&ropf;", { 120163, 0 } },
+    { "&roplus;", { 10798, 0 } },
+    { "&rotimes;", { 10805, 0 } },
+    { "&rpar;", { 41, 0 } },
+    { "&rpargt;", { 10644, 0 } },
+    { "&rppolint;", { 10770, 0 } },
+    { "&rrarr;", { 8649, 0 } },
+    { "&rsaquo;", { 8250, 0 } },
+    { "&rscr;", { 120007, 0 } },
+    { "&rsh;", { 8625, 0 } },
+    { "&rsqb;", { 93, 0 } },
+    { "&rsquo;", { 8217, 0 } },
+    { "&rsquor;", { 8217, 0 } },
+    { "&rthree;", { 8908, 0 } },
+    { "&rtimes;", { 8906, 0 } },
+    { "&rtri;", { 9657, 0 } },
+    { "&rtrie;", { 8885, 0 } },
+    { "&rtrif;", { 9656, 0 } },
+    { "&rtriltri;", { 10702, 0 } },
+    { "&ruluhar;", { 10600, 0 } },
+    { "&rx;", { 8478, 0 } },
+    { "&sacute;", { 347, 0 } },
+    { "&sbquo;", { 8218, 0 } },
+    { "&sc;", { 8827, 0 } },
+    { "&scE;", { 10932, 0 } },
+    { "&scap;", { 10936, 0 } },
+    { "&scaron;", { 353, 0 } },
+    { "&sccue;", { 8829, 0 } },
+    { "&sce;", { 10928, 0 } },
+    { "&scedil;", { 351, 0 } },
+    { "&scirc;", { 349, 0 } },
+    { "&scnE;", { 10934, 0 } },
+    { "&scnap;", { 10938, 0 } },
+    { "&scnsim;", { 8937, 0 } },
+    { "&scpolint;", { 10771, 0 } },
+    { "&scsim;", { 8831, 0 } },
+    { "&scy;", { 1089, 0 } },
+    { "&sdot;", { 8901, 0 } },
+    { "&sdotb;", { 8865, 0 } },
+    { "&sdote;", { 10854, 0 } },
+    { "&seArr;", { 8664, 0 } },
+    { "&searhk;", { 10533, 0 } },
+    { "&searr;", { 8600, 0 } },
+    { "&searrow;", { 8600, 0 } },
+    { "&sect;", { 167, 0 } },
+    { "&semi;", { 59, 0 } },
+    { "&seswar;", { 10537, 0 } },
+    { "&setminus;", { 8726, 0 } },
+    { "&setmn;", { 8726, 0 } },
+    { "&sext;", { 10038, 0 } },
+    { "&sfr;", { 120112, 0 } },
+    { "&sfrown;", { 8994, 0 } },
+    { "&sharp;", { 9839, 0 } },
+    { "&shchcy;", { 1097, 0 } },
+    { "&shcy;", { 1096, 0 } },
+    { "&shortmid;", { 8739, 0 } },
+    { "&shortparallel;", { 8741, 0 } },
+    { "&shy;", { 173, 0 } },
+    { "&sigma;", { 963, 0 } },
+    { "&sigmaf;", { 962, 0 } },
+    { "&sigmav;", { 962, 0 } },
+    { "&sim;", { 8764, 0 } },
+    { "&simdot;", { 10858, 0 } },
+    { "&sime;", { 8771, 0 } },
+    { "&simeq;", { 8771, 0 } },
+    { "&simg;", { 10910, 0 } },
+    { "&simgE;", { 10912, 0 } },
+    { "&siml;", { 10909, 0 } },
+    { "&simlE;", { 10911, 0 } },
+    { "&simne;", { 8774, 0 } },
+    { "&simplus;", { 10788, 0 } },
+    { "&simrarr;", { 10610, 0 } },
+    { "&slarr;", { 8592, 0 } },
+    { "&smallsetminus;", { 8726, 0 } },
+    { "&smashp;", { 10803, 0 } },
+    { "&smeparsl;", { 10724, 0 } },
+    { "&smid;", { 8739, 0 } },
+    { "&smile;", { 8995, 0 } },
+    { "&smt;", { 10922, 0 } },
+    { "&smte;", { 10924, 0 } },
+    { "&smtes;", { 10924, 65024 } },
+    { "&softcy;", { 1100, 0 } },
+    { "&sol;", { 47, 0 } },
+    { "&solb;", { 10692, 0 } },
+    { "&solbar;", { 9023, 0 } },
+    { "&sopf;", { 120164, 0 } },
+    { "&spades;", { 9824, 0 } },
+    { "&spadesuit;", { 9824, 0 } },
+    { "&spar;", { 8741, 0 } },
+    { "&sqcap;", { 8851, 0 } },
+    { "&sqcaps;", { 8851, 65024 } },
+    { "&sqcup;", { 8852, 0 } },
+    { "&sqcups;", { 8852, 65024 } },
+    { "&sqsub;", { 8847, 0 } },
+    { "&sqsube;", { 8849, 0 } },
+    { "&sqsubset;", { 8847, 0 } },
+    { "&sqsubseteq;", { 8849, 0 } },
+    { "&sqsup;", { 8848, 0 } },
+    { "&sqsupe;", { 8850, 0 } },
+    { "&sqsupset;", { 8848, 0 } },
+    { "&sqsupseteq;", { 8850, 0 } },
+    { "&squ;", { 9633, 0 } },
+    { "&square;", { 9633, 0 } },
+    { "&squarf;", { 9642, 0 } },
+    { "&squf;", { 9642, 0 } },
+    { "&srarr;", { 8594, 0 } },
+    { "&sscr;", { 120008, 0 } },
+    { "&ssetmn;", { 8726, 0 } },
+    { "&ssmile;", { 8995, 0 } },
+    { "&sstarf;", { 8902, 0 } },
+    { "&star;", { 9734, 0 } },
+    { "&starf;", { 9733, 0 } },
+    { "&straightepsilon;", { 1013, 0 } },
+    { "&straightphi;", { 981, 0 } },
+    { "&strns;", { 175, 0 } },
+    { "&sub;", { 8834, 0 } },
+    { "&subE;", { 10949, 0 } },
+    { "&subdot;", { 10941, 0 } },
+    { "&sube;", { 8838, 0 } },
+    { "&subedot;", { 10947, 0 } },
+    { "&submult;", { 10945, 0 } },
+    { "&subnE;", { 10955, 0 } },
+    { "&subne;", { 8842, 0 } },
+    { "&subplus;", { 10943, 0 } },
+    { "&subrarr;", { 10617, 0 } },
+    { "&subset;", { 8834, 0 } },
+    { "&subseteq;", { 8838, 0 } },
+    { "&subseteqq;", { 10949, 0 } },
+    { "&subsetneq;", { 8842, 0 } },
+    { "&subsetneqq;", { 10955, 0 } },
+    { "&subsim;", { 10951, 0 } },
+    { "&subsub;", { 10965, 0 } },
+    { "&subsup;", { 10963, 0 } },
+    { "&succ;", { 8827, 0 } },
+    { "&succapprox;", { 10936, 0 } },
+    { "&succcurlyeq;", { 8829, 0 } },
+    { "&succeq;", { 10928, 0 } },
+    { "&succnapprox;", { 10938, 0 } },
+    { "&succneqq;", { 10934, 0 } },
+    { "&succnsim;", { 8937, 0 } },
+    { "&succsim;", { 8831, 0 } },
+    { "&sum;", { 8721, 0 } },
+    { "&sung;", { 9834, 0 } },
+    { "&sup1", { 185, 0 } },
+    { "&sup1;", { 185, 0 } },
+    { "&sup2", { 178, 0 } },
+    { "&sup2;", { 178, 0 } },
+    { "&sup3", { 179, 0 } },
+    { "&sup3;", { 179, 0 } },
+    { "&sup;", { 8835, 0 } },
+    { "&supE;", { 10950, 0 } },
+    { "&supdot;", { 10942, 0 } },
+    { "&supdsub;", { 10968, 0 } },
+    { "&supe;", { 8839, 0 } },
+    { "&supedot;", { 10948, 0 } },
+    { "&suphsol;", { 10185, 0 } },
+    { "&suphsub;", { 10967, 0 } },
+    { "&suplarr;", { 10619, 0 } },
+    { "&supmult;", { 10946, 0 } },
+    { "&supnE;", { 10956, 0 } },
+    { "&supne;", { 8843, 0 } },
+    { "&supplus;", { 10944, 0 } },
+    { "&supset;", { 8835, 0 } },
+    { "&supseteq;", { 8839, 0 } },
+    { "&supseteqq;", { 10950, 0 } },
+    { "&supsetneq;", { 8843, 0 } },
+    { "&supsetneqq;", { 10956, 0 } },
+    { "&supsim;", { 10952, 0 } },
+    { "&supsub;", { 10964, 0 } },
+    { "&supsup;", { 10966, 0 } },
+    { "&swArr;", { 8665, 0 } },
+    { "&swarhk;", { 10534, 0 } },
+    { "&swarr;", { 8601, 0 } },
+    { "&swarrow;", { 8601, 0 } },
+    { "&swnwar;", { 10538, 0 } },
+    { "&szlig;", { 223, 0 } },
+    { "&target;", { 8982, 0 } },
+    { "&tau;", { 964, 0 } },
+    { "&tbrk;", { 9140, 0 } },
+    { "&tcaron;", { 357, 0 } },
+    { "&tcedil;", { 355, 0 } },
+    { "&tcy;", { 1090, 0 } },
+    { "&tdot;", { 8411, 0 } },
+    { "&telrec;", { 8981, 0 } },
+    { "&tfr;", { 120113, 0 } },
+    { "&there4;", { 8756, 0 } },
+    { "&therefore;", { 8756, 0 } },
+    { "&theta;", { 952, 0 } },
+    { "&thetasym;", { 977, 0 } },
+    { "&thetav;", { 977, 0 } },
+    { "&thickapprox;", { 8776, 0 } },
+    { "&thicksim;", { 8764, 0 } },
+    { "&thinsp;", { 8201, 0 } },
+    { "&thkap;", { 8776, 0 } },
+    { "&thksim;", { 8764, 0 } },
+    { "&thorn;", { 254, 0 } },
+    { "&tilde;", { 732, 0 } },
+    { "&times;", { 215, 0 } },
+    { "&timesb;", { 8864, 0 } },
+    { "&timesbar;", { 10801, 0 } },
+    { "&timesd;", { 10800, 0 } },
+    { "&tint;", { 8749, 0 } },
+    { "&toea;", { 10536, 0 } },
+    { "&top;", { 8868, 0 } },
+    { "&topbot;", { 9014, 0 } },
+    { "&topcir;", { 10993, 0 } },
+    { "&topf;", { 120165, 0 } },
+    { "&topfork;", { 10970, 0 } },
+    { "&tosa;", { 10537, 0 } },
+    { "&tprime;", { 8244, 0 } },
+    { "&trade;", { 8482, 0 } },
+    { "&triangle;", { 9653, 0 } },
+    { "&triangledown;", { 9663, 0 } },
+    { "&triangleleft;", { 9667, 0 } },
+    { "&trianglelefteq;", { 8884, 0 } },
+    { "&triangleq;", { 8796, 0 } },
+    { "&triangleright;", { 9657, 0 } },
+    { "&trianglerighteq;", { 8885, 0 } },
+    { "&tridot;", { 9708, 0 } },
+    { "&trie;", { 8796, 0 } },
+    { "&triminus;", { 10810, 0 } },
+    { "&triplus;", { 10809, 0 } },
+    { "&trisb;", { 10701, 0 } },
+    { "&tritime;", { 10811, 0 } },
+    { "&trpezium;", { 9186, 0 } },
+    { "&tscr;", { 120009, 0 } },
+    { "&tscy;", { 1094, 0 } },
+    { "&tshcy;", { 1115, 0 } },
+    { "&tstrok;", { 359, 0 } },
+    { "&twixt;", { 8812, 0 } },
+    { "&twoheadleftarrow;", { 8606, 0 } },
+    { "&twoheadrightarrow;", { 8608, 0 } },
+    { "&uArr;", { 8657, 0 } },
+    { "&uHar;", { 10595, 0 } },
+    { "&uacute;", { 250, 0 } },
+    { "&uarr;", { 8593, 0 } },
+    { "&ubrcy;", { 1118, 0 } },
+    { "&ubreve;", { 365, 0 } },
+    { "&ucirc;", { 251, 0 } },
+    { "&ucy;", { 1091, 0 } },
+    { "&udarr;", { 8645, 0 } },
+    { "&udblac;", { 369, 0 } },
+    { "&udhar;", { 10606, 0 } },
+    { "&ufisht;", { 10622, 0 } },
+    { "&ufr;", { 120114, 0 } },
+    { "&ugrave;", { 249, 0 } },
+    { "&uharl;", { 8639, 0 } },
+    { "&uharr;", { 8638, 0 } },
+    { "&uhblk;", { 9600, 0 } },
+    { "&ulcorn;", { 8988, 0 } },
+    { "&ulcorner;", { 8988, 0 } },
+    { "&ulcrop;", { 8975, 0 } },
+    { "&ultri;", { 9720, 0 } },
+    { "&umacr;", { 363, 0 } },
+    { "&uml;", { 168, 0 } },
+    { "&uogon;", { 371, 0 } },
+    { "&uopf;", { 120166, 0 } },
+    { "&uparrow;", { 8593, 0 } },
+    { "&updownarrow;", { 8597, 0 } },
+    { "&upharpoonleft;", { 8639, 0 } },
+    { "&upharpoonright;", { 8638, 0 } },
+    { "&uplus;", { 8846, 0 } },
+    { "&upsi;", { 965, 0 } },
+    { "&upsih;", { 978, 0 } },
+    { "&upsilon;", { 965, 0 } },
+    { "&upuparrows;", { 8648, 0 } },
+    { "&urcorn;", { 8989, 0 } },
+    { "&urcorner;", { 8989, 0 } },
+    { "&urcrop;", { 8974, 0 } },
+    { "&uring;", { 367, 0 } },
+    { "&urtri;", { 9721, 0 } },
+    { "&uscr;", { 120010, 0 } },
+    { "&utdot;", { 8944, 0 } },
+    { "&utilde;", { 361, 0 } },
+    { "&utri;", { 9653, 0 } },
+    { "&utrif;", { 9652, 0 } },
+    { "&uuarr;", { 8648, 0 } },
+    { "&uuml;", { 252, 0 } },
+    { "&uwangle;", { 10663, 0 } },
+    { "&vArr;", { 8661, 0 } },
+    { "&vBar;", { 10984, 0 } },
+    { "&vBarv;", { 10985, 0 } },
+    { "&vDash;", { 8872, 0 } },
+    { "&vangrt;", { 10652, 0 } },
+    { "&varepsilon;", { 1013, 0 } },
+    { "&varkappa;", { 1008, 0 } },
+    { "&varnothing;", { 8709, 0 } },
+    { "&varphi;", { 981, 0 } },
+    { "&varpi;", { 982, 0 } },
+    { "&varpropto;", { 8733, 0 } },
+    { "&varr;", { 8597, 0 } },
+    { "&varrho;", { 1009, 0 } },
+    { "&varsigma;", { 962, 0 } },
+    { "&varsubsetneq;", { 8842, 65024 } },
+    { "&varsubsetneqq;", { 10955, 65024 } },
+    { "&varsupsetneq;", { 8843, 65024 } },
+    { "&varsupsetneqq;", { 10956, 65024 } },
+    { "&vartheta;", { 977, 0 } },
+    { "&vartriangleleft;", { 8882, 0 } },
+    { "&vartriangleright;", { 8883, 0 } },
+    { "&vcy;", { 1074, 0 } },
+    { "&vdash;", { 8866, 0 } },
+    { "&vee;", { 8744, 0 } },
+    { "&veebar;", { 8891, 0 } },
+    { "&veeeq;", { 8794, 0 } },
+    { "&vellip;", { 8942, 0 } },
+    { "&verbar;", { 124, 0 } },
+    { "&vert;", { 124, 0 } },
+    { "&vfr;", { 120115, 0 } },
+    { "&vltri;", { 8882, 0 } },
+    { "&vnsub;", { 8834, 8402 } },
+    { "&vnsup;", { 8835, 8402 } },
+    { "&vopf;", { 120167, 0 } },
+    { "&vprop;", { 8733, 0 } },
+    { "&vrtri;", { 8883, 0 } },
+    { "&vscr;", { 120011, 0 } },
+    { "&vsubnE;", { 10955, 65024 } },
+    { "&vsubne;", { 8842, 65024 } },
+    { "&vsupnE;", { 10956, 65024 } },
+    { "&vsupne;", { 8843, 65024 } },
+    { "&vzigzag;", { 10650, 0 } },
+    { "&wcirc;", { 373, 0 } },
+    { "&wedbar;", { 10847, 0 } },
+    { "&wedge;", { 8743, 0 } },
+    { "&wedgeq;", { 8793, 0 } },
+    { "&weierp;", { 8472, 0 } },
+    { "&wfr;", { 120116, 0 } },
+    { "&wopf;", { 120168, 0 } },
+    { "&wp;", { 8472, 0 } },
+    { "&wr;", { 8768, 0 } },
+    { "&wreath;", { 8768, 0 } },
+    { "&wscr;", { 120012, 0 } },
+    { "&xcap;", { 8898, 0 } },
+    { "&xcirc;", { 9711, 0 } },
+    { "&xcup;", { 8899, 0 } },
+    { "&xdtri;", { 9661, 0 } },
+    { "&xfr;", { 120117, 0 } },
+    { "&xhArr;", { 10234, 0 } },
+    { "&xharr;", { 10231, 0 } },
+    { "&xi;", { 958, 0 } },
+    { "&xlArr;", { 10232, 0 } },
+    { "&xlarr;", { 10229, 0 } },
+    { "&xmap;", { 10236, 0 } },
+    { "&xnis;", { 8955, 0 } },
+    { "&xodot;", { 10752, 0 } },
+    { "&xopf;", { 120169, 0 } },
+    { "&xoplus;", { 10753, 0 } },
+    { "&xotime;", { 10754, 0 } },
+    { "&xrArr;", { 10233, 0 } },
+    { "&xrarr;", { 10230, 0 } },
+    { "&xscr;", { 120013, 0 } },
+    { "&xsqcup;", { 10758, 0 } },
+    { "&xuplus;", { 10756, 0 } },
+    { "&xutri;", { 9651, 0 } },
+    { "&xvee;", { 8897, 0 } },
+    { "&xwedge;", { 8896, 0 } },
+    { "&yacute;", { 253, 0 } },
+    { "&yacy;", { 1103, 0 } },
+    { "&ycirc;", { 375, 0 } },
+    { "&ycy;", { 1099, 0 } },
+    { "&yen;", { 165, 0 } },
+    { "&yfr;", { 120118, 0 } },
+    { "&yicy;", { 1111, 0 } },
+    { "&yopf;", { 120170, 0 } },
+    { "&yscr;", { 120014, 0 } },
+    { "&yucy;", { 1102, 0 } },
+    { "&yuml;", { 255, 0 } },
+    { "&zacute;", { 378, 0 } },
+    { "&zcaron;", { 382, 0 } },
+    { "&zcy;", { 1079, 0 } },
+    { "&zdot;", { 380, 0 } },
+    { "&zeetrf;", { 8488, 0 } },
+    { "&zeta;", { 950, 0 } },
+    { "&zfr;", { 120119, 0 } },
+    { "&zhcy;", { 1078, 0 } },
+    { "&zigrarr;", { 8669, 0 } },
+    { "&zopf;", { 120171, 0 } },
+    { "&zscr;", { 120015, 0 } },
+    { "&zwj;", { 8205, 0 } },
+    { "&zwnj;", { 8204, 0 } }
 };
 
 
 struct entity_key {
-    const char* verbatim;
-    size_t verbatim_size;
+    const char* name;
+    size_t name_size;
 };
 
-
 static int
 entity_cmp(const void* p_key, const void* p_entity)
 {
     struct entity_key* key = (struct entity_key*) p_key;
     struct entity* ent = (struct entity*) p_entity;
 
-    return strncmp(key->verbatim, ent->verbatim, key->verbatim_size);
+    return strncmp(key->name, ent->name, key->name_size);
 }
 
-const char*
-entity_lookup(const char* verbatim, size_t verbatim_size)
+const struct entity*
+entity_lookup(const char* name, size_t name_size)
 {
-    struct entity_key key = { verbatim, verbatim_size };
-    struct entity* ent;
-
-    ent = bsearch(&key, entity_table,  sizeof(entity_table) / sizeof(entity_table[0]), 
-                  sizeof(struct entity), entity_cmp);
+    struct entity_key key = { name, name_size };
 
-    if(ent == NULL)
-        return NULL;
-    
-    return (const char*) ent->utf8_bytes;
+    return bsearch(&key,
+                   entity_table,
+                   sizeof(entity_table) / sizeof(entity_table[0]),
+                   sizeof(struct entity),
+                   entity_cmp);
 }
diff --git a/md2html/entity.h b/md2html/entity.h
index 543d2b4..12b4cfa 100644
--- a/md2html/entity.h
+++ b/md2html/entity.h
@@ -29,7 +29,14 @@
 #include <stdlib.h>
 
 
-const char* entity_lookup(const char* verbatim, size_t verbatim_size);
+/* Most entities are formed by single Unicode codepoint, few by two codepoints.
+ * Single-codepoint entities have codepoints[1] set to zero. */
+struct entity {
+    const char* name;
+    unsigned codepoints[2];
+};
+
+const struct entity* entity_lookup(const char* name, size_t name_size);
 
 
 #endif  /* MD2HTML_ENTITY_H */
diff --git a/md2html/render_html.c b/md2html/render_html.c
index fccddee..410bd7b 100644
--- a/md2html/render_html.c
+++ b/md2html/render_html.c
@@ -217,11 +217,13 @@ render_entity(MD_RENDER_HTML* r, const MD_CHAR* text, MD_SIZE size,
         return;
     } else {
         /* Named entity (e.g. "&nbsp;"). */
-        const MD_CHAR* ent;
+        const struct entity* ent;
 
         ent = entity_lookup(text, size);
         if(ent != NULL) {
-            fn_append(r, ent, strlen(ent));
+            render_utf8_codepoint(r, ent->codepoints[0], fn_append);
+            if(ent->codepoints[1])
+                render_utf8_codepoint(r, ent->codepoints[1], fn_append);
             return;
         }
     }