summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/emoji/emoji_codemap.go
blob: 0069ed532f8bb2e590e80fb8e5e077b7f792085a (plain) (blame)
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
package emoji

// NOTE: THIS FILE WAS PRODUCED BY THE
// EMOJICODEMAP CODE GENERATION TOOL (github.com/kyokomi/emoji/cmd/generateEmojiCodeMap)
// DO NOT EDIT

// Mapping from character to concrete escape code.
var emojiCodeMap = map[string]string{
	":+1:":                                  "\U0001f44d",
	":-1:":                                  "\U0001f44e",
	":100:":                                 "\U0001f4af",
	":1234:":                                "\U0001f522",
	":1st_place_medal:":                     "\U0001f947",
	":2nd_place_medal:":                     "\U0001f948",
	":3rd_place_medal:":                     "\U0001f949",
	":8ball:":                               "\U0001f3b1",
	":AB_button_(blood_type):":              "\U0001f18e",
	":ATM_sign:":                            "\U0001f3e7",
	":A_button_(blood_type):":               "\U0001f170",
	":Aquarius:":                            "\U00002652",
	":Aries:":                               "\U00002648",
	":BACK_arrow:":                          "\U0001f519",
	":B_button_(blood_type):":               "\U0001f171",
	":CL_button:":                           "\U0001f191",
	":COOL_button:":                         "\U0001f192",
	":Cancer:":                              "\U0000264b",
	":Capricorn:":                           "\U00002651",
	":Christmas_tree:":                      "\U0001f384",
	":END_arrow:":                           "\U0001f51a",
	":FREE_button:":                         "\U0001f193",
	":Gemini:":                              "\U0000264a",
	":ID_button:":                           "\U0001f194",
	":Japanese_acceptable_button:":          "\U0001f251",
	":Japanese_application_button:":         "\U0001f238",
	":Japanese_bargain_button:":             "\U0001f250",
	":Japanese_castle:":                     "\U0001f3ef",
	":Japanese_congratulations_button:":     "\U00003297",
	":Japanese_discount_button:":            "\U0001f239",
	":Japanese_dolls:":                      "\U0001f38e",
	":Japanese_free_of_charge_button:":      "\U0001f21a",
	":Japanese_here_button:":                "\U0001f201",
	":Japanese_monthly_amount_button:":      "\U0001f237",
	":Japanese_no_vacancy_button:":          "\U0001f235",
	":Japanese_not_free_of_charge_button:":  "\U0001f236",
	":Japanese_open_for_business_button:":   "\U0001f23a",
	":Japanese_passing_grade_button:":       "\U0001f234",
	":Japanese_post_office:":                "\U0001f3e3",
	":Japanese_prohibited_button:":          "\U0001f232",
	":Japanese_reserved_button:":            "\U0001f22f",
	":Japanese_secret_button:":              "\U00003299",
	":Japanese_service_charge_button:":      "\U0001f202",
	":Japanese_symbol_for_beginner:":        "\U0001f530",
	":Japanese_vacancy_button:":             "\U0001f233",
	":Leo:":                                 "\U0000264c",
	":Libra:":                               "\U0000264e",
	":Mrs._Claus:":                          "\U0001f936",
	":NEW_button:":                          "\U0001f195",
	":NG_button:":                           "\U0001f196",
	":OK_button:":                           "\U0001f197",
	":OK_hand:":                             "\U0001f44c",
	":ON!_arrow:":                           "\U0001f51b",
	":O_button_(blood_type):":               "\U0001f17e",
	":Ophiuchus:":                           "\U000026ce",
	":P_button:":                            "\U0001f17f",
	":Pisces:":                              "\U00002653",
	":SOON_arrow:":                          "\U0001f51c",
	":SOS_button:":                          "\U0001f198",
	":Sagittarius:":                         "\U00002650",
	":Santa_Claus:":                         "\U0001f385",
	":Scorpio:":                             "\U0000264f",
	":Statue_of_Liberty:":                   "\U0001f5fd",
	":T-Rex:":                               "\U0001f996",
	":TOP_arrow:":                           "\U0001f51d",
	":Taurus:":                              "\U00002649",
	":Tokyo_tower:":                         "\U0001f5fc",
	":UP!_button:":                          "\U0001f199",
	":VS_button:":                           "\U0001f19a",
	":Virgo:":                               "\U0000264d",
	":a:":                                   "\U0001f170",
	":ab:":                                  "\U0001f18e",
	":abacus:":                              "\U0001f9ee",
	":abc:":                                 "\U0001f524",
	":abcd:":                                "\U0001f521",
	":accept:":                              "\U0001f251",
	":adhesive_bandage:":                    "\U0001fa79",
	":admission_tickets:":                   "\U0001f39f",
	":adult:":                               "\U0001f9d1",
	":adult_tone1:":                         "\U0001f9d1\U0001f3fb",
	":adult_tone2:":                         "\U0001f9d1\U0001f3fc",
	":adult_tone3:":                         "\U0001f9d1\U0001f3fd",
	":adult_tone4:":                         "\U0001f9d1\U0001f3fe",
	":adult_tone5:":                         "\U0001f9d1\U0001f3ff",
	":aerial_tramway:":                      "\U0001f6a1",
	":afghanistan:":                         "\U0001f1e6\U0001f1eb",
	":airplane:":                            "\U00002708",
	":airplane_arrival:":                    "\U0001f6ec",
	":airplane_arriving:":                   "\U0001f6ec",
	":airplane_departure:":                  "\U0001f6eb",
	":airplane_small:":                      "\U0001f6e9",
	":aland_islands:":                       "\U0001f1e6\U0001f1fd",
	":alarm_clock:":                         "\U000023f0",
	":albania:":                             "\U0001f1e6\U0001f1f1",
	":alembic:":                             "\U00002697",
	":algeria:":                             "\U0001f1e9\U0001f1ff",
	":alien:":                               "\U0001f47d",
	":alien_monster:":                       "\U0001f47e",
	":ambulance:":                           "\U0001f691",
	":american_football:":                   "\U0001f3c8",
	":american_samoa:":                      "\U0001f1e6\U0001f1f8",
	":amphora:":                             "\U0001f3fa",
	":anchor:":                              "\U00002693",
	":andorra:":                             "\U0001f1e6\U0001f1e9",
	":angel:":                               "\U0001f47c",
	":angel_tone1:":                         "\U0001f47c\U0001f3fb",
	":angel_tone2:":                         "\U0001f47c\U0001f3fc",
	":angel_tone3:":                         "\U0001f47c\U0001f3fd",
	":angel_tone4:":                         "\U0001f47c\U0001f3fe",
	":angel_tone5:":                         "\U0001f47c\U0001f3ff",
	":anger:":                               "\U0001f4a2",
	":anger_right:":                         "\U0001f5ef",
	":anger_symbol:":                        "\U0001f4a2",
	":angola:":                              "\U0001f1e6\U0001f1f4",
	":angry:":                               "\U0001f620",
	":angry_face:":                          "\U0001f620",
	":angry_face_with_horns:":               "\U0001f47f",
	":anguilla:":                            "\U0001f1e6\U0001f1ee",
	":anguished:":                           "\U0001f627",
	":anguished_face:":                      "\U0001f627",
	":ant:":                                 "\U0001f41c",
	":antarctica:":                          "\U0001f1e6\U0001f1f6",
	":antenna_bars:":                        "\U0001f4f6",
	":antigua_barbuda:":                     "\U0001f1e6\U0001f1ec",
	":anxious_face_with_sweat:":             "\U0001f630",
	":apple:":                               "\U0001f34e",
	":aquarius:":                            "\u2652",
	":argentina:":                           "\U0001f1e6\U0001f1f7",
	":aries:":                               "\u2648",
	":armenia:":                             "\U0001f1e6\U0001f1f2",
	":arrow_backward:":                      "\u25c0",
	":arrow_double_down:":                   "\u23ec",
	":arrow_double_up:":                     "\u23eb",
	":arrow_down:":                          "\u2b07",
	":arrow_down_small:":                    "\U0001f53d",
	":arrow_forward:":                       "\u25b6",
	":arrow_heading_down:":                  "\u2935",
	":arrow_heading_up:":                    "\u2934",
	":arrow_left:":                          "\u2b05",
	":arrow_lower_left:":                    "\u2199",
	":arrow_lower_right:":                   "\u2198",
	":arrow_right:":                         "\u27a1",
	":arrow_right_hook:":                    "\u21aa",
	":arrow_up:":                            "\u2b06",
	":arrow_up_down:":                       "\u2195",
	":arrow_up_small:":                      "\U0001f53c",
	":arrow_upper_left:":                    "\u2196",
	":arrow_upper_right:":                   "\u2197",
	":arrows_clockwise:":                    "\U0001f503",
	":arrows_counterclockwise:":             "\U0001f504",
	":art:":                                 "\U0001f3a8",
	":articulated_lorry:":                   "\U0001f69b",
	":artificial_satellite:":                "\U0001f6f0",
	":artist:":                              "\U0001f9d1\U0000200d\U0001f3a8",
	":artist_palette:":                      "\U0001f3a8",
	":aruba:":                               "\U0001f1e6\U0001f1fc",
	":ascension_island:":                    "\U0001f1e6\U0001f1e8",
	":asterisk:":                            "*\ufe0f\u20e3",
	":astonished:":                          "\U0001f632",
	":astonished_face:":                     "\U0001f632",
	":astronaut:":                           "\U0001f9d1\U0000200d\U0001f680",
	":athletic_shoe:":                       "\U0001f45f",
	":atm:":                                 "\U0001f3e7",
	":atom:":                                "\u269b",
	":atom_symbol:":                         "\U0000269b",
	":australia:":                           "\U0001f1e6\U0001f1fa",
	":austria:":                             "\U0001f1e6\U0001f1f9",
	":auto_rickshaw:":                       "\U0001f6fa",
	":automobile:":                          "\U0001f697",
	":avocado:":                             "\U0001f951",
	":axe:":                                 "\U0001fa93",
	":azerbaijan:":                          "\U0001f1e6\U0001f1ff",
	":b:":                                   "\U0001f171",
	":baby:":                                "\U0001f476",
	":baby_angel:":                          "\U0001f47c",
	":baby_bottle:":                         "\U0001f37c",
	":baby_chick:":                          "\U0001f424",
	":baby_symbol:":                         "\U0001f6bc",
	":baby_tone1:":                          "\U0001f476\U0001f3fb",
	":baby_tone2:":                          "\U0001f476\U0001f3fc",
	":baby_tone3:":                          "\U0001f476\U0001f3fd",
	":baby_tone4:":                          "\U0001f476\U0001f3fe",
	":baby_tone5:":                          "\U0001f476\U0001f3ff",
	":back:":                                "\U0001f519",
	":backhand_index_pointing_down:":        "\U0001f447",
	":backhand_index_pointing_left:":        "\U0001f448",
	":backhand_index_pointing_right:":       "\U0001f449",
	":backhand_index_pointing_up:":          "\U0001f446",
	":backpack:":                            "\U0001f392",
	":bacon:":                               "\U0001f953",
	":badger:":                              "\U0001f9a1",
	":badminton:":                           "\U0001f3f8",
	":bagel:":                               "\U0001f96f",
	":baggage_claim:":                       "\U0001f6c4",
	":baguette_bread:":                      "\U0001f956",
	":bahamas:":                             "\U0001f1e7\U0001f1f8",
	":bahrain:":                             "\U0001f1e7\U0001f1ed",
	":balance_scale:":                       "\U00002696",
	":bald:":                                "\U0001f9b2",
	":bald_man:":                            "\U0001f468\u200d\U0001f9b2",
	":bald_woman:":                          "\U0001f469\u200d\U0001f9b2",
	":ballet_shoes:":                        "\U0001fa70",
	":balloon:":                             "\U0001f388",
	":ballot_box:":                          "\U0001f5f3",
	":ballot_box_with_ballot:":              "\U0001f5f3",
	":ballot_box_with_check:":               "\u2611",
	":bamboo:":                              "\U0001f38d",
	":banana:":                              "\U0001f34c",
	":bangbang:":                            "\u203c",
	":bangladesh:":                          "\U0001f1e7\U0001f1e9",
	":banjo:":                               "\U0001fa95",
	":bank:":                                "\U0001f3e6",
	":bar_chart:":                           "\U0001f4ca",
	":barbados:":                            "\U0001f1e7\U0001f1e7",
	":barber:":                              "\U0001f488",
	":barber_pole:":                         "\U0001f488",
	":baseball:":                            "\U000026be",
	":basket:":                              "\U0001f9fa",
	":basketball:":                          "\U0001f3c0",
	":basketball_man:":                      "\u26f9\ufe0f\u200d\u2642\ufe0f",
	":basketball_woman:":                    "\u26f9\ufe0f\u200d\u2640\ufe0f",
	":bat:":                                 "\U0001f987",
	":bath:":                                "\U0001f6c0",
	":bath_tone1:":                          "\U0001f6c0\U0001f3fb",
	":bath_tone2:":                          "\U0001f6c0\U0001f3fc",
	":bath_tone3:":                          "\U0001f6c0\U0001f3fd",
	":bath_tone4:":                          "\U0001f6c0\U0001f3fe",
	":bath_tone5:":                          "\U0001f6c0\U0001f3ff",
	":bathtub:":                             "\U0001f6c1",
	":battery:":                             "\U0001f50b",
	":beach:":                               "\U0001f3d6",
	":beach_umbrella:":                      "\u26f1",
	":beach_with_umbrella:":                 "\U0001f3d6",
	":beaming_face_with_smiling_eyes:":      "\U0001f601",
	":bear:":                                "\U0001f43b",
	":bearded_person:":                      "\U0001f9d4",
	":bearded_person_tone1:":                "\U0001f9d4\U0001f3fb",
	":bearded_person_tone2:":                "\U0001f9d4\U0001f3fc",
	":bearded_person_tone3:":                "\U0001f9d4\U0001f3fd",
	":bearded_person_tone4:":                "\U0001f9d4\U0001f3fe",
	":bearded_person_tone5:":                "\U0001f9d4\U0001f3ff",
	":beating_heart:":                       "\U0001f493",
	":bed:":                                 "\U0001f6cf",
	":bee:":                                 "\U0001f41d",
	":beer:":                                "\U0001f37a",
	":beer_mug:":                            "\U0001f37a",
	":beers:":                               "\U0001f37b",
	":beetle:":                              "\U0001f41e",
	":beginner:":                            "\U0001f530",
	":belarus:":                             "\U0001f1e7\U0001f1fe",
	":belgium:":                             "\U0001f1e7\U0001f1ea",
	":belize:":                              "\U0001f1e7\U0001f1ff",
	":bell:":                                "\U0001f514",
	":bell_with_slash:":                     "\U0001f515",
	":bellhop:":                             "\U0001f6ce",
	":bellhop_bell:":                        "\U0001f6ce",
	":benin:":                               "\U0001f1e7\U0001f1ef",
	":bento:":                               "\U0001f371",
	":bento_box:":                           "\U0001f371",
	":bermuda:":                             "\U0001f1e7\U0001f1f2",
	":beverage_box:":                        "\U0001f9c3",
	":bhutan:":                              "\U0001f1e7\U0001f1f9",
	":bicycle:":                             "\U0001f6b2",
	":bicyclist:":                           "\U0001f6b4",
	":bike:":                                "\U0001f6b2",
	":biking_man:":                          "\U0001f6b4\u200d\u2642",
	":biking_woman:":                        "\U0001f6b4\u200d\u2640",
	":bikini:":                              "\U0001f459",
	":billed_cap:":                          "\U0001f9e2",
	":biohazard:":                           "\U00002623",
	":bird:":                                "\U0001f426",
	":birthday:":                            "\U0001f382",
	":birthday_cake:":                       "\U0001f382",
	":black_circle:":                        "\U000026ab",
	":black_flag:":                          "\U0001f3f4",
	":black_heart:":                         "\U0001f5a4",
	":black_joker:":                         "\U0001f0cf",
	":black_large_square:":                  "\U00002b1b",
	":black_medium-small_square:":           "\U000025fe",
	":black_medium_small_square:":           "\u25fe",
	":black_medium_square:":                 "\U000025fc",
	":black_nib:":                           "\U00002712",
	":black_small_square:":                  "\U000025aa",
	":black_square_button:":                 "\U0001f532",
	":blond-haired_man:":                    "\U0001f471\u200d\u2642\ufe0f",
	":blond-haired_man_tone1:":              "\U0001f471\U0001f3fb\u200d\u2642\ufe0f",
	":blond-haired_man_tone2:":              "\U0001f471\U0001f3fc\u200d\u2642\ufe0f",
	":blond-haired_man_tone3:":              "\U0001f471\U0001f3fd\u200d\u2642\ufe0f",
	":blond-haired_man_tone4:":              "\U0001f471\U0001f3fe\u200d\u2642\ufe0f",
	":blond-haired_man_tone5:":              "\U0001f471\U0001f3ff\u200d\u2642\ufe0f",
	":blond-haired_woman:":                  "\U0001f471\u200d\u2640\ufe0f",
	":blond-haired_woman_tone1:":            "\U0001f471\U0001f3fb\u200d\u2640\ufe0f",
	":blond-haired_woman_tone2:":            "\U0001f471\U0001f3fc\u200d\u2640\ufe0f",
	":blond-haired_woman_tone3:":            "\U0001f471\U0001f3fd\u200d\u2640\ufe0f",
	":blond-haired_woman_tone4:":            "\U0001f471\U0001f3fe\u200d\u2640\ufe0f",
	":blond-haired_woman_tone5:":            "\U0001f471\U0001f3ff\u200d\u2640\ufe0f",
	":blond_haired_man:":                    "\U0001f471\u200d\u2642",
	":blond_haired_person:":                 "\U0001f471",
	":blond_haired_person_tone1:":           "\U0001f471\U0001f3fb",
	":blond_haired_person_tone2:":           "\U0001f471\U0001f3fc",
	":blond_haired_person_tone3:":           "\U0001f471\U0001f3fd",
	":blond_haired_person_tone4:":           "\U0001f471\U0001f3fe",
	":blond_haired_person_tone5:":           "\U0001f471\U0001f3ff",
	":blond_haired_woman:":                  "\U0001f471\u200d\u2640",
	":blonde_woman:":                        "\U0001f471\u200d\u2640",
	":blossom:":                             "\U0001f33c",
	":blowfish:":                            "\U0001f421",
	":blue_book:":                           "\U0001f4d8",
	":blue_car:":                            "\U0001f699",
	":blue_circle:":                         "\U0001f535",
	":blue_heart:":                          "\U0001f499",
	":blue_square:":                         "\U0001f7e6",
	":blush:":                               "\U0001f60a",
	":boar:":                                "\U0001f417",
	":boat:":                                "\u26f5",
	":bolivia:":                             "\U0001f1e7\U0001f1f4",
	":bomb:":                                "\U0001f4a3",
	":bone:":                                "\U0001f9b4",
	":book:":                                "\U0001f4d6",
	":bookmark:":                            "\U0001f516",
	":bookmark_tabs:":                       "\U0001f4d1",
	":books:":                               "\U0001f4da",
	":boom:":                                "\U0001f4a5",
	":boot:":                                "\U0001f462",
	":bosnia_herzegovina:":                  "\U0001f1e7\U0001f1e6",
	":botswana:":                            "\U0001f1e7\U0001f1fc",
	":bottle_with_popping_cork:":            "\U0001f37e",
	":bouncing_ball_man:":                   "\u26f9\ufe0f\u200d\u2642\ufe0f",
	":bouncing_ball_person:":                "\u26f9",
	":bouncing_ball_woman:":                 "\u26f9\ufe0f\u200d\u2640\ufe0f",
	":bouquet:":                             "\U0001f490",
	":bouvet_island:":                       "\U0001f1e7\U0001f1fb",
	":bow:":                                 "\U0001f647",
	":bow_and_arrow:":                       "\U0001f3f9",
	":bowing_man:":                          "\U0001f647\u200d\u2642",
	":bowing_woman:":                        "\U0001f647\u200d\u2640",
	":bowl_with_spoon:":                     "\U0001f963",
	":bowling:":                             "\U0001f3b3",
	":boxing_glove:":                        "\U0001f94a",
	":boy:":                                 "\U0001f466",
	":boy_tone1:":                           "\U0001f466\U0001f3fb",
	":boy_tone2:":                           "\U0001f466\U0001f3fc",
	":boy_tone3:":                           "\U0001f466\U0001f3fd",
	":boy_tone4:":                           "\U0001f466\U0001f3fe",
	":boy_tone5:":                           "\U0001f466\U0001f3ff",
	":brain:":                               "\U0001f9e0",
	":brazil:":                              "\U0001f1e7\U0001f1f7",
	":bread:":                               "\U0001f35e",
	":breast-feeding:":                      "\U0001f931",
	":breast_feeding:":                      "\U0001f931",
	":breast_feeding_tone1:":                "\U0001f931\U0001f3fb",
	":breast_feeding_tone2:":                "\U0001f931\U0001f3fc",
	":breast_feeding_tone3:":                "\U0001f931\U0001f3fd",
	":breast_feeding_tone4:":                "\U0001f931\U0001f3fe",
	":breast_feeding_tone5:":                "\U0001f931\U0001f3ff",
	":brick:":                               "\U0001f9f1",
	":bricks:":                              "\U0001f9f1",
	":bride_with_veil:":                     "\U0001f470",
	":bride_with_veil_tone1:":               "\U0001f470\U0001f3fb",
	":bride_with_veil_tone2:":               "\U0001f470\U0001f3fc",
	":bride_with_veil_tone3:":               "\U0001f470\U0001f3fd",
	":bride_with_veil_tone4:":               "\U0001f470\U0001f3fe",
	":bride_with_veil_tone5:":               "\U0001f470\U0001f3ff",
	":bridge_at_night:":                     "\U0001f309",
	":briefcase:":                           "\U0001f4bc",
	":briefs:":                              "\U0001fa72",
	":bright_button:":                       "\U0001f506",
	":british_indian_ocean_territory:":      "\U0001f1ee\U0001f1f4",
	":british_virgin_islands:":              "\U0001f1fb\U0001f1ec",
	":broccoli:":                            "\U0001f966",
	":broken_heart:":                        "\U0001f494",
	":broom:":                               "\U0001f9f9",
	":brown_circle:":                        "\U0001f7e4",
	":brown_heart:":                         "\U0001f90e",
	":brown_square:":                        "\U0001f7eb",
	":brunei:":                              "\U0001f1e7\U0001f1f3",
	":bug:":                                 "\U0001f41b",
	":building_construction:":               "\U0001f3d7",
	":bulb:":                                "\U0001f4a1",
	":bulgaria:":                            "\U0001f1e7\U0001f1ec",
	":bullet_train:":                        "\U0001f685",
	":bullettrain_front:":                   "\U0001f685",
	":bullettrain_side:":                    "\U0001f684",
	":burkina_faso:":                        "\U0001f1e7\U0001f1eb",
	":burrito:":                             "\U0001f32f",
	":burundi:":                             "\U0001f1e7\U0001f1ee",
	":bus:":                                 "\U0001f68c",
	":bus_stop:":                            "\U0001f68f",
	":business_suit_levitating:":            "\U0001f574",
	":busstop:":                             "\U0001f68f",
	":bust_in_silhouette:":                  "\U0001f464",
	":busts_in_silhouette:":                 "\U0001f465",
	":butter:":                              "\U0001f9c8",
	":butterfly:":                           "\U0001f98b",
	":cactus:":                              "\U0001f335",
	":cake:":                                "\U0001f370",
	":calendar:":                            "\U0001f4c5",
	":calendar_spiral:":                     "\U0001f5d3",
	":call_me:":                             "\U0001f919",
	":call_me_hand:":                        "\U0001f919",
	":call_me_tone1:":                       "\U0001f919\U0001f3fb",
	":call_me_tone2:":                       "\U0001f919\U0001f3fc",
	":call_me_tone3:":                       "\U0001f919\U0001f3fd",
	":call_me_tone4:":                       "\U0001f919\U0001f3fe",
	":call_me_tone5:":                       "\U0001f919\U0001f3ff",
	":calling:":                             "\U0001f4f2",
	":cambodia:":                            "\U0001f1f0\U0001f1ed",
	":camel:":                               "\U0001f42a",
	":camera:":                              "\U0001f4f7",
	":camera_flash:":                        "\U0001f4f8",
	":camera_with_flash:":                   "\U0001f4f8",
	":cameroon:":                            "\U0001f1e8\U0001f1f2",
	":camping:":                             "\U0001f3d5",
	":canada:":                              "\U0001f1e8\U0001f1e6",
	":canary_islands:":                      "\U0001f1ee\U0001f1e8",
	":cancer:":                              "\u264b",
	":candle:":                              "\U0001f56f",
	":candy:":                               "\U0001f36c",
	":canned_food:":                         "\U0001f96b",
	":canoe:":                               "\U0001f6f6",
	":cape_verde:":                          "\U0001f1e8\U0001f1fb",
	":capital_abcd:":                        "\U0001f520",
	":capricorn:":                           "\u2651",
	":car:":                                 "\U0001f697",
	":card_box:":                            "\U0001f5c3",
	":card_file_box:":                       "\U0001f5c3",
	":card_index:":                          "\U0001f4c7",
	":card_index_dividers:":                 "\U0001f5c2",
	":caribbean_netherlands:":               "\U0001f1e7\U0001f1f6",
	":carousel_horse:":                      "\U0001f3a0",
	":carp_streamer:":                       "\U0001f38f",
	":carrot:":                              "\U0001f955",
	":cartwheeling:":                        "\U0001f938",
	":castle:":                              "\U0001f3f0",
	":cat:":                                 "\U0001f408",
	":cat2:":                                "\U0001f408",
	":cat_face:":                            "\U0001f431",
	":cat_with_tears_of_joy:":               "\U0001f639",
	":cat_with_wry_smile:":                  "\U0001f63c",
	":cayman_islands:":                      "\U0001f1f0\U0001f1fe",
	":cd:":                                  "\U0001f4bf",
	":central_african_republic:":            "\U0001f1e8\U0001f1eb",
	":ceuta_melilla:":                       "\U0001f1ea\U0001f1e6",
	":chad:":                                "\U0001f1f9\U0001f1e9",
	":chains:":                              "\U000026d3",
	":chair:":                               "\U0001fa91",
	":champagne:":                           "\U0001f37e",
	":champagne_glass:":                     "\U0001f942",
	":chart:":                               "\U0001f4b9",
	":chart_decreasing:":                    "\U0001f4c9",
	":chart_increasing:":                    "\U0001f4c8",
	":chart_increasing_with_yen:":           "\U0001f4b9",
	":chart_with_downwards_trend:":          "\U0001f4c9",
	":chart_with_upwards_trend:":            "\U0001f4c8",
	":check_box_with_check:":                "\U00002611",
	":check_mark:":                          "\U00002714",
	":check_mark_button:":                   "\U00002705",
	":checkered_flag:":                      "\U0001f3c1",
	":cheese:":                              "\U0001f9c0",
	":cheese_wedge:":                        "\U0001f9c0",
	":chequered_flag:":                      "\U0001f3c1",
	":cherries:":                            "\U0001f352",
	":cherry_blossom:":                      "\U0001f338",
	":chess_pawn:":                          "\U0000265f",
	":chestnut:":                            "\U0001f330",
	":chicken:":                             "\U0001f414",
	":child:":                               "\U0001f9d2",
	":child_tone1:":                         "\U0001f9d2\U0001f3fb",
	":child_tone2:":                         "\U0001f9d2\U0001f3fc",
	":child_tone3:":                         "\U0001f9d2\U0001f3fd",
	":child_tone4:":                         "\U0001f9d2\U0001f3fe",
	":child_tone5:":                         "\U0001f9d2\U0001f3ff",
	":children_crossing:":                   "\U0001f6b8",
	":chile:":                               "\U0001f1e8\U0001f1f1",
	":chipmunk:":                            "\U0001f43f",
	":chocolate_bar:":                       "\U0001f36b",
	":chopsticks:":                          "\U0001f962",
	":christmas_island:":                    "\U0001f1e8\U0001f1fd",
	":christmas_tree:":                      "\U0001f384",
	":church:":                              "\U000026ea",
	":cigarette:":                           "\U0001f6ac",
	":cinema:":                              "\U0001f3a6",
	":circled_M:":                           "\U000024c2",
	":circus_tent:":                         "\U0001f3aa",
	":city_dusk:":                           "\U0001f306",
	":city_sunrise:":                        "\U0001f307",
	":city_sunset:":                         "\U0001f307",
	":cityscape:":                           "\U0001f3d9",
	":cityscape_at_dusk:":                   "\U0001f306",
	":cl:":                                  "\U0001f191",
	":clamp:":                               "\U0001f5dc",
	":clap:":                                "\U0001f44f",
	":clap_tone1:":                          "\U0001f44f\U0001f3fb",
	":clap_tone2:":                          "\U0001f44f\U0001f3fc",
	":clap_tone3:":                          "\U0001f44f\U0001f3fd",
	":clap_tone4:":                          "\U0001f44f\U0001f3fe",
	":clap_tone5:":                          "\U0001f44f\U0001f3ff",
	":clapper:":                             "\U0001f3ac",
	":clapper_board:":                       "\U0001f3ac",
	":clapping_hands:":                      "\U0001f44f",
	":classical_building:":                  "\U0001f3db",
	":climbing:":                            "\U0001f9d7",
	":climbing_man:":                        "\U0001f9d7\u200d\u2642",
	":climbing_woman:":                      "\U0001f9d7\u200d\u2640",
	":clinking_beer_mugs:":                  "\U0001f37b",
	":clinking_glasses:":                    "\U0001f942",
	":clipboard:":                           "\U0001f4cb",
	":clipperton_island:":                   "\U0001f1e8\U0001f1f5",
	":clock:":                               "\U0001f570",
	":clock1:":                              "\U0001f550",
	":clock10:":                             "\U0001f559",
	":clock1030:":                           "\U0001f565",
	":clock11:":                             "\U0001f55a",
	":clock1130:":                           "\U0001f566",
	":clock12:":                             "\U0001f55b",
	":clock1230:":                           "\U0001f567",
	":clock130:":                            "\U0001f55c",
	":clock2:":                              "\U0001f551",
	":clock230:":                            "\U0001f55d",
	":clock3:":                              "\U0001f552",
	":clock330:":                            "\U0001f55e",
	":clock4:":                              "\U0001f553",
	":clock430:":                            "\U0001f55f",
	":clock5:":                              "\U0001f554",
	":clock530:":                            "\U0001f560",
	":clock6:":                              "\U0001f555",
	":clock630:":                            "\U0001f561",
	":clock7:":                              "\U0001f556",
	":clock730:":                            "\U0001f562",
	":clock8:":                              "\U0001f557",
	":clock830:":                            "\U0001f563",
	":clock9:":                              "\U0001f558",
	":clock930:":                            "\U0001f564",
	":clockwise_vertical_arrows:":           "\U0001f503",
	":closed_book:":                         "\U0001f4d5",
	":closed_lock_with_key:":                "\U0001f510",
	":closed_mailbox_with_lowered_flag:":    "\U0001f4ea",
	":closed_mailbox_with_raised_flag:":     "\U0001f4eb",
	":closed_umbrella:":                     "\U0001f302",
	":cloud:":                               "\U00002601",
	":cloud_lightning:":                     "\U0001f329",
	":cloud_rain:":                          "\U0001f327",
	":cloud_snow:":                          "\U0001f328",
	":cloud_tornado:":                       "\U0001f32a",
	":cloud_with_lightning:":                "\U0001f329",
	":cloud_with_lightning_and_rain:":       "\U000026c8",
	":cloud_with_rain:":                     "\U0001f327",
	":cloud_with_snow:":                     "\U0001f328",
	":clown:":                               "\U0001f921",
	":clown_face:":                          "\U0001f921",
	":club_suit:":                           "\U00002663",
	":clubs:":                               "\u2663",
	":clutch_bag:":                          "\U0001f45d",
	":cn:":                                  "\U0001f1e8\U0001f1f3",
	":coat:":                                "\U0001f9e5",
	":cocktail:":                            "\U0001f378",
	":cocktail_glass:":                      "\U0001f378",
	":coconut:":                             "\U0001f965",
	":cocos_islands:":                       "\U0001f1e8\U0001f1e8",
	":coffee:":                              "\u2615",
	":coffin:":                              "\U000026b0",
	":cold_face:":                           "\U0001f976",
	":cold_sweat:":                          "\U0001f630",
	":collision:":                           "\U0001f4a5",
	":colombia:":                            "\U0001f1e8\U0001f1f4",
	":comet:":                               "\U00002604",
	":comoros:":                             "\U0001f1f0\U0001f1f2",
	":compass:":                             "\U0001f9ed",
	":compression:":                         "\U0001f5dc",
	":computer:":                            "\U0001f4bb",
	":computer_disk:":                       "\U0001f4bd",
	":computer_mouse:":                      "\U0001f5b1",
	":confetti_ball:":                       "\U0001f38a",
	":confounded:":                          "\U0001f616",
	":confounded_face:":                     "\U0001f616",
	":confused:":                            "\U0001f615",
	":confused_face:":                       "\U0001f615",
	":congo_brazzaville:":                   "\U0001f1e8\U0001f1ec",
	":congo_kinshasa:":                      "\U0001f1e8\U0001f1e9",
	":congratulations:":                     "\u3297",
	":construction:":                        "\U0001f6a7",
	":construction_site:":                   "\U0001f3d7",
	":construction_worker:":                 "\U0001f477",
	":construction_worker_man:":             "\U0001f477\u200d\u2642",
	":construction_worker_tone1:":           "\U0001f477\U0001f3fb",
	":construction_worker_tone2:":           "\U0001f477\U0001f3fc",
	":construction_worker_tone3:":           "\U0001f477\U0001f3fd",
	":construction_worker_tone4:":           "\U0001f477\U0001f3fe",
	":construction_worker_tone5:":           "\U0001f477\U0001f3ff",
	":construction_worker_woman:":           "\U0001f477\u200d\u2640",
	":control_knobs:":                       "\U0001f39b",
	":convenience_store:":                   "\U0001f3ea",
	":cook:":                                "\U0001f9d1\U0000200d\U0001f373",
	":cook_islands:":                        "\U0001f1e8\U0001f1f0",
	":cooked_rice:":                         "\U0001f35a",
	":cookie:":                              "\U0001f36a",
	":cooking:":                             "\U0001f373",
	":cool:":                                "\U0001f192",
	":cop:":                                 "\U0001f46e",
	":copyright:":                           "\U000000a9",
	":corn:":                                "\U0001f33d",
	":costa_rica:":                          "\U0001f1e8\U0001f1f7",
	":cote_divoire:":                        "\U0001f1e8\U0001f1ee",
	":couch:":                               "\U0001f6cb",
	":couch_and_lamp:":                      "\U0001f6cb",
	":counterclockwise_arrows_button:":      "\U0001f504",
	":couple:":                              "\U0001f46b",
	":couple_mm:":                           "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468",
	":couple_with_heart:":                   "\U0001f491",
	":couple_with_heart_man_man:":           "\U0001f468\U0000200d\U00002764\U0000fe0f\U0000200d\U0001f468",
	":couple_with_heart_woman_man:":         "\U0001f469\U0000200d\U00002764\U0000fe0f\U0000200d\U0001f468",
	":couple_with_heart_woman_woman:":       "\U0001f469\U0000200d\U00002764\U0000fe0f\U0000200d\U0001f469",
	":couple_ww:":                           "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469",
	":couplekiss:":                          "\U0001f48f",
	":couplekiss_man_man:":                  "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
	":couplekiss_man_woman:":                "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
	":couplekiss_woman_woman:":              "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469",
	":cow:":                                 "\U0001f404",
	":cow2:":                                "\U0001f404",
	":cow_face:":                            "\U0001f42e",
	":cowboy:":                              "\U0001f920",
	":cowboy_hat_face:":                     "\U0001f920",
	":crab:":                                "\U0001f980",
	":crayon:":                              "\U0001f58d",
	":crazy_face:":                          "\U0001f92a",
	":credit_card:":                         "\U0001f4b3",
	":crescent_moon:":                       "\U0001f319",
	":cricket:":                             "\U0001f997",
	":cricket_game:":                        "\U0001f3cf",
	":croatia:":                             "\U0001f1ed\U0001f1f7",
	":crocodile:":                           "\U0001f40a",
	":croissant:":                           "\U0001f950",
	":cross:":                               "\u271d",
	":cross_mark:":                          "\U0000274c",
	":cross_mark_button:":                   "\U0000274e",
	":crossed_fingers:":                     "\U0001f91e",
	":crossed_flags:":                       "\U0001f38c",
	":crossed_swords:":                      "\U00002694",
	":crown:":                               "\U0001f451",
	":cruise_ship:":                         "\U0001f6f3",
	":cry:":                                 "\U0001f622",
	":crying_cat:":                          "\U0001f63f",
	":crying_cat_face:":                     "\U0001f63f",
	":crying_face:":                         "\U0001f622",
	":crystal_ball:":                        "\U0001f52e",
	":cuba:":                                "\U0001f1e8\U0001f1fa",
	":cucumber:":                            "\U0001f952",
	":cup_with_straw:":                      "\U0001f964",
	":cupcake:":                             "\U0001f9c1",
	":cupid:":                               "\U0001f498",
	":curacao:":                             "\U0001f1e8\U0001f1fc",
	":curling_stone:":                       "\U0001f94c",
	":curly_hair:":                          "\U0001f9b1",
	":curly_haired_man:":                    "\U0001f468\u200d\U0001f9b1",
	":curly_haired_woman:":                  "\U0001f469\u200d\U0001f9b1",
	":curly_loop:":                          "\U000027b0",
	":currency_exchange:":                   "\U0001f4b1",
	":curry:":                               "\U0001f35b",
	":curry_rice:":                          "\U0001f35b",
	":cursing_face:":                        "\U0001f92c",
	":custard:":                             "\U0001f36e",
	":customs:":                             "\U0001f6c3",
	":cut_of_meat:":                         "\U0001f969",
	":cyclone:":                             "\U0001f300",
	":cyprus:":                              "\U0001f1e8\U0001f1fe",
	":czech_republic:":                      "\U0001f1e8\U0001f1ff",
	":dagger:":                              "\U0001f5e1",
	":dancer:":                              "\U0001f483",
	":dancer_tone1:":                        "\U0001f483\U0001f3fb",
	":dancer_tone2:":                        "\U0001f483\U0001f3fc",
	":dancer_tone3:":                        "\U0001f483\U0001f3fd",
	":dancer_tone4:":                        "\U0001f483\U0001f3fe",
	":dancer_tone5:":                        "\U0001f483\U0001f3ff",
	":dancers:":                             "\U0001f46f",
	":dancing_men:":                         "\U0001f46f\u200d\u2642",
	":dancing_women:":                       "\U0001f46f\u200d\u2640",
	":dango:":                               "\U0001f361",
	":dark_sunglasses:":                     "\U0001f576",
	":dart:":                                "\U0001f3af",
	":dash:":                                "\U0001f4a8",
	":dashing_away:":                        "\U0001f4a8",
	":date:":                                "\U0001f4c5",
	":de:":                                  "\U0001f1e9\U0001f1ea",
	":deaf_man:":                            "\U0001f9cf\U0000200d\U00002642\U0000fe0f",
	":deaf_person:":                         "\U0001f9cf",
	":deaf_woman:":                          "\U0001f9cf\U0000200d\U00002640\U0000fe0f",
	":deciduous_tree:":                      "\U0001f333",
	":deer:":                                "\U0001f98c",
	":delivery_truck:":                      "\U0001f69a",
	":denmark:":                             "\U0001f1e9\U0001f1f0",
	":department_store:":                    "\U0001f3ec",
	":derelict_house:":                      "\U0001f3da",
	":desert:":                              "\U0001f3dc",
	":desert_island:":                       "\U0001f3dd",
	":desktop:":                             "\U0001f5a5",
	":desktop_computer:":                    "\U0001f5a5",
	":detective:":                           "\U0001f575",
	":detective_tone1:":                     "\U0001f575\U0001f3fb",
	":detective_tone2:":                     "\U0001f575\U0001f3fc",
	":detective_tone3:":                     "\U0001f575\U0001f3fd",
	":detective_tone4:":                     "\U0001f575\U0001f3fe",
	":detective_tone5:":                     "\U0001f575\U0001f3ff",
	":diamond_shape_with_a_dot_inside:":     "\U0001f4a0",
	":diamond_suit:":                        "\U00002666",
	":diamond_with_a_dot:":                  "\U0001f4a0",
	":diamonds:":                            "\u2666",
	":diego_garcia:":                        "\U0001f1e9\U0001f1ec",
	":dim_button:":                          "\U0001f505",
	":direct_hit:":                          "\U0001f3af",
	":disappointed:":                        "\U0001f61e",
	":disappointed_face:":                   "\U0001f61e",
	":disappointed_relieved:":               "\U0001f625",
	":dividers:":                            "\U0001f5c2",
	":diving_mask:":                         "\U0001f93f",
	":division_sign:":                       "\U00002797",
	":diya_lamp:":                           "\U0001fa94",
	":dizzy:":                               "\U0001f4ab",
	":dizzy_face:":                          "\U0001f635",
	":djibouti:":                            "\U0001f1e9\U0001f1ef",
	":dna:":                                 "\U0001f9ec",
	":do_not_litter:":                       "\U0001f6af",
	":dog:":                                 "\U0001f415",
	":dog2:":                                "\U0001f415",
	":dog_face:":                            "\U0001f436",
	":dollar:":                              "\U0001f4b5",
	":dollar_banknote:":                     "\U0001f4b5",
	":dolls:":                               "\U0001f38e",
	":dolphin:":                             "\U0001f42c",
	":dominica:":                            "\U0001f1e9\U0001f1f2",
	":dominican_republic:":                  "\U0001f1e9\U0001f1f4",
	":door:":                                "\U0001f6aa",
	":dotted_six-pointed_star:":             "\U0001f52f",
	":double_curly_loop:":                   "\U000027bf",
	":double_exclamation_mark:":             "\U0000203c",
	":doughnut:":                            "\U0001f369",
	":dove:":                                "\U0001f54a",
	":down-left_arrow:":                     "\U00002199",
	":down-right_arrow:":                    "\U00002198",
	":down_arrow:":                          "\U00002b07",
	":downcast_face_with_sweat:":            "\U0001f613",
	":downwards_button:":                    "\U0001f53d",
	":dragon:":                              "\U0001f409",
	":dragon_face:":                         "\U0001f432",
	":dress:":                               "\U0001f457",
	":dromedary_camel:":                     "\U0001f42a",
	":drooling_face:":                       "\U0001f924",
	":drop_of_blood:":                       "\U0001fa78",
	":droplet:":                             "\U0001f4a7",
	":drum:":                                "\U0001f941",
	":duck:":                                "\U0001f986",
	":dumpling:":                            "\U0001f95f",
	":dvd:":                                 "\U0001f4c0",
	":e-mail:":                              "\U0001f4e7",
	":eagle:":                               "\U0001f985",
	":ear:":                                 "\U0001f442",
	":ear_of_corn:":                         "\U0001f33d",
	":ear_of_rice:":                         "\U0001f33e",
	":ear_tone1:":                           "\U0001f442\U0001f3fb",
	":ear_tone2:":                           "\U0001f442\U0001f3fc",
	":ear_tone3:":                           "\U0001f442\U0001f3fd",
	":ear_tone4:":                           "\U0001f442\U0001f3fe",
	":ear_tone5:":                           "\U0001f442\U0001f3ff",
	":ear_with_hearing_aid:":                "\U0001f9bb",
	":earth_africa:":                        "\U0001f30d",
	":earth_americas:":                      "\U0001f30e",
	":earth_asia:":                          "\U0001f30f",
	":ecuador:":                             "\U0001f1ea\U0001f1e8",
	":egg:":                                 "\U0001f95a",
	":eggplant:":                            "\U0001f346",
	":egypt:":                               "\U0001f1ea\U0001f1ec",
	":eight:":                               "8\ufe0f\u20e3",
	":eight-pointed_star:":                  "\U00002734",
	":eight-spoked_asterisk:":               "\U00002733",
	":eight-thirty:":                        "\U0001f563",
	":eight_o’clock:":                       "\U0001f557",
	":eight_pointed_black_star:":            "\u2734",
	":eight_spoked_asterisk:":               "\u2733",
	":eject:":                               "\u23cf",
	":eject_button:":                        "\U000023cf",
	":el_salvador:":                         "\U0001f1f8\U0001f1fb",
	":electric_plug:":                       "\U0001f50c",
	":elephant:":                            "\U0001f418",
	":eleven-thirty:":                       "\U0001f566",
	":eleven_o’clock:":                      "\U0001f55a",
	":elf:":                                 "\U0001f9dd",
	":elf_man:":                             "\U0001f9dd\u200d\u2642",
	":elf_tone1:":                           "\U0001f9dd\U0001f3fb",
	":elf_tone2:":                           "\U0001f9dd\U0001f3fc",
	":elf_tone3:":                           "\U0001f9dd\U0001f3fd",
	":elf_tone4:":                           "\U0001f9dd\U0001f3fe",
	":elf_tone5:":                           "\U0001f9dd\U0001f3ff",
	":elf_woman:":                           "\U0001f9dd\u200d\u2640",
	":email:":                               "\u2709\ufe0f",
	":end:":                                 "\U0001f51a",
	":england:":                             "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
	":envelope:":                            "\U00002709",
	":envelope_with_arrow:":                 "\U0001f4e9",
	":equatorial_guinea:":                   "\U0001f1ec\U0001f1f6",
	":eritrea:":                             "\U0001f1ea\U0001f1f7",
	":es:":                                  "\U0001f1ea\U0001f1f8",
	":estonia:":                             "\U0001f1ea\U0001f1ea",
	":ethiopia:":                            "\U0001f1ea\U0001f1f9",
	":eu:":                                  "\U0001f1ea\U0001f1fa",
	":euro:":                                "\U0001f4b6",
	":euro_banknote:":                       "\U0001f4b6",
	":european_castle:":                     "\U0001f3f0",
	":european_post_office:":                "\U0001f3e4",
	":european_union:":                      "\U0001f1ea\U0001f1fa",
	":evergreen_tree:":                      "\U0001f332",
	":ewe:":                                 "\U0001f411",
	":exclamation:":                         "\u2757",
	":exclamation_mark:":                    "\U00002757",
	":exclamation_question_mark:":           "\U00002049",
	":exploding_head:":                      "\U0001f92f",
	":expressionless:":                      "\U0001f611",
	":expressionless_face:":                 "\U0001f611",
	":eye:":                                 "\U0001f441",
	":eye_in_speech_bubble:":                "\U0001f441\U0000fe0f\U0000200d\U0001f5e8\U0000fe0f",
	":eye_speech_bubble:":                   "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
	":eyeglasses:":                          "\U0001f453",
	":eyes:":                                "\U0001f440",
	":face_blowing_a_kiss:":                 "\U0001f618",
	":face_savoring_food:":                  "\U0001f60b",
	":face_screaming_in_fear:":              "\U0001f631",
	":face_vomiting:":                       "\U0001f92e",
	":face_with_hand_over_mouth:":           "\U0001f92d",
	":face_with_head-bandage:":              "\U0001f915",
	":face_with_head_bandage:":              "\U0001f915",
	":face_with_medical_mask:":              "\U0001f637",
	":face_with_monocle:":                   "\U0001f9d0",
	":face_with_open_mouth:":                "\U0001f62e",
	":face_with_raised_eyebrow:":            "\U0001f928",
	":face_with_rolling_eyes:":              "\U0001f644",
	":face_with_steam_from_nose:":           "\U0001f624",
	":face_with_symbols_on_mouth:":          "\U0001f92c",
	":face_with_symbols_over_mouth:":        "\U0001f92c",
	":face_with_tears_of_joy:":              "\U0001f602",
	":face_with_thermometer:":               "\U0001f912",
	":face_with_tongue:":                    "\U0001f61b",
	":face_without_mouth:":                  "\U0001f636",
	":facepalm:":                            "\U0001f926",
	":facepunch:":                           "\U0001f44a",
	":factory:":                             "\U0001f3ed",
	":factory_worker:":                      "\U0001f9d1\U0000200d\U0001f3ed",
	":fairy:":                               "\U0001f9da",
	":fairy_man:":                           "\U0001f9da\u200d\u2642",
	":fairy_tone1:":                         "\U0001f9da\U0001f3fb",
	":fairy_tone2:":                         "\U0001f9da\U0001f3fc",
	":fairy_tone3:":                         "\U0001f9da\U0001f3fd",
	":fairy_tone4:":                         "\U0001f9da\U0001f3fe",
	":fairy_tone5:":                         "\U0001f9da\U0001f3ff",
	":fairy_woman:":                         "\U0001f9da\u200d\u2640",
	":falafel:":                             "\U0001f9c6",
	":falkland_islands:":                    "\U0001f1eb\U0001f1f0",
	":fallen_leaf:":                         "\U0001f342",
	":family:":                              "\U0001f46a",
	":family_man_boy:":                      "\U0001f468\U0000200d\U0001f466",
	":family_man_boy_boy:":                  "\U0001f468\U0000200d\U0001f466\U0000200d\U0001f466",
	":family_man_girl:":                     "\U0001f468\U0000200d\U0001f467",
	":family_man_girl_boy:":                 "\U0001f468\U0000200d\U0001f467\U0000200d\U0001f466",
	":family_man_girl_girl:":                "\U0001f468\U0000200d\U0001f467\U0000200d\U0001f467",
	":family_man_man_boy:":                  "\U0001f468\U0000200d\U0001f468\U0000200d\U0001f466",
	":family_man_man_boy_boy:":              "\U0001f468\U0000200d\U0001f468\U0000200d\U0001f466\U0000200d\U0001f466",
	":family_man_man_girl:":                 "\U0001f468\U0000200d\U0001f468\U0000200d\U0001f467",
	":family_man_man_girl_boy:":             "\U0001f468\U0000200d\U0001f468\U0000200d\U0001f467\U0000200d\U0001f466",
	":family_man_man_girl_girl:":            "\U0001f468\U0000200d\U0001f468\U0000200d\U0001f467\U0000200d\U0001f467",
	":family_man_woman_boy:":                "\U0001f468\U0000200d\U0001f469\U0000200d\U0001f466",
	":family_man_woman_boy_boy:":            "\U0001f468\U0000200d\U0001f469\U0000200d\U0001f466\U0000200d\U0001f466",
	":family_man_woman_girl:":               "\U0001f468\U0000200d\U0001f469\U0000200d\U0001f467",
	":family_man_woman_girl_boy:":           "\U0001f468\U0000200d\U0001f469\U0000200d\U0001f467\U0000200d\U0001f466",
	":family_man_woman_girl_girl:":          "\U0001f468\U0000200d\U0001f469\U0000200d\U0001f467\U0000200d\U0001f467",
	":family_mmb:":                          "\U0001f468\u200d\U0001f468\u200d\U0001f466",
	":family_mmbb:":                         "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466",
	":family_mmg:":                          "\U0001f468\u200d\U0001f468\u200d\U0001f467",
	":family_mmgb:":                         "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466",
	":family_mmgg:":                         "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467",
	":family_mwbb:":                         "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
	":family_mwg:":                          "\U0001f468\u200d\U0001f469\u200d\U0001f467",
	":family_mwgb:":                         "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
	":family_mwgg:":                         "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
	":family_woman_boy:":                    "\U0001f469\U0000200d\U0001f466",
	":family_woman_boy_boy:":                "\U0001f469\U0000200d\U0001f466\U0000200d\U0001f466",
	":family_woman_girl:":                   "\U0001f469\U0000200d\U0001f467",
	":family_woman_girl_boy:":               "\U0001f469\U0000200d\U0001f467\U0000200d\U0001f466",
	":family_woman_girl_girl:":              "\U0001f469\U0000200d\U0001f467\U0000200d\U0001f467",
	":family_woman_woman_boy:":              "\U0001f469\U0000200d\U0001f469\U0000200d\U0001f466",
	":family_woman_woman_boy_boy:":          "\U0001f469\U0000200d\U0001f469\U0000200d\U0001f466\U0000200d\U0001f466",
	":family_woman_woman_girl:":             "\U0001f469\U0000200d\U0001f469\U0000200d\U0001f467",
	":family_woman_woman_girl_boy:":         "\U0001f469\U0000200d\U0001f469\U0000200d\U0001f467\U0000200d\U0001f466",
	":family_woman_woman_girl_girl:":        "\U0001f469\U0000200d\U0001f469\U0000200d\U0001f467\U0000200d\U0001f467",
	":family_wwb:":                          "\U0001f469\u200d\U0001f469\u200d\U0001f466",
	":family_wwbb:":                         "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
	":family_wwg:":                          "\U0001f469\u200d\U0001f469\u200d\U0001f467",
	":family_wwgb:":                         "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
	":family_wwgg:":                         "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
	":farmer:":                              "\U0001f9d1\U0000200d\U0001f33e",
	":faroe_islands:":                       "\U0001f1eb\U0001f1f4",
	":fast-forward_button:":                 "\U000023e9",
	":fast_down_button:":                    "\U000023ec",
	":fast_forward:":                        "\u23e9",
	":fast_reverse_button:":                 "\U000023ea",
	":fast_up_button:":                      "\U000023eb",
	":fax:":                                 "\U0001f4e0",
	":fax_machine:":                         "\U0001f4e0",
	":fearful:":                             "\U0001f628",
	":fearful_face:":                        "\U0001f628",
	":feet:":                                "\U0001f43e",
	":female_detective:":                    "\U0001f575\ufe0f\u200d\u2640\ufe0f",
	":female_sign:":                         "\U00002640",
	":ferris_wheel:":                        "\U0001f3a1",
	":ferry:":                               "\U000026f4",
	":field_hockey:":                        "\U0001f3d1",
	":fiji:":                                "\U0001f1eb\U0001f1ef",
	":file_cabinet:":                        "\U0001f5c4",
	":file_folder:":                         "\U0001f4c1",
	":film_frames:":                         "\U0001f39e",
	":film_projector:":                      "\U0001f4fd",
	":film_strip:":                          "\U0001f39e",
	":fingers_crossed:":                     "\U0001f91e",
	":fingers_crossed_tone1:":               "\U0001f91e\U0001f3fb",
	":fingers_crossed_tone2:":               "\U0001f91e\U0001f3fc",
	":fingers_crossed_tone3:":               "\U0001f91e\U0001f3fd",
	":fingers_crossed_tone4:":               "\U0001f91e\U0001f3fe",
	":fingers_crossed_tone5:":               "\U0001f91e\U0001f3ff",
	":finland:":                             "\U0001f1eb\U0001f1ee",
	":fire:":                                "\U0001f525",
	":fire_engine:":                         "\U0001f692",
	":fire_extinguisher:":                   "\U0001f9ef",
	":firecracker:":                         "\U0001f9e8",
	":firefighter:":                         "\U0001f9d1\U0000200d\U0001f692",
	":fireworks:":                           "\U0001f386",
	":first_place:":                         "\U0001f947",
	":first_quarter_moon:":                  "\U0001f313",
	":first_quarter_moon_face:":             "\U0001f31b",
	":first_quarter_moon_with_face:":        "\U0001f31b",
	":fish:":                                "\U0001f41f",
	":fish_cake:":                           "\U0001f365",
	":fish_cake_with_swirl:":                "\U0001f365",
	":fishing_pole:":                        "\U0001f3a3",
	":fishing_pole_and_fish:":               "\U0001f3a3",
	":fist:":                                "\u270a",
	":fist_left:":                           "\U0001f91b",
	":fist_oncoming:":                       "\U0001f44a",
	":fist_raised:":                         "\u270a",
	":fist_right:":                          "\U0001f91c",
	":fist_tone1:":                          "\u270a\U0001f3fb",
	":fist_tone2:":                          "\u270a\U0001f3fc",
	":fist_tone3:":                          "\u270a\U0001f3fd",
	":fist_tone4:":                          "\u270a\U0001f3fe",
	":fist_tone5:":                          "\u270a\U0001f3ff",
	":five:":                                "5\ufe0f\u20e3",
	":five-thirty:":                         "\U0001f560",
	":five_o’clock:":                        "\U0001f554",
	":flag_Afghanistan:":                    "\U0001f1e6\U0001f1eb",
	":flag_Albania:":                        "\U0001f1e6\U0001f1f1",
	":flag_Algeria:":                        "\U0001f1e9\U0001f1ff",
	":flag_American_Samoa:":                 "\U0001f1e6\U0001f1f8",
	":flag_Andorra:":                        "\U0001f1e6\U0001f1e9",
	":flag_Angola:":                         "\U0001f1e6\U0001f1f4",
	":flag_Anguilla:":                       "\U0001f1e6\U0001f1ee",
	":flag_Antarctica:":                     "\U0001f1e6\U0001f1f6",
	":flag_Antigua_&_Barbuda:":              "\U0001f1e6\U0001f1ec",
	":flag_Argentina:":                      "\U0001f1e6\U0001f1f7",
	":flag_Armenia:":                        "\U0001f1e6\U0001f1f2",
	":flag_Aruba:":                          "\U0001f1e6\U0001f1fc",
	":flag_Ascension_Island:":               "\U0001f1e6\U0001f1e8",
	":flag_Australia:":                      "\U0001f1e6\U0001f1fa",
	":flag_Austria:":                        "\U0001f1e6\U0001f1f9",
	":flag_Azerbaijan:":                     "\U0001f1e6\U0001f1ff",
	":flag_Bahamas:":                        "\U0001f1e7\U0001f1f8",
	":flag_Bahrain:":                        "\U0001f1e7\U0001f1ed",
	":flag_Bangladesh:":                     "\U0001f1e7\U0001f1e9",
	":flag_Barbados:":                       "\U0001f1e7\U0001f1e7",
	":flag_Belarus:":                        "\U0001f1e7\U0001f1fe",
	":flag_Belgium:":                        "\U0001f1e7\U0001f1ea",
	":flag_Belize:":                         "\U0001f1e7\U0001f1ff",
	":flag_Benin:":                          "\U0001f1e7\U0001f1ef",
	":flag_Bermuda:":                        "\U0001f1e7\U0001f1f2",
	":flag_Bhutan:":                         "\U0001f1e7\U0001f1f9",
	":flag_Bolivia:":                        "\U0001f1e7\U0001f1f4",
	":flag_Bosnia_&_Herzegovina:":           "\U0001f1e7\U0001f1e6",
	":flag_Botswana:":                       "\U0001f1e7\U0001f1fc",
	":flag_Bouvet_Island:":                  "\U0001f1e7\U0001f1fb",
	":flag_Brazil:":                         "\U0001f1e7\U0001f1f7",
	":flag_British_Indian_Ocean_Territory:": "\U0001f1ee\U0001f1f4",
	":flag_British_Virgin_Islands:":         "\U0001f1fb\U0001f1ec",
	":flag_Brunei:":                         "\U0001f1e7\U0001f1f3",
	":flag_Bulgaria:":                       "\U0001f1e7\U0001f1ec",
	":flag_Burkina_Faso:":                   "\U0001f1e7\U0001f1eb",
	":flag_Burundi:":                        "\U0001f1e7\U0001f1ee",
	":flag_Cambodia:":                       "\U0001f1f0\U0001f1ed",
	":flag_Cameroon:":                       "\U0001f1e8\U0001f1f2",
	":flag_Canada:":                         "\U0001f1e8\U0001f1e6",
	":flag_Canary_Islands:":                 "\U0001f1ee\U0001f1e8",
	":flag_Cape_Verde:":                     "\U0001f1e8\U0001f1fb",
	":flag_Caribbean_Netherlands:":          "\U0001f1e7\U0001f1f6",
	":flag_Cayman_Islands:":                 "\U0001f1f0\U0001f1fe",
	":flag_Central_African_Republic:":       "\U0001f1e8\U0001f1eb",
	":flag_Ceuta_&_Melilla:":                "\U0001f1ea\U0001f1e6",
	":flag_Chad:":                           "\U0001f1f9\U0001f1e9",
	":flag_Chile:":                          "\U0001f1e8\U0001f1f1",
	":flag_China:":                          "\U0001f1e8\U0001f1f3",
	":flag_Christmas_Island:":               "\U0001f1e8\U0001f1fd",
	":flag_Clipperton_Island:":              "\U0001f1e8\U0001f1f5",
	":flag_Cocos_(Keeling)_Islands:":        "\U0001f1e8\U0001f1e8",
	":flag_Colombia:":                       "\U0001f1e8\U0001f1f4",
	":flag_Comoros:":                        "\U0001f1f0\U0001f1f2",
	":flag_Congo_-_Brazzaville:":            "\U0001f1e8\U0001f1ec",
	":flag_Congo_-_Kinshasa:":               "\U0001f1e8\U0001f1e9",
	":flag_Cook_Islands:":                   "\U0001f1e8\U0001f1f0",
	":flag_Costa_Rica:":                     "\U0001f1e8\U0001f1f7",
	":flag_Croatia:":                        "\U0001f1ed\U0001f1f7",
	":flag_Cuba:":                           "\U0001f1e8\U0001f1fa",
	":flag_Curaçao:":                        "\U0001f1e8\U0001f1fc",
	":flag_Cyprus:":                         "\U0001f1e8\U0001f1fe",
	":flag_Czechia:":                        "\U0001f1e8\U0001f1ff",
	":flag_Côte_d’Ivoire:":                  "\U0001f1e8\U0001f1ee",
	":flag_Denmark:":                        "\U0001f1e9\U0001f1f0",
	":flag_Diego_Garcia:":                   "\U0001f1e9\U0001f1ec",
	":flag_Djibouti:":                       "\U0001f1e9\U0001f1ef",
	":flag_Dominica:":                       "\U0001f1e9\U0001f1f2",
	":flag_Dominican_Republic:":             "\U0001f1e9\U0001f1f4",
	":flag_Ecuador:":                        "\U0001f1ea\U0001f1e8",
	":flag_Egypt:":                          "\U0001f1ea\U0001f1ec",
	":flag_El_Salvador:":                    "\U0001f1f8\U0001f1fb",
	":flag_England:":                        "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
	":flag_Equatorial_Guinea:":              "\U0001f1ec\U0001f1f6",
	":flag_Eritrea:":                        "\U0001f1ea\U0001f1f7",
	":flag_Estonia:":                        "\U0001f1ea\U0001f1ea",
	":flag_Eswatini:":                       "\U0001f1f8\U0001f1ff",
	":flag_Ethiopia:":                       "\U0001f1ea\U0001f1f9",
	":flag_European_Union:":                 "\U0001f1ea\U0001f1fa",
	":flag_Falkland_Islands:":               "\U0001f1eb\U0001f1f0",
	":flag_Faroe_Islands:":                  "\U0001f1eb\U0001f1f4",
	":flag_Fiji:":                           "\U0001f1eb\U0001f1ef",
	":flag_Finland:":                        "\U0001f1eb\U0001f1ee",
	":flag_France:":                         "\U0001f1eb\U0001f1f7",
	":flag_French_Guiana:":                  "\U0001f1ec\U0001f1eb",
	":flag_French_Polynesia:":               "\U0001f1f5\U0001f1eb",
	":flag_French_Southern_Territories:":    "\U0001f1f9\U0001f1eb",
	":flag_Gabon:":                          "\U0001f1ec\U0001f1e6",
	":flag_Gambia:":                         "\U0001f1ec\U0001f1f2",
	":flag_Georgia:":                        "\U0001f1ec\U0001f1ea",
	":flag_Germany:":                        "\U0001f1e9\U0001f1ea",
	":flag_Ghana:":                          "\U0001f1ec\U0001f1ed",
	":flag_Gibraltar:":                      "\U0001f1ec\U0001f1ee",
	":flag_Greece:":                         "\U0001f1ec\U0001f1f7",
	":flag_Greenland:":                      "\U0001f1ec\U0001f1f1",
	":flag_Grenada:":                        "\U0001f1ec\U0001f1e9",
	":flag_Guadeloupe:":                     "\U0001f1ec\U0001f1f5",
	":flag_Guam:":                           "\U0001f1ec\U0001f1fa",
	":flag_Guatemala:":                      "\U0001f1ec\U0001f1f9",
	":flag_Guernsey:":                       "\U0001f1ec\U0001f1ec",
	":flag_Guinea:":                         "\U0001f1ec\U0001f1f3",
	":flag_Guinea-Bissau:":                  "\U0001f1ec\U0001f1fc",
	":flag_Guyana:":                         "\U0001f1ec\U0001f1fe",
	":flag_Haiti:":                          "\U0001f1ed\U0001f1f9",
	":flag_Heard_&_McDonald_Islands:":       "\U0001f1ed\U0001f1f2",
	":flag_Honduras:":                       "\U0001f1ed\U0001f1f3",
	":flag_Hong_Kong_SAR_China:":            "\U0001f1ed\U0001f1f0",
	":flag_Hungary:":                        "\U0001f1ed\U0001f1fa",
	":flag_Iceland:":                        "\U0001f1ee\U0001f1f8",
	":flag_India:":                          "\U0001f1ee\U0001f1f3",
	":flag_Indonesia:":                      "\U0001f1ee\U0001f1e9",
	":flag_Iran:":                           "\U0001f1ee\U0001f1f7",
	":flag_Iraq:":                           "\U0001f1ee\U0001f1f6",
	":flag_Ireland:":                        "\U0001f1ee\U0001f1ea",
	":flag_Isle_of_Man:":                    "\U0001f1ee\U0001f1f2",
	":flag_Israel:":                         "\U0001f1ee\U0001f1f1",
	":flag_Italy:":                          "\U0001f1ee\U0001f1f9",
	":flag_Jamaica:":                        "\U0001f1ef\U0001f1f2",
	":flag_Japan:":                          "\U0001f1ef\U0001f1f5",
	":flag_Jersey:":                         "\U0001f1ef\U0001f1ea",
	":flag_Jordan:":                         "\U0001f1ef\U0001f1f4",
	":flag_Kazakhstan:":                     "\U0001f1f0\U0001f1ff",
	":flag_Kenya:":                          "\U0001f1f0\U0001f1ea",
	":flag_Kiribati:":                       "\U0001f1f0\U0001f1ee",
	":flag_Kosovo:":                         "\U0001f1fd\U0001f1f0",
	":flag_Kuwait:":                         "\U0001f1f0\U0001f1fc",
	":flag_Kyrgyzstan:":                     "\U0001f1f0\U0001f1ec",
	":flag_Laos:":                           "\U0001f1f1\U0001f1e6",
	":flag_Latvia:":                         "\U0001f1f1\U0001f1fb",
	":flag_Lebanon:":                        "\U0001f1f1\U0001f1e7",
	":flag_Lesotho:":                        "\U0001f1f1\U0001f1f8",
	":flag_Liberia:":                        "\U0001f1f1\U0001f1f7",
	":flag_Libya:":                          "\U0001f1f1\U0001f1fe",
	":flag_Liechtenstein:":                  "\U0001f1f1\U0001f1ee",
	":flag_Lithuania:":                      "\U0001f1f1\U0001f1f9",
	":flag_Luxembourg:":                     "\U0001f1f1\U0001f1fa",
	":flag_Macao_SAR_China:":                "\U0001f1f2\U0001f1f4",
	":flag_Madagascar:":                     "\U0001f1f2\U0001f1ec",
	":flag_Malawi:":                         "\U0001f1f2\U0001f1fc",
	":flag_Malaysia:":                       "\U0001f1f2\U0001f1fe",
	":flag_Maldives:":                       "\U0001f1f2\U0001f1fb",
	":flag_Mali:":                           "\U0001f1f2\U0001f1f1",
	":flag_Malta:":                          "\U0001f1f2\U0001f1f9",
	":flag_Marshall_Islands:":               "\U0001f1f2\U0001f1ed",
	":flag_Martinique:":                     "\U0001f1f2\U0001f1f6",
	":flag_Mauritania:":                     "\U0001f1f2\U0001f1f7",
	":flag_Mauritius:":                      "\U0001f1f2\U0001f1fa",
	":flag_Mayotte:":                        "\U0001f1fe\U0001f1f9",
	":flag_Mexico:":                         "\U0001f1f2\U0001f1fd",
	":flag_Micronesia:":                     "\U0001f1eb\U0001f1f2",
	":flag_Moldova:":                        "\U0001f1f2\U0001f1e9",
	":flag_Monaco:":                         "\U0001f1f2\U0001f1e8",
	":flag_Mongolia:":                       "\U0001f1f2\U0001f1f3",
	":flag_Montenegro:":                     "\U0001f1f2\U0001f1ea",
	":flag_Montserrat:":                     "\U0001f1f2\U0001f1f8",
	":flag_Morocco:":                        "\U0001f1f2\U0001f1e6",
	":flag_Mozambique:":                     "\U0001f1f2\U0001f1ff",
	":flag_Myanmar_(Burma):":                "\U0001f1f2\U0001f1f2",
	":flag_Namibia:":                        "\U0001f1f3\U0001f1e6",
	":flag_Nauru:":                          "\U0001f1f3\U0001f1f7",
	":flag_Nepal:":                          "\U0001f1f3\U0001f1f5",
	":flag_Netherlands:":                    "\U0001f1f3\U0001f1f1",
	":flag_New_Caledonia:":                  "\U0001f1f3\U0001f1e8",
	":flag_New_Zealand:":                    "\U0001f1f3\U0001f1ff",
	":flag_Nicaragua:":                      "\U0001f1f3\U0001f1ee",
	":flag_Niger:":                          "\U0001f1f3\U0001f1ea",
	":flag_Nigeria:":                        "\U0001f1f3\U0001f1ec",
	":flag_Niue:":                           "\U0001f1f3\U0001f1fa",
	":flag_Norfolk_Island:":                 "\U0001f1f3\U0001f1eb",
	":flag_North_Korea:":                    "\U0001f1f0\U0001f1f5",
	":flag_North_Macedonia:":                "\U0001f1f2\U0001f1f0",
	":flag_Northern_Mariana_Islands:":       "\U0001f1f2\U0001f1f5",
	":flag_Norway:":                         "\U0001f1f3\U0001f1f4",
	":flag_Oman:":                           "\U0001f1f4\U0001f1f2",
	":flag_Pakistan:":                       "\U0001f1f5\U0001f1f0",
	":flag_Palau:":                          "\U0001f1f5\U0001f1fc",
	":flag_Palestinian_Territories:":        "\U0001f1f5\U0001f1f8",
	":flag_Panama:":                         "\U0001f1f5\U0001f1e6",
	":flag_Papua_New_Guinea:":               "\U0001f1f5\U0001f1ec",
	":flag_Paraguay:":                       "\U0001f1f5\U0001f1fe",
	":flag_Peru:":                           "\U0001f1f5\U0001f1ea",
	":flag_Philippines:":                    "\U0001f1f5\U0001f1ed",
	":flag_Pitcairn_Islands:":               "\U0001f1f5\U0001f1f3",
	":flag_Poland:":                         "\U0001f1f5\U0001f1f1",
	":flag_Portugal:":                       "\U0001f1f5\U0001f1f9",
	":flag_Puerto_Rico:":                    "\U0001f1f5\U0001f1f7",
	":flag_Qatar:":                          "\U0001f1f6\U0001f1e6",
	":flag_Romania:":                        "\U0001f1f7\U0001f1f4",
	":flag_Russia:":                         "\U0001f1f7\U0001f1fa",
	":flag_Rwanda:":                         "\U0001f1f7\U0001f1fc",
	":flag_Réunion:":                        "\U0001f1f7\U0001f1ea",
	":flag_Samoa:":                          "\U0001f1fc\U0001f1f8",
	":flag_San_Marino:":                     "\U0001f1f8\U0001f1f2",
	":flag_Saudi_Arabia:":                   "\U0001f1f8\U0001f1e6",
	":flag_Scotland:":                       "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f",
	":flag_Senegal:":                        "\U0001f1f8\U0001f1f3",
	":flag_Serbia:":                         "\U0001f1f7\U0001f1f8",
	":flag_Seychelles:":                     "\U0001f1f8\U0001f1e8",
	":flag_Sierra_Leone:":                   "\U0001f1f8\U0001f1f1",
	":flag_Singapore:":                      "\U0001f1f8\U0001f1ec",
	":flag_Sint_Maarten:":                   "\U0001f1f8\U0001f1fd",
	":flag_Slovakia:":                       "\U0001f1f8\U0001f1f0",
	":flag_Slovenia:":                       "\U0001f1f8\U0001f1ee",
	":flag_Solomon_Islands:":                "\U0001f1f8\U0001f1e7",
	":flag_Somalia:":                        "\U0001f1f8\U0001f1f4",
	":flag_South_Africa:":                   "\U0001f1ff\U0001f1e6",
	":flag_South_Georgia_&_South_Sandwich_Islands:": "\U0001f1ec\U0001f1f8",
	":flag_South_Korea:":                            "\U0001f1f0\U0001f1f7",
	":flag_South_Sudan:":                            "\U0001f1f8\U0001f1f8",
	":flag_Spain:":                                  "\U0001f1ea\U0001f1f8",
	":flag_Sri_Lanka:":                              "\U0001f1f1\U0001f1f0",
	":flag_St._Barthélemy:":                         "\U0001f1e7\U0001f1f1",
	":flag_St._Helena:":                             "\U0001f1f8\U0001f1ed",
	":flag_St._Kitts_&_Nevis:":                      "\U0001f1f0\U0001f1f3",
	":flag_St._Lucia:":                              "\U0001f1f1\U0001f1e8",
	":flag_St._Martin:":                             "\U0001f1f2\U0001f1eb",
	":flag_St._Pierre_&_Miquelon:":                  "\U0001f1f5\U0001f1f2",
	":flag_St._Vincent_&_Grenadines:":               "\U0001f1fb\U0001f1e8",
	":flag_Sudan:":                                  "\U0001f1f8\U0001f1e9",
	":flag_Suriname:":                               "\U0001f1f8\U0001f1f7",
	":flag_Svalbard_&_Jan_Mayen:":                   "\U0001f1f8\U0001f1ef",
	":flag_Sweden:":                                 "\U0001f1f8\U0001f1ea",
	":flag_Switzerland:":                            "\U0001f1e8\U0001f1ed",
	":flag_Syria:":                                  "\U0001f1f8\U0001f1fe",
	":flag_São_Tomé_&_Príncipe:":                    "\U0001f1f8\U0001f1f9",
	":flag_Taiwan:":                                 "\U0001f1f9\U0001f1fc",
	":flag_Tajikistan:":                             "\U0001f1f9\U0001f1ef",
	":flag_Tanzania:":                               "\U0001f1f9\U0001f1ff",
	":flag_Thailand:":                               "\U0001f1f9\U0001f1ed",
	":flag_Timor-Leste:":                            "\U0001f1f9\U0001f1f1",
	":flag_Togo:":                                   "\U0001f1f9\U0001f1ec",
	":flag_Tokelau:":                                "\U0001f1f9\U0001f1f0",
	":flag_Tonga:":                                  "\U0001f1f9\U0001f1f4",
	":flag_Trinidad_&_Tobago:":                      "\U0001f1f9\U0001f1f9",
	":flag_Tristan_da_Cunha:":                       "\U0001f1f9\U0001f1e6",
	":flag_Tunisia:":                                "\U0001f1f9\U0001f1f3",
	":flag_Turkey:":                                 "\U0001f1f9\U0001f1f7",
	":flag_Turkmenistan:":                           "\U0001f1f9\U0001f1f2",
	":flag_Turks_&_Caicos_Islands:":                 "\U0001f1f9\U0001f1e8",
	":flag_Tuvalu:":                                 "\U0001f1f9\U0001f1fb",
	":flag_U.S._Outlying_Islands:":                  "\U0001f1fa\U0001f1f2",
	":flag_U.S._Virgin_Islands:":                    "\U0001f1fb\U0001f1ee",
	":flag_Uganda:":                                 "\U0001f1fa\U0001f1ec",
	":flag_Ukraine:":                                "\U0001f1fa\U0001f1e6",
	":flag_United_Arab_Emirates:":                   "\U0001f1e6\U0001f1ea",
	":flag_United_Kingdom:":                         "\U0001f1ec\U0001f1e7",
	":flag_United_Nations:":                         "\U0001f1fa\U0001f1f3",
	":flag_United_States:":                          "\U0001f1fa\U0001f1f8",
	":flag_Uruguay:":                                "\U0001f1fa\U0001f1fe",
	":flag_Uzbekistan:":                             "\U0001f1fa\U0001f1ff",
	":flag_Vanuatu:":                                "\U0001f1fb\U0001f1fa",
	":flag_Vatican_City:":                           "\U0001f1fb\U0001f1e6",
	":flag_Venezuela:":                              "\U0001f1fb\U0001f1ea",
	":flag_Vietnam:":                                "\U0001f1fb\U0001f1f3",
	":flag_Wales:":                                  "\U0001f3f4\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f",
	":flag_Wallis_&_Futuna:":                        "\U0001f1fc\U0001f1eb",
	":flag_Western_Sahara:":                         "\U0001f1ea\U0001f1ed",
	":flag_Yemen:":                                  "\U0001f1fe\U0001f1ea",
	":flag_Zambia:":                                 "\U0001f1ff\U0001f1f2",
	":flag_Zimbabwe:":                               "\U0001f1ff\U0001f1fc",
	":flag_ac:":                                     "\U0001f1e6\U0001f1e8",
	":flag_ad:":                                     "\U0001f1e6\U0001f1e9",
	":flag_ae:":                                     "\U0001f1e6\U0001f1ea",
	":flag_af:":                                     "\U0001f1e6\U0001f1eb",
	":flag_ag:":                                     "\U0001f1e6\U0001f1ec",
	":flag_ai:":                                     "\U0001f1e6\U0001f1ee",
	":flag_al:":                                     "\U0001f1e6\U0001f1f1",
	":flag_am:":                                     "\U0001f1e6\U0001f1f2",
	":flag_ao:":                                     "\U0001f1e6\U0001f1f4",
	":flag_aq:":                                     "\U0001f1e6\U0001f1f6",
	":flag_ar:":                                     "\U0001f1e6\U0001f1f7",
	":flag_as:":                                     "\U0001f1e6\U0001f1f8",
	":flag_at:":                                     "\U0001f1e6\U0001f1f9",
	":flag_au:":                                     "\U0001f1e6\U0001f1fa",
	":flag_aw:":                                     "\U0001f1e6\U0001f1fc",
	":flag_ax:":                                     "\U0001f1e6\U0001f1fd",
	":flag_az:":                                     "\U0001f1e6\U0001f1ff",
	":flag_ba:":                                     "\U0001f1e7\U0001f1e6",
	":flag_bb:":                                     "\U0001f1e7\U0001f1e7",
	":flag_bd:":                                     "\U0001f1e7\U0001f1e9",
	":flag_be:":                                     "\U0001f1e7\U0001f1ea",
	":flag_bf:":                                     "\U0001f1e7\U0001f1eb",
	":flag_bg:":                                     "\U0001f1e7\U0001f1ec",
	":flag_bh:":                                     "\U0001f1e7\U0001f1ed",
	":flag_bi:":                                     "\U0001f1e7\U0001f1ee",
	":flag_bj:":                                     "\U0001f1e7\U0001f1ef",
	":flag_bl:":                                     "\U0001f1e7\U0001f1f1",
	":flag_black:":                                  "\U0001f3f4",
	":flag_bm:":                                     "\U0001f1e7\U0001f1f2",
	":flag_bn:":                                     "\U0001f1e7\U0001f1f3",
	":flag_bo:":                                     "\U0001f1e7\U0001f1f4",
	":flag_bq:":                                     "\U0001f1e7\U0001f1f6",
	":flag_br:":                                     "\U0001f1e7\U0001f1f7",
	":flag_bs:":                                     "\U0001f1e7\U0001f1f8",
	":flag_bt:":                                     "\U0001f1e7\U0001f1f9",
	":flag_bv:":                                     "\U0001f1e7\U0001f1fb",
	":flag_bw:":                                     "\U0001f1e7\U0001f1fc",
	":flag_by:":                                     "\U0001f1e7\U0001f1fe",
	":flag_bz:":                                     "\U0001f1e7\U0001f1ff",
	":flag_ca:":                                     "\U0001f1e8\U0001f1e6",
	":flag_cc:":                                     "\U0001f1e8\U0001f1e8",
	":flag_cd:":                                     "\U0001f1e8\U0001f1e9",
	":flag_cf:":                                     "\U0001f1e8\U0001f1eb",
	":flag_cg:":                                     "\U0001f1e8\U0001f1ec",
	":flag_ch:":                                     "\U0001f1e8\U0001f1ed",
	":flag_ci:":                                     "\U0001f1e8\U0001f1ee",
	":flag_ck:":                                     "\U0001f1e8\U0001f1f0",
	":flag_cl:":                                     "\U0001f1e8\U0001f1f1",
	":flag_cm:":                                     "\U0001f1e8\U0001f1f2",
	":flag_cn:":                                     "\U0001f1e8\U0001f1f3",
	":flag_co:":                                     "\U0001f1e8\U0001f1f4",
	":flag_cp:":                                     "\U0001f1e8\U0001f1f5",
	":flag_cr:":                                     "\U0001f1e8\U0001f1f7",
	":flag_cu:":                                     "\U0001f1e8\U0001f1fa",
	":flag_cv:":                                     "\U0001f1e8\U0001f1fb",
	":flag_cw:":                                     "\U0001f1e8\U0001f1fc",
	":flag_cx:":                                     "\U0001f1e8\U0001f1fd",
	":flag_cy:":                                     "\U0001f1e8\U0001f1fe",
	":flag_cz:":                                     "\U0001f1e8\U0001f1ff",
	":flag_de:":                                     "\U0001f1e9\U0001f1ea",
	":flag_dg:":                                     "\U0001f1e9\U0001f1ec",
	":flag_dj:":                                     "\U0001f1e9\U0001f1ef",
	":flag_dk:":                                     "\U0001f1e9\U0001f1f0",
	":flag_dm:":                                     "\U0001f1e9\U0001f1f2",
	":flag_do:":                                     "\U0001f1e9\U0001f1f4",
	":flag_dz:":                                     "\U0001f1e9\U0001f1ff",
	":flag_ea:":                                     "\U0001f1ea\U0001f1e6",
	":flag_ec:":                                     "\U0001f1ea\U0001f1e8",
	":flag_ee:":                                     "\U0001f1ea\U0001f1ea",
	":flag_eg:":                                     "\U0001f1ea\U0001f1ec",
	":flag_eh:":                                     "\U0001f1ea\U0001f1ed",
	":flag_er:":                                     "\U0001f1ea\U0001f1f7",
	":flag_es:":                                     "\U0001f1ea\U0001f1f8",
	":flag_et:":                                     "\U0001f1ea\U0001f1f9",
	":flag_eu:":                                     "\U0001f1ea\U0001f1fa",
	":flag_fi:":                                     "\U0001f1eb\U0001f1ee",
	":flag_fj:":                                     "\U0001f1eb\U0001f1ef",
	":flag_fk:":                                     "\U0001f1eb\U0001f1f0",
	":flag_fm:":                                     "\U0001f1eb\U0001f1f2",
	":flag_fo:":                                     "\U0001f1eb\U0001f1f4",
	":flag_fr:":                                     "\U0001f1eb\U0001f1f7",
	":flag_ga:":                                     "\U0001f1ec\U0001f1e6",
	":flag_gb:":                                     "\U0001f1ec\U0001f1e7",
	":flag_gd:":                                     "\U0001f1ec\U0001f1e9",
	":flag_ge:":                                     "\U0001f1ec\U0001f1ea",
	":flag_gf:":                                     "\U0001f1ec\U0001f1eb",
	":flag_gg:":                                     "\U0001f1ec\U0001f1ec",
	":flag_gh:":                                     "\U0001f1ec\U0001f1ed",
	":flag_gi:":                                     "\U0001f1ec\U0001f1ee",
	":flag_gl:":                                     "\U0001f1ec\U0001f1f1",
	":flag_gm:":                                     "\U0001f1ec\U0001f1f2",
	":flag_gn:":                                     "\U0001f1ec\U0001f1f3",
	":flag_gp:":                                     "\U0001f1ec\U0001f1f5",
	":flag_gq:":                                     "\U0001f1ec\U0001f1f6",
	":flag_gr:":                                     "\U0001f1ec\U0001f1f7",
	":flag_gs:":                                     "\U0001f1ec\U0001f1f8",
	":flag_gt:":                                     "\U0001f1ec\U0001f1f9",
	":flag_gu:":                                     "\U0001f1ec\U0001f1fa",
	":flag_gw:":                                     "\U0001f1ec\U0001f1fc",
	":flag_gy:":                                     "\U0001f1ec\U0001f1fe",
	":flag_hk:":                                     "\U0001f1ed\U0001f1f0",
	":flag_hm:":                                     "\U0001f1ed\U0001f1f2",
	":flag_hn:":                                     "\U0001f1ed\U0001f1f3",
	":flag_hr:":                                     "\U0001f1ed\U0001f1f7",
	":flag_ht:":                                     "\U0001f1ed\U0001f1f9",
	":flag_hu:":                                     "\U0001f1ed\U0001f1fa",
	":flag_ic:":                                     "\U0001f1ee\U0001f1e8",
	":flag_id:":                                     "\U0001f1ee\U0001f1e9",
	":flag_ie:":                                     "\U0001f1ee\U0001f1ea",
	":flag_il:":                                     "\U0001f1ee\U0001f1f1",
	":flag_im:":                                     "\U0001f1ee\U0001f1f2",
	":flag_in:":                                     "\U0001f1ee\U0001f1f3",
	":flag_in_hole:":                                "\U000026f3",
	":flag_io:":                                     "\U0001f1ee\U0001f1f4",
	":flag_iq:":                                     "\U0001f1ee\U0001f1f6",
	":flag_ir:":                                     "\U0001f1ee\U0001f1f7",
	":flag_is:":                                     "\U0001f1ee\U0001f1f8",
	":flag_it:":                                     "\U0001f1ee\U0001f1f9",
	":flag_je:":                                     "\U0001f1ef\U0001f1ea",
	":flag_jm:":                                     "\U0001f1ef\U0001f1f2",
	":flag_jo:":                                     "\U0001f1ef\U0001f1f4",
	":flag_jp:":                                     "\U0001f1ef\U0001f1f5",
	":flag_ke:":                                     "\U0001f1f0\U0001f1ea",
	":flag_kg:":                                     "\U0001f1f0\U0001f1ec",
	":flag_kh:":                                     "\U0001f1f0\U0001f1ed",
	":flag_ki:":                                     "\U0001f1f0\U0001f1ee",
	":flag_km:":                                     "\U0001f1f0\U0001f1f2",
	":flag_kn:":                                     "\U0001f1f0\U0001f1f3",
	":flag_kp:":                                     "\U0001f1f0\U0001f1f5",
	":flag_kr:":                                     "\U0001f1f0\U0001f1f7",
	":flag_kw:":                                     "\U0001f1f0\U0001f1fc",
	":flag_ky:":                                     "\U0001f1f0\U0001f1fe",
	":flag_kz:":                                     "\U0001f1f0\U0001f1ff",
	":flag_la:":                                     "\U0001f1f1\U0001f1e6",
	":flag_lb:":                                     "\U0001f1f1\U0001f1e7",
	":flag_lc:":                                     "\U0001f1f1\U0001f1e8",
	":flag_li:":                                     "\U0001f1f1\U0001f1ee",
	":flag_lk:":                                     "\U0001f1f1\U0001f1f0",
	":flag_lr:":                                     "\U0001f1f1\U0001f1f7",
	":flag_ls:":                                     "\U0001f1f1\U0001f1f8",
	":flag_lt:":                                     "\U0001f1f1\U0001f1f9",
	":flag_lu:":                                     "\U0001f1f1\U0001f1fa",
	":flag_lv:":                                     "\U0001f1f1\U0001f1fb",
	":flag_ly:":                                     "\U0001f1f1\U0001f1fe",
	":flag_ma:":                                     "\U0001f1f2\U0001f1e6",
	":flag_mc:":                                     "\U0001f1f2\U0001f1e8",
	":flag_md:":                                     "\U0001f1f2\U0001f1e9",
	":flag_me:":                                     "\U0001f1f2\U0001f1ea",
	":flag_mf:":                                     "\U0001f1f2\U0001f1eb",
	":flag_mg:":                                     "\U0001f1f2\U0001f1ec",
	":flag_mh:":                                     "\U0001f1f2\U0001f1ed",
	":flag_mk:":                                     "\U0001f1f2\U0001f1f0",
	":flag_ml:":                                     "\U0001f1f2\U0001f1f1",
	":flag_mm:":                                     "\U0001f1f2\U0001f1f2",
	":flag_mn:":                                     "\U0001f1f2\U0001f1f3",
	":flag_mo:":                                     "\U0001f1f2\U0001f1f4",
	":flag_mp:":                                     "\U0001f1f2\U0001f1f5",
	":flag_mq:":                                     "\U0001f1f2\U0001f1f6",
	":flag_mr:":                                     "\U0001f1f2\U0001f1f7",
	":flag_ms:":                                     "\U0001f1f2\U0001f1f8",
	":flag_mt:":                                     "\U0001f1f2\U0001f1f9",
	":flag_mu:":                                     "\U0001f1f2\U0001f1fa",
	":flag_mv:":                                     "\U0001f1f2\U0001f1fb",
	":flag_mw:":                                     "\U0001f1f2\U0001f1fc",
	":flag_mx:":                                     "\U0001f1f2\U0001f1fd",
	":flag_my:":                                     "\U0001f1f2\U0001f1fe",
	":flag_mz:":                                     "\U0001f1f2\U0001f1ff",
	":flag_na:":                                     "\U0001f1f3\U0001f1e6",
	":flag_nc:":                                     "\U0001f1f3\U0001f1e8",
	":flag_ne:":                                     "\U0001f1f3\U0001f1ea",
	":flag_nf:":                                     "\U0001f1f3\U0001f1eb",
	":flag_ng:":                                     "\U0001f1f3\U0001f1ec",
	":flag_ni:":                                     "\U0001f1f3\U0001f1ee",
	":flag_nl:":                                     "\U0001f1f3\U0001f1f1",
	":flag_no:":                                     "\U0001f1f3\U0001f1f4",
	":flag_np:":                                     "\U0001f1f3\U0001f1f5",
	":flag_nr:":                                     "\U0001f1f3\U0001f1f7",
	":flag_nu:":                                     "\U0001f1f3\U0001f1fa",
	":flag_nz:":                                     "\U0001f1f3\U0001f1ff",
	":flag_om:":                                     "\U0001f1f4\U0001f1f2",
	":flag_pa:":                                     "\U0001f1f5\U0001f1e6",
	":flag_pe:":                                     "\U0001f1f5\U0001f1ea",
	":flag_pf:":                                     "\U0001f1f5\U0001f1eb",
	":flag_pg:":                                     "\U0001f1f5\U0001f1ec",
	":flag_ph:":                                     "\U0001f1f5\U0001f1ed",
	":flag_pk:":                                     "\U0001f1f5\U0001f1f0",
	":flag_pl:":                                     "\U0001f1f5\U0001f1f1",
	":flag_pm:":                                     "\U0001f1f5\U0001f1f2",
	":flag_pn:":                                     "\U0001f1f5\U0001f1f3",
	":flag_pr:":                                     "\U0001f1f5\U0001f1f7",
	":flag_ps:":                                     "\U0001f1f5\U0001f1f8",
	":flag_pt:":                                     "\U0001f1f5\U0001f1f9",
	":flag_pw:":                                     "\U0001f1f5\U0001f1fc",
	":flag_py:":                                     "\U0001f1f5\U0001f1fe",
	":flag_qa:":                                     "\U0001f1f6\U0001f1e6",
	":flag_re:":                                     "\U0001f1f7\U0001f1ea",
	":flag_ro:":                                     "\U0001f1f7\U0001f1f4",
	":flag_rs:":                                     "\U0001f1f7\U0001f1f8",
	":flag_ru:":                                     "\U0001f1f7\U0001f1fa",
	":flag_rw:":                                     "\U0001f1f7\U0001f1fc",
	":flag_sa:":                                     "\U0001f1f8\U0001f1e6",
	":flag_sb:":                                     "\U0001f1f8\U0001f1e7",
	":flag_sc:":                                     "\U0001f1f8\U0001f1e8",
	":flag_sd:":                                     "\U0001f1f8\U0001f1e9",
	":flag_se:":                                     "\U0001f1f8\U0001f1ea",
	":flag_sg:":                                     "\U0001f1f8\U0001f1ec",
	":flag_sh:":                                     "\U0001f1f8\U0001f1ed",
	":flag_si:":                                     "\U0001f1f8\U0001f1ee",
	":flag_sj:":                                     "\U0001f1f8\U0001f1ef",
	":flag_sk:":                                     "\U0001f1f8\U0001f1f0",
	":flag_sl:":                                     "\U0001f1f8\U0001f1f1",
	":flag_sm:":                                     "\U0001f1f8\U0001f1f2",
	":flag_sn:":                                     "\U0001f1f8\U0001f1f3",
	":flag_so:":                                     "\U0001f1f8\U0001f1f4",
	":flag_sr:":                                     "\U0001f1f8\U0001f1f7",
	":flag_ss:":                                     "\U0001f1f8\U0001f1f8",
	":flag_st:":                                     "\U0001f1f8\U0001f1f9",
	":flag_sv:":                                     "\U0001f1f8\U0001f1fb",
	":flag_sx:":                                     "\U0001f1f8\U0001f1fd",
	":flag_sy:":                                     "\U0001f1f8\U0001f1fe",
	":flag_sz:":                                     "\U0001f1f8\U0001f1ff",
	":flag_ta:":                                     "\U0001f1f9\U0001f1e6",
	":flag_tc:":                                     "\U0001f1f9\U0001f1e8",
	":flag_td:":                                     "\U0001f1f9\U0001f1e9",
	":flag_tf:":                                     "\U0001f1f9\U0001f1eb",
	":flag_tg:":                                     "\U0001f1f9\U0001f1ec",
	":flag_th:":                                     "\U0001f1f9\U0001f1ed",
	":flag_tj:":                                     "\U0001f1f9\U0001f1ef",
	":flag_tk:":                                     "\U0001f1f9\U0001f1f0",
	":flag_tl:":                                     "\U0001f1f9\U0001f1f1",
	":flag_tm:":                                     "\U0001f1f9\U0001f1f2",
	":flag_tn:":                                     "\U0001f1f9\U0001f1f3",
	":flag_to:":                                     "\U0001f1f9\U0001f1f4",
	":flag_tr:":                                     "\U0001f1f9\U0001f1f7",
	":flag_tt:":                                     "\U0001f1f9\U0001f1f9",
	":flag_tv:":                                     "\U0001f1f9\U0001f1fb",
	":flag_tw:":                                     "\U0001f1f9\U0001f1fc",
	":flag_tz:":                                     "\U0001f1f9\U0001f1ff",
	":flag_ua:":                                     "\U0001f1fa\U0001f1e6",
	":flag_ug:":                                     "\U0001f1fa\U0001f1ec",
	":flag_um:":                                     "\U0001f1fa\U0001f1f2",
	":flag_us:":                                     "\U0001f1fa\U0001f1f8",
	":flag_uy:":                                     "\U0001f1fa\U0001f1fe",
	":flag_uz:":                                     "\U0001f1fa\U0001f1ff",
	":flag_va:":                                     "\U0001f1fb\U0001f1e6",
	":flag_vc:":                                     "\U0001f1fb\U0001f1e8",
	":flag_ve:":                                     "\U0001f1fb\U0001f1ea",
	":flag_vg:":                                     "\U0001f1fb\U0001f1ec",
	":flag_vi:":                                     "\U0001f1fb\U0001f1ee",
	":flag_vn:":                                     "\U0001f1fb\U0001f1f3",
	":flag_vu:":                                     "\U0001f1fb\U0001f1fa",
	":flag_wf:":                                     "\U0001f1fc\U0001f1eb",
	":flag_white:":                                  "\U0001f3f3",
	":flag_ws:":                                     "\U0001f1fc\U0001f1f8",
	":flag_xk:":                                     "\U0001f1fd\U0001f1f0",
	":flag_ye:":                                     "\U0001f1fe\U0001f1ea",
	":flag_yt:":                                     "\U0001f1fe\U0001f1f9",
	":flag_za:":                                     "\U0001f1ff\U0001f1e6",
	":flag_zm:":                                     "\U0001f1ff\U0001f1f2",
	":flag_zw:":                                     "\U0001f1ff\U0001f1fc",
	":flag_Åland_Islands:":                          "\U0001f1e6\U0001f1fd",
	":flags:":                                       "\U0001f38f",
	":flamingo:":                                    "\U0001f9a9",
	":flashlight:":                                  "\U0001f526",
	":flat_shoe:":                                   "\U0001f97f",
	":fleur-de-lis:":                                "\U0000269c",
	":fleur_de_lis:":                                "\u269c",
	":flexed_biceps:":                               "\U0001f4aa",
	":flight_arrival:":                              "\U0001f6ec",
	":flight_departure:":                            "\U0001f6eb",
	":flipper:":                                     "\U0001f42c",
	":floppy_disk:":                                 "\U0001f4be",
	":flower_playing_cards:":                        "\U0001f3b4",
	":flushed:":                                     "\U0001f633",
	":flushed_face:":                                "\U0001f633",
	":flying_disc:":                                 "\U0001f94f",
	":flying_saucer:":                               "\U0001f6f8",
	":fog:":                                         "\U0001f32b",
	":foggy:":                                       "\U0001f301",
	":folded_hands:":                                "\U0001f64f",
	":foot:":                                        "\U0001f9b6",
	":football:":                                    "\U0001f3c8",
	":footprints:":                                  "\U0001f463",
	":fork_and_knife:":                              "\U0001f374",
	":fork_and_knife_with_plate:":                   "\U0001f37d",
	":fork_knife_plate:":                            "\U0001f37d",
	":fortune_cookie:":                              "\U0001f960",
	":fountain:":                                    "\U000026f2",
	":fountain_pen:":                                "\U0001f58b",
	":four:":                                        "4\ufe0f\u20e3",
	":four-thirty:":                                 "\U0001f55f",
	":four_leaf_clover:":                            "\U0001f340",
	":four_o’clock:":                                "\U0001f553",
	":fox:":                                         "\U0001f98a",
	":fox_face:":                                    "\U0001f98a",
	":fr:":                                          "\U0001f1eb\U0001f1f7",
	":frame_photo:":                                 "\U0001f5bc",
	":framed_picture:":                              "\U0001f5bc",
	":free:":                                        "\U0001f193",
	":french_bread:":                                "\U0001f956",
	":french_fries:":                                "\U0001f35f",
	":french_guiana:":                               "\U0001f1ec\U0001f1eb",
	":french_polynesia:":                            "\U0001f1f5\U0001f1eb",
	":french_southern_territories:":                 "\U0001f1f9\U0001f1eb",
	":fried_egg:":                                   "\U0001f373",
	":fried_shrimp:":                                "\U0001f364",
	":fries:":                                       "\U0001f35f",
	":frog:":                                        "\U0001f438",
	":front-facing_baby_chick:":                     "\U0001f425",
	":frowning:":                                    "\U0001f626",
	":frowning2:":                                   "\u2639",
	":frowning_face:":                               "\U00002639",
	":frowning_face_with_open_mouth:":               "\U0001f626",
	":frowning_man:":                                "\U0001f64d\u200d\u2642",
	":frowning_person:":                             "\U0001f64d",
	":frowning_woman:":                              "\U0001f64d\u200d\u2640",
	":fu:":                                          "\U0001f595",
	":fuel_pump:":                                   "\U000026fd",
	":fuelpump:":                                    "\u26fd",
	":full_moon:":                                   "\U0001f315",
	":full_moon_face:":                              "\U0001f31d",
	":full_moon_with_face:":                         "\U0001f31d",
	":funeral_urn:":                                 "\U000026b1",
	":gabon:":                                       "\U0001f1ec\U0001f1e6",
	":gambia:":                                      "\U0001f1ec\U0001f1f2",
	":game_die:":                                    "\U0001f3b2",
	":garlic:":                                      "\U0001f9c4",
	":gb:":                                          "\U0001f1ec\U0001f1e7",
	":gear:":                                        "\U00002699",
	":gem:":                                         "\U0001f48e",
	":gem_stone:":                                   "\U0001f48e",
	":gemini:":                                      "\u264a",
	":genie:":                                       "\U0001f9de",
	":genie_man:":                                   "\U0001f9de\u200d\u2642",
	":genie_woman:":                                 "\U0001f9de\u200d\u2640",
	":georgia:":                                     "\U0001f1ec\U0001f1ea",
	":ghana:":                                       "\U0001f1ec\U0001f1ed",
	":ghost:":                                       "\U0001f47b",
	":gibraltar:":                                   "\U0001f1ec\U0001f1ee",
	":gift:":                                        "\U0001f381",
	":gift_heart:":                                  "\U0001f49d",
	":giraffe:":                                     "\U0001f992",
	":girl:":                                        "\U0001f467",
	":girl_tone1:":                                  "\U0001f467\U0001f3fb",
	":girl_tone2:":                                  "\U0001f467\U0001f3fc",
	":girl_tone3:":                                  "\U0001f467\U0001f3fd",
	":girl_tone4:":                                  "\U0001f467\U0001f3fe",
	":girl_tone5:":                                  "\U0001f467\U0001f3ff",
	":glass_of_milk:":                               "\U0001f95b",
	":glasses:":                                     "\U0001f453",
	":globe_showing_Americas:":                      "\U0001f30e",
	":globe_showing_Asia-Australia:":                "\U0001f30f",
	":globe_showing_Europe-Africa:":                 "\U0001f30d",
	":globe_with_meridians:":                        "\U0001f310",
	":gloves:":                                      "\U0001f9e4",
	":glowing_star:":                                "\U0001f31f",
	":goal:":                                        "\U0001f945",
	":goal_net:":                                    "\U0001f945",
	":goat:":                                        "\U0001f410",
	":goblin:":                                      "\U0001f47a",
	":goggles:":                                     "\U0001f97d",
	":golf:":                                        "\u26f3",
	":golfing:":                                     "\U0001f3cc",
	":golfing_man:":                                 "\U0001f3cc\ufe0f\u200d\u2642\ufe0f",
	":golfing_woman:":                               "\U0001f3cc\ufe0f\u200d\u2640\ufe0f",
	":gorilla:":                                     "\U0001f98d",
	":graduation_cap:":                              "\U0001f393",
	":grapes:":                                      "\U0001f347",
	":greece:":                                      "\U0001f1ec\U0001f1f7",
	":green_apple:":                                 "\U0001f34f",
	":green_book:":                                  "\U0001f4d7",
	":green_circle:":                                "\U0001f7e2",
	":green_heart:":                                 "\U0001f49a",
	":green_salad:":                                 "\U0001f957",
	":green_square:":                                "\U0001f7e9",
	":greenland:":                                   "\U0001f1ec\U0001f1f1",
	":grenada:":                                     "\U0001f1ec\U0001f1e9",
	":grey_exclamation:":                            "\u2755",
	":grey_question:":                               "\u2754",
	":grimacing:":                                   "\U0001f62c",
	":grimacing_face:":                              "\U0001f62c",
	":grin:":                                        "\U0001f604",
	":grinning:":                                    "\U0001f600",
	":grinning_cat:":                                "\U0001f63a",
	":grinning_cat_with_smiling_eyes:":              "\U0001f638",
	":grinning_face:":                               "\U0001f600",
	":grinning_face_with_big_eyes:":                 "\U0001f603",
	":grinning_face_with_smiling_eyes:":             "\U0001f604",
	":grinning_face_with_sweat:":                    "\U0001f605",
	":grinning_squinting_face:":                     "\U0001f606",
	":growing_heart:":                               "\U0001f497",
	":guadeloupe:":                                  "\U0001f1ec\U0001f1f5",
	":guam:":                                        "\U0001f1ec\U0001f1fa",
	":guard:":                                       "\U0001f482",
	":guard_tone1:":                                 "\U0001f482\U0001f3fb",
	":guard_tone2:":                                 "\U0001f482\U0001f3fc",
	":guard_tone3:":                                 "\U0001f482\U0001f3fd",
	":guard_tone4:":                                 "\U0001f482\U0001f3fe",
	":guard_tone5:":                                 "\U0001f482\U0001f3ff",
	":guardsman:":                                   "\U0001f482\u200d\u2642",
	":guardswoman:":                                 "\U0001f482\u200d\u2640",
	":guatemala:":                                   "\U0001f1ec\U0001f1f9",
	":guernsey:":                                    "\U0001f1ec\U0001f1ec",
	":guide_dog:":                                   "\U0001f9ae",
	":guinea:":                                      "\U0001f1ec\U0001f1f3",
	":guinea_bissau:":                               "\U0001f1ec\U0001f1fc",
	":guitar:":                                      "\U0001f3b8",
	":gun:":                                         "\U0001f52b",
	":guyana:":                                      "\U0001f1ec\U0001f1fe",
	":haircut:":                                     "\U0001f487",
	":haircut_man:":                                 "\U0001f487\u200d\u2642",
	":haircut_woman:":                               "\U0001f487\u200d\u2640",
	":haiti:":                                       "\U0001f1ed\U0001f1f9",
	":hamburger:":                                   "\U0001f354",
	":hammer:":                                      "\U0001f528",
	":hammer_and_pick:":                             "\U00002692",
	":hammer_and_wrench:":                           "\U0001f6e0",
	":hammer_pick:":                                 "\u2692",
	":hamster:":                                     "\U0001f439",
	":hand:":                                        "\u270b",
	":hand_over_mouth:":                             "\U0001f92d",
	":hand_splayed_tone1:":                          "\U0001f590\U0001f3fb",
	":hand_splayed_tone2:":                          "\U0001f590\U0001f3fc",
	":hand_splayed_tone3:":                          "\U0001f590\U0001f3fd",
	":hand_splayed_tone4:":                          "\U0001f590\U0001f3fe",
	":hand_splayed_tone5:":                          "\U0001f590\U0001f3ff",
	":hand_with_fingers_splayed:":                   "\U0001f590",
	":handbag:":                                     "\U0001f45c",
	":handball_person:":                             "\U0001f93e",
	":handshake:":                                   "\U0001f91d",
	":hankey:":                                      "\U0001f4a9",
	":hash:":                                        "#\ufe0f\u20e3",
	":hatched_chick:":                               "\U0001f425",
	":hatching_chick:":                              "\U0001f423",
	":head_bandage:":                                "\U0001f915",
	":headphone:":                                   "\U0001f3a7",
	":headphones:":                                  "\U0001f3a7",
	":health_worker:":                               "\U0001f9d1\U0000200d\U00002695\U0000fe0f",
	":hear-no-evil_monkey:":                         "\U0001f649",
	":hear_no_evil:":                                "\U0001f649",
	":heard_mcdonald_islands:":                      "\U0001f1ed\U0001f1f2",
	":heart:":                                       "\u2764",
	":heart_decoration:":                            "\U0001f49f",
	":heart_exclamation:":                           "\U00002763",
	":heart_eyes:":                                  "\U0001f60d",
	":heart_eyes_cat:":                              "\U0001f63b",
	":heart_suit:":                                  "\U00002665",
	":heart_with_arrow:":                            "\U0001f498",
	":heart_with_ribbon:":                           "\U0001f49d",
	":heartbeat:":                                   "\U0001f493",
	":heartpulse:":                                  "\U0001f497",
	":hearts:":                                      "\u2665",
	":heavy_check_mark:":                            "\u2714",
	":heavy_division_sign:":                         "\u2797",
	":heavy_dollar_sign:":                           "\U0001f4b2",
	":heavy_exclamation_mark:":                      "\u2757",
	":heavy_heart_exclamation:":                     "\u2763\ufe0f",
	":heavy_minus_sign:":                            "\u2796",
	":heavy_multiplication_x:":                      "\u2716",
	":heavy_plus_sign:":                             "\u2795",
	":hedgehog:":                                    "\U0001f994",
	":helicopter:":                                  "\U0001f681",
	":helmet_with_cross:":                           "\u26d1",
	":herb:":                                        "\U0001f33f",
	":hibiscus:":                                    "\U0001f33a",
	":high-heeled_shoe:":                            "\U0001f460",
	":high-speed_train:":                            "\U0001f684",
	":high_brightness:":                             "\U0001f506",
	":high_heel:":                                   "\U0001f460",
	":high_voltage:":                                "\U000026a1",
	":hiking_boot:":                                 "\U0001f97e",
	":hindu_temple:":                                "\U0001f6d5",
	":hippopotamus:":                                "\U0001f99b",
	":hocho:":                                       "\U0001f52a",
	":hockey:":                                      "\U0001f3d2",
	":hole:":                                        "\U0001f573",
	":hollow_red_circle:":                           "\U00002b55",
	":homes:":                                       "\U0001f3d8",
	":honduras:":                                    "\U0001f1ed\U0001f1f3",
	":honey_pot:":                                   "\U0001f36f",
	":honeybee:":                                    "\U0001f41d",
	":hong_kong:":                                   "\U0001f1ed\U0001f1f0",
	":horizontal_traffic_light:":                    "\U0001f6a5",
	":horse:":                                       "\U0001f40e",
	":horse_face:":                                  "\U0001f434",
	":horse_racing:":                                "\U0001f3c7",
	":horse_racing_tone1:":                          "\U0001f3c7\U0001f3fb",
	":horse_racing_tone2:":                          "\U0001f3c7\U0001f3fc",
	":horse_racing_tone3:":                          "\U0001f3c7\U0001f3fd",
	":horse_racing_tone4:":                          "\U0001f3c7\U0001f3fe",
	":horse_racing_tone5:":                          "\U0001f3c7\U0001f3ff",
	":hospital:":                                    "\U0001f3e5",
	":hot_beverage:":                                "\U00002615",
	":hot_dog:":                                     "\U0001f32d",
	":hot_face:":                                    "\U0001f975",
	":hot_pepper:":                                  "\U0001f336",
	":hot_springs:":                                 "\U00002668",
	":hotdog:":                                      "\U0001f32d",
	":hotel:":                                       "\U0001f3e8",
	":hotsprings:":                                  "\u2668",
	":hourglass:":                                   "\u231b",
	":hourglass_done:":                              "\U0000231b",
	":hourglass_flowing_sand:":                      "\u23f3",
	":hourglass_not_done:":                          "\U000023f3",
	":house:":                                       "\U0001f3e0",
	":house_abandoned:":                             "\U0001f3da",
	":house_with_garden:":                           "\U0001f3e1",
	":houses:":                                      "\U0001f3d8",
	":hugging:":                                     "\U0001f917",
	":hugging_face:":                                "\U0001f917",
	":hugs:":                                        "\U0001f917",
	":hundred_points:":                              "\U0001f4af",
	":hungary:":                                     "\U0001f1ed\U0001f1fa",
	":hushed:":                                      "\U0001f62f",
	":hushed_face:":                                 "\U0001f62f",
	":ice:":                                         "\U0001f9ca",
	":ice_cream:":                                   "\U0001f368",
	":ice_cube:":                                    "\U0001f9ca",
	":ice_hockey:":                                  "\U0001f3d2",
	":ice_skate:":                                   "\U000026f8",
	":icecream:":                                    "\U0001f366",
	":iceland:":                                     "\U0001f1ee\U0001f1f8",
	":id:":                                          "\U0001f194",
	":ideograph_advantage:":                         "\U0001f250",
	":imp:":                                         "\U0001f47f",
	":inbox_tray:":                                  "\U0001f4e5",
	":incoming_envelope:":                           "\U0001f4e8",
	":index_pointing_up:":                           "\U0000261d",
	":india:":                                       "\U0001f1ee\U0001f1f3",
	":indonesia:":                                   "\U0001f1ee\U0001f1e9",
	":infinity:":                                    "\U0000267e",
	":information:":                                 "\U00002139",
	":information_desk_person:":                     "\U0001f481",
	":information_source:":                          "\u2139",
	":innocent:":                                    "\U0001f607",
	":input_latin_letters:":                         "\U0001f524",
	":input_latin_lowercase:":                       "\U0001f521",
	":input_latin_uppercase:":                       "\U0001f520",
	":input_numbers:":                               "\U0001f522",
	":input_symbols:":                               "\U0001f523",
	":interrobang:":                                 "\u2049",
	":iphone:":                                      "\U0001f4f1",
	":iran:":                                        "\U0001f1ee\U0001f1f7",
	":iraq:":                                        "\U0001f1ee\U0001f1f6",
	":ireland:":                                     "\U0001f1ee\U0001f1ea",
	":island:":                                      "\U0001f3dd",
	":isle_of_man:":                                 "\U0001f1ee\U0001f1f2",
	":israel:":                                      "\U0001f1ee\U0001f1f1",
	":it:":                                          "\U0001f1ee\U0001f1f9",
	":izakaya_lantern:":                             "\U0001f3ee",
	":jack-o-lantern:":                              "\U0001f383",
	":jack_o_lantern:":                              "\U0001f383",
	":jamaica:":                                     "\U0001f1ef\U0001f1f2",
	":japan:":                                       "\U0001f5fe",
	":japanese_castle:":                             "\U0001f3ef",
	":japanese_goblin:":                             "\U0001f47a",
	":japanese_ogre:":                               "\U0001f479",
	":jeans:":                                       "\U0001f456",
	":jersey:":                                      "\U0001f1ef\U0001f1ea",
	":jigsaw:":                                      "\U0001f9e9",
	":joker:":                                       "\U0001f0cf",
	":jordan:":                                      "\U0001f1ef\U0001f1f4",
	":joy:":                                         "\U0001f602",
	":joy_cat:":                                     "\U0001f639",
	":joystick:":                                    "\U0001f579",
	":jp:":                                          "\U0001f1ef\U0001f1f5",
	":judge:":                                       "\U0001f9d1\U0000200d\U00002696\U0000fe0f",
	":juggling_person:":                             "\U0001f939",
	":kaaba:":                                       "\U0001f54b",
	":kangaroo:":                                    "\U0001f998",
	":kazakhstan:":                                  "\U0001f1f0\U0001f1ff",
	":kenya:":                                       "\U0001f1f0\U0001f1ea",
	":key:":                                         "\U0001f511",
	":key2:":                                        "\U0001f5dd",
	":keyboard:":                                    "\U00002328",
	":keycap_#:":                                    "\U00000023\U0000fe0f\U000020e3",
	":keycap_*:":                                    "\U0000002a\U0000fe0f\U000020e3",
	":keycap_0:":                                    "\U00000030\U0000fe0f\U000020e3",
	":keycap_1:":                                    "\U00000031\U0000fe0f\U000020e3",
	":keycap_10:":                                   "\U0001f51f",
	":keycap_2:":                                    "\U00000032\U0000fe0f\U000020e3",
	":keycap_3:":                                    "\U00000033\U0000fe0f\U000020e3",
	":keycap_4:":                                    "\U00000034\U0000fe0f\U000020e3",
	":keycap_5:":                                    "\U00000035\U0000fe0f\U000020e3",
	":keycap_6:":                                    "\U00000036\U0000fe0f\U000020e3",
	":keycap_7:":                                    "\U00000037\U0000fe0f\U000020e3",
	":keycap_8:":                                    "\U00000038\U0000fe0f\U000020e3",
	":keycap_9:":                                    "\U00000039\U0000fe0f\U000020e3",
	":keycap_ten:":                                  "\U0001f51f",
	":kick_scooter:":                                "\U0001f6f4",
	":kimono:":                                      "\U0001f458",
	":kiribati:":                                    "\U0001f1f0\U0001f1ee",
	":kiss:":                                        "\U0001f48f",
	":kiss_man_man:":                                "\U0001f468\U0000200d\U00002764\U0000fe0f\U0000200d\U0001f48b\U0000200d\U0001f468",
	":kiss_mark:":                                   "\U0001f48b",
	":kiss_mm:":                                     "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
	":kiss_woman_man:":                              "\U0001f469\U0000200d\U00002764\U0000fe0f\U0000200d\U0001f48b\U0000200d\U0001f468",
	":kiss_woman_woman:":                            "\U0001f469\U0000200d\U00002764\U0000fe0f\U0000200d\U0001f48b\U0000200d\U0001f469",
	":kiss_ww:":                                     "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469",
	":kissing:":                                     "\U0001f617",
	":kissing_cat:":                                 "\U0001f63d",
	":kissing_closed_eyes:":                         "\U0001f61a",
	":kissing_face:":                                "\U0001f617",
	":kissing_face_with_closed_eyes:":               "\U0001f61a",
	":kissing_face_with_smiling_eyes:":              "\U0001f619",
	":kissing_heart:":                               "\U0001f618",
	":kissing_smiling_eyes:":                        "\U0001f619",
	":kitchen_knife:":                               "\U0001f52a",
	":kite:":                                        "\U0001fa81",
	":kiwi:":                                        "\U0001f95d",
	":kiwi_fruit:":                                  "\U0001f95d",
	":kneeling_man:":                                "\U0001f9ce\u200d\u2642",
	":kneeling_person:":                             "\U0001f9ce",
	":kneeling_woman:":                              "\U0001f9ce\u200d\u2640",
	":knife:":                                       "\U0001f52a",
	":koala:":                                       "\U0001f428",
	":koko:":                                        "\U0001f201",
	":kosovo:":                                      "\U0001f1fd\U0001f1f0",
	":kr:":                                          "\U0001f1f0\U0001f1f7",
	":kuwait:":                                      "\U0001f1f0\U0001f1fc",
	":kyrgyzstan:":                                  "\U0001f1f0\U0001f1ec",
	":lab_coat:":                                    "\U0001f97c",
	":label:":                                       "\U0001f3f7",
	":lacrosse:":                                    "\U0001f94d",
	":lady_beetle:":                                 "\U0001f41e",
	":lantern:":                                     "\U0001f3ee",
	":laos:":                                        "\U0001f1f1\U0001f1e6",
	":laptop:":                                      "\U0001f4bb",
	":large_blue_circle:":                           "\U0001f535",
	":large_blue_diamond:":                          "\U0001f537",
	":large_orange_diamond:":                        "\U0001f536",
	":last_quarter_moon:":                           "\U0001f317",
	":last_quarter_moon_face:":                      "\U0001f31c",
	":last_quarter_moon_with_face:":                 "\U0001f31c",
	":last_track_button:":                           "\U000023ee",
	":latin_cross:":                                 "\U0000271d",
	":latvia:":                                      "\U0001f1f1\U0001f1fb",
	":laughing:":                                    "\U0001f606",
	":leaf_fluttering_in_wind:":                     "\U0001f343",
	":leafy_green:":                                 "\U0001f96c",
	":leaves:":                                      "\U0001f343",
	":lebanon:":                                     "\U0001f1f1\U0001f1e7",
	":ledger:":                                      "\U0001f4d2",
	":left-facing_fist:":                            "\U0001f91b",
	":left-right_arrow:":                            "\U00002194",
	":left_arrow:":                                  "\U00002b05",
	":left_arrow_curving_right:":                    "\U000021aa",
	":left_facing_fist:":                            "\U0001f91b",
	":left_facing_fist_tone1:":                      "\U0001f91b\U0001f3fb",
	":left_facing_fist_tone2:":                      "\U0001f91b\U0001f3fc",
	":left_facing_fist_tone3:":                      "\U0001f91b\U0001f3fd",
	":left_facing_fist_tone4:":                      "\U0001f91b\U0001f3fe",
	":left_facing_fist_tone5:":                      "\U0001f91b\U0001f3ff",
	":left_luggage:":                                "\U0001f6c5",
	":left_right_arrow:":                            "\u2194",
	":left_speech_bubble:":                          "\U0001f5e8",
	":leftwards_arrow_with_hook:":                   "\u21a9",
	":leg:":                                         "\U0001f9b5",
	":lemon:":                                       "\U0001f34b",
	":leo:":                                         "\u264c",
	":leopard:":                                     "\U0001f406",
	":lesotho:":                                     "\U0001f1f1\U0001f1f8",
	":level_slider:":                                "\U0001f39a",
	":liberia:":                                     "\U0001f1f1\U0001f1f7",
	":libra:":                                       "\u264e",
	":libya:":                                       "\U0001f1f1\U0001f1fe",
	":liechtenstein:":                               "\U0001f1f1\U0001f1ee",
	":light_bulb:":                                  "\U0001f4a1",
	":light_rail:":                                  "\U0001f688",
	":link:":                                        "\U0001f517",
	":linked_paperclips:":                           "\U0001f587",
	":lion:":                                        "\U0001f981",
	":lion_face:":                                   "\U0001f981",
	":lips:":                                        "\U0001f444",
	":lipstick:":                                    "\U0001f484",
	":lithuania:":                                   "\U0001f1f1\U0001f1f9",
	":litter_in_bin_sign:":                          "\U0001f6ae",
	":lizard:":                                      "\U0001f98e",
	":llama:":                                       "\U0001f999",
	":lobster:":                                     "\U0001f99e",
	":lock:":                                        "\U0001f512",
	":lock_with_ink_pen:":                           "\U0001f50f",
	":locked:":                                      "\U0001f512",
	":locked_with_key:":                             "\U0001f510",
	":locked_with_pen:":                             "\U0001f50f",
	":locomotive:":                                  "\U0001f682",
	":lollipop:":                                    "\U0001f36d",
	":loop:":                                        "\u27bf",
	":lotion_bottle:":                               "\U0001f9f4",
	":lotus_position:":                              "\U0001f9d8",
	":lotus_position_man:":                          "\U0001f9d8\u200d\u2642",
	":lotus_position_woman:":                        "\U0001f9d8\u200d\u2640",
	":loud_sound:":                                  "\U0001f50a",
	":loudly_crying_face:":                          "\U0001f62d",
	":loudspeaker:":                                 "\U0001f4e2",
	":love-you_gesture:":                            "\U0001f91f",
	":love_hotel:":                                  "\U0001f3e9",
	":love_letter:":                                 "\U0001f48c",
	":love_you_gesture:":                            "\U0001f91f",
	":love_you_gesture_tone1:":                      "\U0001f91f\U0001f3fb",
	":love_you_gesture_tone2:":                      "\U0001f91f\U0001f3fc",
	":love_you_gesture_tone3:":                      "\U0001f91f\U0001f3fd",
	":love_you_gesture_tone4:":                      "\U0001f91f\U0001f3fe",
	":love_you_gesture_tone5:":                      "\U0001f91f\U0001f3ff",
	":low_brightness:":                              "\U0001f505",
	":luggage:":                                     "\U0001f9f3",
	":luxembourg:":                                  "\U0001f1f1\U0001f1fa",
	":lying_face:":                                  "\U0001f925",
	":m:":                                           "\u24dc",
	":macau:":                                       "\U0001f1f2\U0001f1f4",
	":macedonia:":                                   "\U0001f1f2\U0001f1f0",
	":madagascar:":                                  "\U0001f1f2\U0001f1ec",
	":mag:":                                         "\U0001f50d",
	":mag_right:":                                   "\U0001f50e",
	":mage:":                                        "\U0001f9d9",
	":mage_man:":                                    "\U0001f9d9\u200d\u2642",
	":mage_tone1:":                                  "\U0001f9d9\U0001f3fb",
	":mage_tone2:":                                  "\U0001f9d9\U0001f3fc",
	":mage_tone3:":                                  "\U0001f9d9\U0001f3fd",
	":mage_tone4:":                                  "\U0001f9d9\U0001f3fe",
	":mage_tone5:":                                  "\U0001f9d9\U0001f3ff",
	":mage_woman:":                                  "\U0001f9d9\u200d\u2640",
	":magnet:":                                      "\U0001f9f2",
	":magnifying_glass_tilted_left:":                "\U0001f50d",
	":magnifying_glass_tilted_right:":               "\U0001f50e",
	":mahjong:":                                     "\U0001f004",
	":mahjong_red_dragon:":                          "\U0001f004",
	":mailbox:":                                     "\U0001f4eb",
	":mailbox_closed:":                              "\U0001f4ea",
	":mailbox_with_mail:":                           "\U0001f4ec",
	":mailbox_with_no_mail:":                        "\U0001f4ed",
	":malawi:":                                      "\U0001f1f2\U0001f1fc",
	":malaysia:":                                    "\U0001f1f2\U0001f1fe",
	":maldives:":                                    "\U0001f1f2\U0001f1fb",
	":male_detective:":                              "\U0001f575\ufe0f\u200d\u2642\ufe0f",
	":male_sign:":                                   "\U00002642",
	":mali:":                                        "\U0001f1f2\U0001f1f1",
	":malta:":                                       "\U0001f1f2\U0001f1f9",
	":man:":                                         "\U0001f468",
	":man_artist:":                                  "\U0001f468\U0000200d\U0001f3a8",
	":man_artist_tone1:":                            "\U0001f468\U0001f3fb\u200d\U0001f3a8",
	":man_artist_tone2:":                            "\U0001f468\U0001f3fc\u200d\U0001f3a8",
	":man_artist_tone3:":                            "\U0001f468\U0001f3fd\u200d\U0001f3a8",
	":man_artist_tone4:":                            "\U0001f468\U0001f3fe\u200d\U0001f3a8",
	":man_artist_tone5:":                            "\U0001f468\U0001f3ff\u200d\U0001f3a8",
	":man_astronaut:":                               "\U0001f468\U0000200d\U0001f680",
	":man_astronaut_tone1:":                         "\U0001f468\U0001f3fb\u200d\U0001f680",
	":man_astronaut_tone2:":                         "\U0001f468\U0001f3fc\u200d\U0001f680",
	":man_astronaut_tone3:":                         "\U0001f468\U0001f3fd\u200d\U0001f680",
	":man_astronaut_tone4:":                         "\U0001f468\U0001f3fe\u200d\U0001f680",
	":man_astronaut_tone5:":                         "\U0001f468\U0001f3ff\u200d\U0001f680",
	":man_bald:":                                    "\U0001f468\U0000200d\U0001f9b2",
	":man_beard:":                                   "\U0001f9d4",
	":man_biking:":                                  "\U0001f6b4\U0000200d\U00002642\U0000fe0f",
	":man_biking_tone1:":                            "\U0001f6b4\U0001f3fb\u200d\u2642\ufe0f",
	":man_biking_tone2:":                            "\U0001f6b4\U0001f3fc\u200d\u2642\ufe0f",
	":man_biking_tone3:":                            "\U0001f6b4\U0001f3fd\u200d\u2642\ufe0f",
	":man_biking_tone4:":                            "\U0001f6b4\U0001f3fe\u200d\u2642\ufe0f",
	":man_biking_tone5:":                            "\U0001f6b4\U0001f3ff\u200d\u2642\ufe0f",
	":man_blond_hair:":                              "\U0001f471\U0000200d\U00002642\U0000fe0f",
	":man_bouncing_ball:":                           "\U000026f9\U0000fe0f\U0000200d\U00002642\U0000fe0f",
	":man_bouncing_ball_tone1:":                     "\u26f9\U0001f3fb\u200d\u2642\ufe0f",
	":man_bouncing_ball_tone2:":                     "\u26f9\U0001f3fc\u200d\u2642\ufe0f",
	":man_bouncing_ball_tone3:":                     "\u26f9\U0001f3fd\u200d\u2642\ufe0f",
	":man_bouncing_ball_tone4:":                     "\u26f9\U0001f3fe\u200d\u2642\ufe0f",
	":man_bouncing_ball_tone5:":                     "\u26f9\U0001f3ff\u200d\u2642\ufe0f",
	":man_bowing:":                                  "\U0001f647\U0000200d\U00002642\U0000fe0f",
	":man_bowing_tone1:":                            "\U0001f647\U0001f3fb\u200d\u2642\ufe0f",
	":man_bowing_tone2:":                            "\U0001f647\U0001f3fc\u200d\u2642\ufe0f",
	":man_bowing_tone3:":                            "\U0001f647\U0001f3fd\u200d\u2642\ufe0f",
	":man_bowing_tone4:":                            "\U0001f647\U0001f3fe\u200d\u2642\ufe0f",
	":man_bowing_tone5:":                            "\U0001f647\U0001f3ff\u200d\u2642\ufe0f",
	":man_cartwheeling:":                            "\U0001f938\U0000200d\U00002642\U0000fe0f",
	":man_cartwheeling_tone1:":                      "\U0001f938\U0001f3fb\u200d\u2642\ufe0f",
	":man_cartwheeling_tone2:":                      "\U0001f938\U0001f3fc\u200d\u2642\ufe0f",
	":man_cartwheeling_tone3:":                      "\U0001f938\U0001f3fd\u200d\u2642\ufe0f",
	":man_cartwheeling_tone4:":                      "\U0001f938\U0001f3fe\u200d\u2642\ufe0f",
	":man_cartwheeling_tone5:":                      "\U0001f938\U0001f3ff\u200d\u2642\ufe0f",
	":man_climbing:":                                "\U0001f9d7\U0000200d\U00002642\U0000fe0f",
	":man_climbing_tone1:":                          "\U0001f9d7\U0001f3fb\u200d\u2642\ufe0f",
	":man_climbing_tone2:":                          "\U0001f9d7\U0001f3fc\u200d\u2642\ufe0f",
	":man_climbing_tone3:":                          "\U0001f9d7\U0001f3fd\u200d\u2642\ufe0f",
	":man_climbing_tone4:":                          "\U0001f9d7\U0001f3fe\u200d\u2642\ufe0f",
	":man_climbing_tone5:":                          "\U0001f9d7\U0001f3ff\u200d\u2642\ufe0f",
	":man_construction_worker:":                     "\U0001f477\U0000200d\U00002642\U0000fe0f",
	":man_construction_worker_tone1:":               "\U0001f477\U0001f3fb\u200d\u2642\ufe0f",
	":man_construction_worker_tone2:":               "\U0001f477\U0001f3fc\u200d\u2642\ufe0f",
	":man_construction_worker_tone3:":               "\U0001f477\U0001f3fd\u200d\u2642\ufe0f",
	":man_construction_worker_tone4:":               "\U0001f477\U0001f3fe\u200d\u2642\ufe0f",
	":man_construction_worker_tone5:":               "\U0001f477\U0001f3ff\u200d\u2642\ufe0f",
	":man_cook:":                                    "\U0001f468\U0000200d\U0001f373",
	":man_cook_tone1:":                              "\U0001f468\U0001f3fb\u200d\U0001f373",
	":man_cook_tone2:":                              "\U0001f468\U0001f3fc\u200d\U0001f373",
	":man_cook_tone3:":                              "\U0001f468\U0001f3fd\u200d\U0001f373",
	":man_cook_tone4:":                              "\U0001f468\U0001f3fe\u200d\U0001f373",
	":man_cook_tone5:":                              "\U0001f468\U0001f3ff\u200d\U0001f373",
	":man_curly_hair:":                              "\U0001f468\U0000200d\U0001f9b1",
	":man_dancing:":                                 "\U0001f57a",
	":man_dancing_tone1:":                           "\U0001f57a\U0001f3fb",
	":man_dancing_tone2:":                           "\U0001f57a\U0001f3fc",
	":man_dancing_tone3:":                           "\U0001f57a\U0001f3fd",
	":man_dancing_tone4:":                           "\U0001f57a\U0001f3fe",
	":man_dancing_tone5:":                           "\U0001f57a\U0001f3ff",
	":man_detective:":                               "\U0001f575\U0000fe0f\U0000200d\U00002642\U0000fe0f",
	":man_detective_tone1:":                         "\U0001f575\U0001f3fb\u200d\u2642\ufe0f",
	":man_detective_tone2:":                         "\U0001f575\U0001f3fc\u200d\u2642\ufe0f",
	":man_detective_tone3:":                         "\U0001f575\U0001f3fd\u200d\u2642\ufe0f",
	":man_detective_tone4:":                         "\U0001f575\U0001f3fe\u200d\u2642\ufe0f",
	":man_detective_tone5:":                         "\U0001f575\U0001f3ff\u200d\u2642\ufe0f",
	":man_elf:":                                     "\U0001f9dd\U0000200d\U00002642\U0000fe0f",
	":man_elf_tone1:":                               "\U0001f9dd\U0001f3fb\u200d\u2642\ufe0f",
	":man_elf_tone2:":                               "\U0001f9dd\U0001f3fc\u200d\u2642\ufe0f",
	":man_elf_tone3:":                               "\U0001f9dd\U0001f3fd\u200d\u2642\ufe0f",
	":man_elf_tone4:":                               "\U0001f9dd\U0001f3fe\u200d\u2642\ufe0f",
	":man_elf_tone5:":                               "\U0001f9dd\U0001f3ff\u200d\u2642\ufe0f",
	":man_facepalming:":                             "\U0001f926\U0000200d\U00002642\U0000fe0f",
	":man_facepalming_tone1:":                       "\U0001f926\U0001f3fb\u200d\u2642\ufe0f",
	":man_facepalming_tone2:":                       "\U0001f926\U0001f3fc\u200d\u2642\ufe0f",
	":man_facepalming_tone3:":                       "\U0001f926\U0001f3fd\u200d\u2642\ufe0f",
	":man_facepalming_tone4:":                       "\U0001f926\U0001f3fe\u200d\u2642\ufe0f",
	":man_facepalming_tone5:":                       "\U0001f926\U0001f3ff\u200d\u2642\ufe0f",
	":man_factory_worker:":                          "\U0001f468\U0000200d\U0001f3ed",
	":man_factory_worker_tone1:":                    "\U0001f468\U0001f3fb\u200d\U0001f3ed",
	":man_factory_worker_tone2:":                    "\U0001f468\U0001f3fc\u200d\U0001f3ed",
	":man_factory_worker_tone3:":                    "\U0001f468\U0001f3fd\u200d\U0001f3ed",
	":man_factory_worker_tone4:":                    "\U0001f468\U0001f3fe\u200d\U0001f3ed",
	":man_factory_worker_tone5:":                    "\U0001f468\U0001f3ff\u200d\U0001f3ed",
	":man_fairy:":                                   "\U0001f9da\U0000200d\U00002642\U0000fe0f",
	":man_fairy_tone1:":                             "\U0001f9da\U0001f3fb\u200d\u2642\ufe0f",
	":man_fairy_tone2:":                             "\U0001f9da\U0001f3fc\u200d\u2642\ufe0f",
	":man_fairy_tone3:":                             "\U0001f9da\U0001f3fd\u200d\u2642\ufe0f",
	":man_fairy_tone4:":                             "\U0001f9da\U0001f3fe\u200d\u2642\ufe0f",
	":man_fairy_tone5:":                             "\U0001f9da\U0001f3ff\u200d\u2642\ufe0f",
	":man_farmer:":                                  "\U0001f468\U0000200d\U0001f33e",
	":man_farmer_tone1:":                            "\U0001f468\U0001f3fb\u200d\U0001f33e",
	":man_farmer_tone2:":                            "\U0001f468\U0001f3fc\u200d\U0001f33e",
	":man_farmer_tone3:":                            "\U0001f468\U0001f3fd\u200d\U0001f33e",
	":man_farmer_tone4:":                            "\U0001f468\U0001f3fe\u200d\U0001f33e",
	":man_farmer_tone5:":                            "\U0001f468\U0001f3ff\u200d\U0001f33e",
	":man_firefighter:":                             "\U0001f468\U0000200d\U0001f692",
	":man_firefighter_tone1:":                       "\U0001f468\U0001f3fb\u200d\U0001f692",
	":man_firefighter_tone2:":                       "\U0001f468\U0001f3fc\u200d\U0001f692",
	":man_firefighter_tone3:":                       "\U0001f468\U0001f3fd\u200d\U0001f692",
	":man_firefighter_tone4:":                       "\U0001f468\U0001f3fe\u200d\U0001f692",
	":man_firefighter_tone5:":                       "\U0001f468\U0001f3ff\u200d\U0001f692",
	":man_frowning:":                                "\U0001f64d\U0000200d\U00002642\U0000fe0f",
	":man_frowning_tone1:":                          "\U0001f64d\U0001f3fb\u200d\u2642\ufe0f",
	":man_frowning_tone2:":                          "\U0001f64d\U0001f3fc\u200d\u2642\ufe0f",
	":man_frowning_tone3:":                          "\U0001f64d\U0001f3fd\u200d\u2642\ufe0f",
	":man_frowning_tone4:":                          "\U0001f64d\U0001f3fe\u200d\u2642\ufe0f",
	":man_frowning_tone5:":                          "\U0001f64d\U0001f3ff\u200d\u2642\ufe0f",
	":man_genie:":                                   "\U0001f9de\U0000200d\U00002642\U0000fe0f",
	":man_gesturing_NO:":                            "\U0001f645\U0000200d\U00002642\U0000fe0f",
	":man_gesturing_OK:":                            "\U0001f646\U0000200d\U00002642\U0000fe0f",
	":man_gesturing_no:":                            "\U0001f645\u200d\u2642\ufe0f",
	":man_gesturing_no_tone1:":                      "\U0001f645\U0001f3fb\u200d\u2642\ufe0f",
	":man_gesturing_no_tone2:":                      "\U0001f645\U0001f3fc\u200d\u2642\ufe0f",
	":man_gesturing_no_tone3:":                      "\U0001f645\U0001f3fd\u200d\u2642\ufe0f",
	":man_gesturing_no_tone4:":                      "\U0001f645\U0001f3fe\u200d\u2642\ufe0f",
	":man_gesturing_no_tone5:":                      "\U0001f645\U0001f3ff\u200d\u2642\ufe0f",
	":man_gesturing_ok:":                            "\U0001f646\u200d\u2642\ufe0f",
	":man_gesturing_ok_tone1:":                      "\U0001f646\U0001f3fb\u200d\u2642\ufe0f",
	":man_gesturing_ok_tone2:":                      "\U0001f646\U0001f3fc\u200d\u2642\ufe0f",
	":man_gesturing_ok_tone3:":                      "\U0001f646\U0001f3fd\u200d\u2642\ufe0f",
	":man_gesturing_ok_tone4:":                      "\U0001f646\U0001f3fe\u200d\u2642\ufe0f",
	":man_gesturing_ok_tone5:":                      "\U0001f646\U0001f3ff\u200d\u2642\ufe0f",
	":man_getting_face_massage:":                    "\U0001f486\u200d\u2642\ufe0f",
	":man_getting_face_massage_tone1:":              "\U0001f486\U0001f3fb\u200d\u2642\ufe0f",
	":man_getting_face_massage_tone2:":              "\U0001f486\U0001f3fc\u200d\u2642\ufe0f",
	":man_getting_face_massage_tone3:":              "\U0001f486\U0001f3fd\u200d\u2642\ufe0f",
	":man_getting_face_massage_tone4:":              "\U0001f486\U0001f3fe\u200d\u2642\ufe0f",
	":man_getting_face_massage_tone5:":              "\U0001f486\U0001f3ff\u200d\u2642\ufe0f",
	":man_getting_haircut:":                         "\U0001f487\U0000200d\U00002642\U0000fe0f",
	":man_getting_haircut_tone1:":                   "\U0001f487\U0001f3fb\u200d\u2642\ufe0f",
	":man_getting_haircut_tone2:":                   "\U0001f487\U0001f3fc\u200d\u2642\ufe0f",
	":man_getting_haircut_tone3:":                   "\U0001f487\U0001f3fd\u200d\u2642\ufe0f",
	":man_getting_haircut_tone4:":                   "\U0001f487\U0001f3fe\u200d\u2642\ufe0f",
	":man_getting_haircut_tone5:":                   "\U0001f487\U0001f3ff\u200d\u2642\ufe0f",
	":man_getting_massage:":                         "\U0001f486\U0000200d\U00002642\U0000fe0f",
	":man_golfing:":                                 "\U0001f3cc\U0000fe0f\U0000200d\U00002642\U0000fe0f",
	":man_golfing_tone1:":                           "\U0001f3cc\U0001f3fb\u200d\u2642\ufe0f",
	":man_golfing_tone2:":                           "\U0001f3cc\U0001f3fc\u200d\u2642\ufe0f",
	":man_golfing_tone3:":                           "\U0001f3cc\U0001f3fd\u200d\u2642\ufe0f",
	":man_golfing_tone4:":                           "\U0001f3cc\U0001f3fe\u200d\u2642\ufe0f",
	":man_golfing_tone5:":                           "\U0001f3cc\U0001f3ff\u200d\u2642\ufe0f",
	":man_guard:":                                   "\U0001f482\U0000200d\U00002642\U0000fe0f",
	":man_guard_tone1:":                             "\U0001f482\U0001f3fb\u200d\u2642\ufe0f",
	":man_guard_tone2:":                             "\U0001f482\U0001f3fc\u200d\u2642\ufe0f",
	":man_guard_tone3:":                             "\U0001f482\U0001f3fd\u200d\u2642\ufe0f",
	":man_guard_tone4:":                             "\U0001f482\U0001f3fe\u200d\u2642\ufe0f",
	":man_guard_tone5:":                             "\U0001f482\U0001f3ff\u200d\u2642\ufe0f",
	":man_health_worker:":                           "\U0001f468\U0000200d\U00002695\U0000fe0f",
	":man_health_worker_tone1:":                     "\U0001f468\U0001f3fb\u200d\u2695\ufe0f",
	":man_health_worker_tone2:":                     "\U0001f468\U0001f3fc\u200d\u2695\ufe0f",
	":man_health_worker_tone3:":                     "\U0001f468\U0001f3fd\u200d\u2695\ufe0f",
	":man_health_worker_tone4:":                     "\U0001f468\U0001f3fe\u200d\u2695\ufe0f",
	":man_health_worker_tone5:":                     "\U0001f468\U0001f3ff\u200d\u2695\ufe0f",
	":man_in_business_suit_levitating_tone1:": "\U0001f574\U0001f3fb",
	":man_in_business_suit_levitating_tone2:": "\U0001f574\U0001f3fc",
	":man_in_business_suit_levitating_tone3:": "\U0001f574\U0001f3fd",
	":man_in_business_suit_levitating_tone4:": "\U0001f574\U0001f3fe",
	":man_in_business_suit_levitating_tone5:": "\U0001f574\U0001f3ff",
	":man_in_lotus_position:":                 "\U0001f9d8\U0000200d\U00002642\U0000fe0f",
	":man_in_lotus_position_tone1:":           "\U0001f9d8\U0001f3fb\u200d\u2642\ufe0f",
	":man_in_lotus_position_tone2:":           "\U0001f9d8\U0001f3fc\u200d\u2642\ufe0f",
	":man_in_lotus_position_tone3:":           "\U0001f9d8\U0001f3fd\u200d\u2642\ufe0f",
	":man_in_lotus_position_tone4:":           "\U0001f9d8\U0001f3fe\u200d\u2642\ufe0f",
	":man_in_lotus_position_tone5:":           "\U0001f9d8\U0001f3ff\u200d\u2642\ufe0f",
	":man_in_manual_wheelchair:":              "\U0001f468\U0000200d\U0001f9bd",
	":man_in_motorized_wheelchair:":           "\U0001f468\U0000200d\U0001f9bc",
	":man_in_steamy_room:":                    "\U0001f9d6\U0000200d\U00002642\U0000fe0f",
	":man_in_steamy_room_tone1:":              "\U0001f9d6\U0001f3fb\u200d\u2642\ufe0f",
	":man_in_steamy_room_tone2:":              "\U0001f9d6\U0001f3fc\u200d\u2642\ufe0f",
	":man_in_steamy_room_tone3:":              "\U0001f9d6\U0001f3fd\u200d\u2642\ufe0f",
	":man_in_steamy_room_tone4:":              "\U0001f9d6\U0001f3fe\u200d\u2642\ufe0f",
	":man_in_steamy_room_tone5:":              "\U0001f9d6\U0001f3ff\u200d\u2642\ufe0f",
	":man_in_suit_levitating:":                "\U0001f574",
	":man_in_tuxedo:":                         "\U0001f935",
	":man_in_tuxedo_tone1:":                   "\U0001f935\U0001f3fb",
	":man_in_tuxedo_tone2:":                   "\U0001f935\U0001f3fc",
	":man_in_tuxedo_tone3:":                   "\U0001f935\U0001f3fd",
	":man_in_tuxedo_tone4:":                   "\U0001f935\U0001f3fe",
	":man_in_tuxedo_tone5:":                   "\U0001f935\U0001f3ff",
	":man_judge:":                             "\U0001f468\U0000200d\U00002696\U0000fe0f",
	":man_judge_tone1:":                       "\U0001f468\U0001f3fb\u200d\u2696\ufe0f",
	":man_judge_tone2:":                       "\U0001f468\U0001f3fc\u200d\u2696\ufe0f",
	":man_judge_tone3:":                       "\U0001f468\U0001f3fd\u200d\u2696\ufe0f",
	":man_judge_tone4:":                       "\U0001f468\U0001f3fe\u200d\u2696\ufe0f",
	":man_judge_tone5:":                       "\U0001f468\U0001f3ff\u200d\u2696\ufe0f",
	":man_juggling:":                          "\U0001f939\U0000200d\U00002642\U0000fe0f",
	":man_juggling_tone1:":                    "\U0001f939\U0001f3fb\u200d\u2642\ufe0f",
	":man_juggling_tone2:":                    "\U0001f939\U0001f3fc\u200d\u2642\ufe0f",
	":man_juggling_tone3:":                    "\U0001f939\U0001f3fd\u200d\u2642\ufe0f",
	":man_juggling_tone4:":                    "\U0001f939\U0001f3fe\u200d\u2642\ufe0f",
	":man_juggling_tone5:":                    "\U0001f939\U0001f3ff\u200d\u2642\ufe0f",
	":man_kneeling:":                          "\U0001f9ce\U0000200d\U00002642\U0000fe0f",
	":man_lifting_weights:":                   "\U0001f3cb\U0000fe0f\U0000200d\U00002642\U0000fe0f",
	":man_lifting_weights_tone1:":             "\U0001f3cb\U0001f3fb\u200d\u2642\ufe0f",
	":man_lifting_weights_tone2:":             "\U0001f3cb\U0001f3fc\u200d\u2642\ufe0f",
	":man_lifting_weights_tone3:":             "\U0001f3cb\U0001f3fd\u200d\u2642\ufe0f",
	":man_lifting_weights_tone4:":             "\U0001f3cb\U0001f3fe\u200d\u2642\ufe0f",
	":man_lifting_weights_tone5:":             "\U0001f3cb\U0001f3ff\u200d\u2642\ufe0f",
	":man_mage:":                              "\U0001f9d9\U0000200d\U00002642\U0000fe0f",
	":man_mage_tone1:":                        "\U0001f9d9\U0001f3fb\u200d\u2642\ufe0f",
	":man_mage_tone2:":                        "\U0001f9d9\U0001f3fc\u200d\u2642\ufe0f",
	":man_mage_tone3:":                        "\U0001f9d9\U0001f3fd\u200d\u2642\ufe0f",
	":man_mage_tone4:":                        "\U0001f9d9\U0001f3fe\u200d\u2642\ufe0f",
	":man_mage_tone5:":                        "\U0001f9d9\U0001f3ff\u200d\u2642\ufe0f",
	":man_mechanic:":                          "\U0001f468\U0000200d\U0001f527",
	":man_mechanic_tone1:":                    "\U0001f468\U0001f3fb\u200d\U0001f527",
	":man_mechanic_tone2:":                    "\U0001f468\U0001f3fc\u200d\U0001f527",
	":man_mechanic_tone3:":                    "\U0001f468\U0001f3fd\u200d\U0001f527",
	":man_mechanic_tone4:":                    "\U0001f468\U0001f3fe\u200d\U0001f527",
	":man_mechanic_tone5:":                    "\U0001f468\U0001f3ff\u200d\U0001f527",
	":man_mountain_biking:":                   "\U0001f6b5\U0000200d\U00002642\U0000fe0f",
	":man_mountain_biking_tone1:":             "\U0001f6b5\U0001f3fb\u200d\u2642\ufe0f",
	":man_mountain_biking_tone2:":             "\U0001f6b5\U0001f3fc\u200d\u2642\ufe0f",
	":man_mountain_biking_tone3:":             "\U0001f6b5\U0001f3fd\u200d\u2642\ufe0f",
	":man_mountain_biking_tone4:":             "\U0001f6b5\U0001f3fe\u200d\u2642\ufe0f",
	":man_mountain_biking_tone5:":             "\U0001f6b5\U0001f3ff\u200d\u2642\ufe0f",
	":man_office_worker:":                     "\U0001f468\U0000200d\U0001f4bc",
	":man_office_worker_tone1:":               "\U0001f468\U0001f3fb\u200d\U0001f4bc",
	":man_office_worker_tone2:":               "\U0001f468\U0001f3fc\u200d\U0001f4bc",
	":man_office_worker_tone3:":               "\U0001f468\U0001f3fd\u200d\U0001f4bc",
	":man_office_worker_tone4:":               "\U0001f468\U0001f3fe\u200d\U0001f4bc",
	":man_office_worker_tone5:":               "\U0001f468\U0001f3ff\u200d\U0001f4bc",
	":man_pilot:":                             "\U0001f468\U0000200d\U00002708\U0000fe0f",
	":man_pilot_tone1:":                       "\U0001f468\U0001f3fb\u200d\u2708\ufe0f",
	":man_pilot_tone2:":                       "\U0001f468\U0001f3fc\u200d\u2708\ufe0f",
	":man_pilot_tone3:":                       "\U0001f468\U0001f3fd\u200d\u2708\ufe0f",
	":man_pilot_tone4:":                       "\U0001f468\U0001f3fe\u200d\u2708\ufe0f",
	":man_pilot_tone5:":                       "\U0001f468\U0001f3ff\u200d\u2708\ufe0f",
	":man_playing_handball:":                  "\U0001f93e\U0000200d\U00002642\U0000fe0f",
	":man_playing_handball_tone1:":            "\U0001f93e\U0001f3fb\u200d\u2642\ufe0f",
	":man_playing_handball_tone2:":            "\U0001f93e\U0001f3fc\u200d\u2642\ufe0f",
	":man_playing_handball_tone3:":            "\U0001f93e\U0001f3fd\u200d\u2642\ufe0f",
	":man_playing_handball_tone4:":            "\U0001f93e\U0001f3fe\u200d\u2642\ufe0f",
	":man_playing_handball_tone5:":            "\U0001f93e\U0001f3ff\u200d\u2642\ufe0f",
	":man_playing_water_polo:":                "\U0001f93d\U0000200d\U00002642\U0000fe0f",
	":man_playing_water_polo_tone1:":          "\U0001f93d\U0001f3fb\u200d\u2642\ufe0f",
	":man_playing_water_polo_tone2:":          "\U0001f93d\U0001f3fc\u200d\u2642\ufe0f",
	":man_playing_water_polo_tone3:":          "\U0001f93d\U0001f3fd\u200d\u2642\ufe0f",
	":man_playing_water_polo_tone4:":          "\U0001f93d\U0001f3fe\u200d\u2642\ufe0f",
	":man_playing_water_polo_tone5:":          "\U0001f93d\U0001f3ff\u200d\u2642\ufe0f",
	":man_police_officer:":                    "\U0001f46e\U0000200d\U00002642\U0000fe0f",
	":man_police_officer_tone1:":              "\U0001f46e\U0001f3fb\u200d\u2642\ufe0f",
	":man_police_officer_tone2:":              "\U0001f46e\U0001f3fc\u200d\u2642\ufe0f",
	":man_police_officer_tone3:":              "\U0001f46e\U0001f3fd\u200d\u2642\ufe0f",
	":man_police_officer_tone4:":              "\U0001f46e\U0001f3fe\u200d\u2642\ufe0f",
	":man_police_officer_tone5:":              "\U0001f46e\U0001f3ff\u200d\u2642\ufe0f",
	":man_pouting:":                           "\U0001f64e\U0000200d\U00002642\U0000fe0f",
	":man_pouting_tone1:":                     "\U0001f64e\U0001f3fb\u200d\u2642\ufe0f",
	":man_pouting_tone2:":                     "\U0001f64e\U0001f3fc\u200d\u2642\ufe0f",
	":man_pouting_tone3:":                     "\U0001f64e\U0001f3fd\u200d\u2642\ufe0f",
	":man_pouting_tone4:":                     "\U0001f64e\U0001f3fe\u200d\u2642\ufe0f",
	":man_pouting_tone5:":                     "\U0001f64e\U0001f3ff\u200d\u2642\ufe0f",
	":man_raising_hand:":                      "\U0001f64b\U0000200d\U00002642\U0000fe0f",
	":man_raising_hand_tone1:":                "\U0001f64b\U0001f3fb\u200d\u2642\ufe0f",
	":man_raising_hand_tone2:":                "\U0001f64b\U0001f3fc\u200d\u2642\ufe0f",
	":man_raising_hand_tone3:":                "\U0001f64b\U0001f3fd\u200d\u2642\ufe0f",
	":man_raising_hand_tone4:":                "\U0001f64b\U0001f3fe\u200d\u2642\ufe0f",
	":man_raising_hand_tone5:":                "\U0001f64b\U0001f3ff\u200d\u2642\ufe0f",
	":man_red_hair:":                          "\U0001f468\U0000200d\U0001f9b0",
	":man_rowing_boat:":                       "\U0001f6a3\U0000200d\U00002642\U0000fe0f",
	":man_rowing_boat_tone1:":                 "\U0001f6a3\U0001f3fb\u200d\u2642\ufe0f",
	":man_rowing_boat_tone2:":                 "\U0001f6a3\U0001f3fc\u200d\u2642\ufe0f",
	":man_rowing_boat_tone3:":                 "\U0001f6a3\U0001f3fd\u200d\u2642\ufe0f",
	":man_rowing_boat_tone4:":                 "\U0001f6a3\U0001f3fe\u200d\u2642\ufe0f",
	":man_rowing_boat_tone5:":                 "\U0001f6a3\U0001f3ff\u200d\u2642\ufe0f",
	":man_running:":                           "\U0001f3c3\U0000200d\U00002642\U0000fe0f",
	":man_running_tone1:":                     "\U0001f3c3\U0001f3fb\u200d\u2642\ufe0f",
	":man_running_tone2:":                     "\U0001f3c3\U0001f3fc\u200d\u2642\ufe0f",
	":man_running_tone3:":                     "\U0001f3c3\U0001f3fd\u200d\u2642\ufe0f",
	":man_running_tone4:":                     "\U0001f3c3\U0001f3fe\u200d\u2642\ufe0f",
	":man_running_tone5:":                     "\U0001f3c3\U0001f3ff\u200d\u2642\ufe0f",
	":man_scientist:":                         "\U0001f468\U0000200d\U0001f52c",
	":man_scientist_tone1:":                   "\U0001f468\U0001f3fb\u200d\U0001f52c",
	":man_scientist_tone2:":                   "\U0001f468\U0001f3fc\u200d\U0001f52c",
	":man_scientist_tone3:":                   "\U0001f468\U0001f3fd\u200d\U0001f52c",
	":man_scientist_tone4:":                   "\U0001f468\U0001f3fe\u200d\U0001f52c",
	":man_scientist_tone5:":                   "\U0001f468\U0001f3ff\u200d\U0001f52c",
	":man_shrugging:":                         "\U0001f937\U0000200d\U00002642\U0000fe0f",
	":man_shrugging_tone1:":                   "\U0001f937\U0001f3fb\u200d\u2642\ufe0f",
	":man_shrugging_tone2:":                   "\U0001f937\U0001f3fc\u200d\u2642\ufe0f",
	":man_shrugging_tone3:":                   "\U0001f937\U0001f3fd\u200d\u2642\ufe0f",
	":man_shrugging_tone4:":                   "\U0001f937\U0001f3fe\u200d\u2642\ufe0f",
	":man_shrugging_tone5:":                   "\U0001f937\U0001f3ff\u200d\u2642\ufe0f",
	":man_singer:":                            "\U0001f468\U0000200d\U0001f3a4",
	":man_singer_tone1:":                      "\U0001f468\U0001f3fb\u200d\U0001f3a4",
	":man_singer_tone2:":                      "\U0001f468\U0001f3fc\u200d\U0001f3a4",
	":man_singer_tone3:":                      "\U0001f468\U0001f3fd\u200d\U0001f3a4",
	":man_singer_tone4:":                      "\U0001f468\U0001f3fe\u200d\U0001f3a4",
	":man_singer_tone5:":                      "\U0001f468\U0001f3ff\u200d\U0001f3a4",
	":man_standing:":                          "\U0001f9cd\U0000200d\U00002642\U0000fe0f",
	":man_student:":                           "\U0001f468\U0000200d\U0001f393",
	":man_student_tone1:":                     "\U0001f468\U0001f3fb\u200d\U0001f393",
	":man_student_tone2:":                     "\U0001f468\U0001f3fc\u200d\U0001f393",
	":man_student_tone3:":                     "\U0001f468\U0001f3fd\u200d\U0001f393",
	":man_student_tone4:":                     "\U0001f468\U0001f3fe\u200d\U0001f393",
	":man_student_tone5:":                     "\U0001f468\U0001f3ff\u200d\U0001f393",
	":man_superhero:":                         "\U0001f9b8\U0000200d\U00002642\U0000fe0f",
	":man_supervillain:":                      "\U0001f9b9\U0000200d\U00002642\U0000fe0f",
	":man_surfing:":                           "\U0001f3c4\U0000200d\U00002642\U0000fe0f",
	":man_surfing_tone1:":                     "\U0001f3c4\U0001f3fb\u200d\u2642\ufe0f",
	":man_surfing_tone2:":                     "\U0001f3c4\U0001f3fc\u200d\u2642\ufe0f",
	":man_surfing_tone3:":                     "\U0001f3c4\U0001f3fd\u200d\u2642\ufe0f",
	":man_surfing_tone4:":                     "\U0001f3c4\U0001f3fe\u200d\u2642\ufe0f",
	":man_surfing_tone5:":                     "\U0001f3c4\U0001f3ff\u200d\u2642\ufe0f",
	":man_swimming:":                          "\U0001f3ca\U0000200d\U00002642\U0000fe0f",
	":man_swimming_tone1:":                    "\U0001f3ca\U0001f3fb\u200d\u2642\ufe0f",
	":man_swimming_tone2:":                    "\U0001f3ca\U0001f3fc\u200d\u2642\ufe0f",
	":man_swimming_tone3:":                    "\U0001f3ca\U0001f3fd\u200d\u2642\ufe0f",
	":man_swimming_tone4:":                    "\U0001f3ca\U0001f3fe\u200d\u2642\ufe0f",
	":man_swimming_tone5:":                    "\U0001f3ca\U0001f3ff\u200d\u2642\ufe0f",
	":man_teacher:":                           "\U0001f468\U0000200d\U0001f3eb",
	":man_teacher_tone1:":                     "\U0001f468\U0001f3fb\u200d\U0001f3eb",
	":man_teacher_tone2:":                     "\U0001f468\U0001f3fc\u200d\U0001f3eb",
	":man_teacher_tone3:":                     "\U0001f468\U0001f3fd\u200d\U0001f3eb",
	":man_teacher_tone4:":                     "\U0001f468\U0001f3fe\u200d\U0001f3eb",
	":man_teacher_tone5:":                     "\U0001f468\U0001f3ff\u200d\U0001f3eb",
	":man_technologist:":                      "\U0001f468\U0000200d\U0001f4bb",
	":man_technologist_tone1:":                "\U0001f468\U0001f3fb\u200d\U0001f4bb",
	":man_technologist_tone2:":                "\U0001f468\U0001f3fc\u200d\U0001f4bb",
	":man_technologist_tone3:":                "\U0001f468\U0001f3fd\u200d\U0001f4bb",
	":man_technologist_tone4:":                "\U0001f468\U0001f3fe\u200d\U0001f4bb",
	":man_technologist_tone5:":                "\U0001f468\U0001f3ff\u200d\U0001f4bb",
	":man_tipping_hand:":                      "\U0001f481\U0000200d\U00002642\U0000fe0f",
	":man_tipping_hand_tone1:":                "\U0001f481\U0001f3fb\u200d\u2642\ufe0f",
	":man_tipping_hand_tone2:":                "\U0001f481\U0001f3fc\u200d\u2642\ufe0f",
	":man_tipping_hand_tone3:":                "\U0001f481\U0001f3fd\u200d\u2642\ufe0f",
	":man_tipping_hand_tone4:":                "\U0001f481\U0001f3fe\u200d\u2642\ufe0f",
	":man_tipping_hand_tone5:":                "\U0001f481\U0001f3ff\u200d\u2642\ufe0f",
	":man_tone1:":                             "\U0001f468\U0001f3fb",
	":man_tone2:":                             "\U0001f468\U0001f3fc",
	":man_tone3:":                             "\U0001f468\U0001f3fd",
	":man_tone4:":                             "\U0001f468\U0001f3fe",
	":man_tone5:":                             "\U0001f468\U0001f3ff",
	":man_vampire:":                           "\U0001f9db\U0000200d\U00002642\U0000fe0f",
	":man_vampire_tone1:":                     "\U0001f9db\U0001f3fb\u200d\u2642\ufe0f",
	":man_vampire_tone2:":                     "\U0001f9db\U0001f3fc\u200d\u2642\ufe0f",
	":man_vampire_tone3:":                     "\U0001f9db\U0001f3fd\u200d\u2642\ufe0f",
	":man_vampire_tone4:":                     "\U0001f9db\U0001f3fe\u200d\u2642\ufe0f",
	":man_vampire_tone5:":                     "\U0001f9db\U0001f3ff\u200d\u2642\ufe0f",
	":man_walking:":                           "\U0001f6b6\U0000200d\U00002642\U0000fe0f",
	":man_walking_tone1:":                     "\U0001f6b6\U0001f3fb\u200d\u2642\ufe0f",
	":man_walking_tone2:":                     "\U0001f6b6\U0001f3fc\u200d\u2642\ufe0f",
	":man_walking_tone3:":                     "\U0001f6b6\U0001f3fd\u200d\u2642\ufe0f",
	":man_walking_tone4:":                     "\U0001f6b6\U0001f3fe\u200d\u2642\ufe0f",
	":man_walking_tone5:":                     "\U0001f6b6\U0001f3ff\u200d\u2642\ufe0f",
	":man_wearing_turban:":                    "\U0001f473\U0000200d\U00002642\U0000fe0f",
	":man_wearing_turban_tone1:":              "\U0001f473\U0001f3fb\u200d\u2642\ufe0f",
	":man_wearing_turban_tone2:":              "\U0001f473\U0001f3fc\u200d\u2642\ufe0f",
	":man_wearing_turban_tone3:":              "\U0001f473\U0001f3fd\u200d\u2642\ufe0f",
	":man_wearing_turban_tone4:":              "\U0001f473\U0001f3fe\u200d\u2642\ufe0f",
	":man_wearing_turban_tone5:":              "\U0001f473\U0001f3ff\u200d\u2642\ufe0f",
	":man_white_hair:":                        "\U0001f468\U0000200d\U0001f9b3",
	":man_with_chinese_cap:":                  "\U0001f472",
	":man_with_chinese_cap_tone1:":            "\U0001f472\U0001f3fb",
	":man_with_chinese_cap_tone2:":            "\U0001f472\U0001f3fc",
	":man_with_chinese_cap_tone3:":            "\U0001f472\U0001f3fd",
	":man_with_chinese_cap_tone4:":            "\U0001f472\U0001f3fe",
	":man_with_chinese_cap_tone5:":            "\U0001f472\U0001f3ff",
	":man_with_gua_pi_mao:":                   "\U0001f472",
	":man_with_probing_cane:":                 "\U0001f468\U0000200d\U0001f9af",
	":man_with_skullcap:":                     "\U0001f472",
	":man_with_turban:":                       "\U0001f473\u200d\u2642",
	":man_zombie:":                            "\U0001f9df\U0000200d\U00002642\U0000fe0f",
	":mandarin:":                              "\U0001f34a",
	":mango:":                                 "\U0001f96d",
	":mans_shoe:":                             "\U0001f45e",
	":mantelpiece_clock:":                     "\U0001f570",
	":manual_wheelchair:":                     "\U0001f9bd",
	":man’s_shoe:":                            "\U0001f45e",
	":map:":                                   "\U0001f5fa",
	":map_of_Japan:":                          "\U0001f5fe",
	":maple_leaf:":                            "\U0001f341",
	":marshall_islands:":                      "\U0001f1f2\U0001f1ed",
	":martial_arts_uniform:":                  "\U0001f94b",
	":martinique:":                            "\U0001f1f2\U0001f1f6",
	":mask:":                                  "\U0001f637",
	":massage:":                               "\U0001f486",
	":massage_man:":                           "\U0001f486\u200d\u2642",
	":massage_woman:":                         "\U0001f486\u200d\u2640",
	":mate:":                                  "\U0001f9c9",
	":mauritania:":                            "\U0001f1f2\U0001f1f7",
	":mauritius:":                             "\U0001f1f2\U0001f1fa",
	":mayotte:":                               "\U0001f1fe\U0001f1f9",
	":meat_on_bone:":                          "\U0001f356",
	":mechanic:":                              "\U0001f9d1\U0000200d\U0001f527",
	":mechanical_arm:":                        "\U0001f9be",
	":mechanical_leg:":                        "\U0001f9bf",
	":medal:":                                 "\U0001f3c5",
	":medal_military:":                        "\U0001f396",
	":medal_sports:":                          "\U0001f3c5",
	":medical_symbol:":                        "\U00002695",
	":mega:":                                  "\U0001f4e3",
	":megaphone:":                             "\U0001f4e3",
	":melon:":                                 "\U0001f348",
	":memo:":                                  "\U0001f4dd",
	":men_holding_hands:":                     "\U0001f46c",
	":men_with_bunny_ears:":                   "\U0001f46f\U0000200d\U00002642\U0000fe0f",
	":men_with_bunny_ears_partying:":          "\U0001f46f\u200d\u2642\ufe0f",
	":men_wrestling:":                         "\U0001f93c\U0000200d\U00002642\U0000fe0f",
	":menorah:":                               "\U0001f54e",
	":mens:":                                  "\U0001f6b9",
	":men’s_room:":                            "\U0001f6b9",
	":mermaid:":                               "\U0001f9dc\U0000200d\U00002640\U0000fe0f",
	":mermaid_tone1:":                         "\U0001f9dc\U0001f3fb\u200d\u2640\ufe0f",
	":mermaid_tone2:":                         "\U0001f9dc\U0001f3fc\u200d\u2640\ufe0f",
	":mermaid_tone3:":                         "\U0001f9dc\U0001f3fd\u200d\u2640\ufe0f",
	":mermaid_tone4:":                         "\U0001f9dc\U0001f3fe\u200d\u2640\ufe0f",
	":mermaid_tone5:":                         "\U0001f9dc\U0001f3ff\u200d\u2640\ufe0f",
	":merman:":                                "\U0001f9dc\U0000200d\U00002642\U0000fe0f",
	":merman_tone1:":                          "\U0001f9dc\U0001f3fb\u200d\u2642\ufe0f",
	":merman_tone2:":                          "\U0001f9dc\U0001f3fc\u200d\u2642\ufe0f",
	":merman_tone3:":                          "\U0001f9dc\U0001f3fd\u200d\u2642\ufe0f",
	":merman_tone4:":                          "\U0001f9dc\U0001f3fe\u200d\u2642\ufe0f",
	":merman_tone5:":                          "\U0001f9dc\U0001f3ff\u200d\u2642\ufe0f",
	":merperson:":                             "\U0001f9dc",
	":merperson_tone1:":                       "\U0001f9dc\U0001f3fb",
	":merperson_tone2:":                       "\U0001f9dc\U0001f3fc",
	":merperson_tone3:":                       "\U0001f9dc\U0001f3fd",
	":merperson_tone4:":                       "\U0001f9dc\U0001f3fe",
	":merperson_tone5:":                       "\U0001f9dc\U0001f3ff",
	":metal:":                                 "\U0001f918",
	":metal_tone1:":                           "\U0001f918\U0001f3fb",
	":metal_tone2:":                           "\U0001f918\U0001f3fc",
	":metal_tone3:":                           "\U0001f918\U0001f3fd",
	":metal_tone4:":                           "\U0001f918\U0001f3fe",
	":metal_tone5:":                           "\U0001f918\U0001f3ff",
	":metro:":                                 "\U0001f687",
	":mexico:":                                "\U0001f1f2\U0001f1fd",
	":microbe:":                               "\U0001f9a0",
	":micronesia:":                            "\U0001f1eb\U0001f1f2",
	":microphone:":                            "\U0001f3a4",
	":microphone2:":                           "\U0001f399",
	":microscope:":                            "\U0001f52c",
	":middle_finger:":                         "\U0001f595",
	":middle_finger_tone1:":                   "\U0001f595\U0001f3fb",
	":middle_finger_tone2:":                   "\U0001f595\U0001f3fc",
	":middle_finger_tone3:":                   "\U0001f595\U0001f3fd",
	":middle_finger_tone4:":                   "\U0001f595\U0001f3fe",
	":middle_finger_tone5:":                   "\U0001f595\U0001f3ff",
	":military_medal:":                        "\U0001f396",
	":milk:":                                  "\U0001f95b",
	":milk_glass:":                            "\U0001f95b",
	":milky_way:":                             "\U0001f30c",
	":minibus:":                               "\U0001f690",
	":minidisc:":                              "\U0001f4bd",
	":minus_sign:":                            "\U00002796",
	":moai:":                                  "\U0001f5ff",
	":mobile_phone:":                          "\U0001f4f1",
	":mobile_phone_off:":                      "\U0001f4f4",
	":mobile_phone_with_arrow:":               "\U0001f4f2",
	":moldova:":                               "\U0001f1f2\U0001f1e9",
	":monaco:":                                "\U0001f1f2\U0001f1e8",
	":money-mouth_face:":                      "\U0001f911",
	":money_bag:":                             "\U0001f4b0",
	":money_mouth:":                           "\U0001f911",
	":money_mouth_face:":                      "\U0001f911",
	":money_with_wings:":                      "\U0001f4b8",
	":moneybag:":                              "\U0001f4b0",
	":mongolia:":                              "\U0001f1f2\U0001f1f3",
	":monkey:":                                "\U0001f412",
	":monkey_face:":                           "\U0001f435",
	":monocle_face:":                          "\U0001f9d0",
	":monorail:":                              "\U0001f69d",
	":montenegro:":                            "\U0001f1f2\U0001f1ea",
	":montserrat:":                            "\U0001f1f2\U0001f1f8",
	":moon:":                                  "\U0001f314",
	":moon_cake:":                             "\U0001f96e",
	":moon_viewing_ceremony:":                 "\U0001f391",
	":morocco:":                               "\U0001f1f2\U0001f1e6",
	":mortar_board:":                          "\U0001f393",
	":mosque:":                                "\U0001f54c",
	":mosquito:":                              "\U0001f99f",
	":motor_boat:":                            "\U0001f6e5",
	":motor_scooter:":                         "\U0001f6f5",
	":motorboat:":                             "\U0001f6e5",
	":motorcycle:":                            "\U0001f3cd",
	":motorized_wheelchair:":                  "\U0001f9bc",
	":motorway:":                              "\U0001f6e3",
	":mount_fuji:":                            "\U0001f5fb",
	":mountain:":                              "\U000026f0",
	":mountain_bicyclist:":                    "\U0001f6b5",
	":mountain_biking_man:":                   "\U0001f6b5\u200d\u2642",
	":mountain_biking_woman:":                 "\U0001f6b5\u200d\u2640",
	":mountain_cableway:":                     "\U0001f6a0",
	":mountain_railway:":                      "\U0001f69e",
	":mountain_snow:":                         "\U0001f3d4",
	":mouse:":                                 "\U0001f401",
	":mouse2:":                                "\U0001f401",
	":mouse_face:":                            "\U0001f42d",
	":mouse_three_button:":                    "\U0001f5b1",
	":mouth:":                                 "\U0001f444",
	":movie_camera:":                          "\U0001f3a5",
	":moyai:":                                 "\U0001f5ff",
	":mozambique:":                            "\U0001f1f2\U0001f1ff",
	":mrs_claus:":                             "\U0001f936",
	":mrs_claus_tone1:":                       "\U0001f936\U0001f3fb",
	":mrs_claus_tone2:":                       "\U0001f936\U0001f3fc",
	":mrs_claus_tone3:":                       "\U0001f936\U0001f3fd",
	":mrs_claus_tone4:":                       "\U0001f936\U0001f3fe",
	":mrs_claus_tone5:":                       "\U0001f936\U0001f3ff",
	":multiplication_sign:":                   "\U00002716",
	":muscle:":                                "\U0001f4aa",
	":muscle_tone1:":                          "\U0001f4aa\U0001f3fb",
	":muscle_tone2:":                          "\U0001f4aa\U0001f3fc",
	":muscle_tone3:":                          "\U0001f4aa\U0001f3fd",
	":muscle_tone4:":                          "\U0001f4aa\U0001f3fe",
	":muscle_tone5:":                          "\U0001f4aa\U0001f3ff",
	":mushroom:":                              "\U0001f344",
	":musical_keyboard:":                      "\U0001f3b9",
	":musical_note:":                          "\U0001f3b5",
	":musical_notes:":                         "\U0001f3b6",
	":musical_score:":                         "\U0001f3bc",
	":mute:":                                  "\U0001f507",
	":muted_speaker:":                         "\U0001f507",
	":myanmar:":                               "\U0001f1f2\U0001f1f2",
	":nail_care:":                             "\U0001f485",
	":nail_care_tone1:":                       "\U0001f485\U0001f3fb",
	":nail_care_tone2:":                       "\U0001f485\U0001f3fc",
	":nail_care_tone3:":                       "\U0001f485\U0001f3fd",
	":nail_care_tone4:":                       "\U0001f485\U0001f3fe",
	":nail_care_tone5:":                       "\U0001f485\U0001f3ff",
	":nail_polish:":                           "\U0001f485",
	":name_badge:":                            "\U0001f4db",
	":namibia:":                               "\U0001f1f3\U0001f1e6",
	":national_park:":                         "\U0001f3de",
	":nauru:":                                 "\U0001f1f3\U0001f1f7",
	":nauseated_face:":                        "\U0001f922",
	":nazar_amulet:":                          "\U0001f9ff",
	":necktie:":                               "\U0001f454",
	":negative_squared_cross_mark:":           "\u274e",
	":nepal:":                                 "\U0001f1f3\U0001f1f5",
	":nerd:":                                  "\U0001f913",
	":nerd_face:":                             "\U0001f913",
	":netherlands:":                           "\U0001f1f3\U0001f1f1",
	":neutral_face:":                          "\U0001f610",
	":new:":                                   "\U0001f195",
	":new_caledonia:":                         "\U0001f1f3\U0001f1e8",
	":new_moon:":                              "\U0001f311",
	":new_moon_face:":                         "\U0001f31a",
	":new_moon_with_face:":                    "\U0001f31a",
	":new_zealand:":                           "\U0001f1f3\U0001f1ff",
	":newspaper:":                             "\U0001f4f0",
	":newspaper2:":                            "\U0001f5de",
	":newspaper_roll:":                        "\U0001f5de",
	":next_track_button:":                     "\U000023ed",
	":ng:":                                    "\U0001f196",
	":ng_man:":                                "\U0001f645\u200d\u2642",
	":ng_woman:":                              "\U0001f645\u200d\u2640",
	":nicaragua:":                             "\U0001f1f3\U0001f1ee",
	":niger:":                                 "\U0001f1f3\U0001f1ea",
	":nigeria:":                               "\U0001f1f3\U0001f1ec",
	":night_with_stars:":                      "\U0001f303",
	":nine:":                                  "9\ufe0f\u20e3",
	":nine-thirty:":                           "\U0001f564",
	":nine_o’clock:":                          "\U0001f558",
	":niue:":                                  "\U0001f1f3\U0001f1fa",
	":no_bell:":                               "\U0001f515",
	":no_bicycles:":                           "\U0001f6b3",
	":no_entry:":                              "\U000026d4",
	":no_entry_sign:":                         "\U0001f6ab",
	":no_good:":                               "\U0001f645",
	":no_good_man:":                           "\U0001f645\u200d\u2642",
	":no_good_woman:":                         "\U0001f645\u200d\u2640",
	":no_littering:":                          "\U0001f6af",
	":no_mobile_phones:":                      "\U0001f4f5",
	":no_mouth:":                              "\U0001f636",
	":no_one_under_eighteen:":                 "\U0001f51e",
	":no_pedestrians:":                        "\U0001f6b7",
	":no_smoking:":                            "\U0001f6ad",
	":non-potable_water:":                     "\U0001f6b1",
	":norfolk_island:":                        "\U0001f1f3\U0001f1eb",
	":north_korea:":                           "\U0001f1f0\U0001f1f5",
	":northern_mariana_islands:":              "\U0001f1f2\U0001f1f5",
	":norway:":                                "\U0001f1f3\U0001f1f4",
	":nose:":                                  "\U0001f443",
	":nose_tone1:":                            "\U0001f443\U0001f3fb",
	":nose_tone2:":                            "\U0001f443\U0001f3fc",
	":nose_tone3:":                            "\U0001f443\U0001f3fd",
	":nose_tone4:":                            "\U0001f443\U0001f3fe",
	":nose_tone5:":                            "\U0001f443\U0001f3ff",
	":notebook:":                              "\U0001f4d3",
	":notebook_with_decorative_cover:":        "\U0001f4d4",
	":notepad_spiral:":                        "\U0001f5d2",
	":notes:":                                 "\U0001f3b6",
	":nut_and_bolt:":                          "\U0001f529",
	":o:":                                     "\u2b55",
	":o2:":                                    "\U0001f17e",
	":ocean:":                                 "\U0001f30a",
	":octagonal_sign:":                        "\U0001f6d1",
	":octopus:":                               "\U0001f419",
	":oden:":                                  "\U0001f362",
	":office:":                                "\U0001f3e2",
	":office_building:":                       "\U0001f3e2",
	":office_worker:":                         "\U0001f9d1\U0000200d\U0001f4bc",
	":ogre:":                                  "\U0001f479",
	":oil:":                                   "\U0001f6e2",
	":oil_drum:":                              "\U0001f6e2",
	":ok:":                                    "\U0001f197",
	":ok_hand:":                               "\U0001f44c",
	":ok_hand_tone1:":                         "\U0001f44c\U0001f3fb",
	":ok_hand_tone2:":                         "\U0001f44c\U0001f3fc",
	":ok_hand_tone3:":                         "\U0001f44c\U0001f3fd",
	":ok_hand_tone4:":                         "\U0001f44c\U0001f3fe",
	":ok_hand_tone5:":                         "\U0001f44c\U0001f3ff",
	":ok_man:":                                "\U0001f646\u200d\u2642",
	":ok_person:":                             "\U0001f646",
	":ok_woman:":                              "\U0001f646\u200d\u2640",
	":old_key:":                               "\U0001f5dd",
	":old_man:":                               "\U0001f474",
	":old_woman:":                             "\U0001f475",
	":older_adult:":                           "\U0001f9d3",
	":older_adult_tone1:":                     "\U0001f9d3\U0001f3fb",
	":older_adult_tone2:":                     "\U0001f9d3\U0001f3fc",
	":older_adult_tone3:":                     "\U0001f9d3\U0001f3fd",
	":older_adult_tone4:":                     "\U0001f9d3\U0001f3fe",
	":older_adult_tone5:":                     "\U0001f9d3\U0001f3ff",
	":older_man:":                             "\U0001f474",
	":older_man_tone1:":                       "\U0001f474\U0001f3fb",
	":older_man_tone2:":                       "\U0001f474\U0001f3fc",
	":older_man_tone3:":                       "\U0001f474\U0001f3fd",
	":older_man_tone4:":                       "\U0001f474\U0001f3fe",
	":older_man_tone5:":                       "\U0001f474\U0001f3ff",
	":older_person:":                          "\U0001f9d3",
	":older_woman:":                           "\U0001f475",
	":older_woman_tone1:":                     "\U0001f475\U0001f3fb",
	":older_woman_tone2:":                     "\U0001f475\U0001f3fc",
	":older_woman_tone3:":                     "\U0001f475\U0001f3fd",
	":older_woman_tone4:":                     "\U0001f475\U0001f3fe",
	":older_woman_tone5:":                     "\U0001f475\U0001f3ff",
	":om:":                                    "\U0001f549",
	":om_symbol:":                             "\U0001f549",
	":oman:":                                  "\U0001f1f4\U0001f1f2",
	":on:":                                    "\U0001f51b",
	":oncoming_automobile:":                   "\U0001f698",
	":oncoming_bus:":                          "\U0001f68d",
	":oncoming_fist:":                         "\U0001f44a",
	":oncoming_police_car:":                   "\U0001f694",
	":oncoming_taxi:":                         "\U0001f696",
	":one:":                                   "1\ufe0f\u20e3",
	":one-piece_swimsuit:":                    "\U0001fa71",
	":one-thirty:":                            "\U0001f55c",
	":one_o’clock:":                           "\U0001f550",
	":one_piece_swimsuit:":                    "\U0001fa71",
	":onion:":                                 "\U0001f9c5",
	":open_book:":                             "\U0001f4d6",
	":open_file_folder:":                      "\U0001f4c2",
	":open_hands:":                            "\U0001f450",
	":open_hands_tone1:":                      "\U0001f450\U0001f3fb",
	":open_hands_tone2:":                      "\U0001f450\U0001f3fc",
	":open_hands_tone3:":                      "\U0001f450\U0001f3fd",
	":open_hands_tone4:":                      "\U0001f450\U0001f3fe",
	":open_hands_tone5:":                      "\U0001f450\U0001f3ff",
	":open_mailbox_with_lowered_flag:":        "\U0001f4ed",
	":open_mailbox_with_raised_flag:":         "\U0001f4ec",
	":open_mouth:":                            "\U0001f62e",
	":open_umbrella:":                         "\u2602\ufe0f",
	":ophiuchus:":                             "\u26ce",
	":optical_disk:":                          "\U0001f4bf",
	":orange:":                                "\U0001f34a",
	":orange_book:":                           "\U0001f4d9",
	":orange_circle:":                         "\U0001f7e0",
	":orange_heart:":                          "\U0001f9e1",
	":orange_square:":                         "\U0001f7e7",
	":orangutan:":                             "\U0001f9a7",
	":orthodox_cross:":                        "\U00002626",
	":otter:":                                 "\U0001f9a6",
	":outbox_tray:":                           "\U0001f4e4",
	":owl:":                                   "\U0001f989",
	":ox:":                                    "\U0001f402",
	":oyster:":                                "\U0001f9aa",
	":package:":                               "\U0001f4e6",
	":page_facing_up:":                        "\U0001f4c4",
	":page_with_curl:":                        "\U0001f4c3",
	":pager:":                                 "\U0001f4df",
	":paintbrush:":                            "\U0001f58c",
	":pakistan:":                              "\U0001f1f5\U0001f1f0",
	":palau:":                                 "\U0001f1f5\U0001f1fc",
	":palestinian_territories:":               "\U0001f1f5\U0001f1f8",
	":palm_tree:":                             "\U0001f334",
	":palms_up_together:":                     "\U0001f932",
	":palms_up_together_tone1:":               "\U0001f932\U0001f3fb",
	":palms_up_together_tone2:":               "\U0001f932\U0001f3fc",
	":palms_up_together_tone3:":               "\U0001f932\U0001f3fd",
	":palms_up_together_tone4:":               "\U0001f932\U0001f3fe",
	":palms_up_together_tone5:":               "\U0001f932\U0001f3ff",
	":panama:":                                "\U0001f1f5\U0001f1e6",
	":pancakes:":                              "\U0001f95e",
	":panda:":                                 "\U0001f43c",
	":panda_face:":                            "\U0001f43c",
	":paperclip:":                             "\U0001f4ce",
	":paperclips:":                            "\U0001f587",
	":papua_new_guinea:":                      "\U0001f1f5\U0001f1ec",
	":parachute:":                             "\U0001fa82",
	":paraguay:":                              "\U0001f1f5\U0001f1fe",
	":parasol_on_ground:":                     "\u26f1",
	":park:":                                  "\U0001f3de",
	":parking:":                               "\U0001f17f",
	":parrot:":                                "\U0001f99c",
	":part_alternation_mark:":                 "\U0000303d",
	":partly_sunny:":                          "\u26c5",
	":party_popper:":                          "\U0001f389",
	":partying_face:":                         "\U0001f973",
	":passenger_ship:":                        "\U0001f6f3",
	":passport_control:":                      "\U0001f6c2",
	":pause_button:":                          "\U000023f8",
	":paw_prints:":                            "\U0001f43e",
	":peace:":                                 "\u262e",
	":peace_symbol:":                          "\U0000262e",
	":peach:":                                 "\U0001f351",
	":peacock:":                               "\U0001f99a",
	":peanuts:":                               "\U0001f95c",
	":pear:":                                  "\U0001f350",
	":pen:":                                   "\U0001f58a",
	":pen_ballpoint:":                         "\U0001f58a",
	":pen_fountain:":                          "\U0001f58b",
	":pencil:":                                "\U0000270f",
	":pencil2:":                               "\u270f",
	":penguin:":                               "\U0001f427",
	":pensive:":                               "\U0001f614",
	":pensive_face:":                          "\U0001f614",
	":people_holding_hands:":                  "\U0001f9d1\U0000200d\U0001f91d\U0000200d\U0001f9d1",
	":people_with_bunny_ears:":                "\U0001f46f",
	":people_with_bunny_ears_partying:":       "\U0001f46f",
	":people_wrestling:":                      "\U0001f93c",
	":performing_arts:":                       "\U0001f3ad",
	":persevere:":                             "\U0001f623",
	":persevering_face:":                      "\U0001f623",
	":person:":                                "\U0001f9d1",
	":person_bald:":                           "\U0001f9d1\U0000200d\U0001f9b2",
	":person_biking:":                         "\U0001f6b4",
	":person_biking_tone1:":                   "\U0001f6b4\U0001f3fb",
	":person_biking_tone2:":                   "\U0001f6b4\U0001f3fc",
	":person_biking_tone3:":                   "\U0001f6b4\U0001f3fd",
	":person_biking_tone4:":                   "\U0001f6b4\U0001f3fe",
	":person_biking_tone5:":                   "\U0001f6b4\U0001f3ff",
	":person_blond_hair:":                     "\U0001f471",
	":person_bouncing_ball:":                  "\U000026f9",
	":person_bouncing_ball_tone1:":            "\u26f9\U0001f3fb",
	":person_bouncing_ball_tone2:":            "\u26f9\U0001f3fc",
	":person_bouncing_ball_tone3:":            "\u26f9\U0001f3fd",
	":person_bouncing_ball_tone4:":            "\u26f9\U0001f3fe",
	":person_bouncing_ball_tone5:":            "\u26f9\U0001f3ff",
	":person_bowing:":                         "\U0001f647",
	":person_bowing_tone1:":                   "\U0001f647\U0001f3fb",
	":person_bowing_tone2:":                   "\U0001f647\U0001f3fc",
	":person_bowing_tone3:":                   "\U0001f647\U0001f3fd",
	":person_bowing_tone4:":                   "\U0001f647\U0001f3fe",
	":person_bowing_tone5:":                   "\U0001f647\U0001f3ff",
	":person_cartwheeling:":                   "\U0001f938",
	":person_climbing:":                       "\U0001f9d7",
	":person_climbing_tone1:":                 "\U0001f9d7\U0001f3fb",
	":person_climbing_tone2:":                 "\U0001f9d7\U0001f3fc",
	":person_climbing_tone3:":                 "\U0001f9d7\U0001f3fd",
	":person_climbing_tone4:":                 "\U0001f9d7\U0001f3fe",
	":person_climbing_tone5:":                 "\U0001f9d7\U0001f3ff",
	":person_curly_hair:":                     "\U0001f9d1\U0000200d\U0001f9b1",
	":person_doing_cartwheel:":                "\U0001f938",
	":person_doing_cartwheel_tone1:":          "\U0001f938\U0001f3fb",
	":person_doing_cartwheel_tone2:":          "\U0001f938\U0001f3fc",
	":person_doing_cartwheel_tone3:":          "\U0001f938\U0001f3fd",
	":person_doing_cartwheel_tone4:":          "\U0001f938\U0001f3fe",
	":person_doing_cartwheel_tone5:":          "\U0001f938\U0001f3ff",
	":person_facepalming:":                    "\U0001f926",
	":person_facepalming_tone1:":              "\U0001f926\U0001f3fb",
	":person_facepalming_tone2:":              "\U0001f926\U0001f3fc",
	":person_facepalming_tone3:":              "\U0001f926\U0001f3fd",
	":person_facepalming_tone4:":              "\U0001f926\U0001f3fe",
	":person_facepalming_tone5:":              "\U0001f926\U0001f3ff",
	":person_fencing:":                        "\U0001f93a",
	":person_frowning:":                       "\U0001f64d",
	":person_frowning_tone1:":                 "\U0001f64d\U0001f3fb",
	":person_frowning_tone2:":                 "\U0001f64d\U0001f3fc",
	":person_frowning_tone3:":                 "\U0001f64d\U0001f3fd",
	":person_frowning_tone4:":                 "\U0001f64d\U0001f3fe",
	":person_frowning_tone5:":                 "\U0001f64d\U0001f3ff",
	":person_gesturing_NO:":                   "\U0001f645",
	":person_gesturing_OK:":                   "\U0001f646",
	":person_gesturing_no:":                   "\U0001f645",
	":person_gesturing_no_tone1:":             "\U0001f645\U0001f3fb",
	":person_gesturing_no_tone2:":             "\U0001f645\U0001f3fc",
	":person_gesturing_no_tone3:":             "\U0001f645\U0001f3fd",
	":person_gesturing_no_tone4:":             "\U0001f645\U0001f3fe",
	":person_gesturing_no_tone5:":             "\U0001f645\U0001f3ff",
	":person_gesturing_ok:":                   "\U0001f646",
	":person_gesturing_ok_tone1:":             "\U0001f646\U0001f3fb",
	":person_gesturing_ok_tone2:":             "\U0001f646\U0001f3fc",
	":person_gesturing_ok_tone3:":             "\U0001f646\U0001f3fd",
	":person_gesturing_ok_tone4:":             "\U0001f646\U0001f3fe",
	":person_gesturing_ok_tone5:":             "\U0001f646\U0001f3ff",
	":person_getting_haircut:":                "\U0001f487",
	":person_getting_haircut_tone1:":          "\U0001f487\U0001f3fb",
	":person_getting_haircut_tone2:":          "\U0001f487\U0001f3fc",
	":person_getting_haircut_tone3:":          "\U0001f487\U0001f3fd",
	":person_getting_haircut_tone4:":          "\U0001f487\U0001f3fe",
	":person_getting_haircut_tone5:":          "\U0001f487\U0001f3ff",
	":person_getting_massage:":                "\U0001f486",
	":person_getting_massage_tone1:":          "\U0001f486\U0001f3fb",
	":person_getting_massage_tone2:":          "\U0001f486\U0001f3fc",
	":person_getting_massage_tone3:":          "\U0001f486\U0001f3fd",
	":person_getting_massage_tone4:":          "\U0001f486\U0001f3fe",
	":person_getting_massage_tone5:":          "\U0001f486\U0001f3ff",
	":person_golfing:":                        "\U0001f3cc",
	":person_golfing_tone1:":                  "\U0001f3cc\U0001f3fb",
	":person_golfing_tone2:":                  "\U0001f3cc\U0001f3fc",
	":person_golfing_tone3:":                  "\U0001f3cc\U0001f3fd",
	":person_golfing_tone4:":                  "\U0001f3cc\U0001f3fe",
	":person_golfing_tone5:":                  "\U0001f3cc\U0001f3ff",
	":person_in_bed:":                         "\U0001f6cc",
	":person_in_bed_tone1:":                   "\U0001f6cc\U0001f3fb",
	":person_in_bed_tone2:":                   "\U0001f6cc\U0001f3fc",
	":person_in_bed_tone3:":                   "\U0001f6cc\U0001f3fd",
	":person_in_bed_tone4:":                   "\U0001f6cc\U0001f3fe",
	":person_in_bed_tone5:":                   "\U0001f6cc\U0001f3ff",
	":person_in_lotus_position:":              "\U0001f9d8",
	":person_in_lotus_position_tone1:":        "\U0001f9d8\U0001f3fb",
	":person_in_lotus_position_tone2:":        "\U0001f9d8\U0001f3fc",
	":person_in_lotus_position_tone3:":        "\U0001f9d8\U0001f3fd",
	":person_in_lotus_position_tone4:":        "\U0001f9d8\U0001f3fe",
	":person_in_lotus_position_tone5:":        "\U0001f9d8\U0001f3ff",
	":person_in_manual_wheelchair:":           "\U0001f9d1\U0000200d\U0001f9bd",
	":person_in_motorized_wheelchair:":        "\U0001f9d1\U0000200d\U0001f9bc",
	":person_in_steamy_room:":                 "\U0001f9d6",
	":person_in_steamy_room_tone1:":           "\U0001f9d6\U0001f3fb",
	":person_in_steamy_room_tone2:":           "\U0001f9d6\U0001f3fc",
	":person_in_steamy_room_tone3:":           "\U0001f9d6\U0001f3fd",
	":person_in_steamy_room_tone4:":           "\U0001f9d6\U0001f3fe",
	":person_in_steamy_room_tone5:":           "\U0001f9d6\U0001f3ff",
	":person_juggling:":                       "\U0001f939",
	":person_juggling_tone1:":                 "\U0001f939\U0001f3fb",
	":person_juggling_tone2:":                 "\U0001f939\U0001f3fc",
	":person_juggling_tone3:":                 "\U0001f939\U0001f3fd",
	":person_juggling_tone4:":                 "\U0001f939\U0001f3fe",
	":person_juggling_tone5:":                 "\U0001f939\U0001f3ff",
	":person_kneeling:":                       "\U0001f9ce",
	":person_lifting_weights:":                "\U0001f3cb",
	":person_lifting_weights_tone1:":          "\U0001f3cb\U0001f3fb",
	":person_lifting_weights_tone2:":          "\U0001f3cb\U0001f3fc",
	":person_lifting_weights_tone3:":          "\U0001f3cb\U0001f3fd",
	":person_lifting_weights_tone4:":          "\U0001f3cb\U0001f3fe",
	":person_lifting_weights_tone5:":          "\U0001f3cb\U0001f3ff",
	":person_mountain_biking:":                "\U0001f6b5",
	":person_mountain_biking_tone1:":          "\U0001f6b5\U0001f3fb",
	":person_mountain_biking_tone2:":          "\U0001f6b5\U0001f3fc",
	":person_mountain_biking_tone3:":          "\U0001f6b5\U0001f3fd",
	":person_mountain_biking_tone4:":          "\U0001f6b5\U0001f3fe",
	":person_mountain_biking_tone5:":          "\U0001f6b5\U0001f3ff",
	":person_playing_handball:":               "\U0001f93e",
	":person_playing_handball_tone1:":         "\U0001f93e\U0001f3fb",
	":person_playing_handball_tone2:":         "\U0001f93e\U0001f3fc",
	":person_playing_handball_tone3:":         "\U0001f93e\U0001f3fd",
	":person_playing_handball_tone4:":         "\U0001f93e\U0001f3fe",
	":person_playing_handball_tone5:":         "\U0001f93e\U0001f3ff",
	":person_playing_water_polo:":             "\U0001f93d",
	":person_playing_water_polo_tone1:":       "\U0001f93d\U0001f3fb",
	":person_playing_water_polo_tone2:":       "\U0001f93d\U0001f3fc",
	":person_playing_water_polo_tone3:":       "\U0001f93d\U0001f3fd",
	":person_playing_water_polo_tone4:":       "\U0001f93d\U0001f3fe",
	":person_playing_water_polo_tone5:":       "\U0001f93d\U0001f3ff",
	":person_pouting:":                        "\U0001f64e",
	":person_pouting_tone1:":                  "\U0001f64e\U0001f3fb",
	":person_pouting_tone2:":                  "\U0001f64e\U0001f3fc",
	":person_pouting_tone3:":                  "\U0001f64e\U0001f3fd",
	":person_pouting_tone4:":                  "\U0001f64e\U0001f3fe",
	":person_pouting_tone5:":                  "\U0001f64e\U0001f3ff",
	":person_raising_hand:":                   "\U0001f64b",
	":person_raising_hand_tone1:":             "\U0001f64b\U0001f3fb",
	":person_raising_hand_tone2:":             "\U0001f64b\U0001f3fc",
	":person_raising_hand_tone3:":             "\U0001f64b\U0001f3fd",
	":person_raising_hand_tone4:":             "\U0001f64b\U0001f3fe",
	":person_raising_hand_tone5:":             "\U0001f64b\U0001f3ff",
	":person_red_hair:":                       "\U0001f9d1\U0000200d\U0001f9b0",
	":person_rowing_boat:":                    "\U0001f6a3",
	":person_rowing_boat_tone1:":              "\U0001f6a3\U0001f3fb",
	":person_rowing_boat_tone2:":              "\U0001f6a3\U0001f3fc",
	":person_rowing_boat_tone3:":              "\U0001f6a3\U0001f3fd",
	":person_rowing_boat_tone4:":              "\U0001f6a3\U0001f3fe",
	":person_rowing_boat_tone5:":              "\U0001f6a3\U0001f3ff",
	":person_running:":                        "\U0001f3c3",
	":person_running_tone1:":                  "\U0001f3c3\U0001f3fb",
	":person_running_tone2:":                  "\U0001f3c3\U0001f3fc",
	":person_running_tone3:":                  "\U0001f3c3\U0001f3fd",
	":person_running_tone4:":                  "\U0001f3c3\U0001f3fe",
	":person_running_tone5:":                  "\U0001f3c3\U0001f3ff",
	":person_shrugging:":                      "\U0001f937",
	":person_shrugging_tone1:":                "\U0001f937\U0001f3fb",
	":person_shrugging_tone2:":                "\U0001f937\U0001f3fc",
	":person_shrugging_tone3:":                "\U0001f937\U0001f3fd",
	":person_shrugging_tone4:":                "\U0001f937\U0001f3fe",
	":person_shrugging_tone5:":                "\U0001f937\U0001f3ff",
	":person_standing:":                       "\U0001f9cd",
	":person_surfing:":                        "\U0001f3c4",
	":person_surfing_tone1:":                  "\U0001f3c4\U0001f3fb",
	":person_surfing_tone2:":                  "\U0001f3c4\U0001f3fc",
	":person_surfing_tone3:":                  "\U0001f3c4\U0001f3fd",
	":person_surfing_tone4:":                  "\U0001f3c4\U0001f3fe",
	":person_surfing_tone5:":                  "\U0001f3c4\U0001f3ff",
	":person_swimming:":                       "\U0001f3ca",
	":person_swimming_tone1:":                 "\U0001f3ca\U0001f3fb",
	":person_swimming_tone2:":                 "\U0001f3ca\U0001f3fc",
	":person_swimming_tone3:":                 "\U0001f3ca\U0001f3fd",
	":person_swimming_tone4:":                 "\U0001f3ca\U0001f3fe",
	":person_swimming_tone5:":                 "\U0001f3ca\U0001f3ff",
	":person_taking_bath:":                    "\U0001f6c0",
	":person_tipping_hand:":                   "\U0001f481",
	":person_tipping_hand_tone1:":             "\U0001f481\U0001f3fb",
	":person_tipping_hand_tone2:":             "\U0001f481\U0001f3fc",
	":person_tipping_hand_tone3:":             "\U0001f481\U0001f3fd",
	":person_tipping_hand_tone4:":             "\U0001f481\U0001f3fe",
	":person_tipping_hand_tone5:":             "\U0001f481\U0001f3ff",
	":person_walking:":                        "\U0001f6b6",
	":person_walking_tone1:":                  "\U0001f6b6\U0001f3fb",
	":person_walking_tone2:":                  "\U0001f6b6\U0001f3fc",
	":person_walking_tone3:":                  "\U0001f6b6\U0001f3fd",
	":person_walking_tone4:":                  "\U0001f6b6\U0001f3fe",
	":person_walking_tone5:":                  "\U0001f6b6\U0001f3ff",
	":person_wearing_turban:":                 "\U0001f473",
	":person_wearing_turban_tone1:":           "\U0001f473\U0001f3fb",
	":person_wearing_turban_tone2:":           "\U0001f473\U0001f3fc",
	":person_wearing_turban_tone3:":           "\U0001f473\U0001f3fd",
	":person_wearing_turban_tone4:":           "\U0001f473\U0001f3fe",
	":person_wearing_turban_tone5:":           "\U0001f473\U0001f3ff",
	":person_white_hair:":                     "\U0001f9d1\U0000200d\U0001f9b3",
	":person_with_probing_cane:":              "\U0001f9d1\U0000200d\U0001f9af",
	":person_with_turban:":                    "\U0001f473",
	":peru:":                                  "\U0001f1f5\U0001f1ea",
	":petri_dish:":                            "\U0001f9eb",
	":philippines:":                           "\U0001f1f5\U0001f1ed",
	":phone:":                                 "\u260e\ufe0f",
	":pick:":                                  "\U000026cf",
	":pie:":                                   "\U0001f967",
	":pig:":                                   "\U0001f416",
	":pig2:":                                  "\U0001f416",
	":pig_face:":                              "\U0001f437",
	":pig_nose:":                              "\U0001f43d",
	":pile_of_poo:":                           "\U0001f4a9",
	":pill:":                                  "\U0001f48a",
	":pilot:":                                 "\U0001f9d1\U0000200d\U00002708\U0000fe0f",
	":pinching_hand:":                         "\U0001f90f",
	":pine_decoration:":                       "\U0001f38d",
	":pineapple:":                             "\U0001f34d",
	":ping_pong:":                             "\U0001f3d3",
	":pirate_flag:":                           "\U0001f3f4\U0000200d\U00002620\U0000fe0f",
	":pisces:":                                "\u2653",
	":pistol:":                                "\U0001f52b",
	":pitcairn_islands:":                      "\U0001f1f5\U0001f1f3",
	":pizza:":                                 "\U0001f355",
	":place_of_worship:":                      "\U0001f6d0",
	":plate_with_cutlery:":                    "\U0001f37d",
	":play_button:":                           "\U000025b6",
	":play_or_pause_button:":                  "\U000023ef",
	":play_pause:":                            "\u23ef",
	":pleading_face:":                         "\U0001f97a",
	":plus_sign:":                             "\U00002795",
	":point_down:":                            "\U0001f447",
	":point_down_tone1:":                      "\U0001f447\U0001f3fb",
	":point_down_tone2:":                      "\U0001f447\U0001f3fc",
	":point_down_tone3:":                      "\U0001f447\U0001f3fd",
	":point_down_tone4:":                      "\U0001f447\U0001f3fe",
	":point_down_tone5:":                      "\U0001f447\U0001f3ff",
	":point_left:":                            "\U0001f448",
	":point_left_tone1:":                      "\U0001f448\U0001f3fb",
	":point_left_tone2:":                      "\U0001f448\U0001f3fc",
	":point_left_tone3:":                      "\U0001f448\U0001f3fd",
	":point_left_tone4:":                      "\U0001f448\U0001f3fe",
	":point_left_tone5:":                      "\U0001f448\U0001f3ff",
	":point_right:":                           "\U0001f449",
	":point_right_tone1:":                     "\U0001f449\U0001f3fb",
	":point_right_tone2:":                     "\U0001f449\U0001f3fc",
	":point_right_tone3:":                     "\U0001f449\U0001f3fd",
	":point_right_tone4:":                     "\U0001f449\U0001f3fe",
	":point_right_tone5:":                     "\U0001f449\U0001f3ff",
	":point_up:":                              "\u261d",
	":point_up_2:":                            "\U0001f446",
	":point_up_2_tone1:":                      "\U0001f446\U0001f3fb",
	":point_up_2_tone2:":                      "\U0001f446\U0001f3fc",
	":point_up_2_tone3:":                      "\U0001f446\U0001f3fd",
	":point_up_2_tone4:":                      "\U0001f446\U0001f3fe",
	":point_up_2_tone5:":                      "\U0001f446\U0001f3ff",
	":point_up_tone1:":                        "\u261d\U0001f3fb",
	":point_up_tone2:":                        "\u261d\U0001f3fc",
	":point_up_tone3:":                        "\u261d\U0001f3fd",
	":point_up_tone4:":                        "\u261d\U0001f3fe",
	":point_up_tone5:":                        "\u261d\U0001f3ff",
	":poland:":                                "\U0001f1f5\U0001f1f1",
	":police_car:":                            "\U0001f693",
	":police_car_light:":                      "\U0001f6a8",
	":police_officer:":                        "\U0001f46e",
	":police_officer_tone1:":                  "\U0001f46e\U0001f3fb",
	":police_officer_tone2:":                  "\U0001f46e\U0001f3fc",
	":police_officer_tone3:":                  "\U0001f46e\U0001f3fd",
	":police_officer_tone4:":                  "\U0001f46e\U0001f3fe",
	":police_officer_tone5:":                  "\U0001f46e\U0001f3ff",
	":policeman:":                             "\U0001f46e\u200d\u2642",
	":policewoman:":                           "\U0001f46e\u200d\u2640",
	":poodle:":                                "\U0001f429",
	":pool_8_ball:":                           "\U0001f3b1",
	":poop:":                                  "\U0001f4a9",
	":popcorn:":                               "\U0001f37f",
	":portugal:":                              "\U0001f1f5\U0001f1f9",
	":post_office:":                           "\U0001f3e4",
	":postal_horn:":                           "\U0001f4ef",
	":postbox:":                               "\U0001f4ee",
	":pot_of_food:":                           "\U0001f372",
	":potable_water:":                         "\U0001f6b0",
	":potato:":                                "\U0001f954",
	":pouch:":                                 "\U0001f45d",
	":poultry_leg:":                           "\U0001f357",
	":pound:":                                 "\U0001f4b7",
	":pound_banknote:":                        "\U0001f4b7",
	":pout:":                                  "\U0001f621",
	":pouting_cat:":                           "\U0001f63e",
	":pouting_face:":                          "\U0001f621",
	":pouting_man:":                           "\U0001f64e\u200d\u2642",
	":pouting_woman:":                         "\U0001f64e\u200d\u2640",
	":pray:":                                  "\U0001f64f",
	":pray_tone1:":                            "\U0001f64f\U0001f3fb",
	":pray_tone2:":                            "\U0001f64f\U0001f3fc",
	":pray_tone3:":                            "\U0001f64f\U0001f3fd",
	":pray_tone4:":                            "\U0001f64f\U0001f3fe",
	":pray_tone5:":                            "\U0001f64f\U0001f3ff",
	":prayer_beads:":                          "\U0001f4ff",
	":pregnant_woman:":                        "\U0001f930",
	":pregnant_woman_tone1:":                  "\U0001f930\U0001f3fb",
	":pregnant_woman_tone2:":                  "\U0001f930\U0001f3fc",
	":pregnant_woman_tone3:":                  "\U0001f930\U0001f3fd",
	":pregnant_woman_tone4:":                  "\U0001f930\U0001f3fe",
	":pregnant_woman_tone5:":                  "\U0001f930\U0001f3ff",
	":pretzel:":                               "\U0001f968",
	":previous_track_button:":                 "\u23ee",
	":prince:":                                "\U0001f934",
	":prince_tone1:":                          "\U0001f934\U0001f3fb",
	":prince_tone2:":                          "\U0001f934\U0001f3fc",
	":prince_tone3:":                          "\U0001f934\U0001f3fd",
	":prince_tone4:":                          "\U0001f934\U0001f3fe",
	":prince_tone5:":                          "\U0001f934\U0001f3ff",
	":princess:":                              "\U0001f478",
	":princess_tone1:":                        "\U0001f478\U0001f3fb",
	":princess_tone2:":                        "\U0001f478\U0001f3fc",
	":princess_tone3:":                        "\U0001f478\U0001f3fd",
	":princess_tone4:":                        "\U0001f478\U0001f3fe",
	":princess_tone5:":                        "\U0001f478\U0001f3ff",
	":printer:":                               "\U0001f5a8",
	":probing_cane:":                          "\U0001f9af",
	":prohibited:":                            "\U0001f6ab",
	":projector:":                             "\U0001f4fd",
	":puerto_rico:":                           "\U0001f1f5\U0001f1f7",
	":punch:":                                 "\U0001f44a",
	":punch_tone1:":                           "\U0001f44a\U0001f3fb",
	":punch_tone2:":                           "\U0001f44a\U0001f3fc",
	":punch_tone3:":                           "\U0001f44a\U0001f3fd",
	":punch_tone4:":                           "\U0001f44a\U0001f3fe",
	":punch_tone5:":                           "\U0001f44a\U0001f3ff",
	":purple_circle:":                         "\U0001f7e3",
	":purple_heart:":                          "\U0001f49c",
	":purple_square:":                         "\U0001f7ea",
	":purse:":                                 "\U0001f45b",
	":pushpin:":                               "\U0001f4cc",
	":put_litter_in_its_place:":               "\U0001f6ae",
	":puzzle_piece:":                          "\U0001f9e9",
	":qatar:":                                 "\U0001f1f6\U0001f1e6",
	":question:":                              "\u2753",
	":question_mark:":                         "\U00002753",
	":rabbit:":                                "\U0001f407",
	":rabbit2:":                               "\U0001f407",
	":rabbit_face:":                           "\U0001f430",
	":raccoon:":                               "\U0001f99d",
	":race_car:":                              "\U0001f3ce",
	":racehorse:":                             "\U0001f40e",
	":racing_car:":                            "\U0001f3ce",
	":radio:":                                 "\U0001f4fb",
	":radio_button:":                          "\U0001f518",
	":radioactive:":                           "\U00002622",
	":rage:":                                  "\U0001f621",
	":railway_car:":                           "\U0001f683",
	":railway_track:":                         "\U0001f6e4",
	":rainbow:":                               "\U0001f308",
	":rainbow_flag:":                          "\U0001f3f3\U0000fe0f\U0000200d\U0001f308",
	":raised_back_of_hand:":                   "\U0001f91a",
	":raised_back_of_hand_tone1:":             "\U0001f91a\U0001f3fb",
	":raised_back_of_hand_tone2:":             "\U0001f91a\U0001f3fc",
	":raised_back_of_hand_tone3:":             "\U0001f91a\U0001f3fd",
	":raised_back_of_hand_tone4:":             "\U0001f91a\U0001f3fe",
	":raised_back_of_hand_tone5:":             "\U0001f91a\U0001f3ff",
	":raised_eyebrow:":                        "\U0001f928",
	":raised_fist:":                           "\U0000270a",
	":raised_hand:":                           "\U0000270b",
	":raised_hand_tone1:":                     "\u270b\U0001f3fb",
	":raised_hand_tone2:":                     "\u270b\U0001f3fc",
	":raised_hand_tone3:":                     "\u270b\U0001f3fd",
	":raised_hand_tone4:":                     "\u270b\U0001f3fe",
	":raised_hand_tone5:":                     "\u270b\U0001f3ff",
	":raised_hand_with_fingers_splayed:":      "\U0001f590",
	":raised_hands:":                          "\U0001f64c",
	":raised_hands_tone1:":                    "\U0001f64c\U0001f3fb",
	":raised_hands_tone2:":                    "\U0001f64c\U0001f3fc",
	":raised_hands_tone3:":                    "\U0001f64c\U0001f3fd",
	":raised_hands_tone4:":                    "\U0001f64c\U0001f3fe",
	":raised_hands_tone5:":                    "\U0001f64c\U0001f3ff",
	":raising_hand:":                          "\U0001f64b",
	":raising_hand_man:":                      "\U0001f64b\u200d\u2642",
	":raising_hand_woman:":                    "\U0001f64b\u200d\u2640",
	":raising_hands:":                         "\U0001f64c",
	":ram:":                                   "\U0001f40f",
	":ramen:":                                 "\U0001f35c",
	":rat:":                                   "\U0001f400",
	":razor:":                                 "\U0001fa92",
	":receipt:":                               "\U0001f9fe",
	":record_button:":                         "\U000023fa",
	":recycle:":                               "\u267b",
	":recycling_symbol:":                      "\U0000267b",
	":red_apple:":                             "\U0001f34e",
	":red_car:":                               "\U0001f697",
	":red_circle:":                            "\U0001f534",
	":red_envelope:":                          "\U0001f9e7",
	":red_hair:":                              "\U0001f9b0",
	":red_haired_man:":                        "\U0001f468\u200d\U0001f9b0",
	":red_haired_woman:":                      "\U0001f469\u200d\U0001f9b0",
	":red_heart:":                             "\U00002764",
	":red_paper_lantern:":                     "\U0001f3ee",
	":red_square:":                            "\U0001f7e5",
	":red_triangle_pointed_down:":             "\U0001f53b",
	":red_triangle_pointed_up:":               "\U0001f53a",
	":registered:":                            "\U000000ae",
	":relaxed:":                               "\u263a",
	":relieved:":                              "\U0001f60c",
	":relieved_face:":                         "\U0001f60c",
	":reminder_ribbon:":                       "\U0001f397",
	":repeat:":                                "\U0001f501",
	":repeat_button:":                         "\U0001f501",
	":repeat_one:":                            "\U0001f502",
	":repeat_single_button:":                  "\U0001f502",
	":rescue_worker_helmet:":                  "\u26d1",
	":rescue_worker’s_helmet:":                "\U000026d1",
	":restroom:":                              "\U0001f6bb",
	":reunion:":                               "\U0001f1f7\U0001f1ea",
	":reverse_button:":                        "\U000025c0",
	":revolving_hearts:":                      "\U0001f49e",
	":rewind:":                                "\u23ea",
	":rhino:":                                 "\U0001f98f",
	":rhinoceros:":                            "\U0001f98f",
	":ribbon:":                                "\U0001f380",
	":rice:":                                  "\U0001f35a",
	":rice_ball:":                             "\U0001f359",
	":rice_cracker:":                          "\U0001f358",
	":rice_scene:":                            "\U0001f391",
	":right-facing_fist:":                     "\U0001f91c",
	":right_anger_bubble:":                    "\U0001f5ef",
	":right_arrow:":                           "\U000027a1",
	":right_arrow_curving_down:":              "\U00002935",
	":right_arrow_curving_left:":              "\U000021a9",
	":right_arrow_curving_up:":                "\U00002934",
	":right_facing_fist:":                     "\U0001f91c",
	":right_facing_fist_tone1:":               "\U0001f91c\U0001f3fb",
	":right_facing_fist_tone2:":               "\U0001f91c\U0001f3fc",
	":right_facing_fist_tone3:":               "\U0001f91c\U0001f3fd",
	":right_facing_fist_tone4:":               "\U0001f91c\U0001f3fe",
	":right_facing_fist_tone5:":               "\U0001f91c\U0001f3ff",
	":ring:":                                  "\U0001f48d",
	":ringed_planet:":                         "\U0001fa90",
	":roasted_sweet_potato:":                  "\U0001f360",
	":robot:":                                 "\U0001f916",
	":rocket:":                                "\U0001f680",
	":rofl:":                                  "\U0001f923",
	":roll_eyes:":                             "\U0001f644",
	":roll_of_paper:":                         "\U0001f9fb",
	":rolled-up_newspaper:":                   "\U0001f5de",
	":roller_coaster:":                        "\U0001f3a2",
	":rolling_eyes:":                          "\U0001f644",
	":rolling_on_the_floor_laughing:":         "\U0001f923",
	":romania:":                               "\U0001f1f7\U0001f1f4",
	":rooster:":                               "\U0001f413",
	":rose:":                                  "\U0001f339",
	":rosette:":                               "\U0001f3f5",
	":rotating_light:":                        "\U0001f6a8",
	":round_pushpin:":                         "\U0001f4cd",
	":rowboat:":                               "\U0001f6a3",
	":rowing_man:":                            "\U0001f6a3\u200d\u2642",
	":rowing_woman:":                          "\U0001f6a3\u200d\u2640",
	":ru:":                                    "\U0001f1f7\U0001f1fa",
	":rugby_football:":                        "\U0001f3c9",
	":runner:":                                "\U0001f3c3",
	":running:":                               "\U0001f3c3",
	":running_man:":                           "\U0001f3c3\u200d\u2642",
	":running_shirt:":                         "\U0001f3bd",
	":running_shirt_with_sash:":               "\U0001f3bd",
	":running_shoe:":                          "\U0001f45f",
	":running_woman:":                         "\U0001f3c3\u200d\u2640",
	":rwanda:":                                "\U0001f1f7\U0001f1fc",
	":sa:":                                    "\U0001f202",
	":sad_but_relieved_face:":                 "\U0001f625",
	":safety_pin:":                            "\U0001f9f7",
	":safety_vest:":                           "\U0001f9ba",
	":sagittarius:":                           "\u2650",
	":sailboat:":                              "\U000026f5",
	":sake:":                                  "\U0001f376",
	":salad:":                                 "\U0001f957",
	":salt:":                                  "\U0001f9c2",
	":samoa:":                                 "\U0001f1fc\U0001f1f8",
	":san_marino:":                            "\U0001f1f8\U0001f1f2",
	":sandal:":                                "\U0001f461",
	":sandwich:":                              "\U0001f96a",
	":santa:":                                 "\U0001f385",
	":santa_tone1:":                           "\U0001f385\U0001f3fb",
	":santa_tone2:":                           "\U0001f385\U0001f3fc",
	":santa_tone3:":                           "\U0001f385\U0001f3fd",
	":santa_tone4:":                           "\U0001f385\U0001f3fe",
	":santa_tone5:":                           "\U0001f385\U0001f3ff",
	":sao_tome_principe:":                     "\U0001f1f8\U0001f1f9",
	":sari:":                                  "\U0001f97b",
	":sassy_man:":                             "\U0001f481\u200d\u2642",
	":sassy_woman:":                           "\U0001f481\u200d\u2640",
	":satellite:":                             "\U0001f6f0",
	":satellite_antenna:":                     "\U0001f4e1",
	":satellite_orbital:":                     "\U0001f6f0",
	":satisfied:":                             "\U0001f606",
	":saudi_arabia:":                          "\U0001f1f8\U0001f1e6",
	":sauna_man:":                             "\U0001f9d6\u200d\u2642",
	":sauna_person:":                          "\U0001f9d6",
	":sauna_woman:":                           "\U0001f9d6\u200d\u2640",
	":sauropod:":                              "\U0001f995",
	":saxophone:":                             "\U0001f3b7",
	":scales:":                                "\u2696",
	":scarf:":                                 "\U0001f9e3",
	":school:":                                "\U0001f3eb",
	":school_satchel:":                        "\U0001f392",
	":scientist:":                             "\U0001f9d1\U0000200d\U0001f52c",
	":scissors:":                              "\U00002702",
	":scooter:":                               "\U0001f6f4",
	":scorpion:":                              "\U0001f982",
	":scorpius:":                              "\u264f",
	":scotland:":                              "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f",
	":scream:":                                "\U0001f631",
	":scream_cat:":                            "\U0001f640",
	":scroll:":                                "\U0001f4dc",
	":seat:":                                  "\U0001f4ba",
	":second_place:":                          "\U0001f948",
	":secret:":                                "\u3299",
	":see-no-evil_monkey:":                    "\U0001f648",
	":see_no_evil:":                           "\U0001f648",
	":seedling:":                              "\U0001f331",
	":selfie:":                                "\U0001f933",
	":selfie_tone1:":                          "\U0001f933\U0001f3fb",
	":selfie_tone2:":                          "\U0001f933\U0001f3fc",
	":selfie_tone3:":                          "\U0001f933\U0001f3fd",
	":selfie_tone4:":                          "\U0001f933\U0001f3fe",
	":selfie_tone5:":                          "\U0001f933\U0001f3ff",
	":senegal:":                               "\U0001f1f8\U0001f1f3",
	":serbia:":                                "\U0001f1f7\U0001f1f8",
	":service_dog:":                           "\U0001f415\U0000200d\U0001f9ba",
	":seven:":                                 "7\ufe0f\u20e3",
	":seven-thirty:":                          "\U0001f562",
	":seven_o’clock:":                         "\U0001f556",
	":seychelles:":                            "\U0001f1f8\U0001f1e8",
	":shallow_pan_of_food:":                   "\U0001f958",
	":shamrock:":                              "\U00002618",
	":shark:":                                 "\U0001f988",
	":shaved_ice:":                            "\U0001f367",
	":sheaf_of_rice:":                         "\U0001f33e",
	":sheep:":                                 "\U0001f411",
	":shell:":                                 "\U0001f41a",
	":shield:":                                "\U0001f6e1",
	":shinto_shrine:":                         "\U000026e9",
	":ship:":                                  "\U0001f6a2",
	":shirt:":                                 "\U0001f455",
	":shit:":                                  "\U0001f4a9",
	":shoe:":                                  "\U0001f45e",
	":shooting_star:":                         "\U0001f320",
	":shopping:":                              "\U0001f6cd",
	":shopping_bags:":                         "\U0001f6cd",
	":shopping_cart:":                         "\U0001f6d2",
	":shortcake:":                             "\U0001f370",
	":shorts:":                                "\U0001fa73",
	":shower:":                                "\U0001f6bf",
	":shrimp:":                                "\U0001f990",
	":shrug:":                                 "\U0001f937",
	":shuffle_tracks_button:":                 "\U0001f500",
	":shushing_face:":                         "\U0001f92b",
	":sierra_leone:":                          "\U0001f1f8\U0001f1f1",
	":sign_of_the_horns:":                     "\U0001f918",
	":signal_strength:":                       "\U0001f4f6",
	":singapore:":                             "\U0001f1f8\U0001f1ec",
	":singer:":                                "\U0001f9d1\U0000200d\U0001f3a4",
	":sint_maarten:":                          "\U0001f1f8\U0001f1fd",
	":six:":                                   "6\ufe0f\u20e3",
	":six-thirty:":                            "\U0001f561",
	":six_o’clock:":                           "\U0001f555",
	":six_pointed_star:":                      "\U0001f52f",
	":skateboard:":                            "\U0001f6f9",
	":ski:":                                   "\U0001f3bf",
	":skier:":                                 "\U000026f7",
	":skis:":                                  "\U0001f3bf",
	":skull:":                                 "\U0001f480",
	":skull_and_crossbones:":                  "\U00002620",
	":skull_crossbones:":                      "\u2620",
	":skunk:":                                 "\U0001f9a8",
	":sled:":                                  "\U0001f6f7",
	":sleeping:":                              "\U0001f634",
	":sleeping_accommodation:":                "\U0001f6cc",
	":sleeping_bed:":                          "\U0001f6cc",
	":sleeping_face:":                         "\U0001f634",
	":sleepy:":                                "\U0001f62a",
	":sleepy_face:":                           "\U0001f62a",
	":slight_frown:":                          "\U0001f641",
	":slight_smile:":                          "\U0001f642",
	":slightly_frowning_face:":                "\U0001f641",
	":slightly_smiling_face:":                 "\U0001f642",
	":slot_machine:":                          "\U0001f3b0",
	":sloth:":                                 "\U0001f9a5",
	":slovakia:":                              "\U0001f1f8\U0001f1f0",
	":slovenia:":                              "\U0001f1f8\U0001f1ee",
	":small_airplane:":                        "\U0001f6e9",
	":small_blue_diamond:":                    "\U0001f539",
	":small_orange_diamond:":                  "\U0001f538",
	":small_red_triangle:":                    "\U0001f53a",
	":small_red_triangle_down:":               "\U0001f53b",
	":smile:":                                 "\U0001f604",
	":smile_cat:":                             "\U0001f638",
	":smiley:":                                "\U0001f603",
	":smiley_cat:":                            "\U0001f63a",
	":smiling_cat_with_heart-eyes:":           "\U0001f63b",
	":smiling_face:":                          "\U0000263a",
	":smiling_face_with_halo:":                "\U0001f607",
	":smiling_face_with_heart-eyes:":          "\U0001f60d",
	":smiling_face_with_hearts:":              "\U0001f970",
	":smiling_face_with_horns:":               "\U0001f608",
	":smiling_face_with_smiling_eyes:":        "\U0001f60a",
	":smiling_face_with_sunglasses:":          "\U0001f60e",
	":smiling_face_with_three_hearts:":        "\U0001f970",
	":smiling_imp:":                           "\U0001f608",
	":smirk:":                                 "\U0001f60f",
	":smirk_cat:":                             "\U0001f63c",
	":smirking_face:":                         "\U0001f60f",
	":smoking:":                               "\U0001f6ac",
	":snail:":                                 "\U0001f40c",
	":snake:":                                 "\U0001f40d",
	":sneezing_face:":                         "\U0001f927",
	":snow-capped_mountain:":                  "\U0001f3d4",
	":snowboarder:":                           "\U0001f3c2",
	":snowboarder_tone1:":                     "\U0001f3c2\U0001f3fb",
	":snowboarder_tone2:":                     "\U0001f3c2\U0001f3fc",
	":snowboarder_tone3:":                     "\U0001f3c2\U0001f3fd",
	":snowboarder_tone4:":                     "\U0001f3c2\U0001f3fe",
	":snowboarder_tone5:":                     "\U0001f3c2\U0001f3ff",
	":snowflake:":                             "\U00002744",
	":snowman:":                               "\U00002603",
	":snowman2:":                              "\u2603",
	":snowman_with_snow:":                     "\u2603\ufe0f",
	":snowman_without_snow:":                  "\U000026c4",
	":soap:":                                  "\U0001f9fc",
	":sob:":                                   "\U0001f62d",
	":soccer:":                                "\u26bd",
	":soccer_ball:":                           "\U000026bd",
	":socks:":                                 "\U0001f9e6",
	":soft_ice_cream:":                        "\U0001f366",
	":softball:":                              "\U0001f94e",
	":solomon_islands:":                       "\U0001f1f8\U0001f1e7",
	":somalia:":                               "\U0001f1f8\U0001f1f4",
	":soon:":                                  "\U0001f51c",
	":sos:":                                   "\U0001f198",
	":sound:":                                 "\U0001f509",
	":south_africa:":                          "\U0001f1ff\U0001f1e6",
	":south_georgia_south_sandwich_islands:":  "\U0001f1ec\U0001f1f8",
	":south_sudan:":                           "\U0001f1f8\U0001f1f8",
	":space_invader:":                         "\U0001f47e",
	":spade_suit:":                            "\U00002660",
	":spades:":                                "\u2660",
	":spaghetti:":                             "\U0001f35d",
	":sparkle:":                               "\U00002747",
	":sparkler:":                              "\U0001f387",
	":sparkles:":                              "\U00002728",
	":sparkling_heart:":                       "\U0001f496",
	":speak-no-evil_monkey:":                  "\U0001f64a",
	":speak_no_evil:":                         "\U0001f64a",
	":speaker:":                               "\U0001f508",
	":speaker_high_volume:":                   "\U0001f50a",
	":speaker_low_volume:":                    "\U0001f508",
	":speaker_medium_volume:":                 "\U0001f509",
	":speaking_head:":                         "\U0001f5e3",
	":speech_balloon:":                        "\U0001f4ac",
	":speech_left:":                           "\U0001f5e8",
	":speedboat:":                             "\U0001f6a4",
	":spider:":                                "\U0001f577",
	":spider_web:":                            "\U0001f578",
	":spiral_calendar:":                       "\U0001f5d3",
	":spiral_notepad:":                        "\U0001f5d2",
	":spiral_shell:":                          "\U0001f41a",
	":sponge:":                                "\U0001f9fd",
	":spoon:":                                 "\U0001f944",
	":sport_utility_vehicle:":                 "\U0001f699",
	":sports_medal:":                          "\U0001f3c5",
	":spouting_whale:":                        "\U0001f433",
	":squid:":                                 "\U0001f991",
	":squinting_face_with_tongue:":            "\U0001f61d",
	":sri_lanka:":                             "\U0001f1f1\U0001f1f0",
	":st_barthelemy:":                         "\U0001f1e7\U0001f1f1",
	":st_helena:":                             "\U0001f1f8\U0001f1ed",
	":st_kitts_nevis:":                        "\U0001f1f0\U0001f1f3",
	":st_lucia:":                              "\U0001f1f1\U0001f1e8",
	":st_martin:":                             "\U0001f1f2\U0001f1eb",
	":st_pierre_miquelon:":                    "\U0001f1f5\U0001f1f2",
	":st_vincent_grenadines:":                 "\U0001f1fb\U0001f1e8",
	":stadium:":                               "\U0001f3df",
	":standing_man:":                          "\U0001f9cd\u200d\u2642",
	":standing_person:":                       "\U0001f9cd",
	":standing_woman:":                        "\U0001f9cd\u200d\u2640",
	":star:":                                  "\U00002b50",
	":star-struck:":                           "\U0001f929",
	":star2:":                                 "\U0001f31f",
	":star_and_crescent:":                     "\U0000262a",
	":star_of_David:":                         "\U00002721",
	":star_of_david:":                         "\u2721",
	":star_struck:":                           "\U0001f929",
	":stars:":                                 "\U0001f320",
	":station:":                               "\U0001f689",
	":statue_of_liberty:":                     "\U0001f5fd",
	":steam_locomotive:":                      "\U0001f682",
	":steaming_bowl:":                         "\U0001f35c",
	":stethoscope:":                           "\U0001fa7a",
	":stew:":                                  "\U0001f372",
	":stop_button:":                           "\U000023f9",
	":stop_sign:":                             "\U0001f6d1",
	":stopwatch:":                             "\U000023f1",
	":straight_ruler:":                        "\U0001f4cf",
	":strawberry:":                            "\U0001f353",
	":stuck_out_tongue:":                      "\U0001f61b",
	":stuck_out_tongue_closed_eyes:":          "\U0001f61d",
	":stuck_out_tongue_winking_eye:":          "\U0001f61c",
	":student:":                               "\U0001f9d1\U0000200d\U0001f393",
	":studio_microphone:":                     "\U0001f399",
	":stuffed_flatbread:":                     "\U0001f959",
	":sudan:":                                 "\U0001f1f8\U0001f1e9",
	":sun:":                                   "\U00002600",
	":sun_behind_cloud:":                      "\U000026c5",
	":sun_behind_large_cloud:":                "\U0001f325",
	":sun_behind_rain_cloud:":                 "\U0001f326",
	":sun_behind_small_cloud:":                "\U0001f324",
	":sun_with_face:":                         "\U0001f31e",
	":sunflower:":                             "\U0001f33b",
	":sunglasses:":                            "\U0001f576",
	":sunny:":                                 "\u2600",
	":sunrise:":                               "\U0001f305",
	":sunrise_over_mountains:":                "\U0001f304",
	":sunset:":                                "\U0001f307",
	":superhero:":                             "\U0001f9b8",
	":superhero_man:":                         "\U0001f9b8\u200d\u2642",
	":superhero_woman:":                       "\U0001f9b8\u200d\u2640",
	":supervillain:":                          "\U0001f9b9",
	":supervillain_man:":                      "\U0001f9b9\u200d\u2642",
	":supervillain_woman:":                    "\U0001f9b9\u200d\u2640",
	":surfer:":                                "\U0001f3c4",
	":surfing_man:":                           "\U0001f3c4\u200d\u2642",
	":surfing_woman:":                         "\U0001f3c4\u200d\u2640",
	":suriname:":                              "\U0001f1f8\U0001f1f7",
	":sushi:":                                 "\U0001f363",
	":suspension_railway:":                    "\U0001f69f",
	":svalbard_jan_mayen:":                    "\U0001f1f8\U0001f1ef",
	":swan:":                                  "\U0001f9a2",
	":swaziland:":                             "\U0001f1f8\U0001f1ff",
	":sweat:":                                 "\U0001f613",
	":sweat_droplets:":                        "\U0001f4a6",
	":sweat_drops:":                           "\U0001f4a6",
	":sweat_smile:":                           "\U0001f605",
	":sweden:":                                "\U0001f1f8\U0001f1ea",
	":sweet_potato:":                          "\U0001f360",
	":swim_brief:":                            "\U0001fa72",
	":swimmer:":                               "\U0001f3ca",
	":swimming_man:":                          "\U0001f3ca\u200d\u2642",
	":swimming_woman:":                        "\U0001f3ca\u200d\u2640",
	":switzerland:":                           "\U0001f1e8\U0001f1ed",
	":symbols:":                               "\U0001f523",
	":synagogue:":                             "\U0001f54d",
	":syria:":                                 "\U0001f1f8\U0001f1fe",
	":syringe:":                               "\U0001f489",
	":t-rex:":                                 "\U0001f996",
	":t-shirt:":                               "\U0001f455",
	":t_rex:":                                 "\U0001f996",
	":taco:":                                  "\U0001f32e",
	":tada:":                                  "\U0001f389",
	":taiwan:":                                "\U0001f1f9\U0001f1fc",
	":tajikistan:":                            "\U0001f1f9\U0001f1ef",
	":takeout_box:":                           "\U0001f961",
	":tanabata_tree:":                         "\U0001f38b",
	":tangerine:":                             "\U0001f34a",
	":tanzania:":                              "\U0001f1f9\U0001f1ff",
	":taurus:":                                "\u2649",
	":taxi:":                                  "\U0001f695",
	":tea:":                                   "\U0001f375",
	":teacher:":                               "\U0001f9d1\U0000200d\U0001f3eb",
	":teacup_without_handle:":                 "\U0001f375",
	":tear-off_calendar:":                     "\U0001f4c6",
	":technologist:":                          "\U0001f9d1\U0000200d\U0001f4bb",
	":teddy_bear:":                            "\U0001f9f8",
	":telephone:":                             "\U0000260e",
	":telephone_receiver:":                    "\U0001f4de",
	":telescope:":                             "\U0001f52d",
	":television:":                            "\U0001f4fa",
	":ten-thirty:":                            "\U0001f565",
	":ten_o’clock:":                           "\U0001f559",
	":tennis:":                                "\U0001f3be",
	":tent:":                                  "\U000026fa",
	":test_tube:":                             "\U0001f9ea",
	":thailand:":                              "\U0001f1f9\U0001f1ed",
	":thermometer:":                           "\U0001f321",
	":thermometer_face:":                      "\U0001f912",
	":thinking:":                              "\U0001f914",
	":thinking_face:":                         "\U0001f914",
	":third_place:":                           "\U0001f949",
	":thought_balloon:":                       "\U0001f4ad",
	":thread:":                                "\U0001f9f5",
	":three:":                                 "3\ufe0f\u20e3",
	":three-thirty:":                          "\U0001f55e",
	":three_o’clock:":                         "\U0001f552",
	":thumbs_down:":                           "\U0001f44e",
	":thumbs_up:":                             "\U0001f44d",
	":thumbsdown:":                            "\U0001f44e",
	":thumbsdown_tone1:":                      "\U0001f44e\U0001f3fb",
	":thumbsdown_tone2:":                      "\U0001f44e\U0001f3fc",
	":thumbsdown_tone3:":                      "\U0001f44e\U0001f3fd",
	":thumbsdown_tone4:":                      "\U0001f44e\U0001f3fe",
	":thumbsdown_tone5:":                      "\U0001f44e\U0001f3ff",
	":thumbsup:":                              "\U0001f44d",
	":thumbsup_tone1:":                        "\U0001f44d\U0001f3fb",
	":thumbsup_tone2:":                        "\U0001f44d\U0001f3fc",
	":thumbsup_tone3:":                        "\U0001f44d\U0001f3fd",
	":thumbsup_tone4:":                        "\U0001f44d\U0001f3fe",
	":thumbsup_tone5:":                        "\U0001f44d\U0001f3ff",
	":thunder_cloud_rain:":                    "\u26c8",
	":ticket:":                                "\U0001f3ab",
	":tickets:":                               "\U0001f39f",
	":tiger:":                                 "\U0001f405",
	":tiger2:":                                "\U0001f405",
	":tiger_face:":                            "\U0001f42f",
	":timer:":                                 "\u23f2",
	":timer_clock:":                           "\U000023f2",
	":timor_leste:":                           "\U0001f1f9\U0001f1f1",
	":tipping_hand_man:":                      "\U0001f481\u200d\u2642",
	":tipping_hand_person:":                   "\U0001f481",
	":tipping_hand_woman:":                    "\U0001f481\u200d\u2640",
	":tired_face:":                            "\U0001f62b",
	":tm:":                                    "\u2122",
	":togo:":                                  "\U0001f1f9\U0001f1ec",
	":toilet:":                                "\U0001f6bd",
	":tokelau:":                               "\U0001f1f9\U0001f1f0",
	":tokyo_tower:":                           "\U0001f5fc",
	":tomato:":                                "\U0001f345",
	":tonga:":                                 "\U0001f1f9\U0001f1f4",
	":tongue:":                                "\U0001f445",
	":toolbox:":                               "\U0001f9f0",
	":tools:":                                 "\U0001f6e0",
	":tooth:":                                 "\U0001f9b7",
	":top:":                                   "\U0001f51d",
	":top_hat:":                               "\U0001f3a9",
	":tophat:":                                "\U0001f3a9",
	":tornado:":                               "\U0001f32a",
	":tr:":                                    "\U0001f1f9\U0001f1f7",
	":track_next:":                            "\u23ed",
	":track_previous:":                        "\u23ee",
	":trackball:":                             "\U0001f5b2",
	":tractor:":                               "\U0001f69c",
	":trade_mark:":                            "\U00002122",
	":traffic_light:":                         "\U0001f6a5",
	":train:":                                 "\U0001f686",
	":train2:":                                "\U0001f686",
	":tram:":                                  "\U0001f68a",
	":tram_car:":                              "\U0001f68b",
	":triangular_flag:":                       "\U0001f6a9",
	":triangular_flag_on_post:":               "\U0001f6a9",
	":triangular_ruler:":                      "\U0001f4d0",
	":trident:":                               "\U0001f531",
	":trident_emblem:":                        "\U0001f531",
	":trinidad_tobago:":                       "\U0001f1f9\U0001f1f9",
	":tristan_da_cunha:":                      "\U0001f1f9\U0001f1e6",
	":triumph:":                               "\U0001f624",
	":trolleybus:":                            "\U0001f68e",
	":trophy:":                                "\U0001f3c6",
	":tropical_drink:":                        "\U0001f379",
	":tropical_fish:":                         "\U0001f420",
	":truck:":                                 "\U0001f69a",
	":trumpet:":                               "\U0001f3ba",
	":tshirt:":                                "\U0001f455",
	":tulip:":                                 "\U0001f337",
	":tumbler_glass:":                         "\U0001f943",
	":tunisia:":                               "\U0001f1f9\U0001f1f3",
	":turkey:":                                "\U0001f983",
	":turkmenistan:":                          "\U0001f1f9\U0001f1f2",
	":turks_caicos_islands:":                  "\U0001f1f9\U0001f1e8",
	":turtle:":                                "\U0001f422",
	":tuvalu:":                                "\U0001f1f9\U0001f1fb",
	":tv:":                                    "\U0001f4fa",
	":twelve-thirty:":                         "\U0001f567",
	":twelve_o’clock:":                        "\U0001f55b",
	":twisted_rightwards_arrows:":             "\U0001f500",
	":two:":                                   "2\ufe0f\u20e3",
	":two-hump_camel:":                        "\U0001f42b",
	":two-thirty:":                            "\U0001f55d",
	":two_hearts:":                            "\U0001f495",
	":two_men_holding_hands:":                 "\U0001f46c",
	":two_o’clock:":                           "\U0001f551",
	":two_women_holding_hands:":               "\U0001f46d",
	":u5272:":                                 "\U0001f239",
	":u5408:":                                 "\U0001f234",
	":u55b6:":                                 "\U0001f23a",
	":u6307:":                                 "\U0001f22f",
	":u6708:":                                 "\U0001f237",
	":u6709:":                                 "\U0001f236",
	":u6e80:":                                 "\U0001f235",
	":u7121:":                                 "\U0001f21a",
	":u7533:":                                 "\U0001f238",
	":u7981:":                                 "\U0001f232",
	":u7a7a:":                                 "\U0001f233",
	":uganda:":                                "\U0001f1fa\U0001f1ec",
	":uk:":                                    "\U0001f1ec\U0001f1e7",
	":ukraine:":                               "\U0001f1fa\U0001f1e6",
	":umbrella:":                              "\U00002602",
	":umbrella2:":                             "\u2602",
	":umbrella_on_ground:":                    "\U000026f1",
	":umbrella_with_rain_drops:":              "\U00002614",
	":unamused:":                              "\U0001f612",
	":unamused_face:":                         "\U0001f612",
	":underage:":                              "\U0001f51e",
	":unicorn:":                               "\U0001f984",
	":united_arab_emirates:":                  "\U0001f1e6\U0001f1ea",
	":united_nations:":                        "\U0001f1fa\U0001f1f3",
	":unlock:":                                "\U0001f513",
	":unlocked:":                              "\U0001f513",
	":up:":                                    "\U0001f199",
	":up-down_arrow:":                         "\U00002195",
	":up-left_arrow:":                         "\U00002196",
	":up-right_arrow:":                        "\U00002197",
	":up_arrow:":                              "\U00002b06",
	":upside-down_face:":                      "\U0001f643",
	":upside_down:":                           "\U0001f643",
	":upside_down_face:":                      "\U0001f643",
	":upwards_button:":                        "\U0001f53c",
	":urn:":                                   "\u26b1",
	":uruguay:":                               "\U0001f1fa\U0001f1fe",
	":us:":                                    "\U0001f1fa\U0001f1f8",
	":us_outlying_islands:":                   "\U0001f1fa\U0001f1f2",
	":us_virgin_islands:":                     "\U0001f1fb\U0001f1ee",
	":uzbekistan:":                            "\U0001f1fa\U0001f1ff",
	":v:":                                     "\u270c",
	":v_tone1:":                               "\u270c\U0001f3fb",
	":v_tone2:":                               "\u270c\U0001f3fc",
	":v_tone3:":                               "\u270c\U0001f3fd",
	":v_tone4:":                               "\u270c\U0001f3fe",
	":v_tone5:":                               "\u270c\U0001f3ff",
	":vampire:":                               "\U0001f9db",
	":vampire_man:":                           "\U0001f9db\u200d\u2642",
	":vampire_tone1:":                         "\U0001f9db\U0001f3fb",
	":vampire_tone2:":                         "\U0001f9db\U0001f3fc",
	":vampire_tone3:":                         "\U0001f9db\U0001f3fd",
	":vampire_tone4:":                         "\U0001f9db\U0001f3fe",
	":vampire_tone5:":                         "\U0001f9db\U0001f3ff",
	":vampire_woman:":                         "\U0001f9db\u200d\u2640",
	":vanuatu:":                               "\U0001f1fb\U0001f1fa",
	":vatican_city:":                          "\U0001f1fb\U0001f1e6",
	":venezuela:":                             "\U0001f1fb\U0001f1ea",
	":vertical_traffic_light:":                "\U0001f6a6",
	":vhs:":                                   "\U0001f4fc",
	":vibration_mode:":                        "\U0001f4f3",
	":victory_hand:":                          "\U0000270c",
	":video_camera:":                          "\U0001f4f9",
	":video_game:":                            "\U0001f3ae",
	":videocassette:":                         "\U0001f4fc",
	":vietnam:":                               "\U0001f1fb\U0001f1f3",
	":violin:":                                "\U0001f3bb",
	":virgo:":                                 "\u264d",
	":volcano:":                               "\U0001f30b",
	":volleyball:":                            "\U0001f3d0",
	":vomiting_face:":                         "\U0001f92e",
	":vs:":                                    "\U0001f19a",
	":vulcan:":                                "\U0001f596",
	":vulcan_salute:":                         "\U0001f596",
	":vulcan_tone1:":                          "\U0001f596\U0001f3fb",
	":vulcan_tone2:":                          "\U0001f596\U0001f3fc",
	":vulcan_tone3:":                          "\U0001f596\U0001f3fd",
	":vulcan_tone4:":                          "\U0001f596\U0001f3fe",
	":vulcan_tone5:":                          "\U0001f596\U0001f3ff",
	":waffle:":                                "\U0001f9c7",
	":wales:":                                 "\U0001f3f4\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f",
	":walking:":                               "\U0001f6b6",
	":walking_man:":                           "\U0001f6b6\u200d\u2642",
	":walking_woman:":                         "\U0001f6b6\u200d\u2640",
	":wallis_futuna:":                         "\U0001f1fc\U0001f1eb",
	":waning_crescent_moon:":                  "\U0001f318",
	":waning_gibbous_moon:":                   "\U0001f316",
	":warning:":                               "\U000026a0",
	":wastebasket:":                           "\U0001f5d1",
	":watch:":                                 "\U0000231a",
	":water_buffalo:":                         "\U0001f403",
	":water_closet:":                          "\U0001f6be",
	":water_polo:":                            "\U0001f93d",
	":water_wave:":                            "\U0001f30a",
	":watermelon:":                            "\U0001f349",
	":wave:":                                  "\U0001f44b",
	":wave_tone1:":                            "\U0001f44b\U0001f3fb",
	":wave_tone2:":                            "\U0001f44b\U0001f3fc",
	":wave_tone3:":                            "\U0001f44b\U0001f3fd",
	":wave_tone4:":                            "\U0001f44b\U0001f3fe",
	":wave_tone5:":                            "\U0001f44b\U0001f3ff",
	":waving_hand:":                           "\U0001f44b",
	":wavy_dash:":                             "\U00003030",
	":waxing_crescent_moon:":                  "\U0001f312",
	":waxing_gibbous_moon:":                   "\U0001f314",
	":wc:":                                    "\U0001f6be",
	":weary:":                                 "\U0001f629",
	":weary_cat:":                             "\U0001f640",
	":weary_face:":                            "\U0001f629",
	":wedding:":                               "\U0001f492",
	":weight_lifting:":                        "\U0001f3cb",
	":weight_lifting_man:":                    "\U0001f3cb\ufe0f\u200d\u2642\ufe0f",
	":weight_lifting_woman:":                  "\U0001f3cb\ufe0f\u200d\u2640\ufe0f",
	":western_sahara:":                        "\U0001f1ea\U0001f1ed",
	":whale:":                                 "\U0001f40b",
	":whale2:":                                "\U0001f40b",
	":wheel_of_dharma:":                       "\U00002638",
	":wheelchair:":                            "\u267f",
	":wheelchair_symbol:":                     "\U0000267f",
	":white_check_mark:":                      "\u2705",
	":white_circle:":                          "\U000026aa",
	":white_exclamation_mark:":                "\U00002755",
	":white_flag:":                            "\U0001f3f3",
	":white_flower:":                          "\U0001f4ae",
	":white_hair:":                            "\U0001f9b3",
	":white_haired_man:":                      "\U0001f468\u200d\U0001f9b3",
	":white_haired_woman:":                    "\U0001f469\u200d\U0001f9b3",
	":white_heart:":                           "\U0001f90d",
	":white_large_square:":                    "\U00002b1c",
	":white_medium-small_square:":             "\U000025fd",
	":white_medium_small_square:":             "\u25fd",
	":white_medium_square:":                   "\U000025fb",
	":white_question_mark:":                   "\U00002754",
	":white_small_square:":                    "\U000025ab",
	":white_square_button:":                   "\U0001f533",
	":white_sun_cloud:":                       "\U0001f325",
	":white_sun_rain_cloud:":                  "\U0001f326",
	":white_sun_small_cloud:":                 "\U0001f324",
	":wilted_flower:":                         "\U0001f940",
	":wilted_rose:":                           "\U0001f940",
	":wind_blowing_face:":                     "\U0001f32c",
	":wind_chime:":                            "\U0001f390",
	":wind_face:":                             "\U0001f32c",
	":wine_glass:":                            "\U0001f377",
	":wink:":                                  "\U0001f609",
	":winking_face:":                          "\U0001f609",
	":winking_face_with_tongue:":              "\U0001f61c",
	":wolf:":                                  "\U0001f43a",
	":woman:":                                 "\U0001f469",
	":woman_and_man_holding_hands:":           "\U0001f46b",
	":woman_artist:":                          "\U0001f469\U0000200d\U0001f3a8",
	":woman_artist_tone1:":                    "\U0001f469\U0001f3fb\u200d\U0001f3a8",
	":woman_artist_tone2:":                    "\U0001f469\U0001f3fc\u200d\U0001f3a8",
	":woman_artist_tone3:":                    "\U0001f469\U0001f3fd\u200d\U0001f3a8",
	":woman_artist_tone4:":                    "\U0001f469\U0001f3fe\u200d\U0001f3a8",
	":woman_artist_tone5:":                    "\U0001f469\U0001f3ff\u200d\U0001f3a8",
	":woman_astronaut:":                       "\U0001f469\U0000200d\U0001f680",
	":woman_astronaut_tone1:":                 "\U0001f469\U0001f3fb\u200d\U0001f680",
	":woman_astronaut_tone2:":                 "\U0001f469\U0001f3fc\u200d\U0001f680",
	":woman_astronaut_tone3:":                 "\U0001f469\U0001f3fd\u200d\U0001f680",
	":woman_astronaut_tone4:":                 "\U0001f469\U0001f3fe\u200d\U0001f680",
	":woman_astronaut_tone5:":                 "\U0001f469\U0001f3ff\u200d\U0001f680",
	":woman_bald:":                            "\U0001f469\U0000200d\U0001f9b2",
	":woman_biking:":                          "\U0001f6b4\U0000200d\U00002640\U0000fe0f",
	":woman_biking_tone1:":                    "\U0001f6b4\U0001f3fb\u200d\u2640\ufe0f",
	":woman_biking_tone2:":                    "\U0001f6b4\U0001f3fc\u200d\u2640\ufe0f",
	":woman_biking_tone3:":                    "\U0001f6b4\U0001f3fd\u200d\u2640\ufe0f",
	":woman_biking_tone4:":                    "\U0001f6b4\U0001f3fe\u200d\u2640\ufe0f",
	":woman_biking_tone5:":                    "\U0001f6b4\U0001f3ff\u200d\u2640\ufe0f",
	":woman_blond_hair:":                      "\U0001f471\U0000200d\U00002640\U0000fe0f",
	":woman_bouncing_ball:":                   "\U000026f9\U0000fe0f\U0000200d\U00002640\U0000fe0f",
	":woman_bouncing_ball_tone1:":             "\u26f9\U0001f3fb\u200d\u2640\ufe0f",
	":woman_bouncing_ball_tone2:":             "\u26f9\U0001f3fc\u200d\u2640\ufe0f",
	":woman_bouncing_ball_tone3:":             "\u26f9\U0001f3fd\u200d\u2640\ufe0f",
	":woman_bouncing_ball_tone4:":             "\u26f9\U0001f3fe\u200d\u2640\ufe0f",
	":woman_bouncing_ball_tone5:":             "\u26f9\U0001f3ff\u200d\u2640\ufe0f",
	":woman_bowing:":                          "\U0001f647\U0000200d\U00002640\U0000fe0f",
	":woman_bowing_tone1:":                    "\U0001f647\U0001f3fb\u200d\u2640\ufe0f",
	":woman_bowing_tone2:":                    "\U0001f647\U0001f3fc\u200d\u2640\ufe0f",
	":woman_bowing_tone3:":                    "\U0001f647\U0001f3fd\u200d\u2640\ufe0f",
	":woman_bowing_tone4:":                    "\U0001f647\U0001f3fe\u200d\u2640\ufe0f",
	":woman_bowing_tone5:":                    "\U0001f647\U0001f3ff\u200d\u2640\ufe0f",
	":woman_cartwheeling:":                    "\U0001f938\U0000200d\U00002640\U0000fe0f",
	":woman_cartwheeling_tone1:":              "\U0001f938\U0001f3fb\u200d\u2640\ufe0f",
	":woman_cartwheeling_tone2:":              "\U0001f938\U0001f3fc\u200d\u2640\ufe0f",
	":woman_cartwheeling_tone3:":              "\U0001f938\U0001f3fd\u200d\u2640\ufe0f",
	":woman_cartwheeling_tone4:":              "\U0001f938\U0001f3fe\u200d\u2640\ufe0f",
	":woman_cartwheeling_tone5:":              "\U0001f938\U0001f3ff\u200d\u2640\ufe0f",
	":woman_climbing:":                        "\U0001f9d7\U0000200d\U00002640\U0000fe0f",
	":woman_climbing_tone1:":                  "\U0001f9d7\U0001f3fb\u200d\u2640\ufe0f",
	":woman_climbing_tone2:":                  "\U0001f9d7\U0001f3fc\u200d\u2640\ufe0f",
	":woman_climbing_tone3:":                  "\U0001f9d7\U0001f3fd\u200d\u2640\ufe0f",
	":woman_climbing_tone4:":                  "\U0001f9d7\U0001f3fe\u200d\u2640\ufe0f",
	":woman_climbing_tone5:":                  "\U0001f9d7\U0001f3ff\u200d\u2640\ufe0f",
	":woman_construction_worker:":             "\U0001f477\U0000200d\U00002640\U0000fe0f",
	":woman_construction_worker_tone1:":       "\U0001f477\U0001f3fb\u200d\u2640\ufe0f",
	":woman_construction_worker_tone2:":       "\U0001f477\U0001f3fc\u200d\u2640\ufe0f",
	":woman_construction_worker_tone3:":       "\U0001f477\U0001f3fd\u200d\u2640\ufe0f",
	":woman_construction_worker_tone4:":       "\U0001f477\U0001f3fe\u200d\u2640\ufe0f",
	":woman_construction_worker_tone5:":       "\U0001f477\U0001f3ff\u200d\u2640\ufe0f",
	":woman_cook:":                            "\U0001f469\U0000200d\U0001f373",
	":woman_cook_tone1:":                      "\U0001f469\U0001f3fb\u200d\U0001f373",
	":woman_cook_tone2:":                      "\U0001f469\U0001f3fc\u200d\U0001f373",
	":woman_cook_tone3:":                      "\U0001f469\U0001f3fd\u200d\U0001f373",
	":woman_cook_tone4:":                      "\U0001f469\U0001f3fe\u200d\U0001f373",
	":woman_cook_tone5:":                      "\U0001f469\U0001f3ff\u200d\U0001f373",
	":woman_curly_hair:":                      "\U0001f469\U0000200d\U0001f9b1",
	":woman_dancing:":                         "\U0001f483",
	":woman_detective:":                       "\U0001f575\U0000fe0f\U0000200d\U00002640\U0000fe0f",
	":woman_detective_tone1:":                 "\U0001f575\U0001f3fb\u200d\u2640\ufe0f",
	":woman_detective_tone2:":                 "\U0001f575\U0001f3fc\u200d\u2640\ufe0f",
	":woman_detective_tone3:":                 "\U0001f575\U0001f3fd\u200d\u2640\ufe0f",
	":woman_detective_tone4:":                 "\U0001f575\U0001f3fe\u200d\u2640\ufe0f",
	":woman_detective_tone5:":                 "\U0001f575\U0001f3ff\u200d\u2640\ufe0f",
	":woman_elf:":                             "\U0001f9dd\U0000200d\U00002640\U0000fe0f",
	":woman_elf_tone1:":                       "\U0001f9dd\U0001f3fb\u200d\u2640\ufe0f",
	":woman_elf_tone2:":                       "\U0001f9dd\U0001f3fc\u200d\u2640\ufe0f",
	":woman_elf_tone3:":                       "\U0001f9dd\U0001f3fd\u200d\u2640\ufe0f",
	":woman_elf_tone4:":                       "\U0001f9dd\U0001f3fe\u200d\u2640\ufe0f",
	":woman_elf_tone5:":                       "\U0001f9dd\U0001f3ff\u200d\u2640\ufe0f",
	":woman_facepalming:":                     "\U0001f926\U0000200d\U00002640\U0000fe0f",
	":woman_facepalming_tone1:":               "\U0001f926\U0001f3fb\u200d\u2640\ufe0f",
	":woman_facepalming_tone2:":               "\U0001f926\U0001f3fc\u200d\u2640\ufe0f",
	":woman_facepalming_tone3:":               "\U0001f926\U0001f3fd\u200d\u2640\ufe0f",
	":woman_facepalming_tone4:":               "\U0001f926\U0001f3fe\u200d\u2640\ufe0f",
	":woman_facepalming_tone5:":               "\U0001f926\U0001f3ff\u200d\u2640\ufe0f",
	":woman_factory_worker:":                  "\U0001f469\U0000200d\U0001f3ed",
	":woman_factory_worker_tone1:":            "\U0001f469\U0001f3fb\u200d\U0001f3ed",
	":woman_factory_worker_tone2:":            "\U0001f469\U0001f3fc\u200d\U0001f3ed",
	":woman_factory_worker_tone3:":            "\U0001f469\U0001f3fd\u200d\U0001f3ed",
	":woman_factory_worker_tone4:":            "\U0001f469\U0001f3fe\u200d\U0001f3ed",
	":woman_factory_worker_tone5:":            "\U0001f469\U0001f3ff\u200d\U0001f3ed",
	":woman_fairy:":                           "\U0001f9da\U0000200d\U00002640\U0000fe0f",
	":woman_fairy_tone1:":                     "\U0001f9da\U0001f3fb\u200d\u2640\ufe0f",
	":woman_fairy_tone2:":                     "\U0001f9da\U0001f3fc\u200d\u2640\ufe0f",
	":woman_fairy_tone3:":                     "\U0001f9da\U0001f3fd\u200d\u2640\ufe0f",
	":woman_fairy_tone4:":                     "\U0001f9da\U0001f3fe\u200d\u2640\ufe0f",
	":woman_fairy_tone5:":                     "\U0001f9da\U0001f3ff\u200d\u2640\ufe0f",
	":woman_farmer:":                          "\U0001f469\U0000200d\U0001f33e",
	":woman_farmer_tone1:":                    "\U0001f469\U0001f3fb\u200d\U0001f33e",
	":woman_farmer_tone2:":                    "\U0001f469\U0001f3fc\u200d\U0001f33e",
	":woman_farmer_tone3:":                    "\U0001f469\U0001f3fd\u200d\U0001f33e",
	":woman_farmer_tone4:":                    "\U0001f469\U0001f3fe\u200d\U0001f33e",
	":woman_farmer_tone5:":                    "\U0001f469\U0001f3ff\u200d\U0001f33e",
	":woman_firefighter:":                     "\U0001f469\U0000200d\U0001f692",
	":woman_firefighter_tone1:":               "\U0001f469\U0001f3fb\u200d\U0001f692",
	":woman_firefighter_tone2:":               "\U0001f469\U0001f3fc\u200d\U0001f692",
	":woman_firefighter_tone3:":               "\U0001f469\U0001f3fd\u200d\U0001f692",
	":woman_firefighter_tone4:":               "\U0001f469\U0001f3fe\u200d\U0001f692",
	":woman_firefighter_tone5:":               "\U0001f469\U0001f3ff\u200d\U0001f692",
	":woman_frowning:":                        "\U0001f64d\U0000200d\U00002640\U0000fe0f",
	":woman_frowning_tone1:":                  "\U0001f64d\U0001f3fb\u200d\u2640\ufe0f",
	":woman_frowning_tone2:":                  "\U0001f64d\U0001f3fc\u200d\u2640\ufe0f",
	":woman_frowning_tone3:":                  "\U0001f64d\U0001f3fd\u200d\u2640\ufe0f",
	":woman_frowning_tone4:":                  "\U0001f64d\U0001f3fe\u200d\u2640\ufe0f",
	":woman_frowning_tone5:":                  "\U0001f64d\U0001f3ff\u200d\u2640\ufe0f",
	":woman_genie:":                           "\U0001f9de\U0000200d\U00002640\U0000fe0f",
	":woman_gesturing_NO:":                    "\U0001f645\U0000200d\U00002640\U0000fe0f",
	":woman_gesturing_OK:":                    "\U0001f646\U0000200d\U00002640\U0000fe0f",
	":woman_gesturing_no:":                    "\U0001f645\u200d\u2640\ufe0f",
	":woman_gesturing_no_tone1:":              "\U0001f645\U0001f3fb\u200d\u2640\ufe0f",
	":woman_gesturing_no_tone2:":              "\U0001f645\U0001f3fc\u200d\u2640\ufe0f",
	":woman_gesturing_no_tone3:":              "\U0001f645\U0001f3fd\u200d\u2640\ufe0f",
	":woman_gesturing_no_tone4:":              "\U0001f645\U0001f3fe\u200d\u2640\ufe0f",
	":woman_gesturing_no_tone5:":              "\U0001f645\U0001f3ff\u200d\u2640\ufe0f",
	":woman_gesturing_ok:":                    "\U0001f646\u200d\u2640\ufe0f",
	":woman_gesturing_ok_tone1:":              "\U0001f646\U0001f3fb\u200d\u2640\ufe0f",
	":woman_gesturing_ok_tone2:":              "\U0001f646\U0001f3fc\u200d\u2640\ufe0f",
	":woman_gesturing_ok_tone3:":              "\U0001f646\U0001f3fd\u200d\u2640\ufe0f",
	":woman_gesturing_ok_tone4:":              "\U0001f646\U0001f3fe\u200d\u2640\ufe0f",
	":woman_gesturing_ok_tone5:":              "\U0001f646\U0001f3ff\u200d\u2640\ufe0f",
	":woman_getting_face_massage:":            "\U0001f486\u200d\u2640\ufe0f",
	":woman_getting_face_massage_tone1:":      "\U0001f486\U0001f3fb\u200d\u2640\ufe0f",
	":woman_getting_face_massage_tone2:":      "\U0001f486\U0001f3fc\u200d\u2640\ufe0f",
	":woman_getting_face_massage_tone3:":      "\U0001f486\U0001f3fd\u200d\u2640\ufe0f",
	":woman_getting_face_massage_tone4:":      "\U0001f486\U0001f3fe\u200d\u2640\ufe0f",
	":woman_getting_face_massage_tone5:":      "\U0001f486\U0001f3ff\u200d\u2640\ufe0f",
	":woman_getting_haircut:":                 "\U0001f487\U0000200d\U00002640\U0000fe0f",
	":woman_getting_haircut_tone1:":           "\U0001f487\U0001f3fb\u200d\u2640\ufe0f",
	":woman_getting_haircut_tone2:":           "\U0001f487\U0001f3fc\u200d\u2640\ufe0f",
	":woman_getting_haircut_tone3:":           "\U0001f487\U0001f3fd\u200d\u2640\ufe0f",
	":woman_getting_haircut_tone4:":           "\U0001f487\U0001f3fe\u200d\u2640\ufe0f",
	":woman_getting_haircut_tone5:":           "\U0001f487\U0001f3ff\u200d\u2640\ufe0f",
	":woman_getting_massage:":                 "\U0001f486\U0000200d\U00002640\U0000fe0f",
	":woman_golfing:":                         "\U0001f3cc\U0000fe0f\U0000200d\U00002640\U0000fe0f",
	":woman_golfing_tone1:":                   "\U0001f3cc\U0001f3fb\u200d\u2640\ufe0f",
	":woman_golfing_tone2:":                   "\U0001f3cc\U0001f3fc\u200d\u2640\ufe0f",
	":woman_golfing_tone3:":                   "\U0001f3cc\U0001f3fd\u200d\u2640\ufe0f",
	":woman_golfing_tone4:":                   "\U0001f3cc\U0001f3fe\u200d\u2640\ufe0f",
	":woman_golfing_tone5:":                   "\U0001f3cc\U0001f3ff\u200d\u2640\ufe0f",
	":woman_guard:":                           "\U0001f482\U0000200d\U00002640\U0000fe0f",
	":woman_guard_tone1:":                     "\U0001f482\U0001f3fb\u200d\u2640\ufe0f",
	":woman_guard_tone2:":                     "\U0001f482\U0001f3fc\u200d\u2640\ufe0f",
	":woman_guard_tone3:":                     "\U0001f482\U0001f3fd\u200d\u2640\ufe0f",
	":woman_guard_tone4:":                     "\U0001f482\U0001f3fe\u200d\u2640\ufe0f",
	":woman_guard_tone5:":                     "\U0001f482\U0001f3ff\u200d\u2640\ufe0f",
	":woman_health_worker:":                   "\U0001f469\U0000200d\U00002695\U0000fe0f",
	":woman_health_worker_tone1:":             "\U0001f469\U0001f3fb\u200d\u2695\ufe0f",
	":woman_health_worker_tone2:":             "\U0001f469\U0001f3fc\u200d\u2695\ufe0f",
	":woman_health_worker_tone3:":             "\U0001f469\U0001f3fd\u200d\u2695\ufe0f",
	":woman_health_worker_tone4:":             "\U0001f469\U0001f3fe\u200d\u2695\ufe0f",
	":woman_health_worker_tone5:":             "\U0001f469\U0001f3ff\u200d\u2695\ufe0f",
	":woman_in_lotus_position:":               "\U0001f9d8\U0000200d\U00002640\U0000fe0f",
	":woman_in_lotus_position_tone1:":         "\U0001f9d8\U0001f3fb\u200d\u2640\ufe0f",
	":woman_in_lotus_position_tone2:":         "\U0001f9d8\U0001f3fc\u200d\u2640\ufe0f",
	":woman_in_lotus_position_tone3:":         "\U0001f9d8\U0001f3fd\u200d\u2640\ufe0f",
	":woman_in_lotus_position_tone4:":         "\U0001f9d8\U0001f3fe\u200d\u2640\ufe0f",
	":woman_in_lotus_position_tone5:":         "\U0001f9d8\U0001f3ff\u200d\u2640\ufe0f",
	":woman_in_manual_wheelchair:":            "\U0001f469\U0000200d\U0001f9bd",
	":woman_in_motorized_wheelchair:":         "\U0001f469\U0000200d\U0001f9bc",
	":woman_in_steamy_room:":                  "\U0001f9d6\U0000200d\U00002640\U0000fe0f",
	":woman_in_steamy_room_tone1:":            "\U0001f9d6\U0001f3fb\u200d\u2640\ufe0f",
	":woman_in_steamy_room_tone2:":            "\U0001f9d6\U0001f3fc\u200d\u2640\ufe0f",
	":woman_in_steamy_room_tone3:":            "\U0001f9d6\U0001f3fd\u200d\u2640\ufe0f",
	":woman_in_steamy_room_tone4:":            "\U0001f9d6\U0001f3fe\u200d\u2640\ufe0f",
	":woman_in_steamy_room_tone5:":            "\U0001f9d6\U0001f3ff\u200d\u2640\ufe0f",
	":woman_judge:":                           "\U0001f469\U0000200d\U00002696\U0000fe0f",
	":woman_judge_tone1:":                     "\U0001f469\U0001f3fb\u200d\u2696\ufe0f",
	":woman_judge_tone2:":                     "\U0001f469\U0001f3fc\u200d\u2696\ufe0f",
	":woman_judge_tone3:":                     "\U0001f469\U0001f3fd\u200d\u2696\ufe0f",
	":woman_judge_tone4:":                     "\U0001f469\U0001f3fe\u200d\u2696\ufe0f",
	":woman_judge_tone5:":                     "\U0001f469\U0001f3ff\u200d\u2696\ufe0f",
	":woman_juggling:":                        "\U0001f939\U0000200d\U00002640\U0000fe0f",
	":woman_juggling_tone1:":                  "\U0001f939\U0001f3fb\u200d\u2640\ufe0f",
	":woman_juggling_tone2:":                  "\U0001f939\U0001f3fc\u200d\u2640\ufe0f",
	":woman_juggling_tone3:":                  "\U0001f939\U0001f3fd\u200d\u2640\ufe0f",
	":woman_juggling_tone4:":                  "\U0001f939\U0001f3fe\u200d\u2640\ufe0f",
	":woman_juggling_tone5:":                  "\U0001f939\U0001f3ff\u200d\u2640\ufe0f",
	":woman_kneeling:":                        "\U0001f9ce\U0000200d\U00002640\U0000fe0f",
	":woman_lifting_weights:":                 "\U0001f3cb\U0000fe0f\U0000200d\U00002640\U0000fe0f",
	":woman_lifting_weights_tone1:":           "\U0001f3cb\U0001f3fb\u200d\u2640\ufe0f",
	":woman_lifting_weights_tone2:":           "\U0001f3cb\U0001f3fc\u200d\u2640\ufe0f",
	":woman_lifting_weights_tone3:":           "\U0001f3cb\U0001f3fd\u200d\u2640\ufe0f",
	":woman_lifting_weights_tone4:":           "\U0001f3cb\U0001f3fe\u200d\u2640\ufe0f",
	":woman_lifting_weights_tone5:":           "\U0001f3cb\U0001f3ff\u200d\u2640\ufe0f",
	":woman_mage:":                            "\U0001f9d9\U0000200d\U00002640\U0000fe0f",
	":woman_mage_tone1:":                      "\U0001f9d9\U0001f3fb\u200d\u2640\ufe0f",
	":woman_mage_tone2:":                      "\U0001f9d9\U0001f3fc\u200d\u2640\ufe0f",
	":woman_mage_tone3:":                      "\U0001f9d9\U0001f3fd\u200d\u2640\ufe0f",
	":woman_mage_tone4:":                      "\U0001f9d9\U0001f3fe\u200d\u2640\ufe0f",
	":woman_mage_tone5:":                      "\U0001f9d9\U0001f3ff\u200d\u2640\ufe0f",
	":woman_mechanic:":                        "\U0001f469\U0000200d\U0001f527",
	":woman_mechanic_tone1:":                  "\U0001f469\U0001f3fb\u200d\U0001f527",
	":woman_mechanic_tone2:":                  "\U0001f469\U0001f3fc\u200d\U0001f527",
	":woman_mechanic_tone3:":                  "\U0001f469\U0001f3fd\u200d\U0001f527",
	":woman_mechanic_tone4:":                  "\U0001f469\U0001f3fe\u200d\U0001f527",
	":woman_mechanic_tone5:":                  "\U0001f469\U0001f3ff\u200d\U0001f527",
	":woman_mountain_biking:":                 "\U0001f6b5\U0000200d\U00002640\U0000fe0f",
	":woman_mountain_biking_tone1:":           "\U0001f6b5\U0001f3fb\u200d\u2640\ufe0f",
	":woman_mountain_biking_tone2:":           "\U0001f6b5\U0001f3fc\u200d\u2640\ufe0f",
	":woman_mountain_biking_tone3:":           "\U0001f6b5\U0001f3fd\u200d\u2640\ufe0f",
	":woman_mountain_biking_tone4:":           "\U0001f6b5\U0001f3fe\u200d\u2640\ufe0f",
	":woman_mountain_biking_tone5:":           "\U0001f6b5\U0001f3ff\u200d\u2640\ufe0f",
	":woman_office_worker:":                   "\U0001f469\U0000200d\U0001f4bc",
	":woman_office_worker_tone1:":             "\U0001f469\U0001f3fb\u200d\U0001f4bc",
	":woman_office_worker_tone2:":             "\U0001f469\U0001f3fc\u200d\U0001f4bc",
	":woman_office_worker_tone3:":             "\U0001f469\U0001f3fd\u200d\U0001f4bc",
	":woman_office_worker_tone4:":             "\U0001f469\U0001f3fe\u200d\U0001f4bc",
	":woman_office_worker_tone5:":             "\U0001f469\U0001f3ff\u200d\U0001f4bc",
	":woman_pilot:":                           "\U0001f469\U0000200d\U00002708\U0000fe0f",
	":woman_pilot_tone1:":                     "\U0001f469\U0001f3fb\u200d\u2708\ufe0f",
	":woman_pilot_tone2:":                     "\U0001f469\U0001f3fc\u200d\u2708\ufe0f",
	":woman_pilot_tone3:":                     "\U0001f469\U0001f3fd\u200d\u2708\ufe0f",
	":woman_pilot_tone4:":                     "\U0001f469\U0001f3fe\u200d\u2708\ufe0f",
	":woman_pilot_tone5:":                     "\U0001f469\U0001f3ff\u200d\u2708\ufe0f",
	":woman_playing_handball:":                "\U0001f93e\U0000200d\U00002640\U0000fe0f",
	":woman_playing_handball_tone1:":          "\U0001f93e\U0001f3fb\u200d\u2640\ufe0f",
	":woman_playing_handball_tone2:":          "\U0001f93e\U0001f3fc\u200d\u2640\ufe0f",
	":woman_playing_handball_tone3:":          "\U0001f93e\U0001f3fd\u200d\u2640\ufe0f",
	":woman_playing_handball_tone4:":          "\U0001f93e\U0001f3fe\u200d\u2640\ufe0f",
	":woman_playing_handball_tone5:":          "\U0001f93e\U0001f3ff\u200d\u2640\ufe0f",
	":woman_playing_water_polo:":              "\U0001f93d\U0000200d\U00002640\U0000fe0f",
	":woman_playing_water_polo_tone1:":        "\U0001f93d\U0001f3fb\u200d\u2640\ufe0f",
	":woman_playing_water_polo_tone2:":        "\U0001f93d\U0001f3fc\u200d\u2640\ufe0f",
	":woman_playing_water_polo_tone3:":        "\U0001f93d\U0001f3fd\u200d\u2640\ufe0f",
	":woman_playing_water_polo_tone4:":        "\U0001f93d\U0001f3fe\u200d\u2640\ufe0f",
	":woman_playing_water_polo_tone5:":        "\U0001f93d\U0001f3ff\u200d\u2640\ufe0f",
	":woman_police_officer:":                  "\U0001f46e\U0000200d\U00002640\U0000fe0f",
	":woman_police_officer_tone1:":            "\U0001f46e\U0001f3fb\u200d\u2640\ufe0f",
	":woman_police_officer_tone2:":            "\U0001f46e\U0001f3fc\u200d\u2640\ufe0f",
	":woman_police_officer_tone3:":            "\U0001f46e\U0001f3fd\u200d\u2640\ufe0f",
	":woman_police_officer_tone4:":            "\U0001f46e\U0001f3fe\u200d\u2640\ufe0f",
	":woman_police_officer_tone5:":            "\U0001f46e\U0001f3ff\u200d\u2640\ufe0f",
	":woman_pouting:":                         "\U0001f64e\U0000200d\U00002640\U0000fe0f",
	":woman_pouting_tone1:":                   "\U0001f64e\U0001f3fb\u200d\u2640\ufe0f",
	":woman_pouting_tone2:":                   "\U0001f64e\U0001f3fc\u200d\u2640\ufe0f",
	":woman_pouting_tone3:":                   "\U0001f64e\U0001f3fd\u200d\u2640\ufe0f",
	":woman_pouting_tone4:":                   "\U0001f64e\U0001f3fe\u200d\u2640\ufe0f",
	":woman_pouting_tone5:":                   "\U0001f64e\U0001f3ff\u200d\u2640\ufe0f",
	":woman_raising_hand:":                    "\U0001f64b\U0000200d\U00002640\U0000fe0f",
	":woman_raising_hand_tone1:":              "\U0001f64b\U0001f3fb\u200d\u2640\ufe0f",
	":woman_raising_hand_tone2:":              "\U0001f64b\U0001f3fc\u200d\u2640\ufe0f",
	":woman_raising_hand_tone3:":              "\U0001f64b\U0001f3fd\u200d\u2640\ufe0f",
	":woman_raising_hand_tone4:":              "\U0001f64b\U0001f3fe\u200d\u2640\ufe0f",
	":woman_raising_hand_tone5:":              "\U0001f64b\U0001f3ff\u200d\u2640\ufe0f",
	":woman_red_hair:":                        "\U0001f469\U0000200d\U0001f9b0",
	":woman_rowing_boat:":                     "\U0001f6a3\U0000200d\U00002640\U0000fe0f",
	":woman_rowing_boat_tone1:":               "\U0001f6a3\U0001f3fb\u200d\u2640\ufe0f",
	":woman_rowing_boat_tone2:":               "\U0001f6a3\U0001f3fc\u200d\u2640\ufe0f",
	":woman_rowing_boat_tone3:":               "\U0001f6a3\U0001f3fd\u200d\u2640\ufe0f",
	":woman_rowing_boat_tone4:":               "\U0001f6a3\U0001f3fe\u200d\u2640\ufe0f",
	":woman_rowing_boat_tone5:":               "\U0001f6a3\U0001f3ff\u200d\u2640\ufe0f",
	":woman_running:":                         "\U0001f3c3\U0000200d\U00002640\U0000fe0f",
	":woman_running_tone1:":                   "\U0001f3c3\U0001f3fb\u200d\u2640\ufe0f",
	":woman_running_tone2:":                   "\U0001f3c3\U0001f3fc\u200d\u2640\ufe0f",
	":woman_running_tone3:":                   "\U0001f3c3\U0001f3fd\u200d\u2640\ufe0f",
	":woman_running_tone4:":                   "\U0001f3c3\U0001f3fe\u200d\u2640\ufe0f",
	":woman_running_tone5:":                   "\U0001f3c3\U0001f3ff\u200d\u2640\ufe0f",
	":woman_scientist:":                       "\U0001f469\U0000200d\U0001f52c",
	":woman_scientist_tone1:":                 "\U0001f469\U0001f3fb\u200d\U0001f52c",
	":woman_scientist_tone2:":                 "\U0001f469\U0001f3fc\u200d\U0001f52c",
	":woman_scientist_tone3:":                 "\U0001f469\U0001f3fd\u200d\U0001f52c",
	":woman_scientist_tone4:":                 "\U0001f469\U0001f3fe\u200d\U0001f52c",
	":woman_scientist_tone5:":                 "\U0001f469\U0001f3ff\u200d\U0001f52c",
	":woman_shrugging:":                       "\U0001f937\U0000200d\U00002640\U0000fe0f",
	":woman_shrugging_tone1:":                 "\U0001f937\U0001f3fb\u200d\u2640\ufe0f",
	":woman_shrugging_tone2:":                 "\U0001f937\U0001f3fc\u200d\u2640\ufe0f",
	":woman_shrugging_tone3:":                 "\U0001f937\U0001f3fd\u200d\u2640\ufe0f",
	":woman_shrugging_tone4:":                 "\U0001f937\U0001f3fe\u200d\u2640\ufe0f",
	":woman_shrugging_tone5:":                 "\U0001f937\U0001f3ff\u200d\u2640\ufe0f",
	":woman_singer:":                          "\U0001f469\U0000200d\U0001f3a4",
	":woman_singer_tone1:":                    "\U0001f469\U0001f3fb\u200d\U0001f3a4",
	":woman_singer_tone2:":                    "\U0001f469\U0001f3fc\u200d\U0001f3a4",
	":woman_singer_tone3:":                    "\U0001f469\U0001f3fd\u200d\U0001f3a4",
	":woman_singer_tone4:":                    "\U0001f469\U0001f3fe\u200d\U0001f3a4",
	":woman_singer_tone5:":                    "\U0001f469\U0001f3ff\u200d\U0001f3a4",
	":woman_standing:":                        "\U0001f9cd\U0000200d\U00002640\U0000fe0f",
	":woman_student:":                         "\U0001f469\U0000200d\U0001f393",
	":woman_student_tone1:":                   "\U0001f469\U0001f3fb\u200d\U0001f393",
	":woman_student_tone2:":                   "\U0001f469\U0001f3fc\u200d\U0001f393",
	":woman_student_tone3:":                   "\U0001f469\U0001f3fd\u200d\U0001f393",
	":woman_student_tone4:":                   "\U0001f469\U0001f3fe\u200d\U0001f393",
	":woman_student_tone5:":                   "\U0001f469\U0001f3ff\u200d\U0001f393",
	":woman_superhero:":                       "\U0001f9b8\U0000200d\U00002640\U0000fe0f",
	":woman_supervillain:":                    "\U0001f9b9\U0000200d\U00002640\U0000fe0f",
	":woman_surfing:":                         "\U0001f3c4\U0000200d\U00002640\U0000fe0f",
	":woman_surfing_tone1:":                   "\U0001f3c4\U0001f3fb\u200d\u2640\ufe0f",
	":woman_surfing_tone2:":                   "\U0001f3c4\U0001f3fc\u200d\u2640\ufe0f",
	":woman_surfing_tone3:":                   "\U0001f3c4\U0001f3fd\u200d\u2640\ufe0f",
	":woman_surfing_tone4:":                   "\U0001f3c4\U0001f3fe\u200d\u2640\ufe0f",
	":woman_surfing_tone5:":                   "\U0001f3c4\U0001f3ff\u200d\u2640\ufe0f",
	":woman_swimming:":                        "\U0001f3ca\U0000200d\U00002640\U0000fe0f",
	":woman_swimming_tone1:":                  "\U0001f3ca\U0001f3fb\u200d\u2640\ufe0f",
	":woman_swimming_tone2:":                  "\U0001f3ca\U0001f3fc\u200d\u2640\ufe0f",
	":woman_swimming_tone3:":                  "\U0001f3ca\U0001f3fd\u200d\u2640\ufe0f",
	":woman_swimming_tone4:":                  "\U0001f3ca\U0001f3fe\u200d\u2640\ufe0f",
	":woman_swimming_tone5:":                  "\U0001f3ca\U0001f3ff\u200d\u2640\ufe0f",
	":woman_teacher:":                         "\U0001f469\U0000200d\U0001f3eb",
	":woman_teacher_tone1:":                   "\U0001f469\U0001f3fb\u200d\U0001f3eb",
	":woman_teacher_tone2:":                   "\U0001f469\U0001f3fc\u200d\U0001f3eb",
	":woman_teacher_tone3:":                   "\U0001f469\U0001f3fd\u200d\U0001f3eb",
	":woman_teacher_tone4:":                   "\U0001f469\U0001f3fe\u200d\U0001f3eb",
	":woman_teacher_tone5:":                   "\U0001f469\U0001f3ff\u200d\U0001f3eb",
	":woman_technologist:":                    "\U0001f469\U0000200d\U0001f4bb",
	":woman_technologist_tone1:":              "\U0001f469\U0001f3fb\u200d\U0001f4bb",
	":woman_technologist_tone2:":              "\U0001f469\U0001f3fc\u200d\U0001f4bb",
	":woman_technologist_tone3:":              "\U0001f469\U0001f3fd\u200d\U0001f4bb",
	":woman_technologist_tone4:":              "\U0001f469\U0001f3fe\u200d\U0001f4bb",
	":woman_technologist_tone5:":              "\U0001f469\U0001f3ff\u200d\U0001f4bb",
	":woman_tipping_hand:":                    "\U0001f481\U0000200d\U00002640\U0000fe0f",
	":woman_tipping_hand_tone1:":              "\U0001f481\U0001f3fb\u200d\u2640\ufe0f",
	":woman_tipping_hand_tone2:":              "\U0001f481\U0001f3fc\u200d\u2640\ufe0f",
	":woman_tipping_hand_tone3:":              "\U0001f481\U0001f3fd\u200d\u2640\ufe0f",
	":woman_tipping_hand_tone4:":              "\U0001f481\U0001f3fe\u200d\u2640\ufe0f",
	":woman_tipping_hand_tone5:":              "\U0001f481\U0001f3ff\u200d\u2640\ufe0f",
	":woman_tone1:":                           "\U0001f469\U0001f3fb",
	":woman_tone2:":                           "\U0001f469\U0001f3fc",
	":woman_tone3:":                           "\U0001f469\U0001f3fd",
	":woman_tone4:":                           "\U0001f469\U0001f3fe",
	":woman_tone5:":                           "\U0001f469\U0001f3ff",
	":woman_vampire:":                         "\U0001f9db\U0000200d\U00002640\U0000fe0f",
	":woman_vampire_tone1:":                   "\U0001f9db\U0001f3fb\u200d\u2640\ufe0f",
	":woman_vampire_tone2:":                   "\U0001f9db\U0001f3fc\u200d\u2640\ufe0f",
	":woman_vampire_tone3:":                   "\U0001f9db\U0001f3fd\u200d\u2640\ufe0f",
	":woman_vampire_tone4:":                   "\U0001f9db\U0001f3fe\u200d\u2640\ufe0f",
	":woman_vampire_tone5:":                   "\U0001f9db\U0001f3ff\u200d\u2640\ufe0f",
	":woman_walking:":                         "\U0001f6b6\U0000200d\U00002640\U0000fe0f",
	":woman_walking_tone1:":                   "\U0001f6b6\U0001f3fb\u200d\u2640\ufe0f",
	":woman_walking_tone2:":                   "\U0001f6b6\U0001f3fc\u200d\u2640\ufe0f",
	":woman_walking_tone3:":                   "\U0001f6b6\U0001f3fd\u200d\u2640\ufe0f",
	":woman_walking_tone4:":                   "\U0001f6b6\U0001f3fe\u200d\u2640\ufe0f",
	":woman_walking_tone5:":                   "\U0001f6b6\U0001f3ff\u200d\u2640\ufe0f",
	":woman_wearing_turban:":                  "\U0001f473\U0000200d\U00002640\U0000fe0f",
	":woman_wearing_turban_tone1:":            "\U0001f473\U0001f3fb\u200d\u2640\ufe0f",
	":woman_wearing_turban_tone2:":            "\U0001f473\U0001f3fc\u200d\u2640\ufe0f",
	":woman_wearing_turban_tone3:":            "\U0001f473\U0001f3fd\u200d\u2640\ufe0f",
	":woman_wearing_turban_tone4:":            "\U0001f473\U0001f3fe\u200d\u2640\ufe0f",
	":woman_wearing_turban_tone5:":            "\U0001f473\U0001f3ff\u200d\u2640\ufe0f",
	":woman_white_hair:":                      "\U0001f469\U0000200d\U0001f9b3",
	":woman_with_headscarf:":                  "\U0001f9d5",
	":woman_with_headscarf_tone1:":            "\U0001f9d5\U0001f3fb",
	":woman_with_headscarf_tone2:":            "\U0001f9d5\U0001f3fc",
	":woman_with_headscarf_tone3:":            "\U0001f9d5\U0001f3fd",
	":woman_with_headscarf_tone4:":            "\U0001f9d5\U0001f3fe",
	":woman_with_headscarf_tone5:":            "\U0001f9d5\U0001f3ff",
	":woman_with_probing_cane:":               "\U0001f469\U0000200d\U0001f9af",
	":woman_with_turban:":                     "\U0001f473\u200d\u2640",
	":woman_zombie:":                          "\U0001f9df\U0000200d\U00002640\U0000fe0f",
	":womans_clothes:":                        "\U0001f45a",
	":womans_hat:":                            "\U0001f452",
	":woman’s_boot:":                          "\U0001f462",
	":woman’s_clothes:":                       "\U0001f45a",
	":woman’s_hat:":                           "\U0001f452",
	":woman’s_sandal:":                        "\U0001f461",
	":women_holding_hands:":                   "\U0001f46d",
	":women_with_bunny_ears:":                 "\U0001f46f\U0000200d\U00002640\U0000fe0f",
	":women_with_bunny_ears_partying:":        "\U0001f46f\u200d\u2640\ufe0f",
	":women_wrestling:":                       "\U0001f93c\U0000200d\U00002640\U0000fe0f",
	":womens:":                                "\U0001f6ba",
	":women’s_room:":                          "\U0001f6ba",
	":woozy_face:":                            "\U0001f974",
	":world_map:":                             "\U0001f5fa",
	":worried:":                               "\U0001f61f",
	":worried_face:":                          "\U0001f61f",
	":wrapped_gift:":                          "\U0001f381",
	":wrench:":                                "\U0001f527",
	":wrestling:":                             "\U0001f93c",
	":writing_hand:":                          "\U0000270d",
	":writing_hand_tone1:":                    "\u270d\U0001f3fb",
	":writing_hand_tone2:":                    "\u270d\U0001f3fc",
	":writing_hand_tone3:":                    "\u270d\U0001f3fd",
	":writing_hand_tone4:":                    "\u270d\U0001f3fe",
	":writing_hand_tone5:":                    "\u270d\U0001f3ff",
	":x:":                                     "\u274c",
	":yarn:":                                  "\U0001f9f6",
	":yawning_face:":                          "\U0001f971",
	":yellow_circle:":                         "\U0001f7e1",
	":yellow_heart:":                          "\U0001f49b",
	":yellow_square:":                         "\U0001f7e8",
	":yemen:":                                 "\U0001f1fe\U0001f1ea",
	":yen:":                                   "\U0001f4b4",
	":yen_banknote:":                          "\U0001f4b4",
	":yin_yang:":                              "\U0000262f",
	":yo-yo:":                                 "\U0001fa80",
	":yo_yo:":                                 "\U0001fa80",
	":yum:":                                   "\U0001f60b",
	":zambia:":                                "\U0001f1ff\U0001f1f2",
	":zany_face:":                             "\U0001f92a",
	":zap:":                                   "\u26a1",
	":zebra:":                                 "\U0001f993",
	":zero:":                                  "0\ufe0f\u20e3",
	":zimbabwe:":                              "\U0001f1ff\U0001f1fc",
	":zipper-mouth_face:":                     "\U0001f910",
	":zipper_mouth:":                          "\U0001f910",
	":zipper_mouth_face:":                     "\U0001f910",
	":zombie:":                                "\U0001f9df",
	":zombie_man:":                            "\U0001f9df\u200d\u2642",
	":zombie_woman:":                          "\U0001f9df\u200d\u2640",
	":zzz:":                                   "\U0001f4a4",
}