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
|
// Copyright 2020 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package emoji
// Code generated by gen.go. DO NOT EDIT.
// Sourced from https://raw.githubusercontent.com/github/gemoji/master/db/emoji.json
//
var GemojiData = Gemoji{
{"\U0001f44d", "thumbs up", []string{"+1", "thumbsup"}, "6.0"},
{"\U0001f44e", "thumbs down", []string{"-1", "thumbsdown"}, "6.0"},
{"\U0001f4af", "hundred points", []string{"100"}, "6.0"},
{"\U0001f522", "input numbers", []string{"1234"}, "6.0"},
{"\U0001f947", "1st place medal", []string{"1st_place_medal"}, "9.0"},
{"\U0001f948", "2nd place medal", []string{"2nd_place_medal"}, "9.0"},
{"\U0001f949", "3rd place medal", []string{"3rd_place_medal"}, "9.0"},
{"\U0001f3b1", "pool 8 ball", []string{"8ball"}, "6.0"},
{"\U0001f170\ufe0f", "A button (blood type)", []string{"a"}, "6.0"},
{"\U0001f18e", "AB button (blood type)", []string{"ab"}, "6.0"},
{"\U0001f9ee", "abacus", []string{"abacus"}, "11.0"},
{"\U0001f524", "input latin letters", []string{"abc"}, "6.0"},
{"\U0001f521", "input latin lowercase", []string{"abcd"}, "6.0"},
{"\U0001f251", "Japanese “acceptable” button", []string{"accept"}, "6.0"},
{"\U0001fa79", "adhesive bandage", []string{"adhesive_bandage"}, "12.0"},
{"\U0001f9d1", "person", []string{"adult"}, "11.0"},
{"\U0001f6a1", "aerial tramway", []string{"aerial_tramway"}, "6.0"},
{"\U0001f1e6\U0001f1eb", "flag: Afghanistan", []string{"afghanistan"}, "6.0"},
{"\u2708\ufe0f", "airplane", []string{"airplane"}, ""},
{"\U0001f1e6\U0001f1fd", "flag: Åland Islands", []string{"aland_islands"}, "6.0"},
{"\u23f0", "alarm clock", []string{"alarm_clock"}, "6.0"},
{"\U0001f1e6\U0001f1f1", "flag: Albania", []string{"albania"}, "6.0"},
{"\u2697\ufe0f", "alembic", []string{"alembic"}, "4.1"},
{"\U0001f1e9\U0001f1ff", "flag: Algeria", []string{"algeria"}, "6.0"},
{"\U0001f47d", "alien", []string{"alien"}, "6.0"},
{"\U0001f691", "ambulance", []string{"ambulance"}, "6.0"},
{"\U0001f1e6\U0001f1f8", "flag: American Samoa", []string{"american_samoa"}, "6.0"},
{"\U0001f3fa", "amphora", []string{"amphora"}, "8.0"},
{"\u2693", "anchor", []string{"anchor"}, "4.1"},
{"\U0001f1e6\U0001f1e9", "flag: Andorra", []string{"andorra"}, "6.0"},
{"\U0001f47c", "baby angel", []string{"angel"}, "6.0"},
{"\U0001f4a2", "anger symbol", []string{"anger"}, "6.0"},
{"\U0001f1e6\U0001f1f4", "flag: Angola", []string{"angola"}, "6.0"},
{"\U0001f620", "angry face", []string{"angry"}, "6.0"},
{"\U0001f1e6\U0001f1ee", "flag: Anguilla", []string{"anguilla"}, "6.0"},
{"\U0001f627", "anguished face", []string{"anguished"}, "6.1"},
{"\U0001f41c", "ant", []string{"ant"}, "6.0"},
{"\U0001f1e6\U0001f1f6", "flag: Antarctica", []string{"antarctica"}, "6.0"},
{"\U0001f1e6\U0001f1ec", "flag: Antigua & Barbuda", []string{"antigua_barbuda"}, "6.0"},
{"\U0001f34e", "red apple", []string{"apple"}, "6.0"},
{"\u2652", "Aquarius", []string{"aquarius"}, ""},
{"\U0001f1e6\U0001f1f7", "flag: Argentina", []string{"argentina"}, "6.0"},
{"\u2648", "Aries", []string{"aries"}, ""},
{"\U0001f1e6\U0001f1f2", "flag: Armenia", []string{"armenia"}, "6.0"},
{"\u25c0\ufe0f", "reverse button", []string{"arrow_backward"}, ""},
{"\u23ec", "fast down button", []string{"arrow_double_down"}, "6.0"},
{"\u23eb", "fast up button", []string{"arrow_double_up"}, "6.0"},
{"\u2b07\ufe0f", "down arrow", []string{"arrow_down"}, "4.0"},
{"\U0001f53d", "downwards button", []string{"arrow_down_small"}, "6.0"},
{"\u25b6\ufe0f", "play button", []string{"arrow_forward"}, ""},
{"\u2935\ufe0f", "right arrow curving down", []string{"arrow_heading_down"}, ""},
{"\u2934\ufe0f", "right arrow curving up", []string{"arrow_heading_up"}, ""},
{"\u2b05\ufe0f", "left arrow", []string{"arrow_left"}, "4.0"},
{"\u2199\ufe0f", "down-left arrow", []string{"arrow_lower_left"}, ""},
{"\u2198\ufe0f", "down-right arrow", []string{"arrow_lower_right"}, ""},
{"\u27a1\ufe0f", "right arrow", []string{"arrow_right"}, ""},
{"\u21aa\ufe0f", "left arrow curving right", []string{"arrow_right_hook"}, ""},
{"\u2b06\ufe0f", "up arrow", []string{"arrow_up"}, "4.0"},
{"\u2195\ufe0f", "up-down arrow", []string{"arrow_up_down"}, ""},
{"\U0001f53c", "upwards button", []string{"arrow_up_small"}, "6.0"},
{"\u2196\ufe0f", "up-left arrow", []string{"arrow_upper_left"}, ""},
{"\u2197\ufe0f", "up-right arrow", []string{"arrow_upper_right"}, ""},
{"\U0001f503", "clockwise vertical arrows", []string{"arrows_clockwise"}, "6.0"},
{"\U0001f504", "counterclockwise arrows button", []string{"arrows_counterclockwise"}, "6.0"},
{"\U0001f3a8", "artist palette", []string{"art"}, "6.0"},
{"\U0001f69b", "articulated lorry", []string{"articulated_lorry"}, "6.0"},
{"\U0001f6f0\ufe0f", "satellite", []string{"artificial_satellite"}, "7.0"},
{"\U0001f9d1\u200d\U0001f3a8", "artist", []string{"artist"}, "12.1"},
{"\U0001f1e6\U0001f1fc", "flag: Aruba", []string{"aruba"}, "6.0"},
{"\U0001f1e6\U0001f1e8", "flag: Ascension Island", []string{"ascension_island"}, "11.0"},
{"\U0001f632", "astonished face", []string{"astonished"}, "6.0"},
{"\U0001f9d1\u200d\U0001f680", "astronaut", []string{"astronaut"}, "12.1"},
{"\U0001f45f", "running shoe", []string{"athletic_shoe"}, "6.0"},
{"\U0001f3e7", "ATM sign", []string{"atm"}, "6.0"},
{"\u269b\ufe0f", "atom symbol", []string{"atom_symbol"}, "4.1"},
{"\U0001f1e6\U0001f1fa", "flag: Australia", []string{"australia"}, "6.0"},
{"\U0001f1e6\U0001f1f9", "flag: Austria", []string{"austria"}, "6.0"},
{"\U0001f6fa", "auto rickshaw", []string{"auto_rickshaw"}, "12.0"},
{"\U0001f951", "avocado", []string{"avocado"}, "9.0"},
{"\U0001fa93", "axe", []string{"axe"}, "12.0"},
{"\U0001f1e6\U0001f1ff", "flag: Azerbaijan", []string{"azerbaijan"}, "6.0"},
{"\U0001f171\ufe0f", "B button (blood type)", []string{"b"}, "6.0"},
{"\U0001f476", "baby", []string{"baby"}, "6.0"},
{"\U0001f37c", "baby bottle", []string{"baby_bottle"}, "6.0"},
{"\U0001f424", "baby chick", []string{"baby_chick"}, "6.0"},
{"\U0001f6bc", "baby symbol", []string{"baby_symbol"}, "6.0"},
{"\U0001f519", "BACK arrow", []string{"back"}, "6.0"},
{"\U0001f953", "bacon", []string{"bacon"}, "9.0"},
{"\U0001f9a1", "badger", []string{"badger"}, "11.0"},
{"\U0001f3f8", "badminton", []string{"badminton"}, "8.0"},
{"\U0001f96f", "bagel", []string{"bagel"}, "11.0"},
{"\U0001f6c4", "baggage claim", []string{"baggage_claim"}, "6.0"},
{"\U0001f956", "baguette bread", []string{"baguette_bread"}, "9.0"},
{"\U0001f1e7\U0001f1f8", "flag: Bahamas", []string{"bahamas"}, "6.0"},
{"\U0001f1e7\U0001f1ed", "flag: Bahrain", []string{"bahrain"}, "6.0"},
{"\u2696\ufe0f", "balance scale", []string{"balance_scale"}, "4.1"},
{"\U0001f468\u200d\U0001f9b2", "man: bald", []string{"bald_man"}, "11.0"},
{"\U0001f469\u200d\U0001f9b2", "woman: bald", []string{"bald_woman"}, "11.0"},
{"\U0001fa70", "ballet shoes", []string{"ballet_shoes"}, "12.0"},
{"\U0001f388", "balloon", []string{"balloon"}, "6.0"},
{"\U0001f5f3\ufe0f", "ballot box with ballot", []string{"ballot_box"}, "7.0"},
{"\u2611\ufe0f", "check box with check", []string{"ballot_box_with_check"}, ""},
{"\U0001f38d", "pine decoration", []string{"bamboo"}, "6.0"},
{"\U0001f34c", "banana", []string{"banana"}, "6.0"},
{"\u203c\ufe0f", "double exclamation mark", []string{"bangbang"}, ""},
{"\U0001f1e7\U0001f1e9", "flag: Bangladesh", []string{"bangladesh"}, "6.0"},
{"\U0001fa95", "banjo", []string{"banjo"}, "12.0"},
{"\U0001f3e6", "bank", []string{"bank"}, "6.0"},
{"\U0001f4ca", "bar chart", []string{"bar_chart"}, "6.0"},
{"\U0001f1e7\U0001f1e7", "flag: Barbados", []string{"barbados"}, "6.0"},
{"\U0001f488", "barber pole", []string{"barber"}, "6.0"},
{"\u26be", "baseball", []string{"baseball"}, "5.2"},
{"\U0001f9fa", "basket", []string{"basket"}, "11.0"},
{"\U0001f3c0", "basketball", []string{"basketball"}, "6.0"},
{"\U0001f987", "bat", []string{"bat"}, "9.0"},
{"\U0001f6c0", "person taking bath", []string{"bath"}, "6.0"},
{"\U0001f6c1", "bathtub", []string{"bathtub"}, "6.0"},
{"\U0001f50b", "battery", []string{"battery"}, "6.0"},
{"\U0001f3d6\ufe0f", "beach with umbrella", []string{"beach_umbrella"}, "7.0"},
{"\U0001f43b", "bear", []string{"bear"}, "6.0"},
{"\U0001f9d4", "man: beard", []string{"bearded_person"}, "11.0"},
{"\U0001f6cf\ufe0f", "bed", []string{"bed"}, "7.0"},
{"\U0001f41d", "honeybee", []string{"bee", "honeybee"}, "6.0"},
{"\U0001f37a", "beer mug", []string{"beer"}, "6.0"},
{"\U0001f37b", "clinking beer mugs", []string{"beers"}, "6.0"},
{"\U0001f530", "Japanese symbol for beginner", []string{"beginner"}, "6.0"},
{"\U0001f1e7\U0001f1fe", "flag: Belarus", []string{"belarus"}, "6.0"},
{"\U0001f1e7\U0001f1ea", "flag: Belgium", []string{"belgium"}, "6.0"},
{"\U0001f1e7\U0001f1ff", "flag: Belize", []string{"belize"}, "6.0"},
{"\U0001f514", "bell", []string{"bell"}, "6.0"},
{"\U0001f6ce\ufe0f", "bellhop bell", []string{"bellhop_bell"}, "7.0"},
{"\U0001f1e7\U0001f1ef", "flag: Benin", []string{"benin"}, "6.0"},
{"\U0001f371", "bento box", []string{"bento"}, "6.0"},
{"\U0001f1e7\U0001f1f2", "flag: Bermuda", []string{"bermuda"}, "6.0"},
{"\U0001f9c3", "beverage box", []string{"beverage_box"}, "12.0"},
{"\U0001f1e7\U0001f1f9", "flag: Bhutan", []string{"bhutan"}, "6.0"},
{"\U0001f6b4", "person biking", []string{"bicyclist"}, "6.0"},
{"\U0001f6b2", "bicycle", []string{"bike"}, "6.0"},
{"\U0001f6b4\u200d\u2642\ufe0f", "man biking", []string{"biking_man"}, "11.0"},
{"\U0001f6b4\u200d\u2640\ufe0f", "woman biking", []string{"biking_woman"}, "6.0"},
{"\U0001f459", "bikini", []string{"bikini"}, "6.0"},
{"\U0001f9e2", "billed cap", []string{"billed_cap"}, "11.0"},
{"\u2623\ufe0f", "biohazard", []string{"biohazard"}, ""},
{"\U0001f426", "bird", []string{"bird"}, "6.0"},
{"\U0001f382", "birthday cake", []string{"birthday"}, "6.0"},
{"\u26ab", "black circle", []string{"black_circle"}, "4.1"},
{"\U0001f3f4", "black flag", []string{"black_flag"}, "7.0"},
{"\U0001f5a4", "black heart", []string{"black_heart"}, "9.0"},
{"\U0001f0cf", "joker", []string{"black_joker"}, "6.0"},
{"\u2b1b", "black large square", []string{"black_large_square"}, "5.1"},
{"\u25fe", "black medium-small square", []string{"black_medium_small_square"}, "3.2"},
{"\u25fc\ufe0f", "black medium square", []string{"black_medium_square"}, "3.2"},
{"\u2712\ufe0f", "black nib", []string{"black_nib"}, ""},
{"\u25aa\ufe0f", "black small square", []string{"black_small_square"}, ""},
{"\U0001f532", "black square button", []string{"black_square_button"}, "6.0"},
{"\U0001f471\u200d\u2642\ufe0f", "man: blond hair", []string{"blond_haired_man"}, "11.0"},
{"\U0001f471", "person: blond hair", []string{"blond_haired_person"}, "6.0"},
{"\U0001f471\u200d\u2640\ufe0f", "woman: blond hair", []string{"blond_haired_woman", "blonde_woman"}, "6.0"},
{"\U0001f33c", "blossom", []string{"blossom"}, "6.0"},
{"\U0001f421", "blowfish", []string{"blowfish"}, "6.0"},
{"\U0001f4d8", "blue book", []string{"blue_book"}, "6.0"},
{"\U0001f699", "sport utility vehicle", []string{"blue_car"}, "6.0"},
{"\U0001f499", "blue heart", []string{"blue_heart"}, "6.0"},
{"\U0001f7e6", "blue square", []string{"blue_square"}, "12.0"},
{"\U0001f60a", "smiling face with smiling eyes", []string{"blush"}, "6.0"},
{"\U0001f417", "boar", []string{"boar"}, "6.0"},
{"\u26f5", "sailboat", []string{"boat", "sailboat"}, "5.2"},
{"\U0001f1e7\U0001f1f4", "flag: Bolivia", []string{"bolivia"}, "6.0"},
{"\U0001f4a3", "bomb", []string{"bomb"}, "6.0"},
{"\U0001f9b4", "bone", []string{"bone"}, "11.0"},
{"\U0001f4d6", "open book", []string{"book", "open_book"}, "6.0"},
{"\U0001f516", "bookmark", []string{"bookmark"}, "6.0"},
{"\U0001f4d1", "bookmark tabs", []string{"bookmark_tabs"}, "6.0"},
{"\U0001f4da", "books", []string{"books"}, "6.0"},
{"\U0001f4a5", "collision", []string{"boom", "collision"}, "6.0"},
{"\U0001f462", "woman’s boot", []string{"boot"}, "6.0"},
{"\U0001f1e7\U0001f1e6", "flag: Bosnia & Herzegovina", []string{"bosnia_herzegovina"}, "6.0"},
{"\U0001f1e7\U0001f1fc", "flag: Botswana", []string{"botswana"}, "6.0"},
{"\u26f9\ufe0f\u200d\u2642\ufe0f", "man bouncing ball", []string{"bouncing_ball_man", "basketball_man"}, "11.0"},
{"\u26f9\ufe0f", "person bouncing ball", []string{"bouncing_ball_person"}, "5.2"},
{"\u26f9\ufe0f\u200d\u2640\ufe0f", "woman bouncing ball", []string{"bouncing_ball_woman", "basketball_woman"}, "7.0"},
{"\U0001f490", "bouquet", []string{"bouquet"}, "6.0"},
{"\U0001f1e7\U0001f1fb", "flag: Bouvet Island", []string{"bouvet_island"}, "11.0"},
{"\U0001f647", "person bowing", []string{"bow"}, "6.0"},
{"\U0001f3f9", "bow and arrow", []string{"bow_and_arrow"}, "8.0"},
{"\U0001f647\u200d\u2642\ufe0f", "man bowing", []string{"bowing_man"}, "11.0"},
{"\U0001f647\u200d\u2640\ufe0f", "woman bowing", []string{"bowing_woman"}, "6.0"},
{"\U0001f963", "bowl with spoon", []string{"bowl_with_spoon"}, "11.0"},
{"\U0001f3b3", "bowling", []string{"bowling"}, "6.0"},
{"\U0001f94a", "boxing glove", []string{"boxing_glove"}, "9.0"},
{"\U0001f466", "boy", []string{"boy"}, "6.0"},
{"\U0001f9e0", "brain", []string{"brain"}, "11.0"},
{"\U0001f1e7\U0001f1f7", "flag: Brazil", []string{"brazil"}, "6.0"},
{"\U0001f35e", "bread", []string{"bread"}, "6.0"},
{"\U0001f931", "breast-feeding", []string{"breast_feeding"}, "11.0"},
{"\U0001f9f1", "brick", []string{"bricks"}, "11.0"},
{"\U0001f309", "bridge at night", []string{"bridge_at_night"}, "6.0"},
{"\U0001f4bc", "briefcase", []string{"briefcase"}, "6.0"},
{"\U0001f1ee\U0001f1f4", "flag: British Indian Ocean Territory", []string{"british_indian_ocean_territory"}, "6.0"},
{"\U0001f1fb\U0001f1ec", "flag: British Virgin Islands", []string{"british_virgin_islands"}, "6.0"},
{"\U0001f966", "broccoli", []string{"broccoli"}, "11.0"},
{"\U0001f494", "broken heart", []string{"broken_heart"}, "6.0"},
{"\U0001f9f9", "broom", []string{"broom"}, "11.0"},
{"\U0001f7e4", "brown circle", []string{"brown_circle"}, "12.0"},
{"\U0001f90e", "brown heart", []string{"brown_heart"}, "12.0"},
{"\U0001f7eb", "brown square", []string{"brown_square"}, "12.0"},
{"\U0001f1e7\U0001f1f3", "flag: Brunei", []string{"brunei"}, "6.0"},
{"\U0001f41b", "bug", []string{"bug"}, "6.0"},
{"\U0001f3d7\ufe0f", "building construction", []string{"building_construction"}, "7.0"},
{"\U0001f4a1", "light bulb", []string{"bulb"}, "6.0"},
{"\U0001f1e7\U0001f1ec", "flag: Bulgaria", []string{"bulgaria"}, "6.0"},
{"\U0001f685", "bullet train", []string{"bullettrain_front"}, "6.0"},
{"\U0001f684", "high-speed train", []string{"bullettrain_side"}, "6.0"},
{"\U0001f1e7\U0001f1eb", "flag: Burkina Faso", []string{"burkina_faso"}, "6.0"},
{"\U0001f32f", "burrito", []string{"burrito"}, "8.0"},
{"\U0001f1e7\U0001f1ee", "flag: Burundi", []string{"burundi"}, "6.0"},
{"\U0001f68c", "bus", []string{"bus"}, "6.0"},
{"\U0001f574\ufe0f", "person in suit levitating", []string{"business_suit_levitating"}, "7.0"},
{"\U0001f68f", "bus stop", []string{"busstop"}, "6.0"},
{"\U0001f464", "bust in silhouette", []string{"bust_in_silhouette"}, "6.0"},
{"\U0001f465", "busts in silhouette", []string{"busts_in_silhouette"}, "6.0"},
{"\U0001f9c8", "butter", []string{"butter"}, "12.0"},
{"\U0001f98b", "butterfly", []string{"butterfly"}, "9.0"},
{"\U0001f335", "cactus", []string{"cactus"}, "6.0"},
{"\U0001f370", "shortcake", []string{"cake"}, "6.0"},
{"\U0001f4c6", "tear-off calendar", []string{"calendar"}, "6.0"},
{"\U0001f919", "call me hand", []string{"call_me_hand"}, "9.0"},
{"\U0001f4f2", "mobile phone with arrow", []string{"calling"}, "6.0"},
{"\U0001f1f0\U0001f1ed", "flag: Cambodia", []string{"cambodia"}, "6.0"},
{"\U0001f42b", "two-hump camel", []string{"camel"}, "6.0"},
{"\U0001f4f7", "camera", []string{"camera"}, "6.0"},
{"\U0001f4f8", "camera with flash", []string{"camera_flash"}, "7.0"},
{"\U0001f1e8\U0001f1f2", "flag: Cameroon", []string{"cameroon"}, "6.0"},
{"\U0001f3d5\ufe0f", "camping", []string{"camping"}, "7.0"},
{"\U0001f1e8\U0001f1e6", "flag: Canada", []string{"canada"}, "6.0"},
{"\U0001f1ee\U0001f1e8", "flag: Canary Islands", []string{"canary_islands"}, "6.0"},
{"\u264b", "Cancer", []string{"cancer"}, ""},
{"\U0001f56f\ufe0f", "candle", []string{"candle"}, "7.0"},
{"\U0001f36c", "candy", []string{"candy"}, "6.0"},
{"\U0001f96b", "canned food", []string{"canned_food"}, "11.0"},
{"\U0001f6f6", "canoe", []string{"canoe"}, "9.0"},
{"\U0001f1e8\U0001f1fb", "flag: Cape Verde", []string{"cape_verde"}, "6.0"},
{"\U0001f520", "input latin uppercase", []string{"capital_abcd"}, "6.0"},
{"\u2651", "Capricorn", []string{"capricorn"}, ""},
{"\U0001f697", "automobile", []string{"car", "red_car"}, "6.0"},
{"\U0001f5c3\ufe0f", "card file box", []string{"card_file_box"}, "7.0"},
{"\U0001f4c7", "card index", []string{"card_index"}, "6.0"},
{"\U0001f5c2\ufe0f", "card index dividers", []string{"card_index_dividers"}, "7.0"},
{"\U0001f1e7\U0001f1f6", "flag: Caribbean Netherlands", []string{"caribbean_netherlands"}, "6.0"},
{"\U0001f3a0", "carousel horse", []string{"carousel_horse"}, "6.0"},
{"\U0001f955", "carrot", []string{"carrot"}, "9.0"},
{"\U0001f938", "person cartwheeling", []string{"cartwheeling"}, "11.0"},
{"\U0001f431", "cat face", []string{"cat"}, "6.0"},
{"\U0001f408", "cat", []string{"cat2"}, "6.0"},
{"\U0001f1f0\U0001f1fe", "flag: Cayman Islands", []string{"cayman_islands"}, "6.0"},
{"\U0001f4bf", "optical disk", []string{"cd"}, "6.0"},
{"\U0001f1e8\U0001f1eb", "flag: Central African Republic", []string{"central_african_republic"}, "6.0"},
{"\U0001f1ea\U0001f1e6", "flag: Ceuta & Melilla", []string{"ceuta_melilla"}, "11.0"},
{"\U0001f1f9\U0001f1e9", "flag: Chad", []string{"chad"}, "6.0"},
{"\u26d3\ufe0f", "chains", []string{"chains"}, "5.2"},
{"\U0001fa91", "chair", []string{"chair"}, "12.0"},
{"\U0001f37e", "bottle with popping cork", []string{"champagne"}, "8.0"},
{"\U0001f4b9", "chart increasing with yen", []string{"chart"}, "6.0"},
{"\U0001f4c9", "chart decreasing", []string{"chart_with_downwards_trend"}, "6.0"},
{"\U0001f4c8", "chart increasing", []string{"chart_with_upwards_trend"}, "6.0"},
{"\U0001f3c1", "chequered flag", []string{"checkered_flag"}, "6.0"},
{"\U0001f9c0", "cheese wedge", []string{"cheese"}, "8.0"},
{"\U0001f352", "cherries", []string{"cherries"}, "6.0"},
{"\U0001f338", "cherry blossom", []string{"cherry_blossom"}, "6.0"},
{"\u265f\ufe0f", "chess pawn", []string{"chess_pawn"}, "11.0"},
{"\U0001f330", "chestnut", []string{"chestnut"}, "6.0"},
{"\U0001f414", "chicken", []string{"chicken"}, "6.0"},
{"\U0001f9d2", "child", []string{"child"}, "11.0"},
{"\U0001f6b8", "children crossing", []string{"children_crossing"}, "6.0"},
{"\U0001f1e8\U0001f1f1", "flag: Chile", []string{"chile"}, "6.0"},
{"\U0001f43f\ufe0f", "chipmunk", []string{"chipmunk"}, "7.0"},
{"\U0001f36b", "chocolate bar", []string{"chocolate_bar"}, "6.0"},
{"\U0001f962", "chopsticks", []string{"chopsticks"}, "11.0"},
{"\U0001f1e8\U0001f1fd", "flag: Christmas Island", []string{"christmas_island"}, "6.0"},
{"\U0001f384", "Christmas tree", []string{"christmas_tree"}, "6.0"},
{"\u26ea", "church", []string{"church"}, "5.2"},
{"\U0001f3a6", "cinema", []string{"cinema"}, "6.0"},
{"\U0001f3aa", "circus tent", []string{"circus_tent"}, "6.0"},
{"\U0001f307", "sunset", []string{"city_sunrise"}, "6.0"},
{"\U0001f306", "cityscape at dusk", []string{"city_sunset"}, "6.0"},
{"\U0001f3d9\ufe0f", "cityscape", []string{"cityscape"}, "7.0"},
{"\U0001f191", "CL button", []string{"cl"}, "6.0"},
{"\U0001f5dc\ufe0f", "clamp", []string{"clamp"}, "7.0"},
{"\U0001f44f", "clapping hands", []string{"clap"}, "6.0"},
{"\U0001f3ac", "clapper board", []string{"clapper"}, "6.0"},
{"\U0001f3db\ufe0f", "classical building", []string{"classical_building"}, "7.0"},
{"\U0001f9d7", "person climbing", []string{"climbing"}, "11.0"},
{"\U0001f9d7\u200d\u2642\ufe0f", "man climbing", []string{"climbing_man"}, "11.0"},
{"\U0001f9d7\u200d\u2640\ufe0f", "woman climbing", []string{"climbing_woman"}, "11.0"},
{"\U0001f942", "clinking glasses", []string{"clinking_glasses"}, "9.0"},
{"\U0001f4cb", "clipboard", []string{"clipboard"}, "6.0"},
{"\U0001f1e8\U0001f1f5", "flag: Clipperton Island", []string{"clipperton_island"}, "11.0"},
{"\U0001f550", "one o’clock", []string{"clock1"}, "6.0"},
{"\U0001f559", "ten o’clock", []string{"clock10"}, "6.0"},
{"\U0001f565", "ten-thirty", []string{"clock1030"}, "6.0"},
{"\U0001f55a", "eleven o’clock", []string{"clock11"}, "6.0"},
{"\U0001f566", "eleven-thirty", []string{"clock1130"}, "6.0"},
{"\U0001f55b", "twelve o’clock", []string{"clock12"}, "6.0"},
{"\U0001f567", "twelve-thirty", []string{"clock1230"}, "6.0"},
{"\U0001f55c", "one-thirty", []string{"clock130"}, "6.0"},
{"\U0001f551", "two o’clock", []string{"clock2"}, "6.0"},
{"\U0001f55d", "two-thirty", []string{"clock230"}, "6.0"},
{"\U0001f552", "three o’clock", []string{"clock3"}, "6.0"},
{"\U0001f55e", "three-thirty", []string{"clock330"}, "6.0"},
{"\U0001f553", "four o’clock", []string{"clock4"}, "6.0"},
{"\U0001f55f", "four-thirty", []string{"clock430"}, "6.0"},
{"\U0001f554", "five o’clock", []string{"clock5"}, "6.0"},
{"\U0001f560", "five-thirty", []string{"clock530"}, "6.0"},
{"\U0001f555", "six o’clock", []string{"clock6"}, "6.0"},
{"\U0001f561", "six-thirty", []string{"clock630"}, "6.0"},
{"\U0001f556", "seven o’clock", []string{"clock7"}, "6.0"},
{"\U0001f562", "seven-thirty", []string{"clock730"}, "6.0"},
{"\U0001f557", "eight o’clock", []string{"clock8"}, "6.0"},
{"\U0001f563", "eight-thirty", []string{"clock830"}, "6.0"},
{"\U0001f558", "nine o’clock", []string{"clock9"}, "6.0"},
{"\U0001f564", "nine-thirty", []string{"clock930"}, "6.0"},
{"\U0001f4d5", "closed book", []string{"closed_book"}, "6.0"},
{"\U0001f510", "locked with key", []string{"closed_lock_with_key"}, "6.0"},
{"\U0001f302", "closed umbrella", []string{"closed_umbrella"}, "6.0"},
{"\u2601\ufe0f", "cloud", []string{"cloud"}, ""},
{"\U0001f329\ufe0f", "cloud with lightning", []string{"cloud_with_lightning"}, "7.0"},
{"\u26c8\ufe0f", "cloud with lightning and rain", []string{"cloud_with_lightning_and_rain"}, "5.2"},
{"\U0001f327\ufe0f", "cloud with rain", []string{"cloud_with_rain"}, "7.0"},
{"\U0001f328\ufe0f", "cloud with snow", []string{"cloud_with_snow"}, "7.0"},
{"\U0001f921", "clown face", []string{"clown_face"}, "9.0"},
{"\u2663\ufe0f", "club suit", []string{"clubs"}, ""},
{"\U0001f1e8\U0001f1f3", "flag: China", []string{"cn"}, "6.0"},
{"\U0001f9e5", "coat", []string{"coat"}, "11.0"},
{"\U0001f378", "cocktail glass", []string{"cocktail"}, "6.0"},
{"\U0001f965", "coconut", []string{"coconut"}, "11.0"},
{"\U0001f1e8\U0001f1e8", "flag: Cocos (Keeling) Islands", []string{"cocos_islands"}, "6.0"},
{"\u2615", "hot beverage", []string{"coffee"}, "4.0"},
{"\u26b0\ufe0f", "coffin", []string{"coffin"}, "4.1"},
{"\U0001f976", "cold face", []string{"cold_face"}, "11.0"},
{"\U0001f630", "anxious face with sweat", []string{"cold_sweat"}, "6.0"},
{"\U0001f1e8\U0001f1f4", "flag: Colombia", []string{"colombia"}, "6.0"},
{"\u2604\ufe0f", "comet", []string{"comet"}, ""},
{"\U0001f1f0\U0001f1f2", "flag: Comoros", []string{"comoros"}, "6.0"},
{"\U0001f9ed", "compass", []string{"compass"}, "11.0"},
{"\U0001f4bb", "laptop", []string{"computer"}, "6.0"},
{"\U0001f5b1\ufe0f", "computer mouse", []string{"computer_mouse"}, "7.0"},
{"\U0001f38a", "confetti ball", []string{"confetti_ball"}, "6.0"},
{"\U0001f616", "confounded face", []string{"confounded"}, "6.0"},
{"\U0001f615", "confused face", []string{"confused"}, "6.1"},
{"\U0001f1e8\U0001f1ec", "flag: Congo - Brazzaville", []string{"congo_brazzaville"}, "6.0"},
{"\U0001f1e8\U0001f1e9", "flag: Congo - Kinshasa", []string{"congo_kinshasa"}, "6.0"},
{"\u3297\ufe0f", "Japanese “congratulations” button", []string{"congratulations"}, ""},
{"\U0001f6a7", "construction", []string{"construction"}, "6.0"},
{"\U0001f477", "construction worker", []string{"construction_worker"}, "6.0"},
{"\U0001f477\u200d\u2642\ufe0f", "man construction worker", []string{"construction_worker_man"}, "11.0"},
{"\U0001f477\u200d\u2640\ufe0f", "woman construction worker", []string{"construction_worker_woman"}, "6.0"},
{"\U0001f39b\ufe0f", "control knobs", []string{"control_knobs"}, "7.0"},
{"\U0001f3ea", "convenience store", []string{"convenience_store"}, "6.0"},
{"\U0001f9d1\u200d\U0001f373", "cook", []string{"cook"}, "12.1"},
{"\U0001f1e8\U0001f1f0", "flag: Cook Islands", []string{"cook_islands"}, "6.0"},
{"\U0001f36a", "cookie", []string{"cookie"}, "6.0"},
{"\U0001f192", "COOL button", []string{"cool"}, "6.0"},
{"\U0001f33d", "ear of corn", []string{"corn"}, "6.0"},
{"\U0001f1e8\U0001f1f7", "flag: Costa Rica", []string{"costa_rica"}, "6.0"},
{"\U0001f1e8\U0001f1ee", "flag: Côte d’Ivoire", []string{"cote_divoire"}, "6.0"},
{"\U0001f6cb\ufe0f", "couch and lamp", []string{"couch_and_lamp"}, "7.0"},
{"\U0001f46b", "woman and man holding hands", []string{"couple"}, "6.0"},
{"\U0001f491", "couple with heart", []string{"couple_with_heart"}, "6.0"},
{"\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468", "couple with heart: man, man", []string{"couple_with_heart_man_man"}, "6.0"},
{"\U0001f469\u200d\u2764\ufe0f\u200d\U0001f468", "couple with heart: woman, man", []string{"couple_with_heart_woman_man"}, "11.0"},
{"\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469", "couple with heart: woman, woman", []string{"couple_with_heart_woman_woman"}, "6.0"},
{"\U0001f48f", "kiss", []string{"couplekiss"}, "6.0"},
{"\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468", "kiss: man, man", []string{"couplekiss_man_man"}, "6.0"},
{"\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468", "kiss: woman, man", []string{"couplekiss_man_woman"}, "11.0"},
{"\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469", "kiss: woman, woman", []string{"couplekiss_woman_woman"}, "6.0"},
{"\U0001f42e", "cow face", []string{"cow"}, "6.0"},
{"\U0001f404", "cow", []string{"cow2"}, "6.0"},
{"\U0001f920", "cowboy hat face", []string{"cowboy_hat_face"}, "9.0"},
{"\U0001f980", "crab", []string{"crab"}, "8.0"},
{"\U0001f58d\ufe0f", "crayon", []string{"crayon"}, "7.0"},
{"\U0001f4b3", "credit card", []string{"credit_card"}, "6.0"},
{"\U0001f319", "crescent moon", []string{"crescent_moon"}, "6.0"},
{"\U0001f997", "cricket", []string{"cricket"}, "11.0"},
{"\U0001f3cf", "cricket game", []string{"cricket_game"}, "8.0"},
{"\U0001f1ed\U0001f1f7", "flag: Croatia", []string{"croatia"}, "6.0"},
{"\U0001f40a", "crocodile", []string{"crocodile"}, "6.0"},
{"\U0001f950", "croissant", []string{"croissant"}, "9.0"},
{"\U0001f91e", "crossed fingers", []string{"crossed_fingers"}, "9.0"},
{"\U0001f38c", "crossed flags", []string{"crossed_flags"}, "6.0"},
{"\u2694\ufe0f", "crossed swords", []string{"crossed_swords"}, "4.1"},
{"\U0001f451", "crown", []string{"crown"}, "6.0"},
{"\U0001f622", "crying face", []string{"cry"}, "6.0"},
{"\U0001f63f", "crying cat", []string{"crying_cat_face"}, "6.0"},
{"\U0001f52e", "crystal ball", []string{"crystal_ball"}, "6.0"},
{"\U0001f1e8\U0001f1fa", "flag: Cuba", []string{"cuba"}, "6.0"},
{"\U0001f952", "cucumber", []string{"cucumber"}, "9.0"},
{"\U0001f964", "cup with straw", []string{"cup_with_straw"}, "11.0"},
{"\U0001f9c1", "cupcake", []string{"cupcake"}, "11.0"},
{"\U0001f498", "heart with arrow", []string{"cupid"}, "6.0"},
{"\U0001f1e8\U0001f1fc", "flag: Curaçao", []string{"curacao"}, "6.0"},
{"\U0001f94c", "curling stone", []string{"curling_stone"}, "11.0"},
{"\U0001f468\u200d\U0001f9b1", "man: curly hair", []string{"curly_haired_man"}, "11.0"},
{"\U0001f469\u200d\U0001f9b1", "woman: curly hair", []string{"curly_haired_woman"}, "11.0"},
{"\u27b0", "curly loop", []string{"curly_loop"}, "6.0"},
{"\U0001f4b1", "currency exchange", []string{"currency_exchange"}, "6.0"},
{"\U0001f35b", "curry rice", []string{"curry"}, "6.0"},
{"\U0001f92c", "face with symbols on mouth", []string{"cursing_face"}, "11.0"},
{"\U0001f36e", "custard", []string{"custard"}, "6.0"},
{"\U0001f6c3", "customs", []string{"customs"}, "6.0"},
{"\U0001f969", "cut of meat", []string{"cut_of_meat"}, "11.0"},
{"\U0001f300", "cyclone", []string{"cyclone"}, "6.0"},
{"\U0001f1e8\U0001f1fe", "flag: Cyprus", []string{"cyprus"}, "6.0"},
{"\U0001f1e8\U0001f1ff", "flag: Czechia", []string{"czech_republic"}, "6.0"},
{"\U0001f5e1\ufe0f", "dagger", []string{"dagger"}, "7.0"},
{"\U0001f46f", "people with bunny ears", []string{"dancers"}, "6.0"},
{"\U0001f46f\u200d\u2642\ufe0f", "men with bunny ears", []string{"dancing_men"}, "6.0"},
{"\U0001f46f\u200d\u2640\ufe0f", "women with bunny ears", []string{"dancing_women"}, "11.0"},
{"\U0001f361", "dango", []string{"dango"}, "6.0"},
{"\U0001f576\ufe0f", "sunglasses", []string{"dark_sunglasses"}, "7.0"},
{"\U0001f3af", "direct hit", []string{"dart"}, "6.0"},
{"\U0001f4a8", "dashing away", []string{"dash"}, "6.0"},
{"\U0001f4c5", "calendar", []string{"date"}, "6.0"},
{"\U0001f1e9\U0001f1ea", "flag: Germany", []string{"de"}, "6.0"},
{"\U0001f9cf\u200d\u2642\ufe0f", "deaf man", []string{"deaf_man"}, "12.0"},
{"\U0001f9cf", "deaf person", []string{"deaf_person"}, "12.0"},
{"\U0001f9cf\u200d\u2640\ufe0f", "deaf woman", []string{"deaf_woman"}, "12.0"},
{"\U0001f333", "deciduous tree", []string{"deciduous_tree"}, "6.0"},
{"\U0001f98c", "deer", []string{"deer"}, "9.0"},
{"\U0001f1e9\U0001f1f0", "flag: Denmark", []string{"denmark"}, "6.0"},
{"\U0001f3ec", "department store", []string{"department_store"}, "6.0"},
{"\U0001f3da\ufe0f", "derelict house", []string{"derelict_house"}, "7.0"},
{"\U0001f3dc\ufe0f", "desert", []string{"desert"}, "7.0"},
{"\U0001f3dd\ufe0f", "desert island", []string{"desert_island"}, "7.0"},
{"\U0001f5a5\ufe0f", "desktop computer", []string{"desktop_computer"}, "7.0"},
{"\U0001f575\ufe0f", "detective", []string{"detective"}, "7.0"},
{"\U0001f4a0", "diamond with a dot", []string{"diamond_shape_with_a_dot_inside"}, "6.0"},
{"\u2666\ufe0f", "diamond suit", []string{"diamonds"}, ""},
{"\U0001f1e9\U0001f1ec", "flag: Diego Garcia", []string{"diego_garcia"}, "11.0"},
{"\U0001f61e", "disappointed face", []string{"disappointed"}, "6.0"},
{"\U0001f625", "sad but relieved face", []string{"disappointed_relieved"}, "6.0"},
{"\U0001f93f", "diving mask", []string{"diving_mask"}, "12.0"},
{"\U0001fa94", "diya lamp", []string{"diya_lamp"}, "12.0"},
{"\U0001f4ab", "dizzy", []string{"dizzy"}, "6.0"},
{"\U0001f635", "dizzy face", []string{"dizzy_face"}, "6.0"},
{"\U0001f1e9\U0001f1ef", "flag: Djibouti", []string{"djibouti"}, "6.0"},
{"\U0001f9ec", "dna", []string{"dna"}, "11.0"},
{"\U0001f6af", "no littering", []string{"do_not_litter"}, "6.0"},
{"\U0001f436", "dog face", []string{"dog"}, "6.0"},
{"\U0001f415", "dog", []string{"dog2"}, "6.0"},
{"\U0001f4b5", "dollar banknote", []string{"dollar"}, "6.0"},
{"\U0001f38e", "Japanese dolls", []string{"dolls"}, "6.0"},
{"\U0001f42c", "dolphin", []string{"dolphin", "flipper"}, "6.0"},
{"\U0001f1e9\U0001f1f2", "flag: Dominica", []string{"dominica"}, "6.0"},
{"\U0001f1e9\U0001f1f4", "flag: Dominican Republic", []string{"dominican_republic"}, "6.0"},
{"\U0001f6aa", "door", []string{"door"}, "6.0"},
{"\U0001f369", "doughnut", []string{"doughnut"}, "6.0"},
{"\U0001f54a\ufe0f", "dove", []string{"dove"}, "7.0"},
{"\U0001f409", "dragon", []string{"dragon"}, "6.0"},
{"\U0001f432", "dragon face", []string{"dragon_face"}, "6.0"},
{"\U0001f457", "dress", []string{"dress"}, "6.0"},
{"\U0001f42a", "camel", []string{"dromedary_camel"}, "6.0"},
{"\U0001f924", "drooling face", []string{"drooling_face"}, "9.0"},
{"\U0001fa78", "drop of blood", []string{"drop_of_blood"}, "12.0"},
{"\U0001f4a7", "droplet", []string{"droplet"}, "6.0"},
{"\U0001f941", "drum", []string{"drum"}, ""},
{"\U0001f986", "duck", []string{"duck"}, "9.0"},
{"\U0001f95f", "dumpling", []string{"dumpling"}, "11.0"},
{"\U0001f4c0", "dvd", []string{"dvd"}, "6.0"},
{"\U0001f4e7", "e-mail", []string{"e-mail"}, "6.0"},
{"\U0001f985", "eagle", []string{"eagle"}, "9.0"},
{"\U0001f442", "ear", []string{"ear"}, "6.0"},
{"\U0001f33e", "sheaf of rice", []string{"ear_of_rice"}, "6.0"},
{"\U0001f9bb", "ear with hearing aid", []string{"ear_with_hearing_aid"}, "12.0"},
{"\U0001f30d", "globe showing Europe-Africa", []string{"earth_africa"}, "6.0"},
{"\U0001f30e", "globe showing Americas", []string{"earth_americas"}, "6.0"},
{"\U0001f30f", "globe showing Asia-Australia", []string{"earth_asia"}, "6.0"},
{"\U0001f1ea\U0001f1e8", "flag: Ecuador", []string{"ecuador"}, "6.0"},
{"\U0001f95a", "egg", []string{"egg"}, "9.0"},
{"\U0001f346", "eggplant", []string{"eggplant"}, "6.0"},
{"\U0001f1ea\U0001f1ec", "flag: Egypt", []string{"egypt"}, "6.0"},
{"\u2734\ufe0f", "eight-pointed star", []string{"eight_pointed_black_star"}, ""},
{"\u2733\ufe0f", "eight-spoked asterisk", []string{"eight_spoked_asterisk"}, ""},
{"\u23cf\ufe0f", "eject button", []string{"eject_button"}, "11.0"},
{"\U0001f1f8\U0001f1fb", "flag: El Salvador", []string{"el_salvador"}, "6.0"},
{"\U0001f50c", "electric plug", []string{"electric_plug"}, "6.0"},
{"\U0001f418", "elephant", []string{"elephant"}, "6.0"},
{"\U0001f9dd", "elf", []string{"elf"}, "11.0"},
{"\U0001f9dd\u200d\u2642\ufe0f", "man elf", []string{"elf_man"}, "11.0"},
{"\U0001f9dd\u200d\u2640\ufe0f", "woman elf", []string{"elf_woman"}, "11.0"},
{"\u2709\ufe0f", "envelope", []string{"email", "envelope"}, ""},
{"\U0001f51a", "END arrow", []string{"end"}, "6.0"},
{"\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f", "flag: England", []string{"england"}, "11.0"},
{"\U0001f4e9", "envelope with arrow", []string{"envelope_with_arrow"}, "6.0"},
{"\U0001f1ec\U0001f1f6", "flag: Equatorial Guinea", []string{"equatorial_guinea"}, "6.0"},
{"\U0001f1ea\U0001f1f7", "flag: Eritrea", []string{"eritrea"}, "6.0"},
{"\U0001f1ea\U0001f1f8", "flag: Spain", []string{"es"}, "6.0"},
{"\U0001f1ea\U0001f1ea", "flag: Estonia", []string{"estonia"}, "6.0"},
{"\U0001f1ea\U0001f1f9", "flag: Ethiopia", []string{"ethiopia"}, "6.0"},
{"\U0001f1ea\U0001f1fa", "flag: European Union", []string{"eu", "european_union"}, "6.0"},
{"\U0001f4b6", "euro banknote", []string{"euro"}, "6.0"},
{"\U0001f3f0", "castle", []string{"european_castle"}, "6.0"},
{"\U0001f3e4", "post office", []string{"european_post_office"}, "6.0"},
{"\U0001f332", "evergreen tree", []string{"evergreen_tree"}, "6.0"},
{"\u2757", "exclamation mark", []string{"exclamation", "heavy_exclamation_mark"}, "5.2"},
{"\U0001f92f", "exploding head", []string{"exploding_head"}, "11.0"},
{"\U0001f611", "expressionless face", []string{"expressionless"}, "6.1"},
{"\U0001f441\ufe0f", "eye", []string{"eye"}, "7.0"},
{"\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f", "eye in speech bubble", []string{"eye_speech_bubble"}, "11.0"},
{"\U0001f453", "glasses", []string{"eyeglasses"}, "6.0"},
{"\U0001f440", "eyes", []string{"eyes"}, "6.0"},
{"\U0001f915", "face with head-bandage", []string{"face_with_head_bandage"}, "8.0"},
{"\U0001f912", "face with thermometer", []string{"face_with_thermometer"}, "8.0"},
{"\U0001f926", "person facepalming", []string{"facepalm"}, "11.0"},
{"\U0001f3ed", "factory", []string{"factory"}, "6.0"},
{"\U0001f9d1\u200d\U0001f3ed", "factory worker", []string{"factory_worker"}, "12.1"},
{"\U0001f9da", "fairy", []string{"fairy"}, "11.0"},
{"\U0001f9da\u200d\u2642\ufe0f", "man fairy", []string{"fairy_man"}, "11.0"},
{"\U0001f9da\u200d\u2640\ufe0f", "woman fairy", []string{"fairy_woman"}, "11.0"},
{"\U0001f9c6", "falafel", []string{"falafel"}, "12.0"},
{"\U0001f1eb\U0001f1f0", "flag: Falkland Islands", []string{"falkland_islands"}, "6.0"},
{"\U0001f342", "fallen leaf", []string{"fallen_leaf"}, "6.0"},
{"\U0001f46a", "family", []string{"family"}, "6.0"},
{"\U0001f468\u200d\U0001f466", "family: man, boy", []string{"family_man_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f466\u200d\U0001f466", "family: man, boy, boy", []string{"family_man_boy_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f467", "family: man, girl", []string{"family_man_girl"}, "6.0"},
{"\U0001f468\u200d\U0001f467\u200d\U0001f466", "family: man, girl, boy", []string{"family_man_girl_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f467\u200d\U0001f467", "family: man, girl, girl", []string{"family_man_girl_girl"}, "6.0"},
{"\U0001f468\u200d\U0001f468\u200d\U0001f466", "family: man, man, boy", []string{"family_man_man_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466", "family: man, man, boy, boy", []string{"family_man_man_boy_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f468\u200d\U0001f467", "family: man, man, girl", []string{"family_man_man_girl"}, "6.0"},
{"\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466", "family: man, man, girl, boy", []string{"family_man_man_girl_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467", "family: man, man, girl, girl", []string{"family_man_man_girl_girl"}, "6.0"},
{"\U0001f468\u200d\U0001f469\u200d\U0001f466", "family: man, woman, boy", []string{"family_man_woman_boy"}, "11.0"},
{"\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466", "family: man, woman, boy, boy", []string{"family_man_woman_boy_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f469\u200d\U0001f467", "family: man, woman, girl", []string{"family_man_woman_girl"}, "6.0"},
{"\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466", "family: man, woman, girl, boy", []string{"family_man_woman_girl_boy"}, "6.0"},
{"\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467", "family: man, woman, girl, girl", []string{"family_man_woman_girl_girl"}, "6.0"},
{"\U0001f469\u200d\U0001f466", "family: woman, boy", []string{"family_woman_boy"}, "6.0"},
{"\U0001f469\u200d\U0001f466\u200d\U0001f466", "family: woman, boy, boy", []string{"family_woman_boy_boy"}, "6.0"},
{"\U0001f469\u200d\U0001f467", "family: woman, girl", []string{"family_woman_girl"}, "6.0"},
{"\U0001f469\u200d\U0001f467\u200d\U0001f466", "family: woman, girl, boy", []string{"family_woman_girl_boy"}, "6.0"},
{"\U0001f469\u200d\U0001f467\u200d\U0001f467", "family: woman, girl, girl", []string{"family_woman_girl_girl"}, "6.0"},
{"\U0001f469\u200d\U0001f469\u200d\U0001f466", "family: woman, woman, boy", []string{"family_woman_woman_boy"}, "6.0"},
{"\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466", "family: woman, woman, boy, boy", []string{"family_woman_woman_boy_boy"}, "6.0"},
{"\U0001f469\u200d\U0001f469\u200d\U0001f467", "family: woman, woman, girl", []string{"family_woman_woman_girl"}, "6.0"},
{"\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466", "family: woman, woman, girl, boy", []string{"family_woman_woman_girl_boy"}, "6.0"},
{"\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467", "family: woman, woman, girl, girl", []string{"family_woman_woman_girl_girl"}, "6.0"},
{"\U0001f9d1\u200d\U0001f33e", "farmer", []string{"farmer"}, "12.1"},
{"\U0001f1eb\U0001f1f4", "flag: Faroe Islands", []string{"faroe_islands"}, "6.0"},
{"\u23e9", "fast-forward button", []string{"fast_forward"}, "6.0"},
{"\U0001f4e0", "fax machine", []string{"fax"}, "6.0"},
{"\U0001f628", "fearful face", []string{"fearful"}, "6.0"},
{"\U0001f43e", "paw prints", []string{"feet", "paw_prints"}, "6.0"},
{"\U0001f575\ufe0f\u200d\u2640\ufe0f", "woman detective", []string{"female_detective"}, "6.0"},
{"\u2640\ufe0f", "female sign", []string{"female_sign"}, "11.0"},
{"\U0001f3a1", "ferris wheel", []string{"ferris_wheel"}, "6.0"},
{"\u26f4\ufe0f", "ferry", []string{"ferry"}, "5.2"},
{"\U0001f3d1", "field hockey", []string{"field_hockey"}, "8.0"},
{"\U0001f1eb\U0001f1ef", "flag: Fiji", []string{"fiji"}, "6.0"},
{"\U0001f5c4\ufe0f", "file cabinet", []string{"file_cabinet"}, "7.0"},
{"\U0001f4c1", "file folder", []string{"file_folder"}, "6.0"},
{"\U0001f4fd\ufe0f", "film projector", []string{"film_projector"}, "7.0"},
{"\U0001f39e\ufe0f", "film frames", []string{"film_strip"}, "7.0"},
{"\U0001f1eb\U0001f1ee", "flag: Finland", []string{"finland"}, "6.0"},
{"\U0001f525", "fire", []string{"fire"}, "6.0"},
{"\U0001f692", "fire engine", []string{"fire_engine"}, "6.0"},
{"\U0001f9ef", "fire extinguisher", []string{"fire_extinguisher"}, "11.0"},
{"\U0001f9e8", "firecracker", []string{"firecracker"}, "11.0"},
{"\U0001f9d1\u200d\U0001f692", "firefighter", []string{"firefighter"}, "12.1"},
{"\U0001f386", "fireworks", []string{"fireworks"}, "6.0"},
{"\U0001f313", "first quarter moon", []string{"first_quarter_moon"}, "6.0"},
{"\U0001f31b", "first quarter moon face", []string{"first_quarter_moon_with_face"}, "6.0"},
{"\U0001f41f", "fish", []string{"fish"}, "6.0"},
{"\U0001f365", "fish cake with swirl", []string{"fish_cake"}, "6.0"},
{"\U0001f3a3", "fishing pole", []string{"fishing_pole_and_fish"}, "6.0"},
{"\U0001f91b", "left-facing fist", []string{"fist_left"}, "9.0"},
{"\U0001f44a", "oncoming fist", []string{"fist_oncoming", "facepunch", "punch"}, "6.0"},
{"\u270a", "raised fist", []string{"fist_raised", "fist"}, "6.0"},
{"\U0001f91c", "right-facing fist", []string{"fist_right"}, "9.0"},
{"\U0001f38f", "carp streamer", []string{"flags"}, "6.0"},
{"\U0001f9a9", "flamingo", []string{"flamingo"}, "12.0"},
{"\U0001f526", "flashlight", []string{"flashlight"}, "6.0"},
{"\U0001f97f", "flat shoe", []string{"flat_shoe"}, "11.0"},
{"\u269c\ufe0f", "fleur-de-lis", []string{"fleur_de_lis"}, "4.1"},
{"\U0001f6ec", "airplane arrival", []string{"flight_arrival"}, "7.0"},
{"\U0001f6eb", "airplane departure", []string{"flight_departure"}, "7.0"},
{"\U0001f4be", "floppy disk", []string{"floppy_disk"}, "6.0"},
{"\U0001f3b4", "flower playing cards", []string{"flower_playing_cards"}, "6.0"},
{"\U0001f633", "flushed face", []string{"flushed"}, "6.0"},
{"\U0001f94f", "flying disc", []string{"flying_disc"}, "11.0"},
{"\U0001f6f8", "flying saucer", []string{"flying_saucer"}, "11.0"},
{"\U0001f32b\ufe0f", "fog", []string{"fog"}, "7.0"},
{"\U0001f301", "foggy", []string{"foggy"}, "6.0"},
{"\U0001f9b6", "foot", []string{"foot"}, "11.0"},
{"\U0001f3c8", "american football", []string{"football"}, "6.0"},
{"\U0001f463", "footprints", []string{"footprints"}, "6.0"},
{"\U0001f374", "fork and knife", []string{"fork_and_knife"}, "6.0"},
{"\U0001f960", "fortune cookie", []string{"fortune_cookie"}, "11.0"},
{"\u26f2", "fountain", []string{"fountain"}, "5.2"},
{"\U0001f58b\ufe0f", "fountain pen", []string{"fountain_pen"}, "7.0"},
{"\U0001f340", "four leaf clover", []string{"four_leaf_clover"}, "6.0"},
{"\U0001f98a", "fox", []string{"fox_face"}, "9.0"},
{"\U0001f1eb\U0001f1f7", "flag: France", []string{"fr"}, "6.0"},
{"\U0001f5bc\ufe0f", "framed picture", []string{"framed_picture"}, "7.0"},
{"\U0001f193", "FREE button", []string{"free"}, "6.0"},
{"\U0001f1ec\U0001f1eb", "flag: French Guiana", []string{"french_guiana"}, "6.0"},
{"\U0001f1f5\U0001f1eb", "flag: French Polynesia", []string{"french_polynesia"}, "6.0"},
{"\U0001f1f9\U0001f1eb", "flag: French Southern Territories", []string{"french_southern_territories"}, "6.0"},
{"\U0001f373", "cooking", []string{"fried_egg"}, "6.0"},
{"\U0001f364", "fried shrimp", []string{"fried_shrimp"}, "6.0"},
{"\U0001f35f", "french fries", []string{"fries"}, "6.0"},
{"\U0001f438", "frog", []string{"frog"}, "6.0"},
{"\U0001f626", "frowning face with open mouth", []string{"frowning"}, "6.1"},
{"\u2639\ufe0f", "frowning face", []string{"frowning_face"}, ""},
{"\U0001f64d\u200d\u2642\ufe0f", "man frowning", []string{"frowning_man"}, "6.0"},
{"\U0001f64d", "person frowning", []string{"frowning_person"}, "6.0"},
{"\U0001f64d\u200d\u2640\ufe0f", "woman frowning", []string{"frowning_woman"}, "11.0"},
{"\u26fd", "fuel pump", []string{"fuelpump"}, "5.2"},
{"\U0001f315", "full moon", []string{"full_moon"}, "6.0"},
{"\U0001f31d", "full moon face", []string{"full_moon_with_face"}, "6.0"},
{"\u26b1\ufe0f", "funeral urn", []string{"funeral_urn"}, "4.1"},
{"\U0001f1ec\U0001f1e6", "flag: Gabon", []string{"gabon"}, "6.0"},
{"\U0001f1ec\U0001f1f2", "flag: Gambia", []string{"gambia"}, "6.0"},
{"\U0001f3b2", "game die", []string{"game_die"}, "6.0"},
{"\U0001f9c4", "garlic", []string{"garlic"}, "12.0"},
{"\U0001f1ec\U0001f1e7", "flag: United Kingdom", []string{"gb", "uk"}, "6.0"},
{"\u2699\ufe0f", "gear", []string{"gear"}, "4.1"},
{"\U0001f48e", "gem stone", []string{"gem"}, "6.0"},
{"\u264a", "Gemini", []string{"gemini"}, ""},
{"\U0001f9de", "genie", []string{"genie"}, "11.0"},
{"\U0001f9de\u200d\u2642\ufe0f", "man genie", []string{"genie_man"}, "11.0"},
{"\U0001f9de\u200d\u2640\ufe0f", "woman genie", []string{"genie_woman"}, "11.0"},
{"\U0001f1ec\U0001f1ea", "flag: Georgia", []string{"georgia"}, "6.0"},
{"\U0001f1ec\U0001f1ed", "flag: Ghana", []string{"ghana"}, "6.0"},
{"\U0001f47b", "ghost", []string{"ghost"}, "6.0"},
{"\U0001f1ec\U0001f1ee", "flag: Gibraltar", []string{"gibraltar"}, "6.0"},
{"\U0001f381", "wrapped gift", []string{"gift"}, "6.0"},
{"\U0001f49d", "heart with ribbon", []string{"gift_heart"}, "6.0"},
{"\U0001f992", "giraffe", []string{"giraffe"}, "11.0"},
{"\U0001f467", "girl", []string{"girl"}, "6.0"},
{"\U0001f310", "globe with meridians", []string{"globe_with_meridians"}, "6.0"},
{"\U0001f9e4", "gloves", []string{"gloves"}, "11.0"},
{"\U0001f945", "goal net", []string{"goal_net"}, "9.0"},
{"\U0001f410", "goat", []string{"goat"}, "6.0"},
{"\U0001f97d", "goggles", []string{"goggles"}, "11.0"},
{"\u26f3", "flag in hole", []string{"golf"}, "5.2"},
{"\U0001f3cc\ufe0f", "person golfing", []string{"golfing"}, "7.0"},
{"\U0001f3cc\ufe0f\u200d\u2642\ufe0f", "man golfing", []string{"golfing_man"}, "11.0"},
{"\U0001f3cc\ufe0f\u200d\u2640\ufe0f", "woman golfing", []string{"golfing_woman"}, ""},
{"\U0001f98d", "gorilla", []string{"gorilla"}, "9.0"},
{"\U0001f347", "grapes", []string{"grapes"}, "6.0"},
{"\U0001f1ec\U0001f1f7", "flag: Greece", []string{"greece"}, "6.0"},
{"\U0001f34f", "green apple", []string{"green_apple"}, "6.0"},
{"\U0001f4d7", "green book", []string{"green_book"}, "6.0"},
{"\U0001f7e2", "green circle", []string{"green_circle"}, "12.0"},
{"\U0001f49a", "green heart", []string{"green_heart"}, "6.0"},
{"\U0001f957", "green salad", []string{"green_salad"}, "9.0"},
{"\U0001f7e9", "green square", []string{"green_square"}, "12.0"},
{"\U0001f1ec\U0001f1f1", "flag: Greenland", []string{"greenland"}, "6.0"},
{"\U0001f1ec\U0001f1e9", "flag: Grenada", []string{"grenada"}, "6.0"},
{"\u2755", "white exclamation mark", []string{"grey_exclamation"}, "6.0"},
{"\u2754", "white question mark", []string{"grey_question"}, "6.0"},
{"\U0001f62c", "grimacing face", []string{"grimacing"}, "6.1"},
{"\U0001f601", "beaming face with smiling eyes", []string{"grin"}, "6.0"},
{"\U0001f600", "grinning face", []string{"grinning"}, "6.1"},
{"\U0001f1ec\U0001f1f5", "flag: Guadeloupe", []string{"guadeloupe"}, "6.0"},
{"\U0001f1ec\U0001f1fa", "flag: Guam", []string{"guam"}, "6.0"},
{"\U0001f482", "guard", []string{"guard"}, "6.0"},
{"\U0001f482\u200d\u2642\ufe0f", "man guard", []string{"guardsman"}, "11.0"},
{"\U0001f482\u200d\u2640\ufe0f", "woman guard", []string{"guardswoman"}, "6.0"},
{"\U0001f1ec\U0001f1f9", "flag: Guatemala", []string{"guatemala"}, "6.0"},
{"\U0001f1ec\U0001f1ec", "flag: Guernsey", []string{"guernsey"}, "6.0"},
{"\U0001f9ae", "guide dog", []string{"guide_dog"}, "12.0"},
{"\U0001f1ec\U0001f1f3", "flag: Guinea", []string{"guinea"}, "6.0"},
{"\U0001f1ec\U0001f1fc", "flag: Guinea-Bissau", []string{"guinea_bissau"}, "6.0"},
{"\U0001f3b8", "guitar", []string{"guitar"}, "6.0"},
{"\U0001f52b", "pistol", []string{"gun"}, "6.0"},
{"\U0001f1ec\U0001f1fe", "flag: Guyana", []string{"guyana"}, "6.0"},
{"\U0001f487", "person getting haircut", []string{"haircut"}, "6.0"},
{"\U0001f487\u200d\u2642\ufe0f", "man getting haircut", []string{"haircut_man"}, "6.0"},
{"\U0001f487\u200d\u2640\ufe0f", "woman getting haircut", []string{"haircut_woman"}, "11.0"},
{"\U0001f1ed\U0001f1f9", "flag: Haiti", []string{"haiti"}, "6.0"},
{"\U0001f354", "hamburger", []string{"hamburger"}, "6.0"},
{"\U0001f528", "hammer", []string{"hammer"}, "6.0"},
{"\u2692\ufe0f", "hammer and pick", []string{"hammer_and_pick"}, "4.1"},
{"\U0001f6e0\ufe0f", "hammer and wrench", []string{"hammer_and_wrench"}, "7.0"},
{"\U0001f439", "hamster", []string{"hamster"}, "6.0"},
{"\u270b", "raised hand", []string{"hand", "raised_hand"}, "6.0"},
{"\U0001f92d", "face with hand over mouth", []string{"hand_over_mouth"}, "11.0"},
{"\U0001f45c", "handbag", []string{"handbag"}, "6.0"},
{"\U0001f93e", "person playing handball", []string{"handball_person"}, "11.0"},
{"\U0001f91d", "handshake", []string{"handshake"}, "9.0"},
{"\U0001f4a9", "pile of poo", []string{"hankey", "poop", "shit"}, "6.0"},
{"\U0001f425", "front-facing baby chick", []string{"hatched_chick"}, "6.0"},
{"\U0001f423", "hatching chick", []string{"hatching_chick"}, "6.0"},
{"\U0001f3a7", "headphone", []string{"headphones"}, "6.0"},
{"\U0001f9d1\u200d\u2695\ufe0f", "health worker", []string{"health_worker"}, "12.1"},
{"\U0001f649", "hear-no-evil monkey", []string{"hear_no_evil"}, "6.0"},
{"\U0001f1ed\U0001f1f2", "flag: Heard & McDonald Islands", []string{"heard_mcdonald_islands"}, "11.0"},
{"\u2764\ufe0f", "red heart", []string{"heart"}, ""},
{"\U0001f49f", "heart decoration", []string{"heart_decoration"}, "6.0"},
{"\U0001f60d", "smiling face with heart-eyes", []string{"heart_eyes"}, "6.0"},
{"\U0001f63b", "smiling cat with heart-eyes", []string{"heart_eyes_cat"}, "6.0"},
{"\U0001f493", "beating heart", []string{"heartbeat"}, "6.0"},
{"\U0001f497", "growing heart", []string{"heartpulse"}, "6.0"},
{"\u2665\ufe0f", "heart suit", []string{"hearts"}, ""},
{"\u2714\ufe0f", "check mark", []string{"heavy_check_mark"}, ""},
{"\u2797", "divide", []string{"heavy_division_sign"}, "6.0"},
{"\U0001f4b2", "heavy dollar sign", []string{"heavy_dollar_sign"}, "6.0"},
{"\u2763\ufe0f", "heart exclamation", []string{"heavy_heart_exclamation"}, ""},
{"\u2796", "minus", []string{"heavy_minus_sign"}, "6.0"},
{"\u2716\ufe0f", "multiply", []string{"heavy_multiplication_x"}, ""},
{"\u2795", "plus", []string{"heavy_plus_sign"}, "6.0"},
{"\U0001f994", "hedgehog", []string{"hedgehog"}, "11.0"},
{"\U0001f681", "helicopter", []string{"helicopter"}, "6.0"},
{"\U0001f33f", "herb", []string{"herb"}, "6.0"},
{"\U0001f33a", "hibiscus", []string{"hibiscus"}, "6.0"},
{"\U0001f506", "bright button", []string{"high_brightness"}, "6.0"},
{"\U0001f460", "high-heeled shoe", []string{"high_heel"}, "6.0"},
{"\U0001f97e", "hiking boot", []string{"hiking_boot"}, "11.0"},
{"\U0001f6d5", "hindu temple", []string{"hindu_temple"}, "12.0"},
{"\U0001f99b", "hippopotamus", []string{"hippopotamus"}, "11.0"},
{"\U0001f52a", "kitchen knife", []string{"hocho", "knife"}, "6.0"},
{"\U0001f573\ufe0f", "hole", []string{"hole"}, "7.0"},
{"\U0001f1ed\U0001f1f3", "flag: Honduras", []string{"honduras"}, "6.0"},
{"\U0001f36f", "honey pot", []string{"honey_pot"}, "6.0"},
{"\U0001f1ed\U0001f1f0", "flag: Hong Kong SAR China", []string{"hong_kong"}, "6.0"},
{"\U0001f434", "horse face", []string{"horse"}, "6.0"},
{"\U0001f3c7", "horse racing", []string{"horse_racing"}, "6.0"},
{"\U0001f3e5", "hospital", []string{"hospital"}, "6.0"},
{"\U0001f975", "hot face", []string{"hot_face"}, "11.0"},
{"\U0001f336\ufe0f", "hot pepper", []string{"hot_pepper"}, "7.0"},
{"\U0001f32d", "hot dog", []string{"hotdog"}, "8.0"},
{"\U0001f3e8", "hotel", []string{"hotel"}, "6.0"},
{"\u2668\ufe0f", "hot springs", []string{"hotsprings"}, ""},
{"\u231b", "hourglass done", []string{"hourglass"}, ""},
{"\u23f3", "hourglass not done", []string{"hourglass_flowing_sand"}, "6.0"},
{"\U0001f3e0", "house", []string{"house"}, "6.0"},
{"\U0001f3e1", "house with garden", []string{"house_with_garden"}, "6.0"},
{"\U0001f3d8\ufe0f", "houses", []string{"houses"}, "7.0"},
{"\U0001f917", "hugging face", []string{"hugs"}, "8.0"},
{"\U0001f1ed\U0001f1fa", "flag: Hungary", []string{"hungary"}, "6.0"},
{"\U0001f62f", "hushed face", []string{"hushed"}, "6.1"},
{"\U0001f368", "ice cream", []string{"ice_cream"}, "6.0"},
{"\U0001f9ca", "ice", []string{"ice_cube"}, "12.0"},
{"\U0001f3d2", "ice hockey", []string{"ice_hockey"}, "8.0"},
{"\u26f8\ufe0f", "ice skate", []string{"ice_skate"}, "5.2"},
{"\U0001f366", "soft ice cream", []string{"icecream"}, "6.0"},
{"\U0001f1ee\U0001f1f8", "flag: Iceland", []string{"iceland"}, "6.0"},
{"\U0001f194", "ID button", []string{"id"}, "6.0"},
{"\U0001f250", "Japanese “bargain” button", []string{"ideograph_advantage"}, "6.0"},
{"\U0001f47f", "angry face with horns", []string{"imp"}, "6.0"},
{"\U0001f4e5", "inbox tray", []string{"inbox_tray"}, "6.0"},
{"\U0001f4e8", "incoming envelope", []string{"incoming_envelope"}, "6.0"},
{"\U0001f1ee\U0001f1f3", "flag: India", []string{"india"}, "6.0"},
{"\U0001f1ee\U0001f1e9", "flag: Indonesia", []string{"indonesia"}, "6.0"},
{"\u267e\ufe0f", "infinity", []string{"infinity"}, "11.0"},
{"\u2139\ufe0f", "information", []string{"information_source"}, "3.0"},
{"\U0001f607", "smiling face with halo", []string{"innocent"}, "6.0"},
{"\u2049\ufe0f", "exclamation question mark", []string{"interrobang"}, "3.0"},
{"\U0001f4f1", "mobile phone", []string{"iphone"}, "6.0"},
{"\U0001f1ee\U0001f1f7", "flag: Iran", []string{"iran"}, "6.0"},
{"\U0001f1ee\U0001f1f6", "flag: Iraq", []string{"iraq"}, "6.0"},
{"\U0001f1ee\U0001f1ea", "flag: Ireland", []string{"ireland"}, "6.0"},
{"\U0001f1ee\U0001f1f2", "flag: Isle of Man", []string{"isle_of_man"}, "6.0"},
{"\U0001f1ee\U0001f1f1", "flag: Israel", []string{"israel"}, "6.0"},
{"\U0001f1ee\U0001f1f9", "flag: Italy", []string{"it"}, "6.0"},
{"\U0001f3ee", "red paper lantern", []string{"izakaya_lantern", "lantern"}, "6.0"},
{"\U0001f383", "jack-o-lantern", []string{"jack_o_lantern"}, "6.0"},
{"\U0001f1ef\U0001f1f2", "flag: Jamaica", []string{"jamaica"}, "6.0"},
{"\U0001f5fe", "map of Japan", []string{"japan"}, "6.0"},
{"\U0001f3ef", "Japanese castle", []string{"japanese_castle"}, "6.0"},
{"\U0001f47a", "goblin", []string{"japanese_goblin"}, "6.0"},
{"\U0001f479", "ogre", []string{"japanese_ogre"}, "6.0"},
{"\U0001f456", "jeans", []string{"jeans"}, "6.0"},
{"\U0001f1ef\U0001f1ea", "flag: Jersey", []string{"jersey"}, "6.0"},
{"\U0001f9e9", "puzzle piece", []string{"jigsaw"}, "11.0"},
{"\U0001f1ef\U0001f1f4", "flag: Jordan", []string{"jordan"}, "6.0"},
{"\U0001f602", "face with tears of joy", []string{"joy"}, "6.0"},
{"\U0001f639", "cat with tears of joy", []string{"joy_cat"}, "6.0"},
{"\U0001f579\ufe0f", "joystick", []string{"joystick"}, "7.0"},
{"\U0001f1ef\U0001f1f5", "flag: Japan", []string{"jp"}, "6.0"},
{"\U0001f9d1\u200d\u2696\ufe0f", "judge", []string{"judge"}, "12.1"},
{"\U0001f939", "person juggling", []string{"juggling_person"}, "11.0"},
{"\U0001f54b", "kaaba", []string{"kaaba"}, "8.0"},
{"\U0001f998", "kangaroo", []string{"kangaroo"}, "11.0"},
{"\U0001f1f0\U0001f1ff", "flag: Kazakhstan", []string{"kazakhstan"}, "6.0"},
{"\U0001f1f0\U0001f1ea", "flag: Kenya", []string{"kenya"}, "6.0"},
{"\U0001f511", "key", []string{"key"}, "6.0"},
{"\u2328\ufe0f", "keyboard", []string{"keyboard"}, ""},
{"\U0001f6f4", "kick scooter", []string{"kick_scooter"}, "9.0"},
{"\U0001f458", "kimono", []string{"kimono"}, "6.0"},
{"\U0001f1f0\U0001f1ee", "flag: Kiribati", []string{"kiribati"}, "6.0"},
{"\U0001f48b", "kiss mark", []string{"kiss"}, "6.0"},
{"\U0001f617", "kissing face", []string{"kissing"}, "6.1"},
{"\U0001f63d", "kissing cat", []string{"kissing_cat"}, "6.0"},
{"\U0001f61a", "kissing face with closed eyes", []string{"kissing_closed_eyes"}, "6.0"},
{"\U0001f618", "face blowing a kiss", []string{"kissing_heart"}, "6.0"},
{"\U0001f619", "kissing face with smiling eyes", []string{"kissing_smiling_eyes"}, "6.1"},
{"\U0001fa81", "kite", []string{"kite"}, "12.0"},
{"\U0001f95d", "kiwi fruit", []string{"kiwi_fruit"}, "9.0"},
{"\U0001f9ce\u200d\u2642\ufe0f", "man kneeling", []string{"kneeling_man"}, "12.0"},
{"\U0001f9ce", "person kneeling", []string{"kneeling_person"}, "12.0"},
{"\U0001f9ce\u200d\u2640\ufe0f", "woman kneeling", []string{"kneeling_woman"}, "12.0"},
{"\U0001f428", "koala", []string{"koala"}, "6.0"},
{"\U0001f201", "Japanese “here” button", []string{"koko"}, "6.0"},
{"\U0001f1fd\U0001f1f0", "flag: Kosovo", []string{"kosovo"}, "6.0"},
{"\U0001f1f0\U0001f1f7", "flag: South Korea", []string{"kr"}, "6.0"},
{"\U0001f1f0\U0001f1fc", "flag: Kuwait", []string{"kuwait"}, "6.0"},
{"\U0001f1f0\U0001f1ec", "flag: Kyrgyzstan", []string{"kyrgyzstan"}, "6.0"},
{"\U0001f97c", "lab coat", []string{"lab_coat"}, "11.0"},
{"\U0001f3f7\ufe0f", "label", []string{"label"}, "7.0"},
{"\U0001f94d", "lacrosse", []string{"lacrosse"}, "11.0"},
{"\U0001f41e", "lady beetle", []string{"lady_beetle"}, "6.0"},
{"\U0001f1f1\U0001f1e6", "flag: Laos", []string{"laos"}, "6.0"},
{"\U0001f535", "blue circle", []string{"large_blue_circle"}, "6.0"},
{"\U0001f537", "large blue diamond", []string{"large_blue_diamond"}, "6.0"},
{"\U0001f536", "large orange diamond", []string{"large_orange_diamond"}, "6.0"},
{"\U0001f317", "last quarter moon", []string{"last_quarter_moon"}, "6.0"},
{"\U0001f31c", "last quarter moon face", []string{"last_quarter_moon_with_face"}, "6.0"},
{"\u271d\ufe0f", "latin cross", []string{"latin_cross"}, ""},
{"\U0001f1f1\U0001f1fb", "flag: Latvia", []string{"latvia"}, "6.0"},
{"\U0001f606", "grinning squinting face", []string{"laughing", "satisfied", "laugh"}, "6.0"},
{"\U0001f96c", "leafy green", []string{"leafy_green"}, "11.0"},
{"\U0001f343", "leaf fluttering in wind", []string{"leaves"}, "6.0"},
{"\U0001f1f1\U0001f1e7", "flag: Lebanon", []string{"lebanon"}, "6.0"},
{"\U0001f4d2", "ledger", []string{"ledger"}, "6.0"},
{"\U0001f6c5", "left luggage", []string{"left_luggage"}, "6.0"},
{"\u2194\ufe0f", "left-right arrow", []string{"left_right_arrow"}, ""},
{"\U0001f5e8\ufe0f", "left speech bubble", []string{"left_speech_bubble"}, "11.0"},
{"\u21a9\ufe0f", "right arrow curving left", []string{"leftwards_arrow_with_hook"}, ""},
{"\U0001f9b5", "leg", []string{"leg"}, "11.0"},
{"\U0001f34b", "lemon", []string{"lemon"}, "6.0"},
{"\u264c", "Leo", []string{"leo"}, ""},
{"\U0001f406", "leopard", []string{"leopard"}, "6.0"},
{"\U0001f1f1\U0001f1f8", "flag: Lesotho", []string{"lesotho"}, "6.0"},
{"\U0001f39a\ufe0f", "level slider", []string{"level_slider"}, "7.0"},
{"\U0001f1f1\U0001f1f7", "flag: Liberia", []string{"liberia"}, "6.0"},
{"\u264e", "Libra", []string{"libra"}, ""},
{"\U0001f1f1\U0001f1fe", "flag: Libya", []string{"libya"}, "6.0"},
{"\U0001f1f1\U0001f1ee", "flag: Liechtenstein", []string{"liechtenstein"}, "6.0"},
{"\U0001f688", "light rail", []string{"light_rail"}, "6.0"},
{"\U0001f517", "link", []string{"link"}, "6.0"},
{"\U0001f981", "lion", []string{"lion"}, "8.0"},
{"\U0001f444", "mouth", []string{"lips"}, "6.0"},
{"\U0001f484", "lipstick", []string{"lipstick"}, "6.0"},
{"\U0001f1f1\U0001f1f9", "flag: Lithuania", []string{"lithuania"}, "6.0"},
{"\U0001f98e", "lizard", []string{"lizard"}, "9.0"},
{"\U0001f999", "llama", []string{"llama"}, "11.0"},
{"\U0001f99e", "lobster", []string{"lobster"}, "11.0"},
{"\U0001f512", "locked", []string{"lock"}, "6.0"},
{"\U0001f50f", "locked with pen", []string{"lock_with_ink_pen"}, "6.0"},
{"\U0001f36d", "lollipop", []string{"lollipop"}, "6.0"},
{"\u27bf", "double curly loop", []string{"loop"}, "6.0"},
{"\U0001f9f4", "lotion bottle", []string{"lotion_bottle"}, "11.0"},
{"\U0001f9d8", "person in lotus position", []string{"lotus_position"}, "11.0"},
{"\U0001f9d8\u200d\u2642\ufe0f", "man in lotus position", []string{"lotus_position_man"}, "11.0"},
{"\U0001f9d8\u200d\u2640\ufe0f", "woman in lotus position", []string{"lotus_position_woman"}, "11.0"},
{"\U0001f50a", "speaker high volume", []string{"loud_sound"}, "6.0"},
{"\U0001f4e2", "loudspeaker", []string{"loudspeaker"}, "6.0"},
{"\U0001f3e9", "love hotel", []string{"love_hotel"}, "6.0"},
{"\U0001f48c", "love letter", []string{"love_letter"}, "6.0"},
{"\U0001f91f", "love-you gesture", []string{"love_you_gesture"}, "11.0"},
{"\U0001f505", "dim button", []string{"low_brightness"}, "6.0"},
{"\U0001f9f3", "luggage", []string{"luggage"}, "11.0"},
{"\U0001f1f1\U0001f1fa", "flag: Luxembourg", []string{"luxembourg"}, "6.0"},
{"\U0001f925", "lying face", []string{"lying_face"}, "9.0"},
{"\u24c2\ufe0f", "circled M", []string{"m"}, ""},
{"\U0001f1f2\U0001f1f4", "flag: Macao SAR China", []string{"macau"}, "6.0"},
{"\U0001f1f2\U0001f1f0", "flag: North Macedonia", []string{"macedonia"}, "6.0"},
{"\U0001f1f2\U0001f1ec", "flag: Madagascar", []string{"madagascar"}, "6.0"},
{"\U0001f50d", "magnifying glass tilted left", []string{"mag"}, "6.0"},
{"\U0001f50e", "magnifying glass tilted right", []string{"mag_right"}, "6.0"},
{"\U0001f9d9", "mage", []string{"mage"}, "11.0"},
{"\U0001f9d9\u200d\u2642\ufe0f", "man mage", []string{"mage_man"}, "11.0"},
{"\U0001f9d9\u200d\u2640\ufe0f", "woman mage", []string{"mage_woman"}, "11.0"},
{"\U0001f9f2", "magnet", []string{"magnet"}, "11.0"},
{"\U0001f004", "mahjong red dragon", []string{"mahjong"}, ""},
{"\U0001f4eb", "closed mailbox with raised flag", []string{"mailbox"}, "6.0"},
{"\U0001f4ea", "closed mailbox with lowered flag", []string{"mailbox_closed"}, "6.0"},
{"\U0001f4ec", "open mailbox with raised flag", []string{"mailbox_with_mail"}, "6.0"},
{"\U0001f4ed", "open mailbox with lowered flag", []string{"mailbox_with_no_mail"}, "6.0"},
{"\U0001f1f2\U0001f1fc", "flag: Malawi", []string{"malawi"}, "6.0"},
{"\U0001f1f2\U0001f1fe", "flag: Malaysia", []string{"malaysia"}, "6.0"},
{"\U0001f1f2\U0001f1fb", "flag: Maldives", []string{"maldives"}, "6.0"},
{"\U0001f575\ufe0f\u200d\u2642\ufe0f", "man detective", []string{"male_detective"}, "11.0"},
{"\u2642\ufe0f", "male sign", []string{"male_sign"}, "11.0"},
{"\U0001f1f2\U0001f1f1", "flag: Mali", []string{"mali"}, "6.0"},
{"\U0001f1f2\U0001f1f9", "flag: Malta", []string{"malta"}, "6.0"},
{"\U0001f468", "man", []string{"man"}, "6.0"},
{"\U0001f468\u200d\U0001f3a8", "man artist", []string{"man_artist"}, ""},
{"\U0001f468\u200d\U0001f680", "man astronaut", []string{"man_astronaut"}, ""},
{"\U0001f938\u200d\u2642\ufe0f", "man cartwheeling", []string{"man_cartwheeling"}, ""},
{"\U0001f468\u200d\U0001f373", "man cook", []string{"man_cook"}, ""},
{"\U0001f57a", "man dancing", []string{"man_dancing"}, "9.0"},
{"\U0001f926\u200d\u2642\ufe0f", "man facepalming", []string{"man_facepalming"}, "9.0"},
{"\U0001f468\u200d\U0001f3ed", "man factory worker", []string{"man_factory_worker"}, ""},
{"\U0001f468\u200d\U0001f33e", "man farmer", []string{"man_farmer"}, ""},
{"\U0001f468\u200d\U0001f692", "man firefighter", []string{"man_firefighter"}, ""},
{"\U0001f468\u200d\u2695\ufe0f", "man health worker", []string{"man_health_worker"}, ""},
{"\U0001f468\u200d\U0001f9bd", "man in manual wheelchair", []string{"man_in_manual_wheelchair"}, "12.0"},
{"\U0001f468\u200d\U0001f9bc", "man in motorized wheelchair", []string{"man_in_motorized_wheelchair"}, "12.0"},
{"\U0001f468\u200d\u2696\ufe0f", "man judge", []string{"man_judge"}, ""},
{"\U0001f939\u200d\u2642\ufe0f", "man juggling", []string{"man_juggling"}, "9.0"},
{"\U0001f468\u200d\U0001f527", "man mechanic", []string{"man_mechanic"}, ""},
{"\U0001f468\u200d\U0001f4bc", "man office worker", []string{"man_office_worker"}, ""},
{"\U0001f468\u200d\u2708\ufe0f", "man pilot", []string{"man_pilot"}, ""},
{"\U0001f93e\u200d\u2642\ufe0f", "man playing handball", []string{"man_playing_handball"}, "9.0"},
{"\U0001f93d\u200d\u2642\ufe0f", "man playing water polo", []string{"man_playing_water_polo"}, "9.0"},
{"\U0001f468\u200d\U0001f52c", "man scientist", []string{"man_scientist"}, ""},
{"\U0001f937\u200d\u2642\ufe0f", "man shrugging", []string{"man_shrugging"}, "9.0"},
{"\U0001f468\u200d\U0001f3a4", "man singer", []string{"man_singer"}, ""},
{"\U0001f468\u200d\U0001f393", "man student", []string{"man_student"}, ""},
{"\U0001f468\u200d\U0001f3eb", "man teacher", []string{"man_teacher"}, ""},
{"\U0001f468\u200d\U0001f4bb", "man technologist", []string{"man_technologist"}, ""},
{"\U0001f472", "person with skullcap", []string{"man_with_gua_pi_mao"}, "6.0"},
{"\U0001f468\u200d\U0001f9af", "man with white cane", []string{"man_with_probing_cane"}, "12.0"},
{"\U0001f473\u200d\u2642\ufe0f", "man wearing turban", []string{"man_with_turban"}, "11.0"},
{"\U0001f96d", "mango", []string{"mango"}, "11.0"},
{"\U0001f45e", "man’s shoe", []string{"mans_shoe", "shoe"}, "6.0"},
{"\U0001f570\ufe0f", "mantelpiece clock", []string{"mantelpiece_clock"}, "7.0"},
{"\U0001f9bd", "manual wheelchair", []string{"manual_wheelchair"}, "12.0"},
{"\U0001f341", "maple leaf", []string{"maple_leaf"}, "6.0"},
{"\U0001f1f2\U0001f1ed", "flag: Marshall Islands", []string{"marshall_islands"}, "6.0"},
{"\U0001f94b", "martial arts uniform", []string{"martial_arts_uniform"}, "9.0"},
{"\U0001f1f2\U0001f1f6", "flag: Martinique", []string{"martinique"}, "6.0"},
{"\U0001f637", "face with medical mask", []string{"mask"}, "6.0"},
{"\U0001f486", "person getting massage", []string{"massage"}, "6.0"},
{"\U0001f486\u200d\u2642\ufe0f", "man getting massage", []string{"massage_man"}, "6.0"},
{"\U0001f486\u200d\u2640\ufe0f", "woman getting massage", []string{"massage_woman"}, "11.0"},
{"\U0001f9c9", "mate", []string{"mate"}, "12.0"},
{"\U0001f1f2\U0001f1f7", "flag: Mauritania", []string{"mauritania"}, "6.0"},
{"\U0001f1f2\U0001f1fa", "flag: Mauritius", []string{"mauritius"}, "6.0"},
{"\U0001f1fe\U0001f1f9", "flag: Mayotte", []string{"mayotte"}, "6.0"},
{"\U0001f356", "meat on bone", []string{"meat_on_bone"}, "6.0"},
{"\U0001f9d1\u200d\U0001f527", "mechanic", []string{"mechanic"}, "12.1"},
{"\U0001f9be", "mechanical arm", []string{"mechanical_arm"}, "12.0"},
{"\U0001f9bf", "mechanical leg", []string{"mechanical_leg"}, "12.0"},
{"\U0001f396\ufe0f", "military medal", []string{"medal_military"}, "7.0"},
{"\U0001f3c5", "sports medal", []string{"medal_sports"}, "7.0"},
{"\u2695\ufe0f", "medical symbol", []string{"medical_symbol"}, "11.0"},
{"\U0001f4e3", "megaphone", []string{"mega"}, "6.0"},
{"\U0001f348", "melon", []string{"melon"}, "6.0"},
{"\U0001f4dd", "memo", []string{"memo", "pencil"}, "6.0"},
{"\U0001f93c\u200d\u2642\ufe0f", "men wrestling", []string{"men_wrestling"}, "9.0"},
{"\U0001f54e", "menorah", []string{"menorah"}, "8.0"},
{"\U0001f6b9", "men’s room", []string{"mens"}, "6.0"},
{"\U0001f9dc\u200d\u2640\ufe0f", "mermaid", []string{"mermaid"}, "11.0"},
{"\U0001f9dc\u200d\u2642\ufe0f", "merman", []string{"merman"}, "11.0"},
{"\U0001f9dc", "merperson", []string{"merperson"}, "11.0"},
{"\U0001f918", "sign of the horns", []string{"metal"}, "8.0"},
{"\U0001f687", "metro", []string{"metro"}, "6.0"},
{"\U0001f1f2\U0001f1fd", "flag: Mexico", []string{"mexico"}, "6.0"},
{"\U0001f9a0", "microbe", []string{"microbe"}, "11.0"},
{"\U0001f1eb\U0001f1f2", "flag: Micronesia", []string{"micronesia"}, "6.0"},
{"\U0001f3a4", "microphone", []string{"microphone"}, "6.0"},
{"\U0001f52c", "microscope", []string{"microscope"}, "6.0"},
{"\U0001f595", "middle finger", []string{"middle_finger", "fu"}, "7.0"},
{"\U0001f95b", "glass of milk", []string{"milk_glass"}, "9.0"},
{"\U0001f30c", "milky way", []string{"milky_way"}, "6.0"},
{"\U0001f690", "minibus", []string{"minibus"}, "6.0"},
{"\U0001f4bd", "computer disk", []string{"minidisc"}, "6.0"},
{"\U0001f4f4", "mobile phone off", []string{"mobile_phone_off"}, "6.0"},
{"\U0001f1f2\U0001f1e9", "flag: Moldova", []string{"moldova"}, "6.0"},
{"\U0001f1f2\U0001f1e8", "flag: Monaco", []string{"monaco"}, "6.0"},
{"\U0001f911", "money-mouth face", []string{"money_mouth_face"}, "8.0"},
{"\U0001f4b8", "money with wings", []string{"money_with_wings"}, "6.0"},
{"\U0001f4b0", "money bag", []string{"moneybag"}, "6.0"},
{"\U0001f1f2\U0001f1f3", "flag: Mongolia", []string{"mongolia"}, "6.0"},
{"\U0001f412", "monkey", []string{"monkey"}, "6.0"},
{"\U0001f435", "monkey face", []string{"monkey_face"}, "6.0"},
{"\U0001f9d0", "face with monocle", []string{"monocle_face"}, "11.0"},
{"\U0001f69d", "monorail", []string{"monorail"}, "6.0"},
{"\U0001f1f2\U0001f1ea", "flag: Montenegro", []string{"montenegro"}, "6.0"},
{"\U0001f1f2\U0001f1f8", "flag: Montserrat", []string{"montserrat"}, "6.0"},
{"\U0001f314", "waxing gibbous moon", []string{"moon", "waxing_gibbous_moon"}, "6.0"},
{"\U0001f96e", "moon cake", []string{"moon_cake"}, "11.0"},
{"\U0001f1f2\U0001f1e6", "flag: Morocco", []string{"morocco"}, "6.0"},
{"\U0001f393", "graduation cap", []string{"mortar_board"}, "6.0"},
{"\U0001f54c", "mosque", []string{"mosque"}, "8.0"},
{"\U0001f99f", "mosquito", []string{"mosquito"}, "11.0"},
{"\U0001f6e5\ufe0f", "motor boat", []string{"motor_boat"}, "7.0"},
{"\U0001f6f5", "motor scooter", []string{"motor_scooter"}, "9.0"},
{"\U0001f3cd\ufe0f", "motorcycle", []string{"motorcycle"}, "7.0"},
{"\U0001f9bc", "motorized wheelchair", []string{"motorized_wheelchair"}, "12.0"},
{"\U0001f6e3\ufe0f", "motorway", []string{"motorway"}, "7.0"},
{"\U0001f5fb", "mount fuji", []string{"mount_fuji"}, "6.0"},
{"\u26f0\ufe0f", "mountain", []string{"mountain"}, "5.2"},
{"\U0001f6b5", "person mountain biking", []string{"mountain_bicyclist"}, "6.0"},
{"\U0001f6b5\u200d\u2642\ufe0f", "man mountain biking", []string{"mountain_biking_man"}, "11.0"},
{"\U0001f6b5\u200d\u2640\ufe0f", "woman mountain biking", []string{"mountain_biking_woman"}, "6.0"},
{"\U0001f6a0", "mountain cableway", []string{"mountain_cableway"}, "6.0"},
{"\U0001f69e", "mountain railway", []string{"mountain_railway"}, "6.0"},
{"\U0001f3d4\ufe0f", "snow-capped mountain", []string{"mountain_snow"}, "7.0"},
{"\U0001f42d", "mouse face", []string{"mouse"}, "6.0"},
{"\U0001f401", "mouse", []string{"mouse2"}, "6.0"},
{"\U0001f3a5", "movie camera", []string{"movie_camera"}, "6.0"},
{"\U0001f5ff", "moai", []string{"moyai"}, "6.0"},
{"\U0001f1f2\U0001f1ff", "flag: Mozambique", []string{"mozambique"}, "6.0"},
{"\U0001f936", "Mrs. Claus", []string{"mrs_claus"}, "9.0"},
{"\U0001f4aa", "flexed biceps", []string{"muscle"}, "6.0"},
{"\U0001f344", "mushroom", []string{"mushroom"}, "6.0"},
{"\U0001f3b9", "musical keyboard", []string{"musical_keyboard"}, "6.0"},
{"\U0001f3b5", "musical note", []string{"musical_note"}, "6.0"},
{"\U0001f3bc", "musical score", []string{"musical_score"}, "6.0"},
{"\U0001f507", "muted speaker", []string{"mute"}, "6.0"},
{"\U0001f1f2\U0001f1f2", "flag: Myanmar (Burma)", []string{"myanmar"}, "6.0"},
{"\U0001f485", "nail polish", []string{"nail_care"}, "6.0"},
{"\U0001f4db", "name badge", []string{"name_badge"}, "6.0"},
{"\U0001f1f3\U0001f1e6", "flag: Namibia", []string{"namibia"}, "6.0"},
{"\U0001f3de\ufe0f", "national park", []string{"national_park"}, "7.0"},
{"\U0001f1f3\U0001f1f7", "flag: Nauru", []string{"nauru"}, "6.0"},
{"\U0001f922", "nauseated face", []string{"nauseated_face"}, "9.0"},
{"\U0001f9ff", "nazar amulet", []string{"nazar_amulet"}, "11.0"},
{"\U0001f454", "necktie", []string{"necktie"}, "6.0"},
{"\u274e", "cross mark button", []string{"negative_squared_cross_mark"}, "6.0"},
{"\U0001f1f3\U0001f1f5", "flag: Nepal", []string{"nepal"}, "6.0"},
{"\U0001f913", "nerd face", []string{"nerd_face"}, "8.0"},
{"\U0001f1f3\U0001f1f1", "flag: Netherlands", []string{"netherlands"}, "6.0"},
{"\U0001f610", "neutral face", []string{"neutral_face"}, "6.0"},
{"\U0001f195", "NEW button", []string{"new"}, "6.0"},
{"\U0001f1f3\U0001f1e8", "flag: New Caledonia", []string{"new_caledonia"}, "6.0"},
{"\U0001f311", "new moon", []string{"new_moon"}, "6.0"},
{"\U0001f31a", "new moon face", []string{"new_moon_with_face"}, "6.0"},
{"\U0001f1f3\U0001f1ff", "flag: New Zealand", []string{"new_zealand"}, "6.0"},
{"\U0001f4f0", "newspaper", []string{"newspaper"}, "6.0"},
{"\U0001f5de\ufe0f", "rolled-up newspaper", []string{"newspaper_roll"}, "7.0"},
{"\u23ed\ufe0f", "next track button", []string{"next_track_button"}, "6.0"},
{"\U0001f196", "NG button", []string{"ng"}, "6.0"},
{"\U0001f1f3\U0001f1ee", "flag: Nicaragua", []string{"nicaragua"}, "6.0"},
{"\U0001f1f3\U0001f1ea", "flag: Niger", []string{"niger"}, "6.0"},
{"\U0001f1f3\U0001f1ec", "flag: Nigeria", []string{"nigeria"}, "6.0"},
{"\U0001f303", "night with stars", []string{"night_with_stars"}, "6.0"},
{"\U0001f1f3\U0001f1fa", "flag: Niue", []string{"niue"}, "6.0"},
{"\U0001f515", "bell with slash", []string{"no_bell"}, "6.0"},
{"\U0001f6b3", "no bicycles", []string{"no_bicycles"}, "6.0"},
{"\u26d4", "no entry", []string{"no_entry"}, "5.2"},
{"\U0001f6ab", "prohibited", []string{"no_entry_sign"}, "6.0"},
{"\U0001f645", "person gesturing NO", []string{"no_good"}, "6.0"},
{"\U0001f645\u200d\u2642\ufe0f", "man gesturing NO", []string{"no_good_man", "ng_man"}, "6.0"},
{"\U0001f645\u200d\u2640\ufe0f", "woman gesturing NO", []string{"no_good_woman", "ng_woman"}, "11.0"},
{"\U0001f4f5", "no mobile phones", []string{"no_mobile_phones"}, "6.0"},
{"\U0001f636", "face without mouth", []string{"no_mouth"}, "6.0"},
{"\U0001f6b7", "no pedestrians", []string{"no_pedestrians"}, "6.0"},
{"\U0001f6ad", "no smoking", []string{"no_smoking"}, "6.0"},
{"\U0001f6b1", "non-potable water", []string{"non-potable_water"}, "6.0"},
{"\U0001f1f3\U0001f1eb", "flag: Norfolk Island", []string{"norfolk_island"}, "6.0"},
{"\U0001f1f0\U0001f1f5", "flag: North Korea", []string{"north_korea"}, "6.0"},
{"\U0001f1f2\U0001f1f5", "flag: Northern Mariana Islands", []string{"northern_mariana_islands"}, "6.0"},
{"\U0001f1f3\U0001f1f4", "flag: Norway", []string{"norway"}, "6.0"},
{"\U0001f443", "nose", []string{"nose"}, "6.0"},
{"\U0001f4d3", "notebook", []string{"notebook"}, "6.0"},
{"\U0001f4d4", "notebook with decorative cover", []string{"notebook_with_decorative_cover"}, "6.0"},
{"\U0001f3b6", "musical notes", []string{"notes"}, "6.0"},
{"\U0001f529", "nut and bolt", []string{"nut_and_bolt"}, "6.0"},
{"\u2b55", "hollow red circle", []string{"o"}, "5.2"},
{"\U0001f17e\ufe0f", "O button (blood type)", []string{"o2"}, "6.0"},
{"\U0001f30a", "water wave", []string{"ocean"}, "6.0"},
{"\U0001f419", "octopus", []string{"octopus"}, "6.0"},
{"\U0001f362", "oden", []string{"oden"}, "6.0"},
{"\U0001f3e2", "office building", []string{"office"}, "6.0"},
{"\U0001f9d1\u200d\U0001f4bc", "office worker", []string{"office_worker"}, "12.1"},
{"\U0001f6e2\ufe0f", "oil drum", []string{"oil_drum"}, "7.0"},
{"\U0001f197", "OK button", []string{"ok"}, "6.0"},
{"\U0001f44c", "OK hand", []string{"ok_hand"}, "6.0"},
{"\U0001f646\u200d\u2642\ufe0f", "man gesturing OK", []string{"ok_man"}, "6.0"},
{"\U0001f646", "person gesturing OK", []string{"ok_person"}, "6.0"},
{"\U0001f646\u200d\u2640\ufe0f", "woman gesturing OK", []string{"ok_woman"}, "11.0"},
{"\U0001f5dd\ufe0f", "old key", []string{"old_key"}, "7.0"},
{"\U0001f9d3", "older person", []string{"older_adult"}, "11.0"},
{"\U0001f474", "old man", []string{"older_man"}, "6.0"},
{"\U0001f475", "old woman", []string{"older_woman"}, "6.0"},
{"\U0001f549\ufe0f", "om", []string{"om"}, "7.0"},
{"\U0001f1f4\U0001f1f2", "flag: Oman", []string{"oman"}, "6.0"},
{"\U0001f51b", "ON! arrow", []string{"on"}, "6.0"},
{"\U0001f698", "oncoming automobile", []string{"oncoming_automobile"}, "6.0"},
{"\U0001f68d", "oncoming bus", []string{"oncoming_bus"}, "6.0"},
{"\U0001f694", "oncoming police car", []string{"oncoming_police_car"}, "6.0"},
{"\U0001f696", "oncoming taxi", []string{"oncoming_taxi"}, "6.0"},
{"\U0001fa71", "one-piece swimsuit", []string{"one_piece_swimsuit"}, "12.0"},
{"\U0001f9c5", "onion", []string{"onion"}, "12.0"},
{"\U0001f4c2", "open file folder", []string{"open_file_folder"}, "6.0"},
{"\U0001f450", "open hands", []string{"open_hands"}, "6.0"},
{"\U0001f62e", "face with open mouth", []string{"open_mouth"}, "6.1"},
{"\u2602\ufe0f", "umbrella", []string{"open_umbrella"}, ""},
{"\u26ce", "Ophiuchus", []string{"ophiuchus"}, "6.0"},
{"\U0001f4d9", "orange book", []string{"orange_book"}, "6.0"},
{"\U0001f7e0", "orange circle", []string{"orange_circle"}, "12.0"},
{"\U0001f9e1", "orange heart", []string{"orange_heart"}, "11.0"},
{"\U0001f7e7", "orange square", []string{"orange_square"}, "12.0"},
{"\U0001f9a7", "orangutan", []string{"orangutan"}, "12.0"},
{"\u2626\ufe0f", "orthodox cross", []string{"orthodox_cross"}, ""},
{"\U0001f9a6", "otter", []string{"otter"}, "12.0"},
{"\U0001f4e4", "outbox tray", []string{"outbox_tray"}, "6.0"},
{"\U0001f989", "owl", []string{"owl"}, "9.0"},
{"\U0001f402", "ox", []string{"ox"}, "6.0"},
{"\U0001f9aa", "oyster", []string{"oyster"}, "12.0"},
{"\U0001f4e6", "package", []string{"package"}, "6.0"},
{"\U0001f4c4", "page facing up", []string{"page_facing_up"}, "6.0"},
{"\U0001f4c3", "page with curl", []string{"page_with_curl"}, "6.0"},
{"\U0001f4df", "pager", []string{"pager"}, "6.0"},
{"\U0001f58c\ufe0f", "paintbrush", []string{"paintbrush"}, "7.0"},
{"\U0001f1f5\U0001f1f0", "flag: Pakistan", []string{"pakistan"}, "6.0"},
{"\U0001f1f5\U0001f1fc", "flag: Palau", []string{"palau"}, "6.0"},
{"\U0001f1f5\U0001f1f8", "flag: Palestinian Territories", []string{"palestinian_territories"}, "6.0"},
{"\U0001f334", "palm tree", []string{"palm_tree"}, "6.0"},
{"\U0001f932", "palms up together", []string{"palms_up_together"}, "11.0"},
{"\U0001f1f5\U0001f1e6", "flag: Panama", []string{"panama"}, "6.0"},
{"\U0001f95e", "pancakes", []string{"pancakes"}, "9.0"},
{"\U0001f43c", "panda", []string{"panda_face"}, "6.0"},
{"\U0001f4ce", "paperclip", []string{"paperclip"}, "6.0"},
{"\U0001f587\ufe0f", "linked paperclips", []string{"paperclips"}, "7.0"},
{"\U0001f1f5\U0001f1ec", "flag: Papua New Guinea", []string{"papua_new_guinea"}, "6.0"},
{"\U0001fa82", "parachute", []string{"parachute"}, "12.0"},
{"\U0001f1f5\U0001f1fe", "flag: Paraguay", []string{"paraguay"}, "6.0"},
{"\u26f1\ufe0f", "umbrella on ground", []string{"parasol_on_ground"}, "5.2"},
{"\U0001f17f\ufe0f", "P button", []string{"parking"}, "5.2"},
{"\U0001f99c", "parrot", []string{"parrot"}, "11.0"},
{"\u303d\ufe0f", "part alternation mark", []string{"part_alternation_mark"}, "3.2"},
{"\u26c5", "sun behind cloud", []string{"partly_sunny"}, "5.2"},
{"\U0001f973", "partying face", []string{"partying_face"}, "11.0"},
{"\U0001f6f3\ufe0f", "passenger ship", []string{"passenger_ship"}, "7.0"},
{"\U0001f6c2", "passport control", []string{"passport_control"}, "6.0"},
{"\u23f8\ufe0f", "pause button", []string{"pause_button"}, "7.0"},
{"\u262e\ufe0f", "peace symbol", []string{"peace_symbol"}, ""},
{"\U0001f351", "peach", []string{"peach"}, "6.0"},
{"\U0001f99a", "peacock", []string{"peacock"}, "11.0"},
{"\U0001f95c", "peanuts", []string{"peanuts"}, "9.0"},
{"\U0001f350", "pear", []string{"pear"}, "6.0"},
{"\U0001f58a\ufe0f", "pen", []string{"pen"}, "7.0"},
{"\u270f\ufe0f", "pencil", []string{"pencil2"}, ""},
{"\U0001f427", "penguin", []string{"penguin"}, "6.0"},
{"\U0001f614", "pensive face", []string{"pensive"}, "6.0"},
{"\U0001f9d1\u200d\U0001f91d\u200d\U0001f9d1", "people holding hands", []string{"people_holding_hands"}, "12.0"},
{"\U0001f3ad", "performing arts", []string{"performing_arts"}, "6.0"},
{"\U0001f623", "persevering face", []string{"persevere"}, "6.0"},
{"\U0001f9d1\u200d\U0001f9b2", "person: bald", []string{"person_bald"}, "12.1"},
{"\U0001f9d1\u200d\U0001f9b1", "person: curly hair", []string{"person_curly_hair"}, "12.1"},
{"\U0001f93a", "person fencing", []string{"person_fencing"}, "9.0"},
{"\U0001f9d1\u200d\U0001f9bd", "person in manual wheelchair", []string{"person_in_manual_wheelchair"}, "12.1"},
{"\U0001f9d1\u200d\U0001f9bc", "person in motorized wheelchair", []string{"person_in_motorized_wheelchair"}, "12.1"},
{"\U0001f935", "person in tuxedo", []string{"person_in_tuxedo"}, "9.0"},
{"\U0001f9d1\u200d\U0001f9b0", "person: red hair", []string{"person_red_hair"}, "12.1"},
{"\U0001f9d1\u200d\U0001f9b3", "person: white hair", []string{"person_white_hair"}, "12.1"},
{"\U0001f9d1\u200d\U0001f9af", "person with white cane", []string{"person_with_probing_cane"}, "12.1"},
{"\U0001f473", "person wearing turban", []string{"person_with_turban"}, "6.0"},
{"\U0001f470", "person with veil", []string{"person_with_veil"}, "6.0"},
{"\U0001f1f5\U0001f1ea", "flag: Peru", []string{"peru"}, "6.0"},
{"\U0001f9eb", "petri dish", []string{"petri_dish"}, "11.0"},
{"\U0001f1f5\U0001f1ed", "flag: Philippines", []string{"philippines"}, "6.0"},
{"\u260e\ufe0f", "telephone", []string{"phone", "telephone"}, ""},
{"\u26cf\ufe0f", "pick", []string{"pick"}, "5.2"},
{"\U0001f967", "pie", []string{"pie"}, "11.0"},
{"\U0001f437", "pig face", []string{"pig"}, "6.0"},
{"\U0001f416", "pig", []string{"pig2"}, "6.0"},
{"\U0001f43d", "pig nose", []string{"pig_nose"}, "6.0"},
{"\U0001f48a", "pill", []string{"pill"}, "6.0"},
{"\U0001f9d1\u200d\u2708\ufe0f", "pilot", []string{"pilot"}, "12.1"},
{"\U0001f90f", "pinching hand", []string{"pinching_hand"}, "12.0"},
{"\U0001f34d", "pineapple", []string{"pineapple"}, "6.0"},
{"\U0001f3d3", "ping pong", []string{"ping_pong"}, "8.0"},
{"\U0001f3f4\u200d\u2620\ufe0f", "pirate flag", []string{"pirate_flag"}, "11.0"},
{"\u2653", "Pisces", []string{"pisces"}, ""},
{"\U0001f1f5\U0001f1f3", "flag: Pitcairn Islands", []string{"pitcairn_islands"}, "6.0"},
{"\U0001f355", "pizza", []string{"pizza"}, "6.0"},
{"\U0001f6d0", "place of worship", []string{"place_of_worship"}, "8.0"},
{"\U0001f37d\ufe0f", "fork and knife with plate", []string{"plate_with_cutlery"}, "7.0"},
{"\u23ef\ufe0f", "play or pause button", []string{"play_or_pause_button"}, "6.0"},
{"\U0001f97a", "pleading face", []string{"pleading_face"}, "11.0"},
{"\U0001f447", "backhand index pointing down", []string{"point_down"}, "6.0"},
{"\U0001f448", "backhand index pointing left", []string{"point_left"}, "6.0"},
{"\U0001f449", "backhand index pointing right", []string{"point_right"}, "6.0"},
{"\u261d\ufe0f", "index pointing up", []string{"point_up"}, ""},
{"\U0001f446", "backhand index pointing up", []string{"point_up_2"}, "6.0"},
{"\U0001f1f5\U0001f1f1", "flag: Poland", []string{"poland"}, "6.0"},
{"\U0001f693", "police car", []string{"police_car"}, "6.0"},
{"\U0001f46e", "police officer", []string{"police_officer", "cop"}, "6.0"},
{"\U0001f46e\u200d\u2642\ufe0f", "man police officer", []string{"policeman"}, "11.0"},
{"\U0001f46e\u200d\u2640\ufe0f", "woman police officer", []string{"policewoman"}, "6.0"},
{"\U0001f429", "poodle", []string{"poodle"}, "6.0"},
{"\U0001f37f", "popcorn", []string{"popcorn"}, "8.0"},
{"\U0001f1f5\U0001f1f9", "flag: Portugal", []string{"portugal"}, "6.0"},
{"\U0001f3e3", "Japanese post office", []string{"post_office"}, "6.0"},
{"\U0001f4ef", "postal horn", []string{"postal_horn"}, "6.0"},
{"\U0001f4ee", "postbox", []string{"postbox"}, "6.0"},
{"\U0001f6b0", "potable water", []string{"potable_water"}, "6.0"},
{"\U0001f954", "potato", []string{"potato"}, "9.0"},
{"\U0001f45d", "clutch bag", []string{"pouch"}, "6.0"},
{"\U0001f357", "poultry leg", []string{"poultry_leg"}, "6.0"},
{"\U0001f4b7", "pound banknote", []string{"pound"}, "6.0"},
{"\U0001f63e", "pouting cat", []string{"pouting_cat"}, "6.0"},
{"\U0001f64e", "person pouting", []string{"pouting_face"}, "6.0"},
{"\U0001f64e\u200d\u2642\ufe0f", "man pouting", []string{"pouting_man"}, "6.0"},
{"\U0001f64e\u200d\u2640\ufe0f", "woman pouting", []string{"pouting_woman"}, "11.0"},
{"\U0001f64f", "folded hands", []string{"pray"}, "6.0"},
{"\U0001f4ff", "prayer beads", []string{"prayer_beads"}, "8.0"},
{"\U0001f930", "pregnant woman", []string{"pregnant_woman"}, "9.0"},
{"\U0001f968", "pretzel", []string{"pretzel"}, "11.0"},
{"\u23ee\ufe0f", "last track button", []string{"previous_track_button"}, "6.0"},
{"\U0001f934", "prince", []string{"prince"}, "9.0"},
{"\U0001f478", "princess", []string{"princess"}, "6.0"},
{"\U0001f5a8\ufe0f", "printer", []string{"printer"}, "7.0"},
{"\U0001f9af", "white cane", []string{"probing_cane"}, "12.0"},
{"\U0001f1f5\U0001f1f7", "flag: Puerto Rico", []string{"puerto_rico"}, "6.0"},
{"\U0001f7e3", "purple circle", []string{"purple_circle"}, "12.0"},
{"\U0001f49c", "purple heart", []string{"purple_heart"}, "6.0"},
{"\U0001f7ea", "purple square", []string{"purple_square"}, "12.0"},
{"\U0001f45b", "purse", []string{"purse"}, "6.0"},
{"\U0001f4cc", "pushpin", []string{"pushpin"}, "6.0"},
{"\U0001f6ae", "litter in bin sign", []string{"put_litter_in_its_place"}, "6.0"},
{"\U0001f1f6\U0001f1e6", "flag: Qatar", []string{"qatar"}, "6.0"},
{"\u2753", "question mark", []string{"question"}, "6.0"},
{"\U0001f430", "rabbit face", []string{"rabbit"}, "6.0"},
{"\U0001f407", "rabbit", []string{"rabbit2"}, "6.0"},
{"\U0001f99d", "raccoon", []string{"raccoon"}, "11.0"},
{"\U0001f40e", "horse", []string{"racehorse"}, "6.0"},
{"\U0001f3ce\ufe0f", "racing car", []string{"racing_car"}, "7.0"},
{"\U0001f4fb", "radio", []string{"radio"}, "6.0"},
{"\U0001f518", "radio button", []string{"radio_button"}, "6.0"},
{"\u2622\ufe0f", "radioactive", []string{"radioactive"}, ""},
{"\U0001f621", "pouting face", []string{"rage", "pout"}, "6.0"},
{"\U0001f683", "railway car", []string{"railway_car"}, "6.0"},
{"\U0001f6e4\ufe0f", "railway track", []string{"railway_track"}, "7.0"},
{"\U0001f308", "rainbow", []string{"rainbow"}, "6.0"},
{"\U0001f3f3\ufe0f\u200d\U0001f308", "rainbow flag", []string{"rainbow_flag"}, "6.0"},
{"\U0001f91a", "raised back of hand", []string{"raised_back_of_hand"}, "9.0"},
{"\U0001f928", "face with raised eyebrow", []string{"raised_eyebrow"}, "11.0"},
{"\U0001f590\ufe0f", "hand with fingers splayed", []string{"raised_hand_with_fingers_splayed"}, "7.0"},
{"\U0001f64c", "raising hands", []string{"raised_hands"}, "6.0"},
{"\U0001f64b", "person raising hand", []string{"raising_hand"}, "6.0"},
{"\U0001f64b\u200d\u2642\ufe0f", "man raising hand", []string{"raising_hand_man"}, "6.0"},
{"\U0001f64b\u200d\u2640\ufe0f", "woman raising hand", []string{"raising_hand_woman"}, "11.0"},
{"\U0001f40f", "ram", []string{"ram"}, "6.0"},
{"\U0001f35c", "steaming bowl", []string{"ramen"}, "6.0"},
{"\U0001f400", "rat", []string{"rat"}, "6.0"},
{"\U0001fa92", "razor", []string{"razor"}, "12.0"},
{"\U0001f9fe", "receipt", []string{"receipt"}, "11.0"},
{"\u23fa\ufe0f", "record button", []string{"record_button"}, "7.0"},
{"\u267b\ufe0f", "recycling symbol", []string{"recycle"}, "3.2"},
{"\U0001f534", "red circle", []string{"red_circle"}, "6.0"},
{"\U0001f9e7", "red envelope", []string{"red_envelope"}, "11.0"},
{"\U0001f468\u200d\U0001f9b0", "man: red hair", []string{"red_haired_man"}, "11.0"},
{"\U0001f469\u200d\U0001f9b0", "woman: red hair", []string{"red_haired_woman"}, "11.0"},
{"\U0001f7e5", "red square", []string{"red_square"}, "12.0"},
{"\u263a\ufe0f", "smiling face", []string{"relaxed"}, ""},
{"\U0001f60c", "relieved face", []string{"relieved"}, "6.0"},
{"\U0001f397\ufe0f", "reminder ribbon", []string{"reminder_ribbon"}, "7.0"},
{"\U0001f501", "repeat button", []string{"repeat"}, "6.0"},
{"\U0001f502", "repeat single button", []string{"repeat_one"}, "6.0"},
{"\u26d1\ufe0f", "rescue worker’s helmet", []string{"rescue_worker_helmet"}, "5.2"},
{"\U0001f6bb", "restroom", []string{"restroom"}, "6.0"},
{"\U0001f1f7\U0001f1ea", "flag: Réunion", []string{"reunion"}, "6.0"},
{"\U0001f49e", "revolving hearts", []string{"revolving_hearts"}, "6.0"},
{"\u23ea", "fast reverse button", []string{"rewind"}, "6.0"},
{"\U0001f98f", "rhinoceros", []string{"rhinoceros"}, "9.0"},
{"\U0001f380", "ribbon", []string{"ribbon"}, "6.0"},
{"\U0001f35a", "cooked rice", []string{"rice"}, "6.0"},
{"\U0001f359", "rice ball", []string{"rice_ball"}, "6.0"},
{"\U0001f358", "rice cracker", []string{"rice_cracker"}, "6.0"},
{"\U0001f391", "moon viewing ceremony", []string{"rice_scene"}, "6.0"},
{"\U0001f5ef\ufe0f", "right anger bubble", []string{"right_anger_bubble"}, "7.0"},
{"\U0001f48d", "ring", []string{"ring"}, "6.0"},
{"\U0001fa90", "ringed planet", []string{"ringed_planet"}, "12.0"},
{"\U0001f916", "robot", []string{"robot"}, "8.0"},
{"\U0001f680", "rocket", []string{"rocket"}, "6.0"},
{"\U0001f923", "rolling on the floor laughing", []string{"rofl"}, "9.0"},
{"\U0001f644", "face with rolling eyes", []string{"roll_eyes"}, "8.0"},
{"\U0001f9fb", "roll of paper", []string{"roll_of_paper"}, "11.0"},
{"\U0001f3a2", "roller coaster", []string{"roller_coaster"}, "6.0"},
{"\U0001f1f7\U0001f1f4", "flag: Romania", []string{"romania"}, "6.0"},
{"\U0001f413", "rooster", []string{"rooster"}, "6.0"},
{"\U0001f339", "rose", []string{"rose"}, "6.0"},
{"\U0001f3f5\ufe0f", "rosette", []string{"rosette"}, "7.0"},
{"\U0001f6a8", "police car light", []string{"rotating_light"}, "6.0"},
{"\U0001f4cd", "round pushpin", []string{"round_pushpin"}, "6.0"},
{"\U0001f6a3", "person rowing boat", []string{"rowboat"}, "6.0"},
{"\U0001f6a3\u200d\u2642\ufe0f", "man rowing boat", []string{"rowing_man"}, "11.0"},
{"\U0001f6a3\u200d\u2640\ufe0f", "woman rowing boat", []string{"rowing_woman"}, "6.0"},
{"\U0001f1f7\U0001f1fa", "flag: Russia", []string{"ru"}, "6.0"},
{"\U0001f3c9", "rugby football", []string{"rugby_football"}, "6.0"},
{"\U0001f3c3", "person running", []string{"runner", "running"}, "6.0"},
{"\U0001f3c3\u200d\u2642\ufe0f", "man running", []string{"running_man"}, "11.0"},
{"\U0001f3bd", "running shirt", []string{"running_shirt_with_sash"}, "6.0"},
{"\U0001f3c3\u200d\u2640\ufe0f", "woman running", []string{"running_woman"}, "6.0"},
{"\U0001f1f7\U0001f1fc", "flag: Rwanda", []string{"rwanda"}, "6.0"},
{"\U0001f202\ufe0f", "Japanese “service charge” button", []string{"sa"}, "6.0"},
{"\U0001f9f7", "safety pin", []string{"safety_pin"}, "11.0"},
{"\U0001f9ba", "safety vest", []string{"safety_vest"}, "12.0"},
{"\u2650", "Sagittarius", []string{"sagittarius"}, ""},
{"\U0001f376", "sake", []string{"sake"}, "6.0"},
{"\U0001f9c2", "salt", []string{"salt"}, "11.0"},
{"\U0001f1fc\U0001f1f8", "flag: Samoa", []string{"samoa"}, "6.0"},
{"\U0001f1f8\U0001f1f2", "flag: San Marino", []string{"san_marino"}, "6.0"},
{"\U0001f461", "woman’s sandal", []string{"sandal"}, "6.0"},
{"\U0001f96a", "sandwich", []string{"sandwich"}, "11.0"},
{"\U0001f385", "Santa Claus", []string{"santa"}, "6.0"},
{"\U0001f1f8\U0001f1f9", "flag: São Tomé & Príncipe", []string{"sao_tome_principe"}, "6.0"},
{"\U0001f97b", "sari", []string{"sari"}, "12.0"},
{"\U0001f4e1", "satellite antenna", []string{"satellite"}, "6.0"},
{"\U0001f1f8\U0001f1e6", "flag: Saudi Arabia", []string{"saudi_arabia"}, "6.0"},
{"\U0001f9d6\u200d\u2642\ufe0f", "man in steamy room", []string{"sauna_man"}, "11.0"},
{"\U0001f9d6", "person in steamy room", []string{"sauna_person"}, "11.0"},
{"\U0001f9d6\u200d\u2640\ufe0f", "woman in steamy room", []string{"sauna_woman"}, "11.0"},
{"\U0001f995", "sauropod", []string{"sauropod"}, "11.0"},
{"\U0001f3b7", "saxophone", []string{"saxophone"}, "6.0"},
{"\U0001f9e3", "scarf", []string{"scarf"}, "11.0"},
{"\U0001f3eb", "school", []string{"school"}, "6.0"},
{"\U0001f392", "backpack", []string{"school_satchel"}, "6.0"},
{"\U0001f9d1\u200d\U0001f52c", "scientist", []string{"scientist"}, "12.1"},
{"\u2702\ufe0f", "scissors", []string{"scissors"}, ""},
{"\U0001f982", "scorpion", []string{"scorpion"}, "8.0"},
{"\u264f", "Scorpio", []string{"scorpius"}, ""},
{"\U0001f3f4\U000e0067\U000e0062\U000e0073\U000e0063\U000e0074\U000e007f", "flag: Scotland", []string{"scotland"}, "11.0"},
{"\U0001f631", "face screaming in fear", []string{"scream"}, "6.0"},
{"\U0001f640", "weary cat", []string{"scream_cat"}, "6.0"},
{"\U0001f4dc", "scroll", []string{"scroll"}, "6.0"},
{"\U0001f4ba", "seat", []string{"seat"}, "6.0"},
{"\u3299\ufe0f", "Japanese “secret” button", []string{"secret"}, ""},
{"\U0001f648", "see-no-evil monkey", []string{"see_no_evil"}, "6.0"},
{"\U0001f331", "seedling", []string{"seedling"}, "6.0"},
{"\U0001f933", "selfie", []string{"selfie"}, "9.0"},
{"\U0001f1f8\U0001f1f3", "flag: Senegal", []string{"senegal"}, "6.0"},
{"\U0001f1f7\U0001f1f8", "flag: Serbia", []string{"serbia"}, "6.0"},
{"\U0001f415\u200d\U0001f9ba", "service dog", []string{"service_dog"}, "12.0"},
{"\U0001f1f8\U0001f1e8", "flag: Seychelles", []string{"seychelles"}, "6.0"},
{"\U0001f958", "shallow pan of food", []string{"shallow_pan_of_food"}, ""},
{"\u2618\ufe0f", "shamrock", []string{"shamrock"}, "4.1"},
{"\U0001f988", "shark", []string{"shark"}, "9.0"},
{"\U0001f367", "shaved ice", []string{"shaved_ice"}, "6.0"},
{"\U0001f411", "ewe", []string{"sheep"}, "6.0"},
{"\U0001f41a", "spiral shell", []string{"shell"}, "6.0"},
{"\U0001f6e1\ufe0f", "shield", []string{"shield"}, "7.0"},
{"\u26e9\ufe0f", "shinto shrine", []string{"shinto_shrine"}, "5.2"},
{"\U0001f6a2", "ship", []string{"ship"}, "6.0"},
{"\U0001f455", "t-shirt", []string{"shirt", "tshirt"}, "6.0"},
{"\U0001f6cd\ufe0f", "shopping bags", []string{"shopping"}, "7.0"},
{"\U0001f6d2", "shopping cart", []string{"shopping_cart"}, "9.0"},
{"\U0001fa73", "shorts", []string{"shorts"}, "12.0"},
{"\U0001f6bf", "shower", []string{"shower"}, "6.0"},
{"\U0001f990", "shrimp", []string{"shrimp"}, "9.0"},
{"\U0001f937", "person shrugging", []string{"shrug"}, "11.0"},
{"\U0001f92b", "shushing face", []string{"shushing_face"}, "11.0"},
{"\U0001f1f8\U0001f1f1", "flag: Sierra Leone", []string{"sierra_leone"}, "6.0"},
{"\U0001f4f6", "antenna bars", []string{"signal_strength"}, "6.0"},
{"\U0001f1f8\U0001f1ec", "flag: Singapore", []string{"singapore"}, "6.0"},
{"\U0001f9d1\u200d\U0001f3a4", "singer", []string{"singer"}, "12.1"},
{"\U0001f1f8\U0001f1fd", "flag: Sint Maarten", []string{"sint_maarten"}, "6.0"},
{"\U0001f52f", "dotted six-pointed star", []string{"six_pointed_star"}, "6.0"},
{"\U0001f6f9", "skateboard", []string{"skateboard"}, "11.0"},
{"\U0001f3bf", "skis", []string{"ski"}, "6.0"},
{"\u26f7\ufe0f", "skier", []string{"skier"}, "5.2"},
{"\U0001f480", "skull", []string{"skull"}, "6.0"},
{"\u2620\ufe0f", "skull and crossbones", []string{"skull_and_crossbones"}, ""},
{"\U0001f9a8", "skunk", []string{"skunk"}, "12.0"},
{"\U0001f6f7", "sled", []string{"sled"}, "11.0"},
{"\U0001f634", "sleeping face", []string{"sleeping"}, "6.1"},
{"\U0001f6cc", "person in bed", []string{"sleeping_bed"}, "7.0"},
{"\U0001f62a", "sleepy face", []string{"sleepy"}, "6.0"},
{"\U0001f641", "slightly frowning face", []string{"slightly_frowning_face"}, "7.0"},
{"\U0001f642", "slightly smiling face", []string{"slightly_smiling_face"}, "7.0"},
{"\U0001f3b0", "slot machine", []string{"slot_machine"}, "6.0"},
{"\U0001f9a5", "sloth", []string{"sloth"}, "12.0"},
{"\U0001f1f8\U0001f1f0", "flag: Slovakia", []string{"slovakia"}, "6.0"},
{"\U0001f1f8\U0001f1ee", "flag: Slovenia", []string{"slovenia"}, "6.0"},
{"\U0001f6e9\ufe0f", "small airplane", []string{"small_airplane"}, "7.0"},
{"\U0001f539", "small blue diamond", []string{"small_blue_diamond"}, "6.0"},
{"\U0001f538", "small orange diamond", []string{"small_orange_diamond"}, "6.0"},
{"\U0001f53a", "red triangle pointed up", []string{"small_red_triangle"}, "6.0"},
{"\U0001f53b", "red triangle pointed down", []string{"small_red_triangle_down"}, "6.0"},
{"\U0001f604", "grinning face with smiling eyes", []string{"smile"}, "6.0"},
{"\U0001f638", "grinning cat with smiling eyes", []string{"smile_cat"}, "6.0"},
{"\U0001f603", "grinning face with big eyes", []string{"smiley"}, "6.0"},
{"\U0001f63a", "grinning cat", []string{"smiley_cat"}, "6.0"},
{"\U0001f970", "smiling face with hearts", []string{"smiling_face_with_three_hearts"}, "11.0"},
{"\U0001f608", "smiling face with horns", []string{"smiling_imp"}, "6.0"},
{"\U0001f60f", "smirking face", []string{"smirk"}, "6.0"},
{"\U0001f63c", "cat with wry smile", []string{"smirk_cat"}, "6.0"},
{"\U0001f6ac", "cigarette", []string{"smoking"}, "6.0"},
{"\U0001f40c", "snail", []string{"snail"}, "6.0"},
{"\U0001f40d", "snake", []string{"snake"}, "6.0"},
{"\U0001f927", "sneezing face", []string{"sneezing_face"}, "9.0"},
{"\U0001f3c2", "snowboarder", []string{"snowboarder"}, "6.0"},
{"\u2744\ufe0f", "snowflake", []string{"snowflake"}, ""},
{"\u26c4", "snowman without snow", []string{"snowman"}, "5.2"},
{"\u2603\ufe0f", "snowman", []string{"snowman_with_snow"}, ""},
{"\U0001f9fc", "soap", []string{"soap"}, "11.0"},
{"\U0001f62d", "loudly crying face", []string{"sob"}, "6.0"},
{"\u26bd", "soccer ball", []string{"soccer"}, "5.2"},
{"\U0001f9e6", "socks", []string{"socks"}, "11.0"},
{"\U0001f94e", "softball", []string{"softball"}, "11.0"},
{"\U0001f1f8\U0001f1e7", "flag: Solomon Islands", []string{"solomon_islands"}, "6.0"},
{"\U0001f1f8\U0001f1f4", "flag: Somalia", []string{"somalia"}, "6.0"},
{"\U0001f51c", "SOON arrow", []string{"soon"}, "6.0"},
{"\U0001f198", "SOS button", []string{"sos"}, "6.0"},
{"\U0001f509", "speaker medium volume", []string{"sound"}, "6.0"},
{"\U0001f1ff\U0001f1e6", "flag: South Africa", []string{"south_africa"}, "6.0"},
{"\U0001f1ec\U0001f1f8", "flag: South Georgia & South Sandwich Islands", []string{"south_georgia_south_sandwich_islands"}, "6.0"},
{"\U0001f1f8\U0001f1f8", "flag: South Sudan", []string{"south_sudan"}, "6.0"},
{"\U0001f47e", "alien monster", []string{"space_invader"}, "6.0"},
{"\u2660\ufe0f", "spade suit", []string{"spades"}, ""},
{"\U0001f35d", "spaghetti", []string{"spaghetti"}, "6.0"},
{"\u2747\ufe0f", "sparkle", []string{"sparkle"}, ""},
{"\U0001f387", "sparkler", []string{"sparkler"}, "6.0"},
{"\u2728", "sparkles", []string{"sparkles"}, "6.0"},
{"\U0001f496", "sparkling heart", []string{"sparkling_heart"}, "6.0"},
{"\U0001f64a", "speak-no-evil monkey", []string{"speak_no_evil"}, "6.0"},
{"\U0001f508", "speaker low volume", []string{"speaker"}, "6.0"},
{"\U0001f5e3\ufe0f", "speaking head", []string{"speaking_head"}, "7.0"},
{"\U0001f4ac", "speech balloon", []string{"speech_balloon"}, "6.0"},
{"\U0001f6a4", "speedboat", []string{"speedboat"}, "6.0"},
{"\U0001f577\ufe0f", "spider", []string{"spider"}, "7.0"},
{"\U0001f578\ufe0f", "spider web", []string{"spider_web"}, "7.0"},
{"\U0001f5d3\ufe0f", "spiral calendar", []string{"spiral_calendar"}, "7.0"},
{"\U0001f5d2\ufe0f", "spiral notepad", []string{"spiral_notepad"}, "7.0"},
{"\U0001f9fd", "sponge", []string{"sponge"}, "11.0"},
{"\U0001f944", "spoon", []string{"spoon"}, "9.0"},
{"\U0001f991", "squid", []string{"squid"}, "9.0"},
{"\U0001f1f1\U0001f1f0", "flag: Sri Lanka", []string{"sri_lanka"}, "6.0"},
{"\U0001f1e7\U0001f1f1", "flag: St. Barthélemy", []string{"st_barthelemy"}, "6.0"},
{"\U0001f1f8\U0001f1ed", "flag: St. Helena", []string{"st_helena"}, "6.0"},
{"\U0001f1f0\U0001f1f3", "flag: St. Kitts & Nevis", []string{"st_kitts_nevis"}, "6.0"},
{"\U0001f1f1\U0001f1e8", "flag: St. Lucia", []string{"st_lucia"}, "6.0"},
{"\U0001f1f2\U0001f1eb", "flag: St. Martin", []string{"st_martin"}, "11.0"},
{"\U0001f1f5\U0001f1f2", "flag: St. Pierre & Miquelon", []string{"st_pierre_miquelon"}, "6.0"},
{"\U0001f1fb\U0001f1e8", "flag: St. Vincent & Grenadines", []string{"st_vincent_grenadines"}, "6.0"},
{"\U0001f3df\ufe0f", "stadium", []string{"stadium"}, "7.0"},
{"\U0001f9cd\u200d\u2642\ufe0f", "man standing", []string{"standing_man"}, "12.0"},
{"\U0001f9cd", "person standing", []string{"standing_person"}, "12.0"},
{"\U0001f9cd\u200d\u2640\ufe0f", "woman standing", []string{"standing_woman"}, "12.0"},
{"\u2b50", "star", []string{"star"}, "5.1"},
{"\U0001f31f", "glowing star", []string{"star2"}, "6.0"},
{"\u262a\ufe0f", "star and crescent", []string{"star_and_crescent"}, ""},
{"\u2721\ufe0f", "star of David", []string{"star_of_david"}, ""},
{"\U0001f929", "star-struck", []string{"star_struck"}, "11.0"},
{"\U0001f320", "shooting star", []string{"stars"}, "6.0"},
{"\U0001f689", "station", []string{"station"}, "6.0"},
{"\U0001f5fd", "Statue of Liberty", []string{"statue_of_liberty"}, "6.0"},
{"\U0001f682", "locomotive", []string{"steam_locomotive"}, "6.0"},
{"\U0001fa7a", "stethoscope", []string{"stethoscope"}, "12.0"},
{"\U0001f372", "pot of food", []string{"stew"}, "6.0"},
{"\u23f9\ufe0f", "stop button", []string{"stop_button"}, "7.0"},
{"\U0001f6d1", "stop sign", []string{"stop_sign"}, "9.0"},
{"\u23f1\ufe0f", "stopwatch", []string{"stopwatch"}, "6.0"},
{"\U0001f4cf", "straight ruler", []string{"straight_ruler"}, "6.0"},
{"\U0001f353", "strawberry", []string{"strawberry"}, "6.0"},
{"\U0001f61b", "face with tongue", []string{"stuck_out_tongue"}, "6.1"},
{"\U0001f61d", "squinting face with tongue", []string{"stuck_out_tongue_closed_eyes"}, "6.0"},
{"\U0001f61c", "winking face with tongue", []string{"stuck_out_tongue_winking_eye"}, "6.0"},
{"\U0001f9d1\u200d\U0001f393", "student", []string{"student"}, "12.1"},
{"\U0001f399\ufe0f", "studio microphone", []string{"studio_microphone"}, "7.0"},
{"\U0001f959", "stuffed flatbread", []string{"stuffed_flatbread"}, "9.0"},
{"\U0001f1f8\U0001f1e9", "flag: Sudan", []string{"sudan"}, "6.0"},
{"\U0001f325\ufe0f", "sun behind large cloud", []string{"sun_behind_large_cloud"}, "7.0"},
{"\U0001f326\ufe0f", "sun behind rain cloud", []string{"sun_behind_rain_cloud"}, "7.0"},
{"\U0001f324\ufe0f", "sun behind small cloud", []string{"sun_behind_small_cloud"}, "7.0"},
{"\U0001f31e", "sun with face", []string{"sun_with_face"}, "6.0"},
{"\U0001f33b", "sunflower", []string{"sunflower"}, "6.0"},
{"\U0001f60e", "smiling face with sunglasses", []string{"sunglasses"}, "6.0"},
{"\u2600\ufe0f", "sun", []string{"sunny"}, ""},
{"\U0001f305", "sunrise", []string{"sunrise"}, "6.0"},
{"\U0001f304", "sunrise over mountains", []string{"sunrise_over_mountains"}, "6.0"},
{"\U0001f9b8", "superhero", []string{"superhero"}, "11.0"},
{"\U0001f9b8\u200d\u2642\ufe0f", "man superhero", []string{"superhero_man"}, "11.0"},
{"\U0001f9b8\u200d\u2640\ufe0f", "woman superhero", []string{"superhero_woman"}, "11.0"},
{"\U0001f9b9", "supervillain", []string{"supervillain"}, "11.0"},
{"\U0001f9b9\u200d\u2642\ufe0f", "man supervillain", []string{"supervillain_man"}, "11.0"},
{"\U0001f9b9\u200d\u2640\ufe0f", "woman supervillain", []string{"supervillain_woman"}, "11.0"},
{"\U0001f3c4", "person surfing", []string{"surfer"}, "6.0"},
{"\U0001f3c4\u200d\u2642\ufe0f", "man surfing", []string{"surfing_man"}, "11.0"},
{"\U0001f3c4\u200d\u2640\ufe0f", "woman surfing", []string{"surfing_woman"}, "7.0"},
{"\U0001f1f8\U0001f1f7", "flag: Suriname", []string{"suriname"}, "6.0"},
{"\U0001f363", "sushi", []string{"sushi"}, "6.0"},
{"\U0001f69f", "suspension railway", []string{"suspension_railway"}, "6.0"},
{"\U0001f1f8\U0001f1ef", "flag: Svalbard & Jan Mayen", []string{"svalbard_jan_mayen"}, "11.0"},
{"\U0001f9a2", "swan", []string{"swan"}, "11.0"},
{"\U0001f1f8\U0001f1ff", "flag: Eswatini", []string{"swaziland"}, "6.0"},
{"\U0001f613", "downcast face with sweat", []string{"sweat"}, "6.0"},
{"\U0001f4a6", "sweat droplets", []string{"sweat_drops"}, "6.0"},
{"\U0001f605", "grinning face with sweat", []string{"sweat_smile"}, "6.0"},
{"\U0001f1f8\U0001f1ea", "flag: Sweden", []string{"sweden"}, "6.0"},
{"\U0001f360", "roasted sweet potato", []string{"sweet_potato"}, "6.0"},
{"\U0001fa72", "briefs", []string{"swim_brief"}, "12.0"},
{"\U0001f3ca", "person swimming", []string{"swimmer"}, "6.0"},
{"\U0001f3ca\u200d\u2642\ufe0f", "man swimming", []string{"swimming_man"}, "11.0"},
{"\U0001f3ca\u200d\u2640\ufe0f", "woman swimming", []string{"swimming_woman"}, "6.0"},
{"\U0001f1e8\U0001f1ed", "flag: Switzerland", []string{"switzerland"}, "6.0"},
{"\U0001f523", "input symbols", []string{"symbols"}, "6.0"},
{"\U0001f54d", "synagogue", []string{"synagogue"}, "8.0"},
{"\U0001f1f8\U0001f1fe", "flag: Syria", []string{"syria"}, "6.0"},
{"\U0001f489", "syringe", []string{"syringe"}, "6.0"},
{"\U0001f996", "T-Rex", []string{"t-rex"}, "11.0"},
{"\U0001f32e", "taco", []string{"taco"}, "8.0"},
{"\U0001f389", "party popper", []string{"tada", "hooray"}, "6.0"},
{"\U0001f1f9\U0001f1fc", "flag: Taiwan", []string{"taiwan"}, "6.0"},
{"\U0001f1f9\U0001f1ef", "flag: Tajikistan", []string{"tajikistan"}, "6.0"},
{"\U0001f961", "takeout box", []string{"takeout_box"}, "11.0"},
{"\U0001f38b", "tanabata tree", []string{"tanabata_tree"}, "6.0"},
{"\U0001f34a", "tangerine", []string{"tangerine", "orange", "mandarin"}, "6.0"},
{"\U0001f1f9\U0001f1ff", "flag: Tanzania", []string{"tanzania"}, "6.0"},
{"\u2649", "Taurus", []string{"taurus"}, ""},
{"\U0001f695", "taxi", []string{"taxi"}, "6.0"},
{"\U0001f375", "teacup without handle", []string{"tea"}, "6.0"},
{"\U0001f9d1\u200d\U0001f3eb", "teacher", []string{"teacher"}, "12.1"},
{"\U0001f9d1\u200d\U0001f4bb", "technologist", []string{"technologist"}, "12.1"},
{"\U0001f9f8", "teddy bear", []string{"teddy_bear"}, "11.0"},
{"\U0001f4de", "telephone receiver", []string{"telephone_receiver"}, "6.0"},
{"\U0001f52d", "telescope", []string{"telescope"}, "6.0"},
{"\U0001f3be", "tennis", []string{"tennis"}, "6.0"},
{"\u26fa", "tent", []string{"tent"}, "5.2"},
{"\U0001f9ea", "test tube", []string{"test_tube"}, "11.0"},
{"\U0001f1f9\U0001f1ed", "flag: Thailand", []string{"thailand"}, "6.0"},
{"\U0001f321\ufe0f", "thermometer", []string{"thermometer"}, "7.0"},
{"\U0001f914", "thinking face", []string{"thinking"}, "8.0"},
{"\U0001f4ad", "thought balloon", []string{"thought_balloon"}, "6.0"},
{"\U0001f9f5", "thread", []string{"thread"}, "11.0"},
{"\U0001f3ab", "ticket", []string{"ticket"}, "6.0"},
{"\U0001f39f\ufe0f", "admission tickets", []string{"tickets"}, "7.0"},
{"\U0001f42f", "tiger face", []string{"tiger"}, "6.0"},
{"\U0001f405", "tiger", []string{"tiger2"}, "6.0"},
{"\u23f2\ufe0f", "timer clock", []string{"timer_clock"}, "6.0"},
{"\U0001f1f9\U0001f1f1", "flag: Timor-Leste", []string{"timor_leste"}, "6.0"},
{"\U0001f481\u200d\u2642\ufe0f", "man tipping hand", []string{"tipping_hand_man", "sassy_man"}, "6.0"},
{"\U0001f481", "person tipping hand", []string{"tipping_hand_person", "information_desk_person"}, "6.0"},
{"\U0001f481\u200d\u2640\ufe0f", "woman tipping hand", []string{"tipping_hand_woman", "sassy_woman"}, "11.0"},
{"\U0001f62b", "tired face", []string{"tired_face"}, "6.0"},
{"\u2122\ufe0f", "trade mark", []string{"tm"}, ""},
{"\U0001f1f9\U0001f1ec", "flag: Togo", []string{"togo"}, "6.0"},
{"\U0001f6bd", "toilet", []string{"toilet"}, "6.0"},
{"\U0001f1f9\U0001f1f0", "flag: Tokelau", []string{"tokelau"}, "6.0"},
{"\U0001f5fc", "Tokyo tower", []string{"tokyo_tower"}, "6.0"},
{"\U0001f345", "tomato", []string{"tomato"}, "6.0"},
{"\U0001f1f9\U0001f1f4", "flag: Tonga", []string{"tonga"}, "6.0"},
{"\U0001f445", "tongue", []string{"tongue"}, "6.0"},
{"\U0001f9f0", "toolbox", []string{"toolbox"}, "11.0"},
{"\U0001f9b7", "tooth", []string{"tooth"}, "11.0"},
{"\U0001f51d", "TOP arrow", []string{"top"}, "6.0"},
{"\U0001f3a9", "top hat", []string{"tophat"}, "6.0"},
{"\U0001f32a\ufe0f", "tornado", []string{"tornado"}, "7.0"},
{"\U0001f1f9\U0001f1f7", "flag: Turkey", []string{"tr"}, "8.0"},
{"\U0001f5b2\ufe0f", "trackball", []string{"trackball"}, "7.0"},
{"\U0001f69c", "tractor", []string{"tractor"}, "6.0"},
{"\U0001f6a5", "horizontal traffic light", []string{"traffic_light"}, "6.0"},
{"\U0001f68b", "tram car", []string{"train"}, "6.0"},
{"\U0001f686", "train", []string{"train2"}, "6.0"},
{"\U0001f68a", "tram", []string{"tram"}, "6.0"},
{"\U0001f6a9", "triangular flag", []string{"triangular_flag_on_post"}, "6.0"},
{"\U0001f4d0", "triangular ruler", []string{"triangular_ruler"}, "6.0"},
{"\U0001f531", "trident emblem", []string{"trident"}, "6.0"},
{"\U0001f1f9\U0001f1f9", "flag: Trinidad & Tobago", []string{"trinidad_tobago"}, "6.0"},
{"\U0001f1f9\U0001f1e6", "flag: Tristan da Cunha", []string{"tristan_da_cunha"}, "11.0"},
{"\U0001f624", "face with steam from nose", []string{"triumph"}, "6.0"},
{"\U0001f68e", "trolleybus", []string{"trolleybus"}, "6.0"},
{"\U0001f3c6", "trophy", []string{"trophy"}, "6.0"},
{"\U0001f379", "tropical drink", []string{"tropical_drink"}, "6.0"},
{"\U0001f420", "tropical fish", []string{"tropical_fish"}, "6.0"},
{"\U0001f69a", "delivery truck", []string{"truck"}, "6.0"},
{"\U0001f3ba", "trumpet", []string{"trumpet"}, "6.0"},
{"\U0001f337", "tulip", []string{"tulip"}, "6.0"},
{"\U0001f943", "tumbler glass", []string{"tumbler_glass"}, "9.0"},
{"\U0001f1f9\U0001f1f3", "flag: Tunisia", []string{"tunisia"}, "6.0"},
{"\U0001f983", "turkey", []string{"turkey"}, "8.0"},
{"\U0001f1f9\U0001f1f2", "flag: Turkmenistan", []string{"turkmenistan"}, "6.0"},
{"\U0001f1f9\U0001f1e8", "flag: Turks & Caicos Islands", []string{"turks_caicos_islands"}, "6.0"},
{"\U0001f422", "turtle", []string{"turtle"}, "6.0"},
{"\U0001f1f9\U0001f1fb", "flag: Tuvalu", []string{"tuvalu"}, "6.0"},
{"\U0001f4fa", "television", []string{"tv"}, "6.0"},
{"\U0001f500", "shuffle tracks button", []string{"twisted_rightwards_arrows"}, "6.0"},
{"\U0001f495", "two hearts", []string{"two_hearts"}, "6.0"},
{"\U0001f46c", "men holding hands", []string{"two_men_holding_hands"}, "6.0"},
{"\U0001f46d", "women holding hands", []string{"two_women_holding_hands"}, "6.0"},
{"\U0001f239", "Japanese “discount” button", []string{"u5272"}, "6.0"},
{"\U0001f234", "Japanese “passing grade” button", []string{"u5408"}, "6.0"},
{"\U0001f23a", "Japanese “open for business” button", []string{"u55b6"}, "6.0"},
{"\U0001f22f", "Japanese “reserved” button", []string{"u6307"}, ""},
{"\U0001f237\ufe0f", "Japanese “monthly amount” button", []string{"u6708"}, "6.0"},
{"\U0001f236", "Japanese “not free of charge” button", []string{"u6709"}, "6.0"},
{"\U0001f235", "Japanese “no vacancy” button", []string{"u6e80"}, "6.0"},
{"\U0001f21a", "Japanese “free of charge” button", []string{"u7121"}, ""},
{"\U0001f238", "Japanese “application” button", []string{"u7533"}, "6.0"},
{"\U0001f232", "Japanese “prohibited” button", []string{"u7981"}, "6.0"},
{"\U0001f233", "Japanese “vacancy” button", []string{"u7a7a"}, "6.0"},
{"\U0001f1fa\U0001f1ec", "flag: Uganda", []string{"uganda"}, "6.0"},
{"\U0001f1fa\U0001f1e6", "flag: Ukraine", []string{"ukraine"}, "6.0"},
{"\u2614", "umbrella with rain drops", []string{"umbrella"}, "4.0"},
{"\U0001f612", "unamused face", []string{"unamused"}, "6.0"},
{"\U0001f51e", "no one under eighteen", []string{"underage"}, "6.0"},
{"\U0001f984", "unicorn", []string{"unicorn"}, "8.0"},
{"\U0001f1e6\U0001f1ea", "flag: United Arab Emirates", []string{"united_arab_emirates"}, "6.0"},
{"\U0001f1fa\U0001f1f3", "flag: United Nations", []string{"united_nations"}, "11.0"},
{"\U0001f513", "unlocked", []string{"unlock"}, "6.0"},
{"\U0001f199", "UP! button", []string{"up"}, "6.0"},
{"\U0001f643", "upside-down face", []string{"upside_down_face"}, "8.0"},
{"\U0001f1fa\U0001f1fe", "flag: Uruguay", []string{"uruguay"}, "6.0"},
{"\U0001f1fa\U0001f1f8", "flag: United States", []string{"us"}, "6.0"},
{"\U0001f1fa\U0001f1f2", "flag: U.S. Outlying Islands", []string{"us_outlying_islands"}, "11.0"},
{"\U0001f1fb\U0001f1ee", "flag: U.S. Virgin Islands", []string{"us_virgin_islands"}, "6.0"},
{"\U0001f1fa\U0001f1ff", "flag: Uzbekistan", []string{"uzbekistan"}, "6.0"},
{"\u270c\ufe0f", "victory hand", []string{"v"}, ""},
{"\U0001f9db", "vampire", []string{"vampire"}, "11.0"},
{"\U0001f9db\u200d\u2642\ufe0f", "man vampire", []string{"vampire_man"}, "11.0"},
{"\U0001f9db\u200d\u2640\ufe0f", "woman vampire", []string{"vampire_woman"}, "11.0"},
{"\U0001f1fb\U0001f1fa", "flag: Vanuatu", []string{"vanuatu"}, "6.0"},
{"\U0001f1fb\U0001f1e6", "flag: Vatican City", []string{"vatican_city"}, "6.0"},
{"\U0001f1fb\U0001f1ea", "flag: Venezuela", []string{"venezuela"}, "6.0"},
{"\U0001f6a6", "vertical traffic light", []string{"vertical_traffic_light"}, "6.0"},
{"\U0001f4fc", "videocassette", []string{"vhs"}, "6.0"},
{"\U0001f4f3", "vibration mode", []string{"vibration_mode"}, "6.0"},
{"\U0001f4f9", "video camera", []string{"video_camera"}, "6.0"},
{"\U0001f3ae", "video game", []string{"video_game"}, "6.0"},
{"\U0001f1fb\U0001f1f3", "flag: Vietnam", []string{"vietnam"}, "6.0"},
{"\U0001f3bb", "violin", []string{"violin"}, "6.0"},
{"\u264d", "Virgo", []string{"virgo"}, ""},
{"\U0001f30b", "volcano", []string{"volcano"}, "6.0"},
{"\U0001f3d0", "volleyball", []string{"volleyball"}, "8.0"},
{"\U0001f92e", "face vomiting", []string{"vomiting_face"}, "11.0"},
{"\U0001f19a", "VS button", []string{"vs"}, "6.0"},
{"\U0001f596", "vulcan salute", []string{"vulcan_salute"}, "7.0"},
{"\U0001f9c7", "waffle", []string{"waffle"}, "12.0"},
{"\U0001f3f4\U000e0067\U000e0062\U000e0077\U000e006c\U000e0073\U000e007f", "flag: Wales", []string{"wales"}, "11.0"},
{"\U0001f6b6", "person walking", []string{"walking"}, "6.0"},
{"\U0001f6b6\u200d\u2642\ufe0f", "man walking", []string{"walking_man"}, "11.0"},
{"\U0001f6b6\u200d\u2640\ufe0f", "woman walking", []string{"walking_woman"}, "6.0"},
{"\U0001f1fc\U0001f1eb", "flag: Wallis & Futuna", []string{"wallis_futuna"}, "6.0"},
{"\U0001f318", "waning crescent moon", []string{"waning_crescent_moon"}, "6.0"},
{"\U0001f316", "waning gibbous moon", []string{"waning_gibbous_moon"}, "6.0"},
{"\u26a0\ufe0f", "warning", []string{"warning"}, "4.0"},
{"\U0001f5d1\ufe0f", "wastebasket", []string{"wastebasket"}, "7.0"},
{"\u231a", "watch", []string{"watch"}, ""},
{"\U0001f403", "water buffalo", []string{"water_buffalo"}, "6.0"},
{"\U0001f93d", "person playing water polo", []string{"water_polo"}, "11.0"},
{"\U0001f349", "watermelon", []string{"watermelon"}, "6.0"},
{"\U0001f44b", "waving hand", []string{"wave"}, "6.0"},
{"\u3030\ufe0f", "wavy dash", []string{"wavy_dash"}, ""},
{"\U0001f312", "waxing crescent moon", []string{"waxing_crescent_moon"}, "6.0"},
{"\U0001f6be", "water closet", []string{"wc"}, "6.0"},
{"\U0001f629", "weary face", []string{"weary"}, "6.0"},
{"\U0001f492", "wedding", []string{"wedding"}, "6.0"},
{"\U0001f3cb\ufe0f", "person lifting weights", []string{"weight_lifting"}, "7.0"},
{"\U0001f3cb\ufe0f\u200d\u2642\ufe0f", "man lifting weights", []string{"weight_lifting_man"}, "11.0"},
{"\U0001f3cb\ufe0f\u200d\u2640\ufe0f", "woman lifting weights", []string{"weight_lifting_woman"}, "6.0"},
{"\U0001f1ea\U0001f1ed", "flag: Western Sahara", []string{"western_sahara"}, "6.0"},
{"\U0001f433", "spouting whale", []string{"whale"}, "6.0"},
{"\U0001f40b", "whale", []string{"whale2"}, "6.0"},
{"\u2638\ufe0f", "wheel of dharma", []string{"wheel_of_dharma"}, ""},
{"\u267f", "wheelchair symbol", []string{"wheelchair"}, "4.1"},
{"\u2705", "check mark button", []string{"white_check_mark"}, "6.0"},
{"\u26aa", "white circle", []string{"white_circle"}, "4.1"},
{"\U0001f3f3\ufe0f", "white flag", []string{"white_flag"}, "7.0"},
{"\U0001f4ae", "white flower", []string{"white_flower"}, "6.0"},
{"\U0001f468\u200d\U0001f9b3", "man: white hair", []string{"white_haired_man"}, "11.0"},
{"\U0001f469\u200d\U0001f9b3", "woman: white hair", []string{"white_haired_woman"}, "11.0"},
{"\U0001f90d", "white heart", []string{"white_heart"}, "12.0"},
{"\u2b1c", "white large square", []string{"white_large_square"}, "5.1"},
{"\u25fd", "white medium-small square", []string{"white_medium_small_square"}, "3.2"},
{"\u25fb\ufe0f", "white medium square", []string{"white_medium_square"}, "3.2"},
{"\u25ab\ufe0f", "white small square", []string{"white_small_square"}, ""},
{"\U0001f533", "white square button", []string{"white_square_button"}, "6.0"},
{"\U0001f940", "wilted flower", []string{"wilted_flower"}, "9.0"},
{"\U0001f390", "wind chime", []string{"wind_chime"}, "6.0"},
{"\U0001f32c\ufe0f", "wind face", []string{"wind_face"}, "7.0"},
{"\U0001f377", "wine glass", []string{"wine_glass"}, "6.0"},
{"\U0001f609", "winking face", []string{"wink"}, "6.0"},
{"\U0001f43a", "wolf", []string{"wolf"}, "6.0"},
{"\U0001f469", "woman", []string{"woman"}, "6.0"},
{"\U0001f469\u200d\U0001f3a8", "woman artist", []string{"woman_artist"}, ""},
{"\U0001f469\u200d\U0001f680", "woman astronaut", []string{"woman_astronaut"}, ""},
{"\U0001f938\u200d\u2640\ufe0f", "woman cartwheeling", []string{"woman_cartwheeling"}, ""},
{"\U0001f469\u200d\U0001f373", "woman cook", []string{"woman_cook"}, ""},
{"\U0001f483", "woman dancing", []string{"woman_dancing", "dancer"}, "6.0"},
{"\U0001f926\u200d\u2640\ufe0f", "woman facepalming", []string{"woman_facepalming"}, "9.0"},
{"\U0001f469\u200d\U0001f3ed", "woman factory worker", []string{"woman_factory_worker"}, ""},
{"\U0001f469\u200d\U0001f33e", "woman farmer", []string{"woman_farmer"}, ""},
{"\U0001f469\u200d\U0001f692", "woman firefighter", []string{"woman_firefighter"}, ""},
{"\U0001f469\u200d\u2695\ufe0f", "woman health worker", []string{"woman_health_worker"}, ""},
{"\U0001f469\u200d\U0001f9bd", "woman in manual wheelchair", []string{"woman_in_manual_wheelchair"}, "12.0"},
{"\U0001f469\u200d\U0001f9bc", "woman in motorized wheelchair", []string{"woman_in_motorized_wheelchair"}, "12.0"},
{"\U0001f469\u200d\u2696\ufe0f", "woman judge", []string{"woman_judge"}, ""},
{"\U0001f939\u200d\u2640\ufe0f", "woman juggling", []string{"woman_juggling"}, "9.0"},
{"\U0001f469\u200d\U0001f527", "woman mechanic", []string{"woman_mechanic"}, ""},
{"\U0001f469\u200d\U0001f4bc", "woman office worker", []string{"woman_office_worker"}, ""},
{"\U0001f469\u200d\u2708\ufe0f", "woman pilot", []string{"woman_pilot"}, ""},
{"\U0001f93e\u200d\u2640\ufe0f", "woman playing handball", []string{"woman_playing_handball"}, "9.0"},
{"\U0001f93d\u200d\u2640\ufe0f", "woman playing water polo", []string{"woman_playing_water_polo"}, "9.0"},
{"\U0001f469\u200d\U0001f52c", "woman scientist", []string{"woman_scientist"}, ""},
{"\U0001f937\u200d\u2640\ufe0f", "woman shrugging", []string{"woman_shrugging"}, "9.0"},
{"\U0001f469\u200d\U0001f3a4", "woman singer", []string{"woman_singer"}, ""},
{"\U0001f469\u200d\U0001f393", "woman student", []string{"woman_student"}, ""},
{"\U0001f469\u200d\U0001f3eb", "woman teacher", []string{"woman_teacher"}, ""},
{"\U0001f469\u200d\U0001f4bb", "woman technologist", []string{"woman_technologist"}, ""},
{"\U0001f9d5", "woman with headscarf", []string{"woman_with_headscarf"}, "11.0"},
{"\U0001f469\u200d\U0001f9af", "woman with white cane", []string{"woman_with_probing_cane"}, "12.0"},
{"\U0001f473\u200d\u2640\ufe0f", "woman wearing turban", []string{"woman_with_turban"}, "6.0"},
{"\U0001f45a", "woman’s clothes", []string{"womans_clothes"}, "6.0"},
{"\U0001f452", "woman’s hat", []string{"womans_hat"}, "6.0"},
{"\U0001f93c\u200d\u2640\ufe0f", "women wrestling", []string{"women_wrestling"}, "9.0"},
{"\U0001f6ba", "women’s room", []string{"womens"}, "6.0"},
{"\U0001f974", "woozy face", []string{"woozy_face"}, "11.0"},
{"\U0001f5fa\ufe0f", "world map", []string{"world_map"}, "7.0"},
{"\U0001f61f", "worried face", []string{"worried"}, "6.1"},
{"\U0001f527", "wrench", []string{"wrench"}, "6.0"},
{"\U0001f93c", "people wrestling", []string{"wrestling"}, "11.0"},
{"\u270d\ufe0f", "writing hand", []string{"writing_hand"}, ""},
{"\u274c", "cross mark", []string{"x"}, "6.0"},
{"\U0001f9f6", "yarn", []string{"yarn"}, "11.0"},
{"\U0001f971", "yawning face", []string{"yawning_face"}, "12.0"},
{"\U0001f7e1", "yellow circle", []string{"yellow_circle"}, "12.0"},
{"\U0001f49b", "yellow heart", []string{"yellow_heart"}, "6.0"},
{"\U0001f7e8", "yellow square", []string{"yellow_square"}, "12.0"},
{"\U0001f1fe\U0001f1ea", "flag: Yemen", []string{"yemen"}, "6.0"},
{"\U0001f4b4", "yen banknote", []string{"yen"}, "6.0"},
{"\u262f\ufe0f", "yin yang", []string{"yin_yang"}, ""},
{"\U0001fa80", "yo-yo", []string{"yo_yo"}, "12.0"},
{"\U0001f60b", "face savoring food", []string{"yum"}, "6.0"},
{"\U0001f1ff\U0001f1f2", "flag: Zambia", []string{"zambia"}, "6.0"},
{"\U0001f92a", "zany face", []string{"zany_face"}, "11.0"},
{"\u26a1", "high voltage", []string{"zap"}, "4.0"},
{"\U0001f993", "zebra", []string{"zebra"}, "11.0"},
{"\U0001f1ff\U0001f1fc", "flag: Zimbabwe", []string{"zimbabwe"}, "6.0"},
{"\U0001f910", "zipper-mouth face", []string{"zipper_mouth_face"}, "8.0"},
{"\U0001f9df", "zombie", []string{"zombie"}, "11.0"},
{"\U0001f9df\u200d\u2642\ufe0f", "man zombie", []string{"zombie_man"}, "11.0"},
{"\U0001f9df\u200d\u2640\ufe0f", "woman zombie", []string{"zombie_woman"}, "11.0"},
{"\U0001f4a4", "zzz", []string{"zzz"}, "6.0"},
}
|