-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathemoji_codemap.go
7895 lines (7889 loc) · 607 KB
/
emoji_codemap.go
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
package emoji
import (
"sync"
)
// NOTE: THIS FILE WAS PRODUCED BY THE
// EMOJICODEMAP CODE GENERATION TOOL (github.com/kyokomi/emoji/cmd/generateEmojiCodeMap)
// DO NOT EDIT
var emojiCodeMap map[string]string
var emojiCodeMapInitOnce = sync.Once{}
func emojiCode() map[string]string {
emojiCodeMapInitOnce.Do(func() {
emojiCodeMap = map[string]string{
":+1:": "\U0001f44d",
":-1:": "\U0001f44e",
":100:": "\U0001f4af",
":1234:": "\U0001f522",
":1st_place_medal:": "\U0001f947",
":2nd_place_medal:": "\U0001f948",
":3rd_place_medal:": "\U0001f949",
":8ball:": "\U0001f3b1",
":AB_button_(blood_type):": "\U0001f18e",
":ATM_sign:": "\U0001f3e7",
":A_button_(blood_type):": "\U0001f170",
":Aquarius:": "\u2652",
":Aries:": "\u2648",
":BACK_arrow:": "\U0001f519",
":B_button_(blood_type):": "\U0001f171",
":CL_button:": "\U0001f191",
":COOL_button:": "\U0001f192",
":Cancer:": "\u264b",
":Capricorn:": "\u2651",
":Christmas_tree:": "\U0001f384",
":END_arrow:": "\U0001f51a",
":FREE_button:": "\U0001f193",
":Gemini:": "\u264a",
":ID_button:": "\U0001f194",
":Japanese_acceptable_button:": "\U0001f251",
":Japanese_application_button:": "\U0001f238",
":Japanese_bargain_button:": "\U0001f250",
":Japanese_castle:": "\U0001f3ef",
":Japanese_congratulations_button:": "\u3297",
":Japanese_discount_button:": "\U0001f239",
":Japanese_dolls:": "\U0001f38e",
":Japanese_free_of_charge_button:": "\U0001f21a",
":Japanese_here_button:": "\U0001f201",
":Japanese_monthly_amount_button:": "\U0001f237",
":Japanese_no_vacancy_button:": "\U0001f235",
":Japanese_not_free_of_charge_button:": "\U0001f236",
":Japanese_open_for_business_button:": "\U0001f23a",
":Japanese_passing_grade_button:": "\U0001f234",
":Japanese_post_office:": "\U0001f3e3",
":Japanese_prohibited_button:": "\U0001f232",
":Japanese_reserved_button:": "\U0001f22f",
":Japanese_secret_button:": "\u3299",
":Japanese_service_charge_button:": "\U0001f202",
":Japanese_symbol_for_beginner:": "\U0001f530",
":Japanese_vacancy_button:": "\U0001f233",
":Leo:": "\u264c",
":Libra:": "\u264e",
":Mrs._Claus:": "\U0001f936",
":NEW_button:": "\U0001f195",
":NG_button:": "\U0001f196",
":OK_button:": "\U0001f197",
":OK_hand:": "\U0001f44c",
":ON!_arrow:": "\U0001f51b",
":O_button_(blood_type):": "\U0001f17e",
":Ophiuchus:": "\u26ce",
":P_button:": "\U0001f17f",
":Pisces:": "\u2653",
":SOON_arrow:": "\U0001f51c",
":SOS_button:": "\U0001f198",
":Sagittarius:": "\u2650",
":Santa_Claus:": "\U0001f385",
":Scorpio:": "\u264f",
":Statue_of_Liberty:": "\U0001f5fd",
":T-Rex:": "\U0001f996",
":TOP_arrow:": "\U0001f51d",
":Taurus:": "\u2649",
":Tokyo_tower:": "\U0001f5fc",
":UP!_button:": "\U0001f199",
":VS_button:": "\U0001f19a",
":Virgo:": "\u264d",
":ZZZ:": "\U0001f4a4",
":a:": "\U0001f170\ufe0f",
":ab:": "\U0001f18e",
":abacus:": "\U0001f9ee",
":abc:": "\U0001f524",
":abcd:": "\U0001f521",
":accept:": "\U0001f251",
":accordion:": "\U0001fa97",
":adhesive_bandage:": "\U0001fa79",
":admission_tickets:": "\U0001f39f\ufe0f",
":adult:": "\U0001f9d1",
":adult_tone1:": "\U0001f9d1\U0001f3fb",
":adult_tone2:": "\U0001f9d1\U0001f3fc",
":adult_tone3:": "\U0001f9d1\U0001f3fd",
":adult_tone4:": "\U0001f9d1\U0001f3fe",
":adult_tone5:": "\U0001f9d1\U0001f3ff",
":aerial_tramway:": "\U0001f6a1",
":afghanistan:": "\U0001f1e6\U0001f1eb",
":airplane:": "\u2708\ufe0f",
":airplane_arrival:": "\U0001f6ec",
":airplane_arriving:": "\U0001f6ec",
":airplane_departure:": "\U0001f6eb",
":airplane_small:": "\U0001f6e9",
":aland_islands:": "\U0001f1e6\U0001f1fd",
":alarm_clock:": "\u23f0",
":albania:": "\U0001f1e6\U0001f1f1",
":alembic:": "\u2697\ufe0f",
":algeria:": "\U0001f1e9\U0001f1ff",
":alien:": "\U0001f47d",
":alien_monster:": "\U0001f47e",
":ambulance:": "\U0001f691",
":american_football:": "\U0001f3c8",
":american_samoa:": "\U0001f1e6\U0001f1f8",
":amphora:": "\U0001f3fa",
":anatomical_heart:": "\U0001fac0",
":anchor:": "\u2693",
":andorra:": "\U0001f1e6\U0001f1e9",
":angel:": "\U0001f47c",
":angel_tone1:": "\U0001f47c\U0001f3fb",
":angel_tone2:": "\U0001f47c\U0001f3fc",
":angel_tone3:": "\U0001f47c\U0001f3fd",
":angel_tone4:": "\U0001f47c\U0001f3fe",
":angel_tone5:": "\U0001f47c\U0001f3ff",
":anger:": "\U0001f4a2",
":anger_right:": "\U0001f5ef",
":anger_symbol:": "\U0001f4a2",
":angola:": "\U0001f1e6\U0001f1f4",
":angry:": "\U0001f620",
":angry_face:": "\U0001f620",
":angry_face_with_horns:": "\U0001f47f",
":anguilla:": "\U0001f1e6\U0001f1ee",
":anguished:": "\U0001f627",
":anguished_face:": "\U0001f627",
":ant:": "\U0001f41c",
":antarctica:": "\U0001f1e6\U0001f1f6",
":antenna_bars:": "\U0001f4f6",
":antigua_barbuda:": "\U0001f1e6\U0001f1ec",
":anxious_face_with_sweat:": "\U0001f630",
":apple:": "\U0001f34e",
":aquarius:": "\u2652",
":argentina:": "\U0001f1e6\U0001f1f7",
":aries:": "\u2648",
":armenia:": "\U0001f1e6\U0001f1f2",
":arrow_backward:": "\u25c0\ufe0f",
":arrow_double_down:": "\u23ec",
":arrow_double_up:": "\u23eb",
":arrow_down:": "\u2b07\ufe0f",
":arrow_down_small:": "\U0001f53d",
":arrow_forward:": "\u25b6\ufe0f",
":arrow_heading_down:": "\u2935\ufe0f",
":arrow_heading_up:": "\u2934\ufe0f",
":arrow_left:": "\u2b05\ufe0f",
":arrow_lower_left:": "\u2199\ufe0f",
":arrow_lower_right:": "\u2198\ufe0f",
":arrow_right:": "\u27a1\ufe0f",
":arrow_right_hook:": "\u21aa\ufe0f",
":arrow_up:": "\u2b06\ufe0f",
":arrow_up_down:": "\u2195\ufe0f",
":arrow_up_small:": "\U0001f53c",
":arrow_upper_left:": "\u2196\ufe0f",
":arrow_upper_right:": "\u2197\ufe0f",
":arrows_clockwise:": "\U0001f503",
":arrows_counterclockwise:": "\U0001f504",
":art:": "\U0001f3a8",
":articulated_lorry:": "\U0001f69b",
":artificial_satellite:": "\U0001f6f0\ufe0f",
":artist:": "\U0001f9d1\u200d\U0001f3a8",
":artist_palette:": "\U0001f3a8",
":aruba:": "\U0001f1e6\U0001f1fc",
":ascension_island:": "\U0001f1e6\U0001f1e8",
":asterisk:": "*\ufe0f\u20e3",
":astonished:": "\U0001f632",
":astonished_face:": "\U0001f632",
":astronaut:": "\U0001f9d1\u200d\U0001f680",
":athletic_shoe:": "\U0001f45f",
":atm:": "\U0001f3e7",
":atom:": "\u269b",
":atom_symbol:": "\u269b\ufe0f",
":australia:": "\U0001f1e6\U0001f1fa",
":austria:": "\U0001f1e6\U0001f1f9",
":auto_rickshaw:": "\U0001f6fa",
":automobile:": "\U0001f697",
":avocado:": "\U0001f951",
":axe:": "\U0001fa93",
":azerbaijan:": "\U0001f1e6\U0001f1ff",
":b:": "\U0001f171\ufe0f",
":baby:": "\U0001f476",
":baby_angel:": "\U0001f47c",
":baby_bottle:": "\U0001f37c",
":baby_chick:": "\U0001f424",
":baby_symbol:": "\U0001f6bc",
":baby_tone1:": "\U0001f476\U0001f3fb",
":baby_tone2:": "\U0001f476\U0001f3fc",
":baby_tone3:": "\U0001f476\U0001f3fd",
":baby_tone4:": "\U0001f476\U0001f3fe",
":baby_tone5:": "\U0001f476\U0001f3ff",
":back:": "\U0001f519",
":backhand_index_pointing_down:": "\U0001f447",
":backhand_index_pointing_left:": "\U0001f448",
":backhand_index_pointing_right:": "\U0001f449",
":backhand_index_pointing_up:": "\U0001f446",
":backpack:": "\U0001f392",
":bacon:": "\U0001f953",
":badger:": "\U0001f9a1",
":badminton:": "\U0001f3f8",
":badminton_racquet_and_shuttlecock:": "\U0001f3f8",
":bagel:": "\U0001f96f",
":baggage_claim:": "\U0001f6c4",
":baguette_bread:": "\U0001f956",
":bahamas:": "\U0001f1e7\U0001f1f8",
":bahrain:": "\U0001f1e7\U0001f1ed",
":balance_scale:": "\u2696",
":bald:": "\U0001f9b2",
":bald_man:": "\U0001f468\u200d\U0001f9b2",
":bald_person:": "\U0001f9d1\u200d\U0001f9b2",
":bald_woman:": "\U0001f469\u200d\U0001f9b2",
":ballet_shoes:": "\U0001fa70",
":balloon:": "\U0001f388",
":ballot_box:": "\U0001f5f3",
":ballot_box_with_ballot:": "\U0001f5f3\ufe0f",
":ballot_box_with_check:": "\u2611\ufe0f",
":bamboo:": "\U0001f38d",
":banana:": "\U0001f34c",
":bangbang:": "\u203c\ufe0f",
":bangladesh:": "\U0001f1e7\U0001f1e9",
":banjo:": "\U0001fa95",
":bank:": "\U0001f3e6",
":bar_chart:": "\U0001f4ca",
":barbados:": "\U0001f1e7\U0001f1e7",
":barber:": "\U0001f488",
":barber_pole:": "\U0001f488",
":barely_sunny:": "\U0001f325\ufe0f",
":baseball:": "\u26be",
":basket:": "\U0001f9fa",
":basketball:": "\U0001f3c0",
":basketball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
":basketball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
":bat:": "\U0001f987",
":bath:": "\U0001f6c0",
":bath_tone1:": "\U0001f6c0\U0001f3fb",
":bath_tone2:": "\U0001f6c0\U0001f3fc",
":bath_tone3:": "\U0001f6c0\U0001f3fd",
":bath_tone4:": "\U0001f6c0\U0001f3fe",
":bath_tone5:": "\U0001f6c0\U0001f3ff",
":bathtub:": "\U0001f6c1",
":battery:": "\U0001f50b",
":beach:": "\U0001f3d6",
":beach_umbrella:": "\u26f1",
":beach_with_umbrella:": "\U0001f3d6\ufe0f",
":beaming_face_with_smiling_eyes:": "\U0001f601",
":beans:": "\U0001fad8",
":bear:": "\U0001f43b",
":bearded_person:": "\U0001f9d4",
":bearded_person_tone1:": "\U0001f9d4\U0001f3fb",
":bearded_person_tone2:": "\U0001f9d4\U0001f3fc",
":bearded_person_tone3:": "\U0001f9d4\U0001f3fd",
":bearded_person_tone4:": "\U0001f9d4\U0001f3fe",
":bearded_person_tone5:": "\U0001f9d4\U0001f3ff",
":beating_heart:": "\U0001f493",
":beaver:": "\U0001f9ab",
":bed:": "\U0001f6cf\ufe0f",
":bee:": "\U0001f41d",
":beer:": "\U0001f37a",
":beer_mug:": "\U0001f37a",
":beers:": "\U0001f37b",
":beetle:": "\U0001fab2",
":beginner:": "\U0001f530",
":belarus:": "\U0001f1e7\U0001f1fe",
":belgium:": "\U0001f1e7\U0001f1ea",
":belize:": "\U0001f1e7\U0001f1ff",
":bell:": "\U0001f514",
":bell_pepper:": "\U0001fad1",
":bell_with_slash:": "\U0001f515",
":bellhop:": "\U0001f6ce",
":bellhop_bell:": "\U0001f6ce\ufe0f",
":benin:": "\U0001f1e7\U0001f1ef",
":bento:": "\U0001f371",
":bento_box:": "\U0001f371",
":bermuda:": "\U0001f1e7\U0001f1f2",
":beverage_box:": "\U0001f9c3",
":bhutan:": "\U0001f1e7\U0001f1f9",
":bicycle:": "\U0001f6b2",
":bicyclist:": "\U0001f6b4\u200d\u2642\ufe0f",
":bike:": "\U0001f6b2",
":biking_man:": "\U0001f6b4\u200d\u2642\ufe0f",
":biking_woman:": "\U0001f6b4\u200d\u2640\ufe0f",
":bikini:": "\U0001f459",
":billed_cap:": "\U0001f9e2",
":biohazard:": "\u2623",
":biohazard_sign:": "\u2623\ufe0f",
":bird:": "\U0001f426",
":birthday:": "\U0001f382",
":birthday_cake:": "\U0001f382",
":bison:": "\U0001f9ac",
":biting_lip:": "\U0001fae6",
":black_bird:": "\U0001f426\u200d\u2b1b",
":black_cat:": "\U0001f408\u200d\u2b1b",
":black_circle:": "\u26ab",
":black_circle_for_record:": "\u23fa\ufe0f",
":black_flag:": "\U0001f3f4",
":black_heart:": "\U0001f5a4",
":black_joker:": "\U0001f0cf",
":black_large_square:": "\u2b1b",
":black_left_pointing_double_triangle_with_vertical_bar:": "\u23ee\ufe0f",
":black_medium-small_square:": "\u25fe",
":black_medium_small_square:": "\u25fe",
":black_medium_square:": "\u25fc\ufe0f",
":black_nib:": "\u2712\ufe0f",
":black_right_pointing_double_triangle_with_vertical_bar:": "\u23ed\ufe0f",
":black_right_pointing_triangle_with_double_vertical_bar:": "\u23ef\ufe0f",
":black_small_square:": "\u25aa\ufe0f",
":black_square_button:": "\U0001f532",
":black_square_for_stop:": "\u23f9\ufe0f",
":blond-haired-man:": "\U0001f471\u200d\u2642\ufe0f",
":blond-haired-woman:": "\U0001f471\u200d\u2640\ufe0f",
":blond-haired_man:": "\U0001f471\u200d\u2642\ufe0f",
":blond-haired_man_tone1:": "\U0001f471\U0001f3fb\u200d\u2642\ufe0f",
":blond-haired_man_tone2:": "\U0001f471\U0001f3fc\u200d\u2642\ufe0f",
":blond-haired_man_tone3:": "\U0001f471\U0001f3fd\u200d\u2642\ufe0f",
":blond-haired_man_tone4:": "\U0001f471\U0001f3fe\u200d\u2642\ufe0f",
":blond-haired_man_tone5:": "\U0001f471\U0001f3ff\u200d\u2642\ufe0f",
":blond-haired_woman:": "\U0001f471\u200d\u2640\ufe0f",
":blond-haired_woman_tone1:": "\U0001f471\U0001f3fb\u200d\u2640\ufe0f",
":blond-haired_woman_tone2:": "\U0001f471\U0001f3fc\u200d\u2640\ufe0f",
":blond-haired_woman_tone3:": "\U0001f471\U0001f3fd\u200d\u2640\ufe0f",
":blond-haired_woman_tone4:": "\U0001f471\U0001f3fe\u200d\u2640\ufe0f",
":blond-haired_woman_tone5:": "\U0001f471\U0001f3ff\u200d\u2640\ufe0f",
":blond_haired_man:": "\U0001f471\u200d\u2642\ufe0f",
":blond_haired_person:": "\U0001f471",
":blond_haired_person_tone1:": "\U0001f471\U0001f3fb",
":blond_haired_person_tone2:": "\U0001f471\U0001f3fc",
":blond_haired_person_tone3:": "\U0001f471\U0001f3fd",
":blond_haired_person_tone4:": "\U0001f471\U0001f3fe",
":blond_haired_person_tone5:": "\U0001f471\U0001f3ff",
":blond_haired_woman:": "\U0001f471\u200d\u2640\ufe0f",
":blonde_woman:": "\U0001f471\u200d\u2640\ufe0f",
":blossom:": "\U0001f33c",
":blowfish:": "\U0001f421",
":blue_book:": "\U0001f4d8",
":blue_car:": "\U0001f699",
":blue_circle:": "\U0001f535",
":blue_heart:": "\U0001f499",
":blue_square:": "\U0001f7e6",
":blueberries:": "\U0001fad0",
":blush:": "\U0001f60a",
":boar:": "\U0001f417",
":boat:": "\u26f5",
":bolivia:": "\U0001f1e7\U0001f1f4",
":bomb:": "\U0001f4a3",
":bone:": "\U0001f9b4",
":book:": "\U0001f4d6",
":bookmark:": "\U0001f516",
":bookmark_tabs:": "\U0001f4d1",
":books:": "\U0001f4da",
":boom:": "\U0001f4a5",
":boomerang:": "\U0001fa83",
":boot:": "\U0001f462",
":bosnia_herzegovina:": "\U0001f1e7\U0001f1e6",
":botswana:": "\U0001f1e7\U0001f1fc",
":bottle_with_popping_cork:": "\U0001f37e",
":bouncing_ball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
":bouncing_ball_person:": "\u26f9\ufe0f",
":bouncing_ball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
":bouquet:": "\U0001f490",
":bouvet_island:": "\U0001f1e7\U0001f1fb",
":bow:": "\U0001f647",
":bow_and_arrow:": "\U0001f3f9",
":bowing_man:": "\U0001f647\u200d\u2642\ufe0f",
":bowing_woman:": "\U0001f647\u200d\u2640\ufe0f",
":bowl_with_spoon:": "\U0001f963",
":bowling:": "\U0001f3b3",
":boxing_glove:": "\U0001f94a",
":boy:": "\U0001f466",
":boy_tone1:": "\U0001f466\U0001f3fb",
":boy_tone2:": "\U0001f466\U0001f3fc",
":boy_tone3:": "\U0001f466\U0001f3fd",
":boy_tone4:": "\U0001f466\U0001f3fe",
":boy_tone5:": "\U0001f466\U0001f3ff",
":brain:": "\U0001f9e0",
":brazil:": "\U0001f1e7\U0001f1f7",
":bread:": "\U0001f35e",
":breast-feeding:": "\U0001f931",
":breast_feeding:": "\U0001f931",
":breast_feeding_tone1:": "\U0001f931\U0001f3fb",
":breast_feeding_tone2:": "\U0001f931\U0001f3fc",
":breast_feeding_tone3:": "\U0001f931\U0001f3fd",
":breast_feeding_tone4:": "\U0001f931\U0001f3fe",
":breast_feeding_tone5:": "\U0001f931\U0001f3ff",
":brick:": "\U0001f9f1",
":bricks:": "\U0001f9f1",
":bride_with_veil:": "\U0001f470",
":bride_with_veil_tone1:": "\U0001f470\U0001f3fb",
":bride_with_veil_tone2:": "\U0001f470\U0001f3fc",
":bride_with_veil_tone3:": "\U0001f470\U0001f3fd",
":bride_with_veil_tone4:": "\U0001f470\U0001f3fe",
":bride_with_veil_tone5:": "\U0001f470\U0001f3ff",
":bridge_at_night:": "\U0001f309",
":briefcase:": "\U0001f4bc",
":briefs:": "\U0001fa72",
":bright_button:": "\U0001f506",
":british_indian_ocean_territory:": "\U0001f1ee\U0001f1f4",
":british_virgin_islands:": "\U0001f1fb\U0001f1ec",
":broccoli:": "\U0001f966",
":broken_chain:": "\u26d3\ufe0f\u200d\U0001f4a5",
":broken_heart:": "\U0001f494",
":broom:": "\U0001f9f9",
":brown_circle:": "\U0001f7e4",
":brown_heart:": "\U0001f90e",
":brown_mushroom:": "\U0001f344\u200d\U0001f7eb",
":brown_square:": "\U0001f7eb",
":brunei:": "\U0001f1e7\U0001f1f3",
":bubble_tea:": "\U0001f9cb",
":bubbles:": "\U0001fae7",
":bucket:": "\U0001faa3",
":bug:": "\U0001f41b",
":building_construction:": "\U0001f3d7\ufe0f",
":bulb:": "\U0001f4a1",
":bulgaria:": "\U0001f1e7\U0001f1ec",
":bullet_train:": "\U0001f685",
":bullettrain_front:": "\U0001f685",
":bullettrain_side:": "\U0001f684",
":bullseye:": "\U0001f3af",
":burkina_faso:": "\U0001f1e7\U0001f1eb",
":burrito:": "\U0001f32f",
":burundi:": "\U0001f1e7\U0001f1ee",
":bus:": "\U0001f68c",
":bus_stop:": "\U0001f68f",
":business_suit_levitating:": "\U0001f574\ufe0f",
":busstop:": "\U0001f68f",
":bust_in_silhouette:": "\U0001f464",
":busts_in_silhouette:": "\U0001f465",
":butter:": "\U0001f9c8",
":butterfly:": "\U0001f98b",
":cactus:": "\U0001f335",
":cake:": "\U0001f370",
":calendar:": "\U0001f4c6",
":calendar_spiral:": "\U0001f5d3",
":call_me:": "\U0001f919",
":call_me_hand:": "\U0001f919",
":call_me_tone1:": "\U0001f919\U0001f3fb",
":call_me_tone2:": "\U0001f919\U0001f3fc",
":call_me_tone3:": "\U0001f919\U0001f3fd",
":call_me_tone4:": "\U0001f919\U0001f3fe",
":call_me_tone5:": "\U0001f919\U0001f3ff",
":calling:": "\U0001f4f2",
":cambodia:": "\U0001f1f0\U0001f1ed",
":camel:": "\U0001f42b",
":camera:": "\U0001f4f7",
":camera_flash:": "\U0001f4f8",
":camera_with_flash:": "\U0001f4f8",
":cameroon:": "\U0001f1e8\U0001f1f2",
":camping:": "\U0001f3d5\ufe0f",
":canada:": "\U0001f1e8\U0001f1e6",
":canary_islands:": "\U0001f1ee\U0001f1e8",
":cancer:": "\u264b",
":candle:": "\U0001f56f\ufe0f",
":candy:": "\U0001f36c",
":canned_food:": "\U0001f96b",
":canoe:": "\U0001f6f6",
":cape_verde:": "\U0001f1e8\U0001f1fb",
":capital_abcd:": "\U0001f520",
":capricorn:": "\u2651",
":car:": "\U0001f697",
":card_box:": "\U0001f5c3",
":card_file_box:": "\U0001f5c3\ufe0f",
":card_index:": "\U0001f4c7",
":card_index_dividers:": "\U0001f5c2\ufe0f",
":caribbean_netherlands:": "\U0001f1e7\U0001f1f6",
":carousel_horse:": "\U0001f3a0",
":carp_streamer:": "\U0001f38f",
":carpentry_saw:": "\U0001fa9a",
":carrot:": "\U0001f955",
":cartwheeling:": "\U0001f938",
":castle:": "\U0001f3f0",
":cat:": "\U0001f431",
":cat2:": "\U0001f408",
":cat_face:": "\U0001f431",
":cat_with_tears_of_joy:": "\U0001f639",
":cat_with_wry_smile:": "\U0001f63c",
":cayman_islands:": "\U0001f1f0\U0001f1fe",
":cd:": "\U0001f4bf",
":central_african_republic:": "\U0001f1e8\U0001f1eb",
":ceuta_melilla:": "\U0001f1ea\U0001f1e6",
":chad:": "\U0001f1f9\U0001f1e9",
":chains:": "\u26d3\ufe0f",
":chair:": "\U0001fa91",
":champagne:": "\U0001f37e",
":champagne_glass:": "\U0001f942",
":chart:": "\U0001f4b9",
":chart_decreasing:": "\U0001f4c9",
":chart_increasing:": "\U0001f4c8",
":chart_increasing_with_yen:": "\U0001f4b9",
":chart_with_downwards_trend:": "\U0001f4c9",
":chart_with_upwards_trend:": "\U0001f4c8",
":check_box_with_check:": "\u2611",
":check_mark:": "\u2714",
":check_mark_button:": "\u2705",
":checkered_flag:": "\U0001f3c1",
":cheese:": "\U0001f9c0",
":cheese_wedge:": "\U0001f9c0",
":chequered_flag:": "\U0001f3c1",
":cherries:": "\U0001f352",
":cherry_blossom:": "\U0001f338",
":chess_pawn:": "\u265f\ufe0f",
":chestnut:": "\U0001f330",
":chicken:": "\U0001f414",
":child:": "\U0001f9d2",
":child_tone1:": "\U0001f9d2\U0001f3fb",
":child_tone2:": "\U0001f9d2\U0001f3fc",
":child_tone3:": "\U0001f9d2\U0001f3fd",
":child_tone4:": "\U0001f9d2\U0001f3fe",
":child_tone5:": "\U0001f9d2\U0001f3ff",
":children_crossing:": "\U0001f6b8",
":chile:": "\U0001f1e8\U0001f1f1",
":chipmunk:": "\U0001f43f\ufe0f",
":chocolate_bar:": "\U0001f36b",
":chopsticks:": "\U0001f962",
":christmas_island:": "\U0001f1e8\U0001f1fd",
":christmas_tree:": "\U0001f384",
":church:": "\u26ea",
":cigarette:": "\U0001f6ac",
":cinema:": "\U0001f3a6",
":circled_M:": "\u24c2",
":circus_tent:": "\U0001f3aa",
":city_dusk:": "\U0001f306",
":city_sunrise:": "\U0001f307",
":city_sunset:": "\U0001f306",
":cityscape:": "\U0001f3d9\ufe0f",
":cityscape_at_dusk:": "\U0001f306",
":cl:": "\U0001f191",
":clamp:": "\U0001f5dc",
":clap:": "\U0001f44f",
":clap_tone1:": "\U0001f44f\U0001f3fb",
":clap_tone2:": "\U0001f44f\U0001f3fc",
":clap_tone3:": "\U0001f44f\U0001f3fd",
":clap_tone4:": "\U0001f44f\U0001f3fe",
":clap_tone5:": "\U0001f44f\U0001f3ff",
":clapper:": "\U0001f3ac",
":clapper_board:": "\U0001f3ac",
":clapping_hands:": "\U0001f44f",
":classical_building:": "\U0001f3db\ufe0f",
":climbing:": "\U0001f9d7",
":climbing_man:": "\U0001f9d7\u200d\u2642\ufe0f",
":climbing_woman:": "\U0001f9d7\u200d\u2640\ufe0f",
":clinking_beer_mugs:": "\U0001f37b",
":clinking_glasses:": "\U0001f942",
":clipboard:": "\U0001f4cb",
":clipperton_island:": "\U0001f1e8\U0001f1f5",
":clock:": "\U0001f570",
":clock1:": "\U0001f550",
":clock10:": "\U0001f559",
":clock1030:": "\U0001f565",
":clock11:": "\U0001f55a",
":clock1130:": "\U0001f566",
":clock12:": "\U0001f55b",
":clock1230:": "\U0001f567",
":clock130:": "\U0001f55c",
":clock2:": "\U0001f551",
":clock230:": "\U0001f55d",
":clock3:": "\U0001f552",
":clock330:": "\U0001f55e",
":clock4:": "\U0001f553",
":clock430:": "\U0001f55f",
":clock5:": "\U0001f554",
":clock530:": "\U0001f560",
":clock6:": "\U0001f555",
":clock630:": "\U0001f561",
":clock7:": "\U0001f556",
":clock730:": "\U0001f562",
":clock8:": "\U0001f557",
":clock830:": "\U0001f563",
":clock9:": "\U0001f558",
":clock930:": "\U0001f564",
":clockwise_vertical_arrows:": "\U0001f503",
":closed_book:": "\U0001f4d5",
":closed_lock_with_key:": "\U0001f510",
":closed_mailbox_with_lowered_flag:": "\U0001f4ea",
":closed_mailbox_with_raised_flag:": "\U0001f4eb",
":closed_umbrella:": "\U0001f302",
":cloud:": "\u2601\ufe0f",
":cloud_lightning:": "\U0001f329",
":cloud_rain:": "\U0001f327",
":cloud_snow:": "\U0001f328",
":cloud_tornado:": "\U0001f32a",
":cloud_with_lightning:": "\U0001f329",
":cloud_with_lightning_and_rain:": "\u26c8",
":cloud_with_rain:": "\U0001f327",
":cloud_with_snow:": "\U0001f328",
":clown:": "\U0001f921",
":clown_face:": "\U0001f921",
":club_suit:": "\u2663",
":clubs:": "\u2663\ufe0f",
":clutch_bag:": "\U0001f45d",
":cn:": "\U0001f1e8\U0001f1f3",
":coat:": "\U0001f9e5",
":cockroach:": "\U0001fab3",
":cocktail:": "\U0001f378",
":cocktail_glass:": "\U0001f378",
":coconut:": "\U0001f965",
":cocos_islands:": "\U0001f1e8\U0001f1e8",
":coffee:": "\u2615",
":coffin:": "\u26b0\ufe0f",
":coin:": "\U0001fa99",
":cold_face:": "\U0001f976",
":cold_sweat:": "\U0001f630",
":collision:": "\U0001f4a5",
":colombia:": "\U0001f1e8\U0001f1f4",
":comet:": "\u2604\ufe0f",
":comoros:": "\U0001f1f0\U0001f1f2",
":compass:": "\U0001f9ed",
":compression:": "\U0001f5dc\ufe0f",
":computer:": "\U0001f4bb",
":computer_disk:": "\U0001f4bd",
":computer_mouse:": "\U0001f5b1",
":confetti_ball:": "\U0001f38a",
":confounded:": "\U0001f616",
":confounded_face:": "\U0001f616",
":confused:": "\U0001f615",
":confused_face:": "\U0001f615",
":congo_brazzaville:": "\U0001f1e8\U0001f1ec",
":congo_kinshasa:": "\U0001f1e8\U0001f1e9",
":congratulations:": "\u3297\ufe0f",
":construction:": "\U0001f6a7",
":construction_site:": "\U0001f3d7",
":construction_worker:": "\U0001f477\u200d\u2642\ufe0f",
":construction_worker_man:": "\U0001f477\u200d\u2642\ufe0f",
":construction_worker_tone1:": "\U0001f477\U0001f3fb",
":construction_worker_tone2:": "\U0001f477\U0001f3fc",
":construction_worker_tone3:": "\U0001f477\U0001f3fd",
":construction_worker_tone4:": "\U0001f477\U0001f3fe",
":construction_worker_tone5:": "\U0001f477\U0001f3ff",
":construction_worker_woman:": "\U0001f477\u200d\u2640\ufe0f",
":control_knobs:": "\U0001f39b\ufe0f",
":convenience_store:": "\U0001f3ea",
":cook:": "\U0001f9d1\u200d\U0001f373",
":cook_islands:": "\U0001f1e8\U0001f1f0",
":cooked_rice:": "\U0001f35a",
":cookie:": "\U0001f36a",
":cooking:": "\U0001f373",
":cool:": "\U0001f192",
":cop:": "\U0001f46e\u200d\u2642\ufe0f",
":copyright:": "\u00a9\ufe0f",
":coral:": "\U0001fab8",
":corn:": "\U0001f33d",
":costa_rica:": "\U0001f1e8\U0001f1f7",
":cote_divoire:": "\U0001f1e8\U0001f1ee",
":couch:": "\U0001f6cb",
":couch_and_lamp:": "\U0001f6cb\ufe0f",
":counterclockwise_arrows_button:": "\U0001f504",
":couple:": "\U0001f46b",
":couple_mm:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468",
":couple_with_heart:": "\U0001f491",
":couple_with_heart_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468",
":couple_with_heart_woman_man:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f468",
":couple_with_heart_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469",
":couple_ww:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469",
":couplekiss:": "\U0001f48f",
":couplekiss_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
":couplekiss_man_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
":couplekiss_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469",
":cow:": "\U0001f42e",
":cow2:": "\U0001f404",
":cow_face:": "\U0001f42e",
":cowboy:": "\U0001f920",
":cowboy_hat_face:": "\U0001f920",
":crab:": "\U0001f980",
":crayon:": "\U0001f58d",
":crazy_face:": "\U0001f92a",
":credit_card:": "\U0001f4b3",
":crescent_moon:": "\U0001f319",
":cricket:": "\U0001f997",
":cricket_bat_and_ball:": "\U0001f3cf",
":cricket_game:": "\U0001f3cf",
":croatia:": "\U0001f1ed\U0001f1f7",
":crocodile:": "\U0001f40a",
":croissant:": "\U0001f950",
":cross:": "\u271d",
":cross_mark:": "\u274c",
":cross_mark_button:": "\u274e",
":crossed_fingers:": "\U0001f91e",
":crossed_flags:": "\U0001f38c",
":crossed_swords:": "\u2694\ufe0f",
":crown:": "\U0001f451",
":cruise_ship:": "\U0001f6f3",
":crutch:": "\U0001fa7c",
":cry:": "\U0001f622",
":crying_cat:": "\U0001f63f",
":crying_cat_face:": "\U0001f63f",
":crying_face:": "\U0001f622",
":crystal_ball:": "\U0001f52e",
":cuba:": "\U0001f1e8\U0001f1fa",
":cucumber:": "\U0001f952",
":cup_with_straw:": "\U0001f964",
":cupcake:": "\U0001f9c1",
":cupid:": "\U0001f498",
":curacao:": "\U0001f1e8\U0001f1fc",
":curling_stone:": "\U0001f94c",
":curly_hair:": "\U0001f9b1",
":curly_haired_man:": "\U0001f468\u200d\U0001f9b1",
":curly_haired_person:": "\U0001f9d1\u200d\U0001f9b1",
":curly_haired_woman:": "\U0001f469\u200d\U0001f9b1",
":curly_loop:": "\u27b0",
":currency_exchange:": "\U0001f4b1",
":curry:": "\U0001f35b",
":curry_rice:": "\U0001f35b",
":cursing_face:": "\U0001f92c",
":custard:": "\U0001f36e",
":customs:": "\U0001f6c3",
":cut_of_meat:": "\U0001f969",
":cyclone:": "\U0001f300",
":cyprus:": "\U0001f1e8\U0001f1fe",
":czech_republic:": "\U0001f1e8\U0001f1ff",
":dagger:": "\U0001f5e1",
":dagger_knife:": "\U0001f5e1\ufe0f",
":dancer:": "\U0001f483",
":dancer_tone1:": "\U0001f483\U0001f3fb",
":dancer_tone2:": "\U0001f483\U0001f3fc",
":dancer_tone3:": "\U0001f483\U0001f3fd",
":dancer_tone4:": "\U0001f483\U0001f3fe",
":dancer_tone5:": "\U0001f483\U0001f3ff",
":dancers:": "\U0001f46f\u200d\u2640\ufe0f",
":dancing_men:": "\U0001f46f\u200d\u2642\ufe0f",
":dancing_women:": "\U0001f46f\u200d\u2640\ufe0f",
":dango:": "\U0001f361",
":dark_sunglasses:": "\U0001f576\ufe0f",
":dart:": "\U0001f3af",
":dash:": "\U0001f4a8",
":dashing_away:": "\U0001f4a8",
":date:": "\U0001f4c5",
":de:": "\U0001f1e9\U0001f1ea",
":deaf_man:": "\U0001f9cf\u200d\u2642\ufe0f",
":deaf_person:": "\U0001f9cf",
":deaf_woman:": "\U0001f9cf\u200d\u2640\ufe0f",
":deciduous_tree:": "\U0001f333",
":deer:": "\U0001f98c",
":delivery_truck:": "\U0001f69a",
":denmark:": "\U0001f1e9\U0001f1f0",
":department_store:": "\U0001f3ec",
":derelict_house:": "\U0001f3da",
":derelict_house_building:": "\U0001f3da\ufe0f",
":desert:": "\U0001f3dc\ufe0f",
":desert_island:": "\U0001f3dd\ufe0f",
":desktop:": "\U0001f5a5",
":desktop_computer:": "\U0001f5a5\ufe0f",
":detective:": "\U0001f575",
":detective_tone1:": "\U0001f575\U0001f3fb",
":detective_tone2:": "\U0001f575\U0001f3fc",
":detective_tone3:": "\U0001f575\U0001f3fd",
":detective_tone4:": "\U0001f575\U0001f3fe",
":detective_tone5:": "\U0001f575\U0001f3ff",
":diamond_shape_with_a_dot_inside:": "\U0001f4a0",
":diamond_suit:": "\u2666",
":diamond_with_a_dot:": "\U0001f4a0",
":diamonds:": "\u2666\ufe0f",
":diego_garcia:": "\U0001f1e9\U0001f1ec",
":dim_button:": "\U0001f505",
":disappointed:": "\U0001f61e",
":disappointed_face:": "\U0001f61e",
":disappointed_relieved:": "\U0001f625",
":disguised_face:": "\U0001f978",
":divide:": "\u2797",
":dividers:": "\U0001f5c2",
":diving_mask:": "\U0001f93f",
":diya_lamp:": "\U0001fa94",
":dizzy:": "\U0001f4ab",
":dizzy_face:": "\U0001f635",
":djibouti:": "\U0001f1e9\U0001f1ef",
":dna:": "\U0001f9ec",
":do_not_litter:": "\U0001f6af",
":dodo:": "\U0001f9a4",
":dog:": "\U0001f436",
":dog2:": "\U0001f415",
":dog_face:": "\U0001f436",
":dollar:": "\U0001f4b5",
":dollar_banknote:": "\U0001f4b5",
":dolls:": "\U0001f38e",
":dolphin:": "\U0001f42c",
":dominica:": "\U0001f1e9\U0001f1f2",
":dominican_republic:": "\U0001f1e9\U0001f1f4",
":donkey:": "\U0001facf",
":door:": "\U0001f6aa",
":dotted_line_face:": "\U0001fae5",
":dotted_six-pointed_star:": "\U0001f52f",
":double_curly_loop:": "\u27bf",
":double_exclamation_mark:": "\u203c",
":double_vertical_bar:": "\u23f8\ufe0f",
":doughnut:": "\U0001f369",
":dove:": "\U0001f54a",
":dove_of_peace:": "\U0001f54a\ufe0f",
":down-left_arrow:": "\u2199",
":down-right_arrow:": "\u2198",
":down_arrow:": "\u2b07",
":downcast_face_with_sweat:": "\U0001f613",
":downwards_button:": "\U0001f53d",
":dragon:": "\U0001f409",
":dragon_face:": "\U0001f432",
":dress:": "\U0001f457",
":dromedary_camel:": "\U0001f42a",
":drooling_face:": "\U0001f924",
":drop_of_blood:": "\U0001fa78",
":droplet:": "\U0001f4a7",
":drum:": "\U0001f941",
":drum_with_drumsticks:": "\U0001f941",
":duck:": "\U0001f986",
":dumpling:": "\U0001f95f",
":dvd:": "\U0001f4c0",
":e-mail:": "\U0001f4e7",
":eagle:": "\U0001f985",
":ear:": "\U0001f442",
":ear_of_corn:": "\U0001f33d",
":ear_of_rice:": "\U0001f33e",
":ear_tone1:": "\U0001f442\U0001f3fb",
":ear_tone2:": "\U0001f442\U0001f3fc",
":ear_tone3:": "\U0001f442\U0001f3fd",
":ear_tone4:": "\U0001f442\U0001f3fe",
":ear_tone5:": "\U0001f442\U0001f3ff",
":ear_with_hearing_aid:": "\U0001f9bb",
":earth_africa:": "\U0001f30d",
":earth_americas:": "\U0001f30e",
":earth_asia:": "\U0001f30f",
":ecuador:": "\U0001f1ea\U0001f1e8",
":egg:": "\U0001f95a",
":eggplant:": "\U0001f346",
":egypt:": "\U0001f1ea\U0001f1ec",
":eight:": "8\ufe0f\u20e3",
":eight-pointed_star:": "\u2734",
":eight-spoked_asterisk:": "\u2733",
":eight-thirty:": "\U0001f563",
":eight_o’clock:": "\U0001f557",
":eight_pointed_black_star:": "\u2734\ufe0f",
":eight_spoked_asterisk:": "\u2733\ufe0f",
":eject:": "\u23cf\ufe0f",
":eject_button:": "\u23cf",
":el_salvador:": "\U0001f1f8\U0001f1fb",
":electric_plug:": "\U0001f50c",
":elephant:": "\U0001f418",
":elevator:": "\U0001f6d7",
":eleven-thirty:": "\U0001f566",
":eleven_o’clock:": "\U0001f55a",
":elf:": "\U0001f9dd\u200d\u2642\ufe0f",
":elf_man:": "\U0001f9dd\u200d\u2642\ufe0f",
":elf_tone1:": "\U0001f9dd\U0001f3fb",
":elf_tone2:": "\U0001f9dd\U0001f3fc",
":elf_tone3:": "\U0001f9dd\U0001f3fd",
":elf_tone4:": "\U0001f9dd\U0001f3fe",
":elf_tone5:": "\U0001f9dd\U0001f3ff",
":elf_woman:": "\U0001f9dd\u200d\u2640\ufe0f",
":email:": "\u2709\ufe0f",
":empty_nest:": "\U0001fab9",
":end:": "\U0001f51a",
":england:": "\U0001f3f4\U000e0067\U000e0062\U000e0065\U000e006e\U000e0067\U000e007f",
":enraged_face:": "\U0001f621",
":envelope:": "\u2709",
":envelope_with_arrow:": "\U0001f4e9",
":equatorial_guinea:": "\U0001f1ec\U0001f1f6",
":eritrea:": "\U0001f1ea\U0001f1f7",
":es:": "\U0001f1ea\U0001f1f8",
":estonia:": "\U0001f1ea\U0001f1ea",
":ethiopia:": "\U0001f1ea\U0001f1f9",
":eu:": "\U0001f1ea\U0001f1fa",
":euro:": "\U0001f4b6",
":euro_banknote:": "\U0001f4b6",
":european_castle:": "\U0001f3f0",
":european_post_office:": "\U0001f3e4",
":european_union:": "\U0001f1ea\U0001f1fa",
":evergreen_tree:": "\U0001f332",
":ewe:": "\U0001f411",
":exclamation:": "\u2757",
":exclamation_question_mark:": "\u2049",
":exploding_head:": "\U0001f92f",
":expressionless:": "\U0001f611",
":expressionless_face:": "\U0001f611",
":eye:": "\U0001f441\ufe0f",
":eye-in-speech-bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
":eye_in_speech_bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
":eye_speech_bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
":eyeglasses:": "\U0001f453",
":eyes:": "\U0001f440",
":face_blowing_a_kiss:": "\U0001f618",
":face_exhaling:": "\U0001f62e\u200d\U0001f4a8",
":face_holding_back_tears:": "\U0001f979",
":face_in_clouds:": "\U0001f636\u200d\U0001f32b\ufe0f",
":face_palm:": "\U0001f926",
":face_savoring_food:": "\U0001f60b",
":face_screaming_in_fear:": "\U0001f631",
":face_vomiting:": "\U0001f92e",
":face_with_cowboy_hat:": "\U0001f920",
":face_with_crossed-out_eyes:": "\U0001f635",
":face_with_diagonal_mouth:": "\U0001fae4",
":face_with_hand_over_mouth:": "\U0001f92d",
":face_with_head-bandage:": "\U0001f915",
":face_with_head_bandage:": "\U0001f915",
":face_with_medical_mask:": "\U0001f637",
":face_with_monocle:": "\U0001f9d0",
":face_with_open_eyes_and_hand_over_mouth:": "\U0001fae2",
":face_with_open_mouth:": "\U0001f62e",
":face_with_peeking_eye:": "\U0001fae3",
":face_with_raised_eyebrow:": "\U0001f928",
":face_with_rolling_eyes:": "\U0001f644",
":face_with_spiral_eyes:": "\U0001f635\u200d\U0001f4ab",
":face_with_steam_from_nose:": "\U0001f624",
":face_with_symbols_on_mouth:": "\U0001f92c",
":face_with_symbols_over_mouth:": "\U0001f92c",
":face_with_tears_of_joy:": "\U0001f602",
":face_with_thermometer:": "\U0001f912",
":face_with_tongue:": "\U0001f61b",
":face_without_mouth:": "\U0001f636",
":facepalm:": "\U0001f926",
":facepunch:": "\U0001f44a",
":factory:": "\U0001f3ed",
":factory_worker:": "\U0001f9d1\u200d\U0001f3ed",
":fairy:": "\U0001f9da\u200d\u2640\ufe0f",
":fairy_man:": "\U0001f9da\u200d\u2642\ufe0f",
":fairy_tone1:": "\U0001f9da\U0001f3fb",
":fairy_tone2:": "\U0001f9da\U0001f3fc",
":fairy_tone3:": "\U0001f9da\U0001f3fd",
":fairy_tone4:": "\U0001f9da\U0001f3fe",
":fairy_tone5:": "\U0001f9da\U0001f3ff",
":fairy_woman:": "\U0001f9da\u200d\u2640\ufe0f",
":falafel:": "\U0001f9c6",
":falkland_islands:": "\U0001f1eb\U0001f1f0",
":fallen_leaf:": "\U0001f342",
":family:": "\U0001f468\u200d\U0001f469\u200d\U0001f466",
":family_adult_adult_child:": "\U0001f9d1\u200d\U0001f9d1\u200d\U0001f9d2",
":family_adult_adult_child_child:": "\U0001f9d1\u200d\U0001f9d1\u200d\U0001f9d2\u200d\U0001f9d2",
":family_adult_child:": "\U0001f9d1\u200d\U0001f9d2",
":family_adult_child_child:": "\U0001f9d1\u200d\U0001f9d2\u200d\U0001f9d2",
":family_man_boy:": "\U0001f468\u200d\U0001f466",
":family_man_boy_boy:": "\U0001f468\u200d\U0001f466\u200d\U0001f466",
":family_man_girl:": "\U0001f468\u200d\U0001f467",
":family_man_girl_boy:": "\U0001f468\u200d\U0001f467\u200d\U0001f466",
":family_man_girl_girl:": "\U0001f468\u200d\U0001f467\u200d\U0001f467",
":family_man_man_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466",
":family_man_man_boy_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466",
":family_man_man_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467",
":family_man_man_girl_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466",
":family_man_man_girl_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467",
":family_man_woman_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466",
":family_man_woman_boy_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_man_woman_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467",
":family_man_woman_girl_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_man_woman_girl_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_mmb:": "\U0001f468\u200d\U0001f468\u200d\U0001f466",
":family_mmbb:": "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466",
":family_mmg:": "\U0001f468\u200d\U0001f468\u200d\U0001f467",
":family_mmgb:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466",
":family_mmgg:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467",
":family_mwbb:": "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_mwg:": "\U0001f468\u200d\U0001f469\u200d\U0001f467",
":family_mwgb:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_mwgg:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_woman_boy:": "\U0001f469\u200d\U0001f466",
":family_woman_boy_boy:": "\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_woman_girl:": "\U0001f469\u200d\U0001f467",
":family_woman_girl_boy:": "\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_woman_girl_girl:": "\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_woman_woman_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466",
":family_woman_woman_boy_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_woman_woman_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467",
":family_woman_woman_girl_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_woman_woman_girl_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_wwb:": "\U0001f469\u200d\U0001f469\u200d\U0001f466",
":family_wwbb:": "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_wwg:": "\U0001f469\u200d\U0001f469\u200d\U0001f467",
":family_wwgb:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_wwgg:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":farmer:": "\U0001f9d1\u200d\U0001f33e",
":faroe_islands:": "\U0001f1eb\U0001f1f4",
":fast-forward_button:": "\u23e9",
":fast_down_button:": "\u23ec",
":fast_forward:": "\u23e9",
":fast_reverse_button:": "\u23ea",
":fast_up_button:": "\u23eb",
":fax:": "\U0001f4e0",
":fax_machine:": "\U0001f4e0",
":fearful:": "\U0001f628",
":fearful_face:": "\U0001f628",
":feather:": "\U0001fab6",
":feet:": "\U0001f43e",
":female-artist:": "\U0001f469\u200d\U0001f3a8",
":female-astronaut:": "\U0001f469\u200d\U0001f680",
":female-construction-worker:": "\U0001f477\u200d\u2640\ufe0f",
":female-cook:": "\U0001f469\u200d\U0001f373",
":female-detective:": "\U0001f575\ufe0f\u200d\u2640\ufe0f",
":female-doctor:": "\U0001f469\u200d\u2695\ufe0f",
":female-factory-worker:": "\U0001f469\u200d\U0001f3ed",
":female-farmer:": "\U0001f469\u200d\U0001f33e",
":female-firefighter:": "\U0001f469\u200d\U0001f692",
":female-guard:": "\U0001f482\u200d\u2640\ufe0f",
":female-judge:": "\U0001f469\u200d\u2696\ufe0f",
":female-mechanic:": "\U0001f469\u200d\U0001f527",
":female-office-worker:": "\U0001f469\u200d\U0001f4bc",
":female-pilot:": "\U0001f469\u200d\u2708\ufe0f",
":female-police-officer:": "\U0001f46e\u200d\u2640\ufe0f",