aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/vendor/rsc.io/markdown/emoji.go
blob: 7dfa836da0ae2523766eac6d90efab9ebacb86e8 (plain)
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
// Copyright 2023 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:generate go run emoji2go.go -o emoji.go

package markdown

// emoji maps known emoji names to their UTF-8 emoji forms.
var emoji = 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",
	"a":                                    "\U0001f170\ufe0f",
	"ab":                                   "\U0001f18e",
	"abacus":                               "\U0001f9ee",
	"abc":                                  "\U0001f524",
	"abcd":                                 "\U0001f521",
	"accept":                               "\U0001f251",
	"accordion":                            "\U0001fa97",
	"adhesive_bandage":                     "\U0001fa79",
	"adult":                                "\U0001f9d1",
	"aerial_tramway":                       "\U0001f6a1",
	"afghanistan":                          "\U0001f1e6\U0001f1eb",
	"airplane":                             "\u2708\ufe0f",
	"aland_islands":                        "\U0001f1e6\U0001f1fd",
	"alarm_clock":                          "\u23f0",
	"albania":                              "\U0001f1e6\U0001f1f1",
	"alembic":                              "\u2697\ufe0f",
	"algeria":                              "\U0001f1e9\U0001f1ff",
	"alien":                                "\U0001f47d",
	"ambulance":                            "\U0001f691",
	"american_samoa":                       "\U0001f1e6\U0001f1f8",
	"amphora":                              "\U0001f3fa",
	"anatomical_heart":                     "\U0001fac0",
	"anchor":                               "\u2693",
	"andorra":                              "\U0001f1e6\U0001f1e9",
	"angel":                                "\U0001f47c",
	"anger":                                "\U0001f4a2",
	"angola":                               "\U0001f1e6\U0001f1f4",
	"angry":                                "\U0001f620",
	"anguilla":                             "\U0001f1e6\U0001f1ee",
	"anguished":                            "\U0001f627",
	"ant":                                  "\U0001f41c",
	"antarctica":                           "\U0001f1e6\U0001f1f6",
	"antigua_barbuda":                      "\U0001f1e6\U0001f1ec",
	"apple":                                "\U0001f34e",
	"aquarius":                             "\u2652",
	"argentina":                            "\U0001f1e6\U0001f1f7",
	"aries":                                "\u2648",
	"armenia":                              "\U0001f1e6\U0001f1f2",
	"arrow_backward":                       "\u25c0\ufe0f",
	"arrow_double_down":                    "\u23ec",
	"arrow_double_up":                      "\u23eb",
	"arrow_down":                           "\u2b07\ufe0f",
	"arrow_down_small":                     "\U0001f53d",
	"arrow_forward":                        "\u25b6\ufe0f",
	"arrow_heading_down":                   "\u2935\ufe0f",
	"arrow_heading_up":                     "\u2934\ufe0f",
	"arrow_left":                           "\u2b05\ufe0f",
	"arrow_lower_left":                     "\u2199\ufe0f",
	"arrow_lower_right":                    "\u2198\ufe0f",
	"arrow_right":                          "\u27a1\ufe0f",
	"arrow_right_hook":                     "\u21aa\ufe0f",
	"arrow_up":                             "\u2b06\ufe0f",
	"arrow_up_down":                        "\u2195\ufe0f",
	"arrow_up_small":                       "\U0001f53c",
	"arrow_upper_left":                     "\u2196\ufe0f",
	"arrow_upper_right":                    "\u2197\ufe0f",
	"arrows_clockwise":                     "\U0001f503",
	"arrows_counterclockwise":              "\U0001f504",
	"art":                                  "\U0001f3a8",
	"articulated_lorry":                    "\U0001f69b",
	"artificial_satellite":                 "\U0001f6f0\ufe0f",
	"artist":                               "\U0001f9d1\u200d\U0001f3a8",
	"aruba":                                "\U0001f1e6\U0001f1fc",
	"ascension_island":                     "\U0001f1e6\U0001f1e8",
	"asterisk":                             "*\ufe0f\u20e3",
	"astonished":                           "\U0001f632",
	"astronaut":                            "\U0001f9d1\u200d\U0001f680",
	"athletic_shoe":                        "\U0001f45f",
	"atm":                                  "\U0001f3e7",
	"atom_symbol":                          "\u269b\ufe0f",
	"australia":                            "\U0001f1e6\U0001f1fa",
	"austria":                              "\U0001f1e6\U0001f1f9",
	"auto_rickshaw":                        "\U0001f6fa",
	"avocado":                              "\U0001f951",
	"axe":                                  "\U0001fa93",
	"azerbaijan":                           "\U0001f1e6\U0001f1ff",
	"b":                                    "\U0001f171\ufe0f",
	"baby":                                 "\U0001f476",
	"baby_bottle":                          "\U0001f37c",
	"baby_chick":                           "\U0001f424",
	"baby_symbol":                          "\U0001f6bc",
	"back":                                 "\U0001f519",
	"bacon":                                "\U0001f953",
	"badger":                               "\U0001f9a1",
	"badminton":                            "\U0001f3f8",
	"bagel":                                "\U0001f96f",
	"baggage_claim":                        "\U0001f6c4",
	"baguette_bread":                       "\U0001f956",
	"bahamas":                              "\U0001f1e7\U0001f1f8",
	"bahrain":                              "\U0001f1e7\U0001f1ed",
	"balance_scale":                        "\u2696\ufe0f",
	"bald_man":                             "\U0001f468\u200d\U0001f9b2",
	"bald_woman":                           "\U0001f469\u200d\U0001f9b2",
	"ballet_shoes":                         "\U0001fa70",
	"balloon":                              "\U0001f388",
	"ballot_box":                           "\U0001f5f3\ufe0f",
	"ballot_box_with_check":                "\u2611\ufe0f",
	"bamboo":                               "\U0001f38d",
	"banana":                               "\U0001f34c",
	"bangbang":                             "\u203c\ufe0f",
	"bangladesh":                           "\U0001f1e7\U0001f1e9",
	"banjo":                                "\U0001fa95",
	"bank":                                 "\U0001f3e6",
	"bar_chart":                            "\U0001f4ca",
	"barbados":                             "\U0001f1e7\U0001f1e7",
	"barber":                               "\U0001f488",
	"baseball":                             "\u26be",
	"basket":                               "\U0001f9fa",
	"basketball":                           "\U0001f3c0",
	"basketball_man":                       "\u26f9\ufe0f\u200d\u2642\ufe0f",
	"basketball_woman":                     "\u26f9\ufe0f\u200d\u2640\ufe0f",
	"bat":                                  "\U0001f987",
	"bath":                                 "\U0001f6c0",
	"bathtub":                              "\U0001f6c1",
	"battery":                              "\U0001f50b",
	"beach_umbrella":                       "\U0001f3d6\ufe0f",
	"bear":                                 "\U0001f43b",
	"bearded_person":                       "\U0001f9d4",
	"beaver":                               "\U0001f9ab",
	"bed":                                  "\U0001f6cf\ufe0f",
	"bee":                                  "\U0001f41d",
	"beer":                                 "\U0001f37a",
	"beers":                                "\U0001f37b",
	"beetle":                               "\U0001fab2",
	"beginner":                             "\U0001f530",
	"belarus":                              "\U0001f1e7\U0001f1fe",
	"belgium":                              "\U0001f1e7\U0001f1ea",
	"belize":                               "\U0001f1e7\U0001f1ff",
	"bell":                                 "\U0001f514",
	"bell_pepper":                          "\U0001fad1",
	"bellhop_bell":                         "\U0001f6ce\ufe0f",
	"benin":                                "\U0001f1e7\U0001f1ef",
	"bento":                                "\U0001f371",
	"bermuda":                              "\U0001f1e7\U0001f1f2",
	"beverage_box":                         "\U0001f9c3",
	"bhutan":                               "\U0001f1e7\U0001f1f9",
	"bicyclist":                            "\U0001f6b4",
	"bike":                                 "\U0001f6b2",
	"biking_man":                           "\U0001f6b4\u200d\u2642\ufe0f",
	"biking_woman":                         "\U0001f6b4\u200d\u2640\ufe0f",
	"bikini":                               "\U0001f459",
	"billed_cap":                           "\U0001f9e2",
	"biohazard":                            "\u2623\ufe0f",
	"bird":                                 "\U0001f426",
	"birthday":                             "\U0001f382",
	"bison":                                "\U0001f9ac",
	"black_cat":                            "\U0001f408\u200d\u2b1b",
	"black_circle":                         "\u26ab",
	"black_flag":                           "\U0001f3f4",
	"black_heart":                          "\U0001f5a4",
	"black_joker":                          "\U0001f0cf",
	"black_large_square":                   "\u2b1b",
	"black_medium_small_square":            "\u25fe",
	"black_medium_square":                  "\u25fc\ufe0f",
	"black_nib":                            "\u2712\ufe0f",
	"black_small_square":                   "\u25aa\ufe0f",
	"black_square_button":                  "\U0001f532",
	"blond_haired_man":                     "\U0001f471\u200d\u2642\ufe0f",
	"blond_haired_person":                  "\U0001f471",
	"blond_haired_woman":                   "\U0001f471\u200d\u2640\ufe0f",
	"blonde_woman":                         "\U0001f471\u200d\u2640\ufe0f",
	"blossom":                              "\U0001f33c",
	"blowfish":                             "\U0001f421",
	"blue_book":                            "\U0001f4d8",
	"blue_car":                             "\U0001f699",
	"blue_heart":                           "\U0001f499",
	"blue_square":                          "\U0001f7e6",
	"blueberries":                          "\U0001fad0",
	"blush":                                "\U0001f60a",
	"boar":                                 "\U0001f417",
	"boat":                                 "\u26f5",
	"bolivia":                              "\U0001f1e7\U0001f1f4",
	"bomb":                                 "\U0001f4a3",
	"bone":                                 "\U0001f9b4",
	"book":                                 "\U0001f4d6",
	"bookmark":                             "\U0001f516",
	"bookmark_tabs":                        "\U0001f4d1",
	"books":                                "\U0001f4da",
	"boom":                                 "\U0001f4a5",
	"boomerang":                            "\U0001fa83",
	"boot":                                 "\U0001f462",
	"bosnia_herzegovina":                   "\U0001f1e7\U0001f1e6",
	"botswana":                             "\U0001f1e7\U0001f1fc",
	"bouncing_ball_man":                    "\u26f9\ufe0f\u200d\u2642\ufe0f",
	"bouncing_ball_person":                 "\u26f9\ufe0f",
	"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\ufe0f",
	"bowing_woman":                         "\U0001f647\u200d\u2640\ufe0f",
	"bowl_with_spoon":                      "\U0001f963",
	"bowling":                              "\U0001f3b3",
	"boxing_glove":                         "\U0001f94a",
	"boy":                                  "\U0001f466",
	"brain":                                "\U0001f9e0",
	"brazil":                               "\U0001f1e7\U0001f1f7",
	"bread":                                "\U0001f35e",
	"breast_feeding":                       "\U0001f931",
	"bricks":                               "\U0001f9f1",
	"bride_with_veil":                      "\U0001f470\u200d\u2640\ufe0f",
	"bridge_at_night":                      "\U0001f309",
	"briefcase":                            "\U0001f4bc",
	"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",
	"bubble_tea":                           "\U0001f9cb",
	"bucket":                               "\U0001faa3",
	"bug":                                  "\U0001f41b",
	"building_construction":                "\U0001f3d7\ufe0f",
	"bulb":                                 "\U0001f4a1",
	"bulgaria":                             "\U0001f1e7\U0001f1ec",
	"bullettrain_front":                    "\U0001f685",
	"bullettrain_side":                     "\U0001f684",
	"burkina_faso":                         "\U0001f1e7\U0001f1eb",
	"burrito":                              "\U0001f32f",
	"burundi":                              "\U0001f1e7\U0001f1ee",
	"bus":                                  "\U0001f68c",
	"business_suit_levitating":             "\U0001f574\ufe0f",
	"busstop":                              "\U0001f68f",
	"bust_in_silhouette":                   "\U0001f464",
	"busts_in_silhouette":                  "\U0001f465",
	"butter":                               "\U0001f9c8",
	"butterfly":                            "\U0001f98b",
	"cactus":                               "\U0001f335",
	"cake":                                 "\U0001f370",
	"calendar":                             "\U0001f4c6",
	"call_me_hand":                         "\U0001f919",
	"calling":                              "\U0001f4f2",
	"cambodia":                             "\U0001f1f0\U0001f1ed",
	"camel":                                "\U0001f42b",
	"camera":                               "\U0001f4f7",
	"camera_flash":                         "\U0001f4f8",
	"cameroon":                             "\U0001f1e8\U0001f1f2",
	"camping":                              "\U0001f3d5\ufe0f",
	"canada":                               "\U0001f1e8\U0001f1e6",
	"canary_islands":                       "\U0001f1ee\U0001f1e8",
	"cancer":                               "\u264b",
	"candle":                               "\U0001f56f\ufe0f",
	"candy":                                "\U0001f36c",
	"canned_food":                          "\U0001f96b",
	"canoe":                                "\U0001f6f6",
	"cape_verde":                           "\U0001f1e8\U0001f1fb",
	"capital_abcd":                         "\U0001f520",
	"capricorn":                            "\u2651",
	"car":                                  "\U0001f697",
	"card_file_box":                        "\U0001f5c3\ufe0f",
	"card_index":                           "\U0001f4c7",
	"card_index_dividers":                  "\U0001f5c2\ufe0f",
	"caribbean_netherlands":                "\U0001f1e7\U0001f1f6",
	"carousel_horse":                       "\U0001f3a0",
	"carpentry_saw":                        "\U0001fa9a",
	"carrot":                               "\U0001f955",
	"cartwheeling":                         "\U0001f938",
	"cat":                                  "\U0001f431",
	"cat2":                                 "\U0001f408",
	"cayman_islands":                       "\U0001f1f0\U0001f1fe",
	"cd":                                   "\U0001f4bf",
	"central_african_republic":             "\U0001f1e8\U0001f1eb",
	"ceuta_melilla":                        "\U0001f1ea\U0001f1e6",
	"chad":                                 "\U0001f1f9\U0001f1e9",
	"chains":                               "\u26d3\ufe0f",
	"chair":                                "\U0001fa91",
	"champagne":                            "\U0001f37e",
	"chart":                                "\U0001f4b9",
	"chart_with_downwards_trend":           "\U0001f4c9",
	"chart_with_upwards_trend":             "\U0001f4c8",
	"checkered_flag":                       "\U0001f3c1",
	"cheese":                               "\U0001f9c0",
	"cherries":                             "\U0001f352",
	"cherry_blossom":                       "\U0001f338",
	"chess_pawn":                           "\u265f\ufe0f",
	"chestnut":                             "\U0001f330",
	"chicken":                              "\U0001f414",
	"child":                                "\U0001f9d2",
	"children_crossing":                    "\U0001f6b8",
	"chile":                                "\U0001f1e8\U0001f1f1",
	"chipmunk":                             "\U0001f43f\ufe0f",
	"chocolate_bar":                        "\U0001f36b",
	"chopsticks":                           "\U0001f962",
	"christmas_island":                     "\U0001f1e8\U0001f1fd",
	"christmas_tree":                       "\U0001f384",
	"church":                               "\u26ea",
	"cinema":                               "\U0001f3a6",
	"circus_tent":                          "\U0001f3aa",
	"city_sunrise":                         "\U0001f307",
	"city_sunset":                          "\U0001f306",
	"cityscape":                            "\U0001f3d9\ufe0f",
	"cl":                                   "\U0001f191",
	"clamp":                                "\U0001f5dc\ufe0f",
	"clap":                                 "\U0001f44f",
	"clapper":                              "\U0001f3ac",
	"classical_building":                   "\U0001f3db\ufe0f",
	"climbing":                             "\U0001f9d7",
	"climbing_man":                         "\U0001f9d7\u200d\u2642\ufe0f",
	"climbing_woman":                       "\U0001f9d7\u200d\u2640\ufe0f",
	"clinking_glasses":                     "\U0001f942",
	"clipboard":                            "\U0001f4cb",
	"clipperton_island":                    "\U0001f1e8\U0001f1f5",
	"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",
	"closed_book":                          "\U0001f4d5",
	"closed_lock_with_key":                 "\U0001f510",
	"closed_umbrella":                      "\U0001f302",
	"cloud":                                "\u2601\ufe0f",
	"cloud_with_lightning":                 "\U0001f329\ufe0f",
	"cloud_with_lightning_and_rain":        "\u26c8\ufe0f",
	"cloud_with_rain":                      "\U0001f327\ufe0f",
	"cloud_with_snow":                      "\U0001f328\ufe0f",
	"clown_face":                           "\U0001f921",
	"clubs":                                "\u2663\ufe0f",
	"cn":                                   "\U0001f1e8\U0001f1f3",
	"coat":                                 "\U0001f9e5",
	"cockroach":                            "\U0001fab3",
	"cocktail":                             "\U0001f378",
	"coconut":                              "\U0001f965",
	"cocos_islands":                        "\U0001f1e8\U0001f1e8",
	"coffee":                               "\u2615",
	"coffin":                               "\u26b0\ufe0f",
	"coin":                                 "\U0001fa99",
	"cold_face":                            "\U0001f976",
	"cold_sweat":                           "\U0001f630",
	"collision":                            "\U0001f4a5",
	"colombia":                             "\U0001f1e8\U0001f1f4",
	"comet":                                "\u2604\ufe0f",
	"comoros":                              "\U0001f1f0\U0001f1f2",
	"compass":                              "\U0001f9ed",
	"computer":                             "\U0001f4bb",
	"computer_mouse":                       "\U0001f5b1\ufe0f",
	"confetti_ball":                        "\U0001f38a",
	"confounded":                           "\U0001f616",
	"confused":                             "\U0001f615",
	"congo_brazzaville":                    "\U0001f1e8\U0001f1ec",
	"congo_kinshasa":                       "\U0001f1e8\U0001f1e9",
	"congratulations":                      "\u3297\ufe0f",
	"construction":                         "\U0001f6a7",
	"construction_worker":                  "\U0001f477",
	"construction_worker_man":              "\U0001f477\u200d\u2642\ufe0f",
	"construction_worker_woman":            "\U0001f477\u200d\u2640\ufe0f",
	"control_knobs":                        "\U0001f39b\ufe0f",
	"convenience_store":                    "\U0001f3ea",
	"cook":                                 "\U0001f9d1\u200d\U0001f373",
	"cook_islands":                         "\U0001f1e8\U0001f1f0",
	"cookie":                               "\U0001f36a",
	"cool":                                 "\U0001f192",
	"cop":                                  "\U0001f46e",
	"copyright":                            "\u00a9\ufe0f",
	"corn":                                 "\U0001f33d",
	"costa_rica":                           "\U0001f1e8\U0001f1f7",
	"cote_divoire":                         "\U0001f1e8\U0001f1ee",
	"couch_and_lamp":                       "\U0001f6cb\ufe0f",
	"couple":                               "\U0001f46b",
	"couple_with_heart":                    "\U0001f491",
	"couple_with_heart_man_man":            "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468",
	"couple_with_heart_woman_man":          "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f468",
	"couple_with_heart_woman_woman":        "\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":                                  "\U0001f42e",
	"cow2":                                 "\U0001f404",
	"cowboy_hat_face":                      "\U0001f920",
	"crab":                                 "\U0001f980",
	"crayon":                               "\U0001f58d\ufe0f",
	"credit_card":                          "\U0001f4b3",
	"crescent_moon":                        "\U0001f319",
	"cricket":                              "\U0001f997",
	"cricket_game":                         "\U0001f3cf",
	"croatia":                              "\U0001f1ed\U0001f1f7",
	"crocodile":                            "\U0001f40a",
	"croissant":                            "\U0001f950",
	"crossed_fingers":                      "\U0001f91e",
	"crossed_flags":                        "\U0001f38c",
	"crossed_swords":                       "\u2694\ufe0f",
	"crown":                                "\U0001f451",
	"cry":                                  "\U0001f622",
	"crying_cat_face":                      "\U0001f63f",
	"crystal_ball":                         "\U0001f52e",
	"cuba":                                 "\U0001f1e8\U0001f1fa",
	"cucumber":                             "\U0001f952",
	"cup_with_straw":                       "\U0001f964",
	"cupcake":                              "\U0001f9c1",
	"cupid":                                "\U0001f498",
	"curacao":                              "\U0001f1e8\U0001f1fc",
	"curling_stone":                        "\U0001f94c",
	"curly_haired_man":                     "\U0001f468\u200d\U0001f9b1",
	"curly_haired_woman":                   "\U0001f469\u200d\U0001f9b1",
	"curly_loop":                           "\u27b0",
	"currency_exchange":                    "\U0001f4b1",
	"curry":                                "\U0001f35b",
	"cursing_face":                         "\U0001f92c",
	"custard":                              "\U0001f36e",
	"customs":                              "\U0001f6c3",
	"cut_of_meat":                          "\U0001f969",
	"cyclone":                              "\U0001f300",
	"cyprus":                               "\U0001f1e8\U0001f1fe",
	"czech_republic":                       "\U0001f1e8\U0001f1ff",
	"dagger":                               "\U0001f5e1\ufe0f",
	"dancer":                               "\U0001f483",
	"dancers":                              "\U0001f46f",
	"dancing_men":                          "\U0001f46f\u200d\u2642\ufe0f",
	"dancing_women":                        "\U0001f46f\u200d\u2640\ufe0f",
	"dango":                                "\U0001f361",
	"dark_sunglasses":                      "\U0001f576\ufe0f",
	"dart":                                 "\U0001f3af",
	"dash":                                 "\U0001f4a8",
	"date":                                 "\U0001f4c5",
	"de":                                   "\U0001f1e9\U0001f1ea",
	"deaf_man":                             "\U0001f9cf\u200d\u2642\ufe0f",
	"deaf_person":                          "\U0001f9cf",
	"deaf_woman":                           "\U0001f9cf\u200d\u2640\ufe0f",
	"deciduous_tree":                       "\U0001f333",
	"deer":                                 "\U0001f98c",
	"denmark":                              "\U0001f1e9\U0001f1f0",
	"department_store":                     "\U0001f3ec",
	"derelict_house":                       "\U0001f3da\ufe0f",
	"desert":                               "\U0001f3dc\ufe0f",
	"desert_island":                        "\U0001f3dd\ufe0f",
	"desktop_computer":                     "\U0001f5a5\ufe0f",
	"detective":                            "\U0001f575\ufe0f",
	"diamond_shape_with_a_dot_inside":      "\U0001f4a0",
	"diamonds":                             "\u2666\ufe0f",
	"diego_garcia":                         "\U0001f1e9\U0001f1ec",
	"disappointed":                         "\U0001f61e",
	"disappointed_relieved":                "\U0001f625",
	"disguised_face":                       "\U0001f978",
	"diving_mask":                          "\U0001f93f",
	"diya_lamp":                            "\U0001fa94",
	"dizzy":                                "\U0001f4ab",
	"dizzy_face":                           "\U0001f635",
	"djibouti":                             "\U0001f1e9\U0001f1ef",
	"dna":                                  "\U0001f9ec",
	"do_not_litter":                        "\U0001f6af",
	"dodo":                                 "\U0001f9a4",
	"dog":                                  "\U0001f436",
	"dog2":                                 "\U0001f415",
	"dollar":                               "\U0001f4b5",
	"dolls":                                "\U0001f38e",
	"dolphin":                              "\U0001f42c",
	"dominica":                             "\U0001f1e9\U0001f1f2",
	"dominican_republic":                   "\U0001f1e9\U0001f1f4",
	"door":                                 "\U0001f6aa",
	"doughnut":                             "\U0001f369",
	"dove":                                 "\U0001f54a\ufe0f",
	"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_rice":                          "\U0001f33e",
	"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_black_star":             "\u2734\ufe0f",
	"eight_spoked_asterisk":                "\u2733\ufe0f",
	"eject_button":                         "\u23cf\ufe0f",
	"el_salvador":                          "\U0001f1f8\U0001f1fb",
	"electric_plug":                        "\U0001f50c",
	"elephant":                             "\U0001f418",
	"elevator":                             "\U0001f6d7",
	"elf":                                  "\U0001f9dd",
	"elf_man":                              "\U0001f9dd\u200d\u2642\ufe0f",
	"elf_woman":                            "\U0001f9dd\u200d\u2640\ufe0f",
	"email":                                "\U0001f4e7",
	"end":                                  "\U0001f51a",
	"england":                              "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
	"envelope":                             "\u2709\ufe0f",
	"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",
	"european_castle":                      "\U0001f3f0",
	"european_post_office":                 "\U0001f3e4",
	"european_union":                       "\U0001f1ea\U0001f1fa",
	"evergreen_tree":                       "\U0001f332",
	"exclamation":                          "\u2757",
	"exploding_head":                       "\U0001f92f",
	"expressionless":                       "\U0001f611",
	"eye":                                  "\U0001f441\ufe0f",
	"eye_speech_bubble":                    "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
	"eyeglasses":                           "\U0001f453",
	"eyes":                                 "\U0001f440",
	"face_exhaling":                        "\U0001f62e\u200d\U0001f4a8",
	"face_in_clouds":                       "\U0001f636\u200d\U0001f32b\ufe0f",
	"face_with_head_bandage":               "\U0001f915",
	"face_with_spiral_eyes":                "\U0001f635\u200d\U0001f4ab",
	"face_with_thermometer":                "\U0001f912",
	"facepalm":                             "\U0001f926",
	"facepunch":                            "\U0001f44a",
	"factory":                              "\U0001f3ed",
	"factory_worker":                       "\U0001f9d1\u200d\U0001f3ed",
	"fairy":                                "\U0001f9da",
	"fairy_man":                            "\U0001f9da\u200d\u2642\ufe0f",
	"fairy_woman":                          "\U0001f9da\u200d\u2640\ufe0f",
	"falafel":                              "\U0001f9c6",
	"falkland_islands":                     "\U0001f1eb\U0001f1f0",
	"fallen_leaf":                          "\U0001f342",
	"family":                               "\U0001f46a",
	"family_man_boy":                       "\U0001f468\u200d\U0001f466",
	"family_man_boy_boy":                   "\U0001f468\u200d\U0001f466\u200d\U0001f466",
	"family_man_girl":                      "\U0001f468\u200d\U0001f467",
	"family_man_girl_boy":                  "\U0001f468\u200d\U0001f467\u200d\U0001f466",
	"family_man_girl_girl":                 "\U0001f468\u200d\U0001f467\u200d\U0001f467",
	"family_man_man_boy":                   "\U0001f468\u200d\U0001f468\u200d\U0001f466",
	"family_man_man_boy_boy":               "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466",
	"family_man_man_girl":                  "\U0001f468\u200d\U0001f468\u200d\U0001f467",
	"family_man_man_girl_boy":              "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466",
	"family_man_man_girl_girl":             "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467",
	"family_man_woman_boy":                 "\U0001f468\u200d\U0001f469\u200d\U0001f466",
	"family_man_woman_boy_boy":             "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
	"family_man_woman_girl":                "\U0001f468\u200d\U0001f469\u200d\U0001f467",
	"family_man_woman_girl_boy":            "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
	"family_man_woman_girl_girl":           "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
	"family_woman_boy":                     "\U0001f469\u200d\U0001f466",
	"family_woman_boy_boy":                 "\U0001f469\u200d\U0001f466\u200d\U0001f466",
	"family_woman_girl":                    "\U0001f469\u200d\U0001f467",
	"family_woman_girl_boy":                "\U0001f469\u200d\U0001f467\u200d\U0001f466",
	"family_woman_girl_girl":               "\U0001f469\u200d\U0001f467\u200d\U0001f467",
	"family_woman_woman_boy":               "\U0001f469\u200d\U0001f469\u200d\U0001f466",
	"family_woman_woman_boy_boy":           "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
	"family_woman_woman_girl":              "\U0001f469\u200d\U0001f469\u200d\U0001f467",
	"family_woman_woman_girl_boy":          "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
	"family_woman_woman_girl_girl":         "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
	"farmer":                               "\U0001f9d1\u200d\U0001f33e",
	"faroe_islands":                        "\U0001f1eb\U0001f1f4",
	"fast_forward":                         "\u23e9",
	"fax":                                  "\U0001f4e0",
	"fearful":                              "\U0001f628",
	"feather":                              "\U0001fab6",
	"feet":                                 "\U0001f43e",
	"female_detective":                     "\U0001f575\ufe0f\u200d\u2640\ufe0f",
	"female_sign":                          "\u2640\ufe0f",
	"ferris_wheel":                         "\U0001f3a1",
	"ferry":                                "\u26f4\ufe0f",
	"field_hockey":                         "\U0001f3d1",
	"fiji":                                 "\U0001f1eb\U0001f1ef",
	"file_cabinet":                         "\U0001f5c4\ufe0f",
	"file_folder":                          "\U0001f4c1",
	"film_projector":                       "\U0001f4fd\ufe0f",
	"film_strip":                           "\U0001f39e\ufe0f",
	"finland":                              "\U0001f1eb\U0001f1ee",
	"fire":                                 "\U0001f525",
	"fire_engine":                          "\U0001f692",
	"fire_extinguisher":                    "\U0001f9ef",
	"firecracker":                          "\U0001f9e8",
	"firefighter":                          "\U0001f9d1\u200d\U0001f692",
	"fireworks":                            "\U0001f386",
	"first_quarter_moon":                   "\U0001f313",
	"first_quarter_moon_with_face":         "\U0001f31b",
	"fish":                                 "\U0001f41f",
	"fish_cake":                            "\U0001f365",
	"fishing_pole_and_fish":                "\U0001f3a3",
	"fist":                                 "\u270a",
	"fist_left":                            "\U0001f91b",
	"fist_oncoming":                        "\U0001f44a",
	"fist_raised":                          "\u270a",
	"fist_right":                           "\U0001f91c",
	"five":                                 "5\ufe0f\u20e3",
	"flags":                                "\U0001f38f",
	"flamingo":                             "\U0001f9a9",
	"flashlight":                           "\U0001f526",
	"flat_shoe":                            "\U0001f97f",
	"flatbread":                            "\U0001fad3",
	"fleur_de_lis":                         "\u269c\ufe0f",
	"flight_arrival":                       "\U0001f6ec",
	"flight_departure":                     "\U0001f6eb",
	"flipper":                              "\U0001f42c",
	"floppy_disk":                          "\U0001f4be",
	"flower_playing_cards":                 "\U0001f3b4",
	"flushed":                              "\U0001f633",
	"fly":                                  "\U0001fab0",
	"flying_disc":                          "\U0001f94f",
	"flying_saucer":                        "\U0001f6f8",
	"fog":                                  "\U0001f32b\ufe0f",
	"foggy":                                "\U0001f301",
	"fondue":                               "\U0001fad5",
	"foot":                                 "\U0001f9b6",
	"football":                             "\U0001f3c8",
	"footprints":                           "\U0001f463",
	"fork_and_knife":                       "\U0001f374",
	"fortune_cookie":                       "\U0001f960",
	"fountain":                             "\u26f2",
	"fountain_pen":                         "\U0001f58b\ufe0f",
	"four":                                 "4\ufe0f\u20e3",
	"four_leaf_clover":                     "\U0001f340",
	"fox_face":                             "\U0001f98a",
	"fr":                                   "\U0001f1eb\U0001f1f7",
	"framed_picture":                       "\U0001f5bc\ufe0f",
	"free":                                 "\U0001f193",
	"french_guiana":                        "\U0001f1ec\U0001f1eb",
	"french_polynesia":                     "\U0001f1f5\U0001f1eb",
	"french_southern_territories":          "\U0001f1f9\U0001f1eb",
	"fried_egg":                            "\U0001f373",
	"fried_shrimp":                         "\U0001f364",
	"fries":                                "\U0001f35f",
	"frog":                                 "\U0001f438",
	"frowning":                             "\U0001f626",
	"frowning_face":                        "\u2639\ufe0f",
	"frowning_man":                         "\U0001f64d\u200d\u2642\ufe0f",
	"frowning_person":                      "\U0001f64d",
	"frowning_woman":                       "\U0001f64d\u200d\u2640\ufe0f",
	"fu":                                   "\U0001f595",
	"fuelpump":                             "\u26fd",
	"full_moon":                            "\U0001f315",
	"full_moon_with_face":                  "\U0001f31d",
	"funeral_urn":                          "\u26b1\ufe0f",
	"gabon":                                "\U0001f1ec\U0001f1e6",
	"gambia":                               "\U0001f1ec\U0001f1f2",
	"game_die":                             "\U0001f3b2",
	"garlic":                               "\U0001f9c4",
	"gb":                                   "\U0001f1ec\U0001f1e7",
	"gear":                                 "\u2699\ufe0f",
	"gem":                                  "\U0001f48e",
	"gemini":                               "\u264a",
	"genie":                                "\U0001f9de",
	"genie_man":                            "\U0001f9de\u200d\u2642\ufe0f",
	"genie_woman":                          "\U0001f9de\u200d\u2640\ufe0f",
	"georgia":                              "\U0001f1ec\U0001f1ea",
	"ghana":                                "\U0001f1ec\U0001f1ed",
	"ghost":                                "\U0001f47b",
	"gibraltar":                            "\U0001f1ec\U0001f1ee",
	"gift":                                 "\U0001f381",
	"gift_heart":                           "\U0001f49d",
	"giraffe":                              "\U0001f992",
	"girl":                                 "\U0001f467",
	"globe_with_meridians":                 "\U0001f310",
	"gloves":                               "\U0001f9e4",
	"goal_net":                             "\U0001f945",
	"goat":                                 "\U0001f410",
	"goggles":                              "\U0001f97d",
	"golf":                                 "\u26f3",
	"golfing":                              "\U0001f3cc\ufe0f",
	"golfing_man":                          "\U0001f3cc\ufe0f\u200d\u2642\ufe0f",
	"golfing_woman":                        "\U0001f3cc\ufe0f\u200d\u2640\ufe0f",
	"gorilla":                              "\U0001f98d",
	"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",
	"grin":                                 "\U0001f601",
	"grinning":                             "\U0001f600",
	"guadeloupe":                           "\U0001f1ec\U0001f1f5",
	"guam":                                 "\U0001f1ec\U0001f1fa",
	"guard":                                "\U0001f482",
	"guardsman":                            "\U0001f482\u200d\u2642\ufe0f",
	"guardswoman":                          "\U0001f482\u200d\u2640\ufe0f",
	"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\ufe0f",
	"haircut_woman":                        "\U0001f487\u200d\u2640\ufe0f",
	"haiti":                                "\U0001f1ed\U0001f1f9",
	"hamburger":                            "\U0001f354",
	"hammer":                               "\U0001f528",
	"hammer_and_pick":                      "\u2692\ufe0f",
	"hammer_and_wrench":                    "\U0001f6e0\ufe0f",
	"hamster":                              "\U0001f439",
	"hand":                                 "\u270b",
	"hand_over_mouth":                      "\U0001f92d",
	"handbag":                              "\U0001f45c",
	"handball_person":                      "\U0001f93e",
	"handshake":                            "\U0001f91d",
	"hankey":                               "\U0001f4a9",
	"hash":                                 "#\ufe0f\u20e3",
	"hatched_chick":                        "\U0001f425",
	"hatching_chick":                       "\U0001f423",
	"headphones":                           "\U0001f3a7",
	"headstone":                            "\U0001faa6",
	"health_worker":                        "\U0001f9d1\u200d\u2695\ufe0f",
	"hear_no_evil":                         "\U0001f649",
	"heard_mcdonald_islands":               "\U0001f1ed\U0001f1f2",
	"heart":                                "\u2764\ufe0f",
	"heart_decoration":                     "\U0001f49f",
	"heart_eyes":                           "\U0001f60d",
	"heart_eyes_cat":                       "\U0001f63b",
	"heart_on_fire":                        "\u2764\ufe0f\u200d\U0001f525",
	"heartbeat":                            "\U0001f493",
	"heartpulse":                           "\U0001f497",
	"hearts":                               "\u2665\ufe0f",
	"heavy_check_mark":                     "\u2714\ufe0f",
	"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\ufe0f",
	"heavy_plus_sign":                      "\u2795",
	"hedgehog":                             "\U0001f994",
	"helicopter":                           "\U0001f681",
	"herb":                                 "\U0001f33f",
	"hibiscus":                             "\U0001f33a",
	"high_brightness":                      "\U0001f506",
	"high_heel":                            "\U0001f460",
	"hiking_boot":                          "\U0001f97e",
	"hindu_temple":                         "\U0001f6d5",
	"hippopotamus":                         "\U0001f99b",
	"hocho":                                "\U0001f52a",
	"hole":                                 "\U0001f573\ufe0f",
	"honduras":                             "\U0001f1ed\U0001f1f3",
	"honey_pot":                            "\U0001f36f",
	"honeybee":                             "\U0001f41d",
	"hong_kong":                            "\U0001f1ed\U0001f1f0",
	"hook":                                 "\U0001fa9d",
	"horse":                                "\U0001f434",
	"horse_racing":                         "\U0001f3c7",
	"hospital":                             "\U0001f3e5",
	"hot_face":                             "\U0001f975",
	"hot_pepper":                           "\U0001f336\ufe0f",
	"hotdog":                               "\U0001f32d",
	"hotel":                                "\U0001f3e8",
	"hotsprings":                           "\u2668\ufe0f",
	"hourglass":                            "\u231b",
	"hourglass_flowing_sand":               "\u23f3",
	"house":                                "\U0001f3e0",
	"house_with_garden":                    "\U0001f3e1",
	"houses":                               "\U0001f3d8\ufe0f",
	"hugs":                                 "\U0001f917",
	"hungary":                              "\U0001f1ed\U0001f1fa",
	"hushed":                               "\U0001f62f",
	"hut":                                  "\U0001f6d6",
	"ice_cream":                            "\U0001f368",
	"ice_cube":                             "\U0001f9ca",
	"ice_hockey":                           "\U0001f3d2",
	"ice_skate":                            "\u26f8\ufe0f",
	"icecream":                             "\U0001f366",
	"iceland":                              "\U0001f1ee\U0001f1f8",
	"id":                                   "\U0001f194",
	"ideograph_advantage":                  "\U0001f250",
	"imp":                                  "\U0001f47f",
	"inbox_tray":                           "\U0001f4e5",
	"incoming_envelope":                    "\U0001f4e8",
	"india":                                "\U0001f1ee\U0001f1f3",
	"indonesia":                            "\U0001f1ee\U0001f1e9",
	"infinity":                             "\u267e\ufe0f",
	"information_desk_person":              "\U0001f481",
	"information_source":                   "\u2139\ufe0f",
	"innocent":                             "\U0001f607",
	"interrobang":                          "\u2049\ufe0f",
	"iphone":                               "\U0001f4f1",
	"iran":                                 "\U0001f1ee\U0001f1f7",
	"iraq":                                 "\U0001f1ee\U0001f1f6",
	"ireland":                              "\U0001f1ee\U0001f1ea",
	"isle_of_man":                          "\U0001f1ee\U0001f1f2",
	"israel":                               "\U0001f1ee\U0001f1f1",
	"it":                                   "\U0001f1ee\U0001f1f9",
	"izakaya_lantern":                      "\U0001f3ee",
	"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",
	"jordan":                               "\U0001f1ef\U0001f1f4",
	"joy":                                  "\U0001f602",
	"joy_cat":                              "\U0001f639",
	"joystick":                             "\U0001f579\ufe0f",
	"jp":                                   "\U0001f1ef\U0001f1f5",
	"judge":                                "\U0001f9d1\u200d\u2696\ufe0f",
	"juggling_person":                      "\U0001f939",
	"kaaba":                                "\U0001f54b",
	"kangaroo":                             "\U0001f998",
	"kazakhstan":                           "\U0001f1f0\U0001f1ff",
	"kenya":                                "\U0001f1f0\U0001f1ea",
	"key":                                  "\U0001f511",
	"keyboard":                             "\u2328\ufe0f",
	"keycap_ten":                           "\U0001f51f",
	"kick_scooter":                         "\U0001f6f4",
	"kimono":                               "\U0001f458",
	"kiribati":                             "\U0001f1f0\U0001f1ee",
	"kiss":                                 "\U0001f48b",
	"kissing":                              "\U0001f617",
	"kissing_cat":                          "\U0001f63d",
	"kissing_closed_eyes":                  "\U0001f61a",
	"kissing_heart":                        "\U0001f618",
	"kissing_smiling_eyes":                 "\U0001f619",
	"kite":                                 "\U0001fa81",
	"kiwi_fruit":                           "\U0001f95d",
	"kneeling_man":                         "\U0001f9ce\u200d\u2642\ufe0f",
	"kneeling_person":                      "\U0001f9ce",
	"kneeling_woman":                       "\U0001f9ce\u200d\u2640\ufe0f",
	"knife":                                "\U0001f52a",
	"knot":                                 "\U0001faa2",
	"koala":                                "\U0001f428",
	"koko":                                 "\U0001f201",
	"kosovo":                               "\U0001f1fd\U0001f1f0",
	"kr":                                   "\U0001f1f0\U0001f1f7",
	"kuwait":                               "\U0001f1f0\U0001f1fc",
	"kyrgyzstan":                           "\U0001f1f0\U0001f1ec",
	"lab_coat":                             "\U0001f97c",
	"label":                                "\U0001f3f7\ufe0f",
	"lacrosse":                             "\U0001f94d",
	"ladder":                               "\U0001fa9c",
	"lady_beetle":                          "\U0001f41e",
	"lantern":                              "\U0001f3ee",
	"laos":                                 "\U0001f1f1\U0001f1e6",
	"large_blue_circle":                    "\U0001f535",
	"large_blue_diamond":                   "\U0001f537",
	"large_orange_diamond":                 "\U0001f536",
	"last_quarter_moon":                    "\U0001f317",
	"last_quarter_moon_with_face":          "\U0001f31c",
	"latin_cross":                          "\u271d\ufe0f",
	"latvia":                               "\U0001f1f1\U0001f1fb",
	"laughing":                             "\U0001f606",
	"leafy_green":                          "\U0001f96c",
	"leaves":                               "\U0001f343",
	"lebanon":                              "\U0001f1f1\U0001f1e7",
	"ledger":                               "\U0001f4d2",
	"left_luggage":                         "\U0001f6c5",
	"left_right_arrow":                     "\u2194\ufe0f",
	"left_speech_bubble":                   "\U0001f5e8\ufe0f",
	"leftwards_arrow_with_hook":            "\u21a9\ufe0f",
	"leg":                                  "\U0001f9b5",
	"lemon":                                "\U0001f34b",
	"leo":                                  "\u264c",
	"leopard":                              "\U0001f406",
	"lesotho":                              "\U0001f1f1\U0001f1f8",
	"level_slider":                         "\U0001f39a\ufe0f",
	"liberia":                              "\U0001f1f1\U0001f1f7",
	"libra":                                "\u264e",
	"libya":                                "\U0001f1f1\U0001f1fe",
	"liechtenstein":                        "\U0001f1f1\U0001f1ee",
	"light_rail":                           "\U0001f688",
	"link":                                 "\U0001f517",
	"lion":                                 "\U0001f981",
	"lips":                                 "\U0001f444",
	"lipstick":                             "\U0001f484",
	"lithuania":                            "\U0001f1f1\U0001f1f9",
	"lizard":                               "\U0001f98e",
	"llama":                                "\U0001f999",
	"lobster":                              "\U0001f99e",
	"lock":                                 "\U0001f512",
	"lock_with_ink_pen":                    "\U0001f50f",
	"lollipop":                             "\U0001f36d",
	"long_drum":                            "\U0001fa98",
	"loop":                                 "\u27bf",
	"lotion_bottle":                        "\U0001f9f4",
	"lotus_position":                       "\U0001f9d8",
	"lotus_position_man":                   "\U0001f9d8\u200d\u2642\ufe0f",
	"lotus_position_woman":                 "\U0001f9d8\u200d\u2640\ufe0f",
	"loud_sound":                           "\U0001f50a",
	"loudspeaker":                          "\U0001f4e2",
	"love_hotel":                           "\U0001f3e9",
	"love_letter":                          "\U0001f48c",
	"love_you_gesture":                     "\U0001f91f",
	"low_brightness":                       "\U0001f505",
	"luggage":                              "\U0001f9f3",
	"lungs":                                "\U0001fac1",
	"luxembourg":                           "\U0001f1f1\U0001f1fa",
	"lying_face":                           "\U0001f925",
	"m":                                    "\u24c2\ufe0f",
	"macau":                                "\U0001f1f2\U0001f1f4",
	"macedonia":                            "\U0001f1f2\U0001f1f0",
	"madagascar":                           "\U0001f1f2\U0001f1ec",
	"mag":                                  "\U0001f50d",
	"mag_right":                            "\U0001f50e",
	"mage":                                 "\U0001f9d9",
	"mage_man":                             "\U0001f9d9\u200d\u2642\ufe0f",
	"mage_woman":                           "\U0001f9d9\u200d\u2640\ufe0f",
	"magic_wand":                           "\U0001fa84",
	"magnet":                               "\U0001f9f2",
	"mahjong":                              "\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":                            "\u2642\ufe0f",
	"mali":                                 "\U0001f1f2\U0001f1f1",
	"malta":                                "\U0001f1f2\U0001f1f9",
	"mammoth":                              "\U0001f9a3",
	"man":                                  "\U0001f468",
	"man_artist":                           "\U0001f468\u200d\U0001f3a8",
	"man_astronaut":                        "\U0001f468\u200d\U0001f680",
	"man_beard":                            "\U0001f9d4\u200d\u2642\ufe0f",
	"man_cartwheeling":                     "\U0001f938\u200d\u2642\ufe0f",
	"man_cook":                             "\U0001f468\u200d\U0001f373",
	"man_dancing":                          "\U0001f57a",
	"man_facepalming":                      "\U0001f926\u200d\u2642\ufe0f",
	"man_factory_worker":                   "\U0001f468\u200d\U0001f3ed",
	"man_farmer":                           "\U0001f468\u200d\U0001f33e",
	"man_feeding_baby":                     "\U0001f468\u200d\U0001f37c",
	"man_firefighter":                      "\U0001f468\u200d\U0001f692",
	"man_health_worker":                    "\U0001f468\u200d\u2695\ufe0f",
	"man_in_manual_wheelchair":             "\U0001f468\u200d\U0001f9bd",
	"man_in_motorized_wheelchair":          "\U0001f468\u200d\U0001f9bc",
	"man_in_tuxedo":                        "\U0001f935\u200d\u2642\ufe0f",
	"man_judge":                            "\U0001f468\u200d\u2696\ufe0f",
	"man_juggling":                         "\U0001f939\u200d\u2642\ufe0f",
	"man_mechanic":                         "\U0001f468\u200d\U0001f527",
	"man_office_worker":                    "\U0001f468\u200d\U0001f4bc",
	"man_pilot":                            "\U0001f468\u200d\u2708\ufe0f",
	"man_playing_handball":                 "\U0001f93e\u200d\u2642\ufe0f",
	"man_playing_water_polo":               "\U0001f93d\u200d\u2642\ufe0f",
	"man_scientist":                        "\U0001f468\u200d\U0001f52c",
	"man_shrugging":                        "\U0001f937\u200d\u2642\ufe0f",
	"man_singer":                           "\U0001f468\u200d\U0001f3a4",
	"man_student":                          "\U0001f468\u200d\U0001f393",
	"man_teacher":                          "\U0001f468\u200d\U0001f3eb",
	"man_technologist":                     "\U0001f468\u200d\U0001f4bb",
	"man_with_gua_pi_mao":                  "\U0001f472",
	"man_with_probing_cane":                "\U0001f468\u200d\U0001f9af",
	"man_with_turban":                      "\U0001f473\u200d\u2642\ufe0f",
	"man_with_veil":                        "\U0001f470\u200d\u2642\ufe0f",
	"mandarin":                             "\U0001f34a",
	"mango":                                "\U0001f96d",
	"mans_shoe":                            "\U0001f45e",
	"mantelpiece_clock":                    "\U0001f570\ufe0f",
	"manual_wheelchair":                    "\U0001f9bd",
	"maple_leaf":                           "\U0001f341",
	"marshall_islands":                     "\U0001f1f2\U0001f1ed",
	"martial_arts_uniform":                 "\U0001f94b",
	"martinique":                           "\U0001f1f2\U0001f1f6",
	"mask":                                 "\U0001f637",
	"massage":                              "\U0001f486",
	"massage_man":                          "\U0001f486\u200d\u2642\ufe0f",
	"massage_woman":                        "\U0001f486\u200d\u2640\ufe0f",
	"mate":                                 "\U0001f9c9",
	"mauritania":                           "\U0001f1f2\U0001f1f7",
	"mauritius":                            "\U0001f1f2\U0001f1fa",
	"mayotte":                              "\U0001f1fe\U0001f1f9",
	"meat_on_bone":                         "\U0001f356",
	"mechanic":                             "\U0001f9d1\u200d\U0001f527",
	"mechanical_arm":                       "\U0001f9be",
	"mechanical_leg":                       "\U0001f9bf",
	"medal_military":                       "\U0001f396\ufe0f",
	"medal_sports":                         "\U0001f3c5",
	"medical_symbol":                       "\u2695\ufe0f",
	"mega":                                 "\U0001f4e3",
	"melon":                                "\U0001f348",
	"memo":                                 "\U0001f4dd",
	"men_wrestling":                        "\U0001f93c\u200d\u2642\ufe0f",
	"mending_heart":                        "\u2764\ufe0f\u200d\U0001fa79",
	"menorah":                              "\U0001f54e",
	"mens":                                 "\U0001f6b9",
	"mermaid":                              "\U0001f9dc\u200d\u2640\ufe0f",
	"merman":                               "\U0001f9dc\u200d\u2642\ufe0f",
	"merperson":                            "\U0001f9dc",
	"metal":                                "\U0001f918",
	"metro":                                "\U0001f687",
	"mexico":                               "\U0001f1f2\U0001f1fd",
	"microbe":                              "\U0001f9a0",
	"micronesia":                           "\U0001f1eb\U0001f1f2",
	"microphone":                           "\U0001f3a4",
	"microscope":                           "\U0001f52c",
	"middle_finger":                        "\U0001f595",
	"military_helmet":                      "\U0001fa96",
	"milk_glass":                           "\U0001f95b",
	"milky_way":                            "\U0001f30c",
	"minibus":                              "\U0001f690",
	"minidisc":                             "\U0001f4bd",
	"mirror":                               "\U0001fa9e",
	"mobile_phone_off":                     "\U0001f4f4",
	"moldova":                              "\U0001f1f2\U0001f1e9",
	"monaco":                               "\U0001f1f2\U0001f1e8",
	"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",
	"morocco":                              "\U0001f1f2\U0001f1e6",
	"mortar_board":                         "\U0001f393",
	"mosque":                               "\U0001f54c",
	"mosquito":                             "\U0001f99f",
	"motor_boat":                           "\U0001f6e5\ufe0f",
	"motor_scooter":                        "\U0001f6f5",
	"motorcycle":                           "\U0001f3cd\ufe0f",
	"motorized_wheelchair":                 "\U0001f9bc",
	"motorway":                             "\U0001f6e3\ufe0f",
	"mount_fuji":                           "\U0001f5fb",
	"mountain":                             "\u26f0\ufe0f",
	"mountain_bicyclist":                   "\U0001f6b5",
	"mountain_biking_man":                  "\U0001f6b5\u200d\u2642\ufe0f",
	"mountain_biking_woman":                "\U0001f6b5\u200d\u2640\ufe0f",
	"mountain_cableway":                    "\U0001f6a0",
	"mountain_railway":                     "\U0001f69e",
	"mountain_snow":                        "\U0001f3d4\ufe0f",
	"mouse":                                "\U0001f42d",
	"mouse2":                               "\U0001f401",
	"mouse_trap":                           "\U0001faa4",
	"movie_camera":                         "\U0001f3a5",
	"moyai":                                "\U0001f5ff",
	"mozambique":                           "\U0001f1f2\U0001f1ff",
	"mrs_claus":                            "\U0001f936",
	"muscle":                               "\U0001f4aa",
	"mushroom":                             "\U0001f344",
	"musical_keyboard":                     "\U0001f3b9",
	"musical_note":                         "\U0001f3b5",
	"musical_score":                        "\U0001f3bc",
	"mute":                                 "\U0001f507",
	"mx_claus":                             "\U0001f9d1\u200d\U0001f384",
	"myanmar":                              "\U0001f1f2\U0001f1f2",
	"nail_care":                            "\U0001f485",
	"name_badge":                           "\U0001f4db",
	"namibia":                              "\U0001f1f3\U0001f1e6",
	"national_park":                        "\U0001f3de\ufe0f",
	"nauru":                                "\U0001f1f3\U0001f1f7",
	"nauseated_face":                       "\U0001f922",
	"nazar_amulet":                         "\U0001f9ff",
	"necktie":                              "\U0001f454",
	"negative_squared_cross_mark":          "\u274e",
	"nepal":                                "\U0001f1f3\U0001f1f5",
	"nerd_face":                            "\U0001f913",
	"nesting_dolls":                        "\U0001fa86",
	"netherlands":                          "\U0001f1f3\U0001f1f1",
	"neutral_face":                         "\U0001f610",
	"new":                                  "\U0001f195",
	"new_caledonia":                        "\U0001f1f3\U0001f1e8",
	"new_moon":                             "\U0001f311",
	"new_moon_with_face":                   "\U0001f31a",
	"new_zealand":                          "\U0001f1f3\U0001f1ff",
	"newspaper":                            "\U0001f4f0",
	"newspaper_roll":                       "\U0001f5de\ufe0f",
	"next_track_button":                    "\u23ed\ufe0f",
	"ng":                                   "\U0001f196",
	"ng_man":                               "\U0001f645\u200d\u2642\ufe0f",
	"ng_woman":                             "\U0001f645\u200d\u2640\ufe0f",
	"nicaragua":                            "\U0001f1f3\U0001f1ee",
	"niger":                                "\U0001f1f3\U0001f1ea",
	"nigeria":                              "\U0001f1f3\U0001f1ec",
	"night_with_stars":                     "\U0001f303",
	"nine":                                 "9\ufe0f\u20e3",
	"ninja":                                "\U0001f977",
	"niue":                                 "\U0001f1f3\U0001f1fa",
	"no_bell":                              "\U0001f515",
	"no_bicycles":                          "\U0001f6b3",
	"no_entry":                             "\u26d4",
	"no_entry_sign":                        "\U0001f6ab",
	"no_good":                              "\U0001f645",
	"no_good_man":                          "\U0001f645\u200d\u2642\ufe0f",
	"no_good_woman":                        "\U0001f645\u200d\u2640\ufe0f",
	"no_mobile_phones":                     "\U0001f4f5",
	"no_mouth":                             "\U0001f636",
	"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",
	"notebook":                             "\U0001f4d3",
	"notebook_with_decorative_cover":       "\U0001f4d4",
	"notes":                                "\U0001f3b6",
	"nut_and_bolt":                         "\U0001f529",
	"o":                                    "\u2b55",
	"o2":                                   "\U0001f17e\ufe0f",
	"ocean":                                "\U0001f30a",
	"octopus":                              "\U0001f419",
	"oden":                                 "\U0001f362",
	"office":                               "\U0001f3e2",
	"office_worker":                        "\U0001f9d1\u200d\U0001f4bc",
	"oil_drum":                             "\U0001f6e2\ufe0f",
	"ok":                                   "\U0001f197",
	"ok_hand":                              "\U0001f44c",
	"ok_man":                               "\U0001f646\u200d\u2642\ufe0f",
	"ok_person":                            "\U0001f646",
	"ok_woman":                             "\U0001f646\u200d\u2640\ufe0f",
	"old_key":                              "\U0001f5dd\ufe0f",
	"older_adult":                          "\U0001f9d3",
	"older_man":                            "\U0001f474",
	"older_woman":                          "\U0001f475",
	"olive":                                "\U0001fad2",
	"om":                                   "\U0001f549\ufe0f",
	"oman":                                 "\U0001f1f4\U0001f1f2",
	"on":                                   "\U0001f51b",
	"oncoming_automobile":                  "\U0001f698",
	"oncoming_bus":                         "\U0001f68d",
	"oncoming_police_car":                  "\U0001f694",
	"oncoming_taxi":                        "\U0001f696",
	"one":                                  "1\ufe0f\u20e3",
	"one_piece_swimsuit":                   "\U0001fa71",
	"onion":                                "\U0001f9c5",
	"open_book":                            "\U0001f4d6",
	"open_file_folder":                     "\U0001f4c2",
	"open_hands":                           "\U0001f450",
	"open_mouth":                           "\U0001f62e",
	"open_umbrella":                        "\u2602\ufe0f",
	"ophiuchus":                            "\u26ce",
	"orange":                               "\U0001f34a",
	"orange_book":                          "\U0001f4d9",
	"orange_circle":                        "\U0001f7e0",
	"orange_heart":                         "\U0001f9e1",
	"orange_square":                        "\U0001f7e7",
	"orangutan":                            "\U0001f9a7",
	"orthodox_cross":                       "\u2626\ufe0f",
	"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\ufe0f",
	"pakistan":                             "\U0001f1f5\U0001f1f0",
	"palau":                                "\U0001f1f5\U0001f1fc",
	"palestinian_territories":              "\U0001f1f5\U0001f1f8",
	"palm_tree":                            "\U0001f334",
	"palms_up_together":                    "\U0001f932",
	"panama":                               "\U0001f1f5\U0001f1e6",
	"pancakes":                             "\U0001f95e",
	"panda_face":                           "\U0001f43c",
	"paperclip":                            "\U0001f4ce",
	"paperclips":                           "\U0001f587\ufe0f",
	"papua_new_guinea":                     "\U0001f1f5\U0001f1ec",
	"parachute":                            "\U0001fa82",
	"paraguay":                             "\U0001f1f5\U0001f1fe",
	"parasol_on_ground":                    "\u26f1\ufe0f",
	"parking":                              "\U0001f17f\ufe0f",
	"parrot":                               "\U0001f99c",
	"part_alternation_mark":                "\u303d\ufe0f",
	"partly_sunny":                         "\u26c5",
	"partying_face":                        "\U0001f973",
	"passenger_ship":                       "\U0001f6f3\ufe0f",
	"passport_control":                     "\U0001f6c2",
	"pause_button":                         "\u23f8\ufe0f",
	"paw_prints":                           "\U0001f43e",
	"peace_symbol":                         "\u262e\ufe0f",
	"peach":                                "\U0001f351",
	"peacock":                              "\U0001f99a",
	"peanuts":                              "\U0001f95c",
	"pear":                                 "\U0001f350",
	"pen":                                  "\U0001f58a\ufe0f",
	"pencil":                               "\U0001f4dd",
	"pencil2":                              "\u270f\ufe0f",
	"penguin":                              "\U0001f427",
	"pensive":                              "\U0001f614",
	"people_holding_hands":                 "\U0001f9d1\u200d\U0001f91d\u200d\U0001f9d1",
	"people_hugging":                       "\U0001fac2",
	"performing_arts":                      "\U0001f3ad",
	"persevere":                            "\U0001f623",
	"person_bald":                          "\U0001f9d1\u200d\U0001f9b2",
	"person_curly_hair":                    "\U0001f9d1\u200d\U0001f9b1",
	"person_feeding_baby":                  "\U0001f9d1\u200d\U0001f37c",
	"person_fencing":                       "\U0001f93a",
	"person_in_manual_wheelchair":          "\U0001f9d1\u200d\U0001f9bd",
	"person_in_motorized_wheelchair":       "\U0001f9d1\u200d\U0001f9bc",
	"person_in_tuxedo":                     "\U0001f935",
	"person_red_hair":                      "\U0001f9d1\u200d\U0001f9b0",
	"person_white_hair":                    "\U0001f9d1\u200d\U0001f9b3",
	"person_with_probing_cane":             "\U0001f9d1\u200d\U0001f9af",
	"person_with_turban":                   "\U0001f473",
	"person_with_veil":                     "\U0001f470",
	"peru":                                 "\U0001f1f5\U0001f1ea",
	"petri_dish":                           "\U0001f9eb",
	"philippines":                          "\U0001f1f5\U0001f1ed",
	"phone":                                "\u260e\ufe0f",
	"pick":                                 "\u26cf\ufe0f",
	"pickup_truck":                         "\U0001f6fb",
	"pie":                                  "\U0001f967",
	"pig":                                  "\U0001f437",
	"pig2":                                 "\U0001f416",
	"pig_nose":                             "\U0001f43d",
	"pill":                                 "\U0001f48a",
	"pilot":                                "\U0001f9d1\u200d\u2708\ufe0f",
	"pinata":                               "\U0001fa85",
	"pinched_fingers":                      "\U0001f90c",
	"pinching_hand":                        "\U0001f90f",
	"pineapple":                            "\U0001f34d",
	"ping_pong":                            "\U0001f3d3",
	"pirate_flag":                          "\U0001f3f4\u200d\u2620\ufe0f",
	"pisces":                               "\u2653",
	"pitcairn_islands":                     "\U0001f1f5\U0001f1f3",
	"pizza":                                "\U0001f355",
	"placard":                              "\U0001faa7",
	"place_of_worship":                     "\U0001f6d0",
	"plate_with_cutlery":                   "\U0001f37d\ufe0f",
	"play_or_pause_button":                 "\u23ef\ufe0f",
	"pleading_face":                        "\U0001f97a",
	"plunger":                              "\U0001faa0",
	"point_down":                           "\U0001f447",
	"point_left":                           "\U0001f448",
	"point_right":                          "\U0001f449",
	"point_up":                             "\u261d\ufe0f",
	"point_up_2":                           "\U0001f446",
	"poland":                               "\U0001f1f5\U0001f1f1",
	"polar_bear":                           "\U0001f43b\u200d\u2744\ufe0f",
	"police_car":                           "\U0001f693",
	"police_officer":                       "\U0001f46e",
	"policeman":                            "\U0001f46e\u200d\u2642\ufe0f",
	"policewoman":                          "\U0001f46e\u200d\u2640\ufe0f",
	"poodle":                               "\U0001f429",
	"poop":                                 "\U0001f4a9",
	"popcorn":                              "\U0001f37f",
	"portugal":                             "\U0001f1f5\U0001f1f9",
	"post_office":                          "\U0001f3e3",
	"postal_horn":                          "\U0001f4ef",
	"postbox":                              "\U0001f4ee",
	"potable_water":                        "\U0001f6b0",
	"potato":                               "\U0001f954",
	"potted_plant":                         "\U0001fab4",
	"pouch":                                "\U0001f45d",
	"poultry_leg":                          "\U0001f357",
	"pound":                                "\U0001f4b7",
	"pout":                                 "\U0001f621",
	"pouting_cat":                          "\U0001f63e",
	"pouting_face":                         "\U0001f64e",
	"pouting_man":                          "\U0001f64e\u200d\u2642\ufe0f",
	"pouting_woman":                        "\U0001f64e\u200d\u2640\ufe0f",
	"pray":                                 "\U0001f64f",
	"prayer_beads":                         "\U0001f4ff",
	"pregnant_woman":                       "\U0001f930",
	"pretzel":                              "\U0001f968",
	"previous_track_button":                "\u23ee\ufe0f",
	"prince":                               "\U0001f934",
	"princess":                             "\U0001f478",
	"printer":                              "\U0001f5a8\ufe0f",
	"probing_cane":                         "\U0001f9af",
	"puerto_rico":                          "\U0001f1f5\U0001f1f7",
	"punch":                                "\U0001f44a",
	"purple_circle":                        "\U0001f7e3",
	"purple_heart":                         "\U0001f49c",
	"purple_square":                        "\U0001f7ea",
	"purse":                                "\U0001f45b",
	"pushpin":                              "\U0001f4cc",
	"put_litter_in_its_place":              "\U0001f6ae",
	"qatar":                                "\U0001f1f6\U0001f1e6",
	"question":                             "\u2753",
	"rabbit":                               "\U0001f430",
	"rabbit2":                              "\U0001f407",
	"raccoon":                              "\U0001f99d",
	"racehorse":                            "\U0001f40e",
	"racing_car":                           "\U0001f3ce\ufe0f",
	"radio":                                "\U0001f4fb",
	"radio_button":                         "\U0001f518",
	"radioactive":                          "\u2622\ufe0f",
	"rage":                                 "\U0001f621",
	"railway_car":                          "\U0001f683",
	"railway_track":                        "\U0001f6e4\ufe0f",
	"rainbow":                              "\U0001f308",
	"rainbow_flag":                         "\U0001f3f3\ufe0f\u200d\U0001f308",
	"raised_back_of_hand":                  "\U0001f91a",
	"raised_eyebrow":                       "\U0001f928",
	"raised_hand":                          "\u270b",
	"raised_hand_with_fingers_splayed":     "\U0001f590\ufe0f",
	"raised_hands":                         "\U0001f64c",
	"raising_hand":                         "\U0001f64b",
	"raising_hand_man":                     "\U0001f64b\u200d\u2642\ufe0f",
	"raising_hand_woman":                   "\U0001f64b\u200d\u2640\ufe0f",
	"ram":                                  "\U0001f40f",
	"ramen":                                "\U0001f35c",
	"rat":                                  "\U0001f400",
	"razor":                                "\U0001fa92",
	"receipt":                              "\U0001f9fe",
	"record_button":                        "\u23fa\ufe0f",
	"recycle":                              "\u267b\ufe0f",
	"red_car":                              "\U0001f697",
	"red_circle":                           "\U0001f534",
	"red_envelope":                         "\U0001f9e7",
	"red_haired_man":                       "\U0001f468\u200d\U0001f9b0",
	"red_haired_woman":                     "\U0001f469\u200d\U0001f9b0",
	"red_square":                           "\U0001f7e5",
	"registered":                           "\u00ae\ufe0f",
	"relaxed":                              "\u263a\ufe0f",
	"relieved":                             "\U0001f60c",
	"reminder_ribbon":                      "\U0001f397\ufe0f",
	"repeat":                               "\U0001f501",
	"repeat_one":                           "\U0001f502",
	"rescue_worker_helmet":                 "\u26d1\ufe0f",
	"restroom":                             "\U0001f6bb",
	"reunion":                              "\U0001f1f7\U0001f1ea",
	"revolving_hearts":                     "\U0001f49e",
	"rewind":                               "\u23ea",
	"rhinoceros":                           "\U0001f98f",
	"ribbon":                               "\U0001f380",
	"rice":                                 "\U0001f35a",
	"rice_ball":                            "\U0001f359",
	"rice_cracker":                         "\U0001f358",
	"rice_scene":                           "\U0001f391",
	"right_anger_bubble":                   "\U0001f5ef\ufe0f",
	"ring":                                 "\U0001f48d",
	"ringed_planet":                        "\U0001fa90",
	"robot":                                "\U0001f916",
	"rock":                                 "\U0001faa8",
	"rocket":                               "\U0001f680",
	"rofl":                                 "\U0001f923",
	"roll_eyes":                            "\U0001f644",
	"roll_of_paper":                        "\U0001f9fb",
	"roller_coaster":                       "\U0001f3a2",
	"roller_skate":                         "\U0001f6fc",
	"romania":                              "\U0001f1f7\U0001f1f4",
	"rooster":                              "\U0001f413",
	"rose":                                 "\U0001f339",
	"rosette":                              "\U0001f3f5\ufe0f",
	"rotating_light":                       "\U0001f6a8",
	"round_pushpin":                        "\U0001f4cd",
	"rowboat":                              "\U0001f6a3",
	"rowing_man":                           "\U0001f6a3\u200d\u2642\ufe0f",
	"rowing_woman":                         "\U0001f6a3\u200d\u2640\ufe0f",
	"ru":                                   "\U0001f1f7\U0001f1fa",
	"rugby_football":                       "\U0001f3c9",
	"runner":                               "\U0001f3c3",
	"running":                              "\U0001f3c3",
	"running_man":                          "\U0001f3c3\u200d\u2642\ufe0f",
	"running_shirt_with_sash":              "\U0001f3bd",
	"running_woman":                        "\U0001f3c3\u200d\u2640\ufe0f",
	"rwanda":                               "\U0001f1f7\U0001f1fc",
	"sa":                                   "\U0001f202\ufe0f",
	"safety_pin":                           "\U0001f9f7",
	"safety_vest":                          "\U0001f9ba",
	"sagittarius":                          "\u2650",
	"sailboat":                             "\u26f5",
	"sake":                                 "\U0001f376",
	"salt":                                 "\U0001f9c2",
	"samoa":                                "\U0001f1fc\U0001f1f8",
	"san_marino":                           "\U0001f1f8\U0001f1f2",
	"sandal":                               "\U0001f461",
	"sandwich":                             "\U0001f96a",
	"santa":                                "\U0001f385",
	"sao_tome_principe":                    "\U0001f1f8\U0001f1f9",
	"sari":                                 "\U0001f97b",
	"sassy_man":                            "\U0001f481\u200d\u2642\ufe0f",
	"sassy_woman":                          "\U0001f481\u200d\u2640\ufe0f",
	"satellite":                            "\U0001f4e1",
	"satisfied":                            "\U0001f606",
	"saudi_arabia":                         "\U0001f1f8\U0001f1e6",
	"sauna_man":                            "\U0001f9d6\u200d\u2642\ufe0f",
	"sauna_person":                         "\U0001f9d6",
	"sauna_woman":                          "\U0001f9d6\u200d\u2640\ufe0f",
	"sauropod":                             "\U0001f995",
	"saxophone":                            "\U0001f3b7",
	"scarf":                                "\U0001f9e3",
	"school":                               "\U0001f3eb",
	"school_satchel":                       "\U0001f392",
	"scientist":                            "\U0001f9d1\u200d\U0001f52c",
	"scissors":                             "\u2702\ufe0f",
	"scorpion":                             "\U0001f982",
	"scorpius":                             "\u264f",
	"scotland":                             "\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f",
	"scream":                               "\U0001f631",
	"scream_cat":                           "\U0001f640",
	"screwdriver":                          "\U0001fa9b",
	"scroll":                               "\U0001f4dc",
	"seal":                                 "\U0001f9ad",
	"seat":                                 "\U0001f4ba",
	"secret":                               "\u3299\ufe0f",
	"see_no_evil":                          "\U0001f648",
	"seedling":                             "\U0001f331",
	"selfie":                               "\U0001f933",
	"senegal":                              "\U0001f1f8\U0001f1f3",
	"serbia":                               "\U0001f1f7\U0001f1f8",
	"service_dog":                          "\U0001f415\u200d\U0001f9ba",
	"seven":                                "7\ufe0f\u20e3",
	"sewing_needle":                        "\U0001faa1",
	"seychelles":                           "\U0001f1f8\U0001f1e8",
	"shallow_pan_of_food":                  "\U0001f958",
	"shamrock":                             "\u2618\ufe0f",
	"shark":                                "\U0001f988",
	"shaved_ice":                           "\U0001f367",
	"sheep":                                "\U0001f411",
	"shell":                                "\U0001f41a",
	"shield":                               "\U0001f6e1\ufe0f",
	"shinto_shrine":                        "\u26e9\ufe0f",
	"ship":                                 "\U0001f6a2",
	"shirt":                                "\U0001f455",
	"shit":                                 "\U0001f4a9",
	"shoe":                                 "\U0001f45e",
	"shopping":                             "\U0001f6cd\ufe0f",
	"shopping_cart":                        "\U0001f6d2",
	"shorts":                               "\U0001fa73",
	"shower":                               "\U0001f6bf",
	"shrimp":                               "\U0001f990",
	"shrug":                                "\U0001f937",
	"shushing_face":                        "\U0001f92b",
	"sierra_leone":                         "\U0001f1f8\U0001f1f1",
	"signal_strength":                      "\U0001f4f6",
	"singapore":                            "\U0001f1f8\U0001f1ec",
	"singer":                               "\U0001f9d1\u200d\U0001f3a4",
	"sint_maarten":                         "\U0001f1f8\U0001f1fd",
	"six":                                  "6\ufe0f\u20e3",
	"six_pointed_star":                     "\U0001f52f",
	"skateboard":                           "\U0001f6f9",
	"ski":                                  "\U0001f3bf",
	"skier":                                "\u26f7\ufe0f",
	"skull":                                "\U0001f480",
	"skull_and_crossbones":                 "\u2620\ufe0f",
	"skunk":                                "\U0001f9a8",
	"sled":                                 "\U0001f6f7",
	"sleeping":                             "\U0001f634",
	"sleeping_bed":                         "\U0001f6cc",
	"sleepy":                               "\U0001f62a",
	"slightly_frowning_face":               "\U0001f641",
	"slightly_smiling_face":                "\U0001f642",
	"slot_machine":                         "\U0001f3b0",
	"sloth":                                "\U0001f9a5",
	"slovakia":                             "\U0001f1f8\U0001f1f0",
	"slovenia":                             "\U0001f1f8\U0001f1ee",
	"small_airplane":                       "\U0001f6e9\ufe0f",
	"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_face_with_tear":               "\U0001f972",
	"smiling_face_with_three_hearts":       "\U0001f970",
	"smiling_imp":                          "\U0001f608",
	"smirk":                                "\U0001f60f",
	"smirk_cat":                            "\U0001f63c",
	"smoking":                              "\U0001f6ac",
	"snail":                                "\U0001f40c",
	"snake":                                "\U0001f40d",
	"sneezing_face":                        "\U0001f927",
	"snowboarder":                          "\U0001f3c2",
	"snowflake":                            "\u2744\ufe0f",
	"snowman":                              "\u26c4",
	"snowman_with_snow":                    "\u2603\ufe0f",
	"soap":                                 "\U0001f9fc",
	"sob":                                  "\U0001f62d",
	"soccer":                               "\u26bd",
	"socks":                                "\U0001f9e6",
	"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",
	"spades":                               "\u2660\ufe0f",
	"spaghetti":                            "\U0001f35d",
	"sparkle":                              "\u2747\ufe0f",
	"sparkler":                             "\U0001f387",
	"sparkles":                             "\u2728",
	"sparkling_heart":                      "\U0001f496",
	"speak_no_evil":                        "\U0001f64a",
	"speaker":                              "\U0001f508",
	"speaking_head":                        "\U0001f5e3\ufe0f",
	"speech_balloon":                       "\U0001f4ac",
	"speedboat":                            "\U0001f6a4",
	"spider":                               "\U0001f577\ufe0f",
	"spider_web":                           "\U0001f578\ufe0f",
	"spiral_calendar":                      "\U0001f5d3\ufe0f",
	"spiral_notepad":                       "\U0001f5d2\ufe0f",
	"sponge":                               "\U0001f9fd",
	"spoon":                                "\U0001f944",
	"squid":                                "\U0001f991",
	"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\ufe0f",
	"standing_man":                         "\U0001f9cd\u200d\u2642\ufe0f",
	"standing_person":                      "\U0001f9cd",
	"standing_woman":                       "\U0001f9cd\u200d\u2640\ufe0f",
	"star":                                 "\u2b50",
	"star2":                                "\U0001f31f",
	"star_and_crescent":                    "\u262a\ufe0f",
	"star_of_david":                        "\u2721\ufe0f",
	"star_struck":                          "\U0001f929",
	"stars":                                "\U0001f320",
	"station":                              "\U0001f689",
	"statue_of_liberty":                    "\U0001f5fd",
	"steam_locomotive":                     "\U0001f682",
	"stethoscope":                          "\U0001fa7a",
	"stew":                                 "\U0001f372",
	"stop_button":                          "\u23f9\ufe0f",
	"stop_sign":                            "\U0001f6d1",
	"stopwatch":                            "\u23f1\ufe0f",
	"straight_ruler":                       "\U0001f4cf",
	"strawberry":                           "\U0001f353",
	"stuck_out_tongue":                     "\U0001f61b",
	"stuck_out_tongue_closed_eyes":         "\U0001f61d",
	"stuck_out_tongue_winking_eye":         "\U0001f61c",
	"student":                              "\U0001f9d1\u200d\U0001f393",
	"studio_microphone":                    "\U0001f399\ufe0f",
	"stuffed_flatbread":                    "\U0001f959",
	"sudan":                                "\U0001f1f8\U0001f1e9",
	"sun_behind_large_cloud":               "\U0001f325\ufe0f",
	"sun_behind_rain_cloud":                "\U0001f326\ufe0f",
	"sun_behind_small_cloud":               "\U0001f324\ufe0f",
	"sun_with_face":                        "\U0001f31e",
	"sunflower":                            "\U0001f33b",
	"sunglasses":                           "\U0001f60e",
	"sunny":                                "\u2600\ufe0f",
	"sunrise":                              "\U0001f305",
	"sunrise_over_mountains":               "\U0001f304",
	"superhero":                            "\U0001f9b8",
	"superhero_man":                        "\U0001f9b8\u200d\u2642\ufe0f",
	"superhero_woman":                      "\U0001f9b8\u200d\u2640\ufe0f",
	"supervillain":                         "\U0001f9b9",
	"supervillain_man":                     "\U0001f9b9\u200d\u2642\ufe0f",
	"supervillain_woman":                   "\U0001f9b9\u200d\u2640\ufe0f",
	"surfer":                               "\U0001f3c4",
	"surfing_man":                          "\U0001f3c4\u200d\u2642\ufe0f",
	"surfing_woman":                        "\U0001f3c4\u200d\u2640\ufe0f",
	"suriname":                             "\U0001f1f8\U0001f1f7",
	"sushi":                                "\U0001f363",
	"suspension_railway":                   "\U0001f69f",
	"svalbard_jan_mayen":                   "\U0001f1f8\U0001f1ef",
	"swan":                                 "\U0001f9a2",
	"swaziland":                            "\U0001f1f8\U0001f1ff",
	"sweat":                                "\U0001f613",
	"sweat_drops":                          "\U0001f4a6",
	"sweat_smile":                          "\U0001f605",
	"sweden":                               "\U0001f1f8\U0001f1ea",
	"sweet_potato":                         "\U0001f360",
	"swim_brief":                           "\U0001fa72",
	"swimmer":                              "\U0001f3ca",
	"swimming_man":                         "\U0001f3ca\u200d\u2642\ufe0f",
	"swimming_woman":                       "\U0001f3ca\u200d\u2640\ufe0f",
	"switzerland":                          "\U0001f1e8\U0001f1ed",
	"symbols":                              "\U0001f523",
	"synagogue":                            "\U0001f54d",
	"syria":                                "\U0001f1f8\U0001f1fe",
	"syringe":                              "\U0001f489",
	"t-rex":                                "\U0001f996",
	"taco":                                 "\U0001f32e",
	"tada":                                 "\U0001f389",
	"taiwan":                               "\U0001f1f9\U0001f1fc",
	"tajikistan":                           "\U0001f1f9\U0001f1ef",
	"takeout_box":                          "\U0001f961",
	"tamale":                               "\U0001fad4",
	"tanabata_tree":                        "\U0001f38b",
	"tangerine":                            "\U0001f34a",
	"tanzania":                             "\U0001f1f9\U0001f1ff",
	"taurus":                               "\u2649",
	"taxi":                                 "\U0001f695",
	"tea":                                  "\U0001f375",
	"teacher":                              "\U0001f9d1\u200d\U0001f3eb",
	"teapot":                               "\U0001fad6",
	"technologist":                         "\U0001f9d1\u200d\U0001f4bb",
	"teddy_bear":                           "\U0001f9f8",
	"telephone":                            "\u260e\ufe0f",
	"telephone_receiver":                   "\U0001f4de",
	"telescope":                            "\U0001f52d",
	"tennis":                               "\U0001f3be",
	"tent":                                 "\u26fa",
	"test_tube":                            "\U0001f9ea",
	"thailand":                             "\U0001f1f9\U0001f1ed",
	"thermometer":                          "\U0001f321\ufe0f",
	"thinking":                             "\U0001f914",
	"thong_sandal":                         "\U0001fa74",
	"thought_balloon":                      "\U0001f4ad",
	"thread":                               "\U0001f9f5",
	"three":                                "3\ufe0f\u20e3",
	"thumbsdown":                           "\U0001f44e",
	"thumbsup":                             "\U0001f44d",
	"ticket":                               "\U0001f3ab",
	"tickets":                              "\U0001f39f\ufe0f",
	"tiger":                                "\U0001f42f",
	"tiger2":                               "\U0001f405",
	"timer_clock":                          "\u23f2\ufe0f",
	"timor_leste":                          "\U0001f1f9\U0001f1f1",
	"tipping_hand_man":                     "\U0001f481\u200d\u2642\ufe0f",
	"tipping_hand_person":                  "\U0001f481",
	"tipping_hand_woman":                   "\U0001f481\u200d\u2640\ufe0f",
	"tired_face":                           "\U0001f62b",
	"tm":                                   "\u2122\ufe0f",
	"togo":                                 "\U0001f1f9\U0001f1ec",
	"toilet":                               "\U0001f6bd",
	"tokelau":                              "\U0001f1f9\U0001f1f0",
	"tokyo_tower":                          "\U0001f5fc",
	"tomato":                               "\U0001f345",
	"tonga":                                "\U0001f1f9\U0001f1f4",
	"tongue":                               "\U0001f445",
	"toolbox":                              "\U0001f9f0",
	"tooth":                                "\U0001f9b7",
	"toothbrush":                           "\U0001faa5",
	"top":                                  "\U0001f51d",
	"tophat":                               "\U0001f3a9",
	"tornado":                              "\U0001f32a\ufe0f",
	"tr":                                   "\U0001f1f9\U0001f1f7",
	"trackball":                            "\U0001f5b2\ufe0f",
	"tractor":                              "\U0001f69c",
	"traffic_light":                        "\U0001f6a5",
	"train":                                "\U0001f68b",
	"train2":                               "\U0001f686",
	"tram":                                 "\U0001f68a",
	"transgender_flag":                     "\U0001f3f3\ufe0f\u200d\u26a7\ufe0f",
	"transgender_symbol":                   "\u26a7\ufe0f",
	"triangular_flag_on_post":              "\U0001f6a9",
	"triangular_ruler":                     "\U0001f4d0",
	"trident":                              "\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",
	"twisted_rightwards_arrows":            "\U0001f500",
	"two":                                  "2\ufe0f\u20e3",
	"two_hearts":                           "\U0001f495",
	"two_men_holding_hands":                "\U0001f46c",
	"two_women_holding_hands":              "\U0001f46d",
	"u5272":                                "\U0001f239",
	"u5408":                                "\U0001f234",
	"u55b6":                                "\U0001f23a",
	"u6307":                                "\U0001f22f",
	"u6708":                                "\U0001f237\ufe0f",
	"u6709":                                "\U0001f236",
	"u6e80":                                "\U0001f235",
	"u7121":                                "\U0001f21a",
	"u7533":                                "\U0001f238",
	"u7981":                                "\U0001f232",
	"u7a7a":                                "\U0001f233",
	"uganda":                               "\U0001f1fa\U0001f1ec",
	"uk":                                   "\U0001f1ec\U0001f1e7",
	"ukraine":                              "\U0001f1fa\U0001f1e6",
	"umbrella":                             "\u2614",
	"unamused":                             "\U0001f612",
	"underage":                             "\U0001f51e",
	"unicorn":                              "\U0001f984",
	"united_arab_emirates":                 "\U0001f1e6\U0001f1ea",
	"united_nations":                       "\U0001f1fa\U0001f1f3",
	"unlock":                               "\U0001f513",
	"up":                                   "\U0001f199",
	"upside_down_face":                     "\U0001f643",
	"uruguay":                              "\U0001f1fa\U0001f1fe",
	"us":                                   "\U0001f1fa\U0001f1f8",
	"us_outlying_islands":                  "\U0001f1fa\U0001f1f2",
	"us_virgin_islands":                    "\U0001f1fb\U0001f1ee",
	"uzbekistan":                           "\U0001f1fa\U0001f1ff",
	"v":                                    "\u270c\ufe0f",
	"vampire":                              "\U0001f9db",
	"vampire_man":                          "\U0001f9db\u200d\u2642\ufe0f",
	"vampire_woman":                        "\U0001f9db\u200d\u2640\ufe0f",
	"vanuatu":                              "\U0001f1fb\U0001f1fa",
	"vatican_city":                         "\U0001f1fb\U0001f1e6",
	"venezuela":                            "\U0001f1fb\U0001f1ea",
	"vertical_traffic_light":               "\U0001f6a6",
	"vhs":                                  "\U0001f4fc",
	"vibration_mode":                       "\U0001f4f3",
	"video_camera":                         "\U0001f4f9",
	"video_game":                           "\U0001f3ae",
	"vietnam":                              "\U0001f1fb\U0001f1f3",
	"violin":                               "\U0001f3bb",
	"virgo":                                "\u264d",
	"volcano":                              "\U0001f30b",
	"volleyball":                           "\U0001f3d0",
	"vomiting_face":                        "\U0001f92e",
	"vs":                                   "\U0001f19a",
	"vulcan_salute":                        "\U0001f596",
	"waffle":                               "\U0001f9c7",
	"wales":                                "\U0001f3f4\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f",
	"walking":                              "\U0001f6b6",
	"walking_man":                          "\U0001f6b6\u200d\u2642\ufe0f",
	"walking_woman":                        "\U0001f6b6\u200d\u2640\ufe0f",
	"wallis_futuna":                        "\U0001f1fc\U0001f1eb",
	"waning_crescent_moon":                 "\U0001f318",
	"waning_gibbous_moon":                  "\U0001f316",
	"warning":                              "\u26a0\ufe0f",
	"wastebasket":                          "\U0001f5d1\ufe0f",
	"watch":                                "\u231a",
	"water_buffalo":                        "\U0001f403",
	"water_polo":                           "\U0001f93d",
	"watermelon":                           "\U0001f349",
	"wave":                                 "\U0001f44b",
	"wavy_dash":                            "\u3030\ufe0f",
	"waxing_crescent_moon":                 "\U0001f312",
	"waxing_gibbous_moon":                  "\U0001f314",
	"wc":                                   "\U0001f6be",
	"weary":                                "\U0001f629",
	"wedding":                              "\U0001f492",
	"weight_lifting":                       "\U0001f3cb\ufe0f",
	"weight_lifting_man":                   "\U0001f3cb\ufe0f\u200d\u2642\ufe0f",
	"weight_lifting_woman":                 "\U0001f3cb\ufe0f\u200d\u2640\ufe0f",
	"western_sahara":                       "\U0001f1ea\U0001f1ed",
	"whale":                                "\U0001f433",
	"whale2":                               "\U0001f40b",
	"wheel_of_dharma":                      "\u2638\ufe0f",
	"wheelchair":                           "\u267f",
	"white_check_mark":                     "\u2705",
	"white_circle":                         "\u26aa",
	"white_flag":                           "\U0001f3f3\ufe0f",
	"white_flower":                         "\U0001f4ae",
	"white_haired_man":                     "\U0001f468\u200d\U0001f9b3",
	"white_haired_woman":                   "\U0001f469\u200d\U0001f9b3",
	"white_heart":                          "\U0001f90d",
	"white_large_square":                   "\u2b1c",
	"white_medium_small_square":            "\u25fd",
	"white_medium_square":                  "\u25fb\ufe0f",
	"white_small_square":                   "\u25ab\ufe0f",
	"white_square_button":                  "\U0001f533",
	"wilted_flower":                        "\U0001f940",
	"wind_chime":                           "\U0001f390",
	"wind_face":                            "\U0001f32c\ufe0f",
	"window":                               "\U0001fa9f",
	"wine_glass":                           "\U0001f377",
	"wink":                                 "\U0001f609",
	"wolf":                                 "\U0001f43a",
	"woman":                                "\U0001f469",
	"woman_artist":                         "\U0001f469\u200d\U0001f3a8",
	"woman_astronaut":                      "\U0001f469\u200d\U0001f680",
	"woman_beard":                          "\U0001f9d4\u200d\u2640\ufe0f",
	"woman_cartwheeling":                   "\U0001f938\u200d\u2640\ufe0f",
	"woman_cook":                           "\U0001f469\u200d\U0001f373",
	"woman_dancing":                        "\U0001f483",
	"woman_facepalming":                    "\U0001f926\u200d\u2640\ufe0f",
	"woman_factory_worker":                 "\U0001f469\u200d\U0001f3ed",
	"woman_farmer":                         "\U0001f469\u200d\U0001f33e",
	"woman_feeding_baby":                   "\U0001f469\u200d\U0001f37c",
	"woman_firefighter":                    "\U0001f469\u200d\U0001f692",
	"woman_health_worker":                  "\U0001f469\u200d\u2695\ufe0f",
	"woman_in_manual_wheelchair":           "\U0001f469\u200d\U0001f9bd",
	"woman_in_motorized_wheelchair":        "\U0001f469\u200d\U0001f9bc",
	"woman_in_tuxedo":                      "\U0001f935\u200d\u2640\ufe0f",
	"woman_judge":                          "\U0001f469\u200d\u2696\ufe0f",
	"woman_juggling":                       "\U0001f939\u200d\u2640\ufe0f",
	"woman_mechanic":                       "\U0001f469\u200d\U0001f527",
	"woman_office_worker":                  "\U0001f469\u200d\U0001f4bc",
	"woman_pilot":                          "\U0001f469\u200d\u2708\ufe0f",
	"woman_playing_handball":               "\U0001f93e\u200d\u2640\ufe0f",
	"woman_playing_water_polo":             "\U0001f93d\u200d\u2640\ufe0f",
	"woman_scientist":                      "\U0001f469\u200d\U0001f52c",
	"woman_shrugging":                      "\U0001f937\u200d\u2640\ufe0f",
	"woman_singer":                         "\U0001f469\u200d\U0001f3a4",
	"woman_student":                        "\U0001f469\u200d\U0001f393",
	"woman_teacher":                        "\U0001f469\u200d\U0001f3eb",
	"woman_technologist":                   "\U0001f469\u200d\U0001f4bb",
	"woman_with_headscarf":                 "\U0001f9d5",
	"woman_with_probing_cane":              "\U0001f469\u200d\U0001f9af",
	"woman_with_turban":                    "\U0001f473\u200d\u2640\ufe0f",
	"woman_with_veil":                      "\U0001f470\u200d\u2640\ufe0f",
	"womans_clothes":                       "\U0001f45a",
	"womans_hat":                           "\U0001f452",
	"women_wrestling":                      "\U0001f93c\u200d\u2640\ufe0f",
	"womens":                               "\U0001f6ba",
	"wood":                                 "\U0001fab5",
	"woozy_face":                           "\U0001f974",
	"world_map":                            "\U0001f5fa\ufe0f",
	"worm":                                 "\U0001fab1",
	"worried":                              "\U0001f61f",
	"wrench":                               "\U0001f527",
	"wrestling":                            "\U0001f93c",
	"writing_hand":                         "\u270d\ufe0f",
	"x":                                    "\u274c",
	"yarn":                                 "\U0001f9f6",
	"yawning_face":                         "\U0001f971",
	"yellow_circle":                        "\U0001f7e1",
	"yellow_heart":                         "\U0001f49b",
	"yellow_square":                        "\U0001f7e8",
	"yemen":                                "\U0001f1fe\U0001f1ea",
	"yen":                                  "\U0001f4b4",
	"yin_yang":                             "\u262f\ufe0f",
	"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",
	"zombie":                               "\U0001f9df",
	"zombie_man":                           "\U0001f9df\u200d\u2642\ufe0f",
	"zombie_woman":                         "\U0001f9df\u200d\u2640\ufe0f",
	"zzz":                                  "\U0001f4a4",
}

const maxEmojiLen = 36