somedoc 0.2.10

A very simple document model and markup generator.
Documentation
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
/*!
This module contains only constant strings for commonly supported emoji names.
*/

// People
pub const BOWTIE: &str = "bowtie";
pub const SMILE: &str = "smile";
pub const SIMPLE_SMILE: &str = "simple_smile";
pub const LAUGHING: &str = "laughing";
pub const BLUSH: &str = "blush";
pub const SMILEY: &str = "smiley";
pub const RELAXED: &str = "relaxed";
pub const SMIRK: &str = "smirk";
pub const HEART_EYES: &str = "heart_eyes";
pub const KISSING_HEART: &str = "kissing_heart";
pub const KISSING_CLOSED_EYES: &str = "kissing_closed_eyes";
pub const FLUSHED: &str = "flushed";
pub const RELIEVED: &str = "relieved";
pub const SATISFIED: &str = "satisfied";
pub const GRIN: &str = "grin";
pub const WINK: &str = "wink";
pub const STUCK_OUT_TONGUE_WINKING_EYE: &str = "stuck_out_tongue_winking_eye";
pub const STUCK_OUT_TONGUE_CLOSED_EYES: &str = "stuck_out_tongue_closed_eyes";
pub const GRINNING: &str = "grinning";
pub const KISSING: &str = "kissing";
pub const KISSING_SMILING_EYES: &str = "kissing_smiling_eyes";
pub const STUCK_OUT_TONGUE: &str = "stuck_out_tongue";
pub const SLEEPING: &str = "sleeping";
pub const WORRIED: &str = "worried";
pub const FROWNING: &str = "frowning";
pub const ANGUISHED: &str = "anguished";
pub const OPEN_MOUTH: &str = "open_mouth";
pub const GRIMACING: &str = "grimacing";
pub const CONFUSED: &str = "confused";
pub const HUSHED: &str = "hushed";
pub const EXPRESSIONLESS: &str = "expressionless";
pub const UNAMUSED: &str = "unamused";
pub const SWEAT_SMILE: &str = "sweat_smile";
pub const SWEAT: &str = "sweat";
pub const DISAPPOINTED_RELIEVED: &str = "disappointed_relieved";
pub const WEARY: &str = "weary";
pub const PENSIVE: &str = "pensive";
pub const DISAPPOINTED: &str = "disappointed";
pub const CONFOUNDED: &str = "confounded";
pub const FEARFUL: &str = "fearful";
pub const COLD_SWEAT: &str = "cold_sweat";
pub const PERSEVERE: &str = "persevere";
pub const CRY: &str = "cry";
pub const SOB: &str = "sob";
pub const JOY: &str = "joy";
pub const ASTONISHED: &str = "astonished";
pub const SCREAM: &str = "scream";
pub const NECKBEARD: &str = "neckbeard";
pub const TIRED_FACE: &str = "tired_face";
pub const ANGRY: &str = "angry";
pub const RAGE: &str = "rage";
pub const TRIUMPH: &str = "triumph";
pub const SLEEPY: &str = "sleepy";
pub const YUM: &str = "yum";
pub const MASK: &str = "mask";
pub const SUNGLASSES: &str = "sunglasses";
pub const DIZZY_FACE: &str = "dizzy_face";
pub const IMP: &str = "imp";
pub const SMILING_IMP: &str = "smiling_imp";
pub const NEUTRAL_FACE: &str = "neutral_face";
pub const NO_MOUTH: &str = "no_mouth";
pub const INNOCENT: &str = "innocent";
pub const ALIEN: &str = "alien";
pub const YELLOW_HEART: &str = "yellow_heart";
pub const BLUE_HEART: &str = "blue_heart";
pub const PURPLE_HEART: &str = "purple_heart";
pub const HEART: &str = "heart";
pub const GREEN_HEART: &str = "green_heart";
pub const BROKEN_HEART: &str = "broken_heart";
pub const HEARTBEAT: &str = "heartbeat";
pub const HEARTPULSE: &str = "heartpulse";
pub const TWO_HEARTS: &str = "two_hearts";
pub const REVOLVING_HEARTS: &str = "revolving_hearts";
pub const CUPID: &str = "cupid";
pub const SPARKLING_HEART: &str = "sparkling_heart";
pub const SPARKLES: &str = "sparkles";
pub const STAR: &str = "star";
pub const STAR2: &str = "star2";
pub const DIZZY: &str = "dizzy";
pub const BOOM: &str = "boom";
pub const COLLISION: &str = "collision";
pub const ANGER: &str = "anger";
pub const EXCLAMATION: &str = "exclamation";
pub const QUESTION: &str = "question";
pub const GREY_EXCLAMATION: &str = "grey_exclamation";
pub const GREY_QUESTION: &str = "grey_question";
pub const ZZZ: &str = "zzz";
pub const DASH: &str = "dash";
pub const SWEAT_DROPS: &str = "sweat_drops";
pub const NOTES: &str = "notes";
pub const MUSICAL_NOTE: &str = "musical_note";
pub const FIRE: &str = "fire";
pub const HANKEY: &str = "hankey";
pub const POOP: &str = "poop";
pub const SHIT: &str = "shit";
pub const PLUS_1: &str = "+1";
pub const THUMBSUP: &str = "thumbsup";
pub const MINUS_1: &str = "-1";
pub const THUMBSDOWN: &str = "thumbsdown";
pub const OK_HAND: &str = "ok_hand";
pub const PUNCH: &str = "punch";
pub const FACEPUNCH: &str = "facepunch";
pub const FIST: &str = "fist";
pub const V: &str = "v";
pub const WAVE: &str = "wave";
pub const HAND: &str = "hand";
pub const RAISED_HAND: &str = "raised_hand";
pub const OPEN_HANDS: &str = "open_hands";
pub const POINT_UP: &str = "point_up";
pub const POINT_DOWN: &str = "point_down";
pub const POINT_LEFT: &str = "point_left";
pub const POINT_RIGHT: &str = "point_right";
pub const RAISED_HANDS: &str = "raised_hands";
pub const PRAY: &str = "pray";
pub const POINT_UP_2: &str = "point_up_2";
pub const CLAP: &str = "clap";
pub const MUSCLE: &str = "muscle";
pub const METAL: &str = "metal";
pub const FU: &str = "fu";
pub const RUNNER: &str = "runner";
pub const RUNNING: &str = "running";
pub const COUPLE: &str = "couple";
pub const FAMILY: &str = "family";
pub const TWO_MEN_HOLDING_HANDS: &str = "two_men_holding_hands";
pub const TWO_WOMEN_HOLDING_HANDS: &str = "two_women_holding_hands";
pub const DANCER: &str = "dancer";
pub const DANCERS: &str = "dancers";
pub const OK_WOMAN: &str = "ok_woman";
pub const NO_GOOD: &str = "no_good";
pub const INFORMATION_DESK_PERSON: &str = "information_desk_person";
pub const RAISING_HAND: &str = "raising_hand";
pub const BRIDE_WITH_VEIL: &str = "bride_with_veil";
pub const PERSON_WITH_POUTING_FACE: &str = "person_with_pouting_face";
pub const PERSON_FROWNING: &str = "person_frowning";
pub const BOW: &str = "bow";
pub const COUPLEKISS: &str = "couplekiss";
pub const COUPLE_WITH_HEART: &str = "couple_with_heart";
pub const MASSAGE: &str = "massage";
pub const HAIRCUT: &str = "haircut";
pub const NAIL_CARE: &str = "nail_care";
pub const BOY: &str = "boy";
pub const GIRL: &str = "girl";
pub const WOMAN: &str = "woman";
pub const MAN: &str = "man";
pub const BABY: &str = "baby";
pub const OLDER_WOMAN: &str = "older_woman";
pub const OLDER_MAN: &str = "older_man";
pub const PERSON_WITH_BLOND_HAIR: &str = "person_with_blond_hair";
pub const MAN_WITH_GUA_PI_MAO: &str = "man_with_gua_pi_mao";
pub const MAN_WITH_TURBAN: &str = "man_with_turban";
pub const CONSTRUCTION_WORKER: &str = "construction_worker";
pub const COP: &str = "cop";
pub const ANGEL: &str = "angel";
pub const PRINCESS: &str = "princess";
pub const SMILEY_CAT: &str = "smiley_cat";
pub const SMILE_CAT: &str = "smile_cat";
pub const HEART_EYES_CAT: &str = "heart_eyes_cat";
pub const KISSING_CAT: &str = "kissing_cat";
pub const SMIRK_CAT: &str = "smirk_cat";
pub const SCREAM_CAT: &str = "scream_cat";
pub const CRYING_CAT_FACE: &str = "crying_cat_face";
pub const JOY_CAT: &str = "joy_cat";
pub const POUTING_CAT: &str = "pouting_cat";
pub const JAPANESE_OGRE: &str = "japanese_ogre";
pub const JAPANESE_GOBLIN: &str = "japanese_goblin";
pub const SEE_NO_EVIL: &str = "see_no_evil";
pub const HEAR_NO_EVIL: &str = "hear_no_evil";
pub const SPEAK_NO_EVIL: &str = "speak_no_evil";
pub const GUARDSMAN: &str = "guardsman";
pub const SKULL: &str = "skull";
pub const FEET: &str = "feet";
pub const LIPS: &str = "lips";
pub const KISS: &str = "kiss";
pub const DROPLET: &str = "droplet";
pub const EAR: &str = "ear";
pub const EYES: &str = "eyes";
pub const NOSE: &str = "nose";
pub const TONGUE: &str = "tongue";
pub const LOVE_LETTER: &str = "love_letter";
pub const BUST_IN_SILHOUETTE: &str = "bust_in_silhouette";
pub const BUSTS_IN_SILHOUETTE: &str = "busts_in_silhouette";
pub const SPEECH_BALLOON: &str = "speech_balloon";
pub const THOUGHT_BALLOON: &str = "thought_balloon";
pub const FEELSGOOD: &str = "feelsgood";
pub const FINNADIE: &str = "finnadie";
pub const GOBERSERK: &str = "goberserk";
pub const GODMODE: &str = "godmode";
pub const HURTREALBAD: &str = "hurtrealbad";
pub const RAGE1: &str = "rage1";
pub const RAGE2: &str = "rage2";
pub const RAGE3: &str = "rage3";
pub const RAGE4: &str = "rage4";
pub const SUSPECT: &str = "suspect";
pub const TROLLFACE: &str = "trollface";

// Nature
pub const SUNNY: &str = "sunny";
pub const UMBRELLA: &str = "umbrella";
pub const CLOUD: &str = "cloud";
pub const SNOWFLAKE: &str = "snowflake";
pub const SNOWMAN: &str = "snowman";
pub const ZAP: &str = "zap";
pub const CYCLONE: &str = "cyclone";
pub const FOGGY: &str = "foggy";
pub const OCEAN: &str = "ocean";
pub const CAT: &str = "cat";
pub const DOG: &str = "dog";
pub const MOUSE: &str = "mouse";
pub const HAMSTER: &str = "hamster";
pub const RABBIT: &str = "rabbit";
pub const WOLF: &str = "wolf";
pub const FROG: &str = "frog";
pub const TIGER: &str = "tiger";
pub const KOALA: &str = "koala";
pub const BEAR: &str = "bear";
pub const PIG: &str = "pig";
pub const PIG_NOSE: &str = "pig_nose";
pub const COW: &str = "cow";
pub const BOAR: &str = "boar";
pub const MONKEY_FACE: &str = "monkey_face";
pub const MONKEY: &str = "monkey";
pub const HORSE: &str = "horse";
pub const RACEHORSE: &str = "racehorse";
pub const CAMEL: &str = "camel";
pub const SHEEP: &str = "sheep";
pub const ELEPHANT: &str = "elephant";
pub const PANDA_FACE: &str = "panda_face";
pub const SNAKE: &str = "snake";
pub const BIRD: &str = "bird";
pub const BABY_CHICK: &str = "baby_chick";
pub const HATCHED_CHICK: &str = "hatched_chick";
pub const HATCHING_CHICK: &str = "hatching_chick";
pub const CHICKEN: &str = "chicken";
pub const PENGUIN: &str = "penguin";
pub const TURTLE: &str = "turtle";
pub const BUG: &str = "bug";
pub const HONEYBEE: &str = "honeybee";
pub const ANT: &str = "ant";
pub const BEETLE: &str = "beetle";
pub const SNAIL: &str = "snail";
pub const OCTOPUS: &str = "octopus";
pub const TROPICAL_FISH: &str = "tropical_fish";
pub const FISH: &str = "fish";
pub const WHALE: &str = "whale";
pub const WHALE2: &str = "whale2";
pub const DOLPHIN: &str = "dolphin";
pub const COW2: &str = "cow2";
pub const RAM: &str = "ram";
pub const RAT: &str = "rat";
pub const WATER_BUFFALO: &str = "water_buffalo";
pub const TIGER2: &str = "tiger2";
pub const RABBIT2: &str = "rabbit2";
pub const DRAGON: &str = "dragon";
pub const GOAT: &str = "goat";
pub const ROOSTER: &str = "rooster";
pub const DOG2: &str = "dog2";
pub const PIG2: &str = "pig2";
pub const MOUSE2: &str = "mouse2";
pub const OX: &str = "ox";
pub const DRAGON_FACE: &str = "dragon_face";
pub const BLOWFISH: &str = "blowfish";
pub const CROCODILE: &str = "crocodile";
pub const DROMEDARY_CAMEL: &str = "dromedary_camel";
pub const LEOPARD: &str = "leopard";
pub const CAT2: &str = "cat2";
pub const POODLE: &str = "poodle";
pub const PAW_PRINTS: &str = "paw_prints";
pub const BOUQUET: &str = "bouquet";
pub const CHERRY_BLOSSOM: &str = "cherry_blossom";
pub const TULIP: &str = "tulip";
pub const FOUR_LEAF_CLOVER: &str = "four_leaf_clover";
pub const ROSE: &str = "rose";
pub const SUNFLOWER: &str = "sunflower";
pub const HIBISCUS: &str = "hibiscus";
pub const MAPLE_LEAF: &str = "maple_leaf";
pub const LEAVES: &str = "leaves";
pub const FALLEN_LEAF: &str = "fallen_leaf";
pub const HERB: &str = "herb";
pub const MUSHROOM: &str = "mushroom";
pub const CACTUS: &str = "cactus";
pub const PALM_TREE: &str = "palm_tree";
pub const EVERGREEN_TREE: &str = "evergreen_tree";
pub const DECIDUOUS_TREE: &str = "deciduous_tree";
pub const CHESTNUT: &str = "chestnut";
pub const SEEDLING: &str = "seedling";
pub const BLOSSOM: &str = "blossom";
pub const EAR_OF_RICE: &str = "ear_of_rice";
pub const SHELL: &str = "shell";
pub const GLOBE_WITH_MERIDIANS: &str = "globe_with_meridians";
pub const SUN_WITH_FACE: &str = "sun_with_face";
pub const FULL_MOON_WITH_FACE: &str = "full_moon_with_face";
pub const NEW_MOON_WITH_FACE: &str = "new_moon_with_face";
pub const NEW_MOON: &str = "new_moon";
pub const WAXING_CRESCENT_MOON: &str = "waxing_crescent_moon";
pub const FIRST_QUARTER_MOON: &str = "first_quarter_moon";
pub const WAXING_GIBBOUS_MOON: &str = "waxing_gibbous_moon";
pub const FULL_MOON: &str = "full_moon";
pub const WANING_GIBBOUS_MOON: &str = "waning_gibbous_moon";
pub const LAST_QUARTER_MOON: &str = "last_quarter_moon";
pub const WANING_CRESCENT_MOON: &str = "waning_crescent_moon";
pub const LAST_QUARTER_MOON_WITH_FACE: &str = "last_quarter_moon_with_face";
pub const FIRST_QUARTER_MOON_WITH_FACE: &str = "first_quarter_moon_with_face";
pub const CRESCENT_MOON: &str = "crescent_moon";
pub const EARTH_AFRICA: &str = "earth_africa";
pub const EARTH_AMERICAS: &str = "earth_americas";
pub const EARTH_ASIA: &str = "earth_asia";
pub const VOLCANO: &str = "volcano";
pub const MILKY_WAY: &str = "milky_way";
pub const PARTLY_SUNNY: &str = "partly_sunny";
pub const OCTOCAT: &str = "octocat";
pub const SQUIRREL: &str = "squirrel";

// Objects
pub const BAMBOO: &str = "bamboo";
pub const GIFT_HEART: &str = "gift_heart";
pub const DOLLS: &str = "dolls";
pub const SCHOOL_SATCHEL: &str = "school_satchel";
pub const MORTAR_BOARD: &str = "mortar_board";
pub const FLAGS: &str = "flags";
pub const FIREWORKS: &str = "fireworks";
pub const SPARKLER: &str = "sparkler";
pub const WIND_CHIME: &str = "wind_chime";
pub const RICE_SCENE: &str = "rice_scene";
pub const JACK_O_LANTERN: &str = "jack_o_lantern";
pub const GHOST: &str = "ghost";
pub const SANTA: &str = "santa";
pub const CHRISTMAS_TREE: &str = "christmas_tree";
pub const GIFT: &str = "gift";
pub const BELL: &str = "bell";
pub const NO_BELL: &str = "no_bell";
pub const TANABATA_TREE: &str = "tanabata_tree";
pub const TADA: &str = "tada";
pub const CONFETTI_BALL: &str = "confetti_ball";
pub const BALLOON: &str = "balloon";
pub const CRYSTAL_BALL: &str = "crystal_ball";
pub const CD: &str = "cd";
pub const DVD: &str = "dvd";
pub const FLOPPY_DISK: &str = "floppy_disk";
pub const CAMERA: &str = "camera";
pub const VIDEO_CAMERA: &str = "video_camera";
pub const MOVIE_CAMERA: &str = "movie_camera";
pub const COMPUTER: &str = "computer";
pub const TV: &str = "tv";
pub const IPHONE: &str = "iphone";
pub const PHONE: &str = "phone";
pub const TELEPHONE: &str = "telephone";
pub const TELEPHONE_RECEIVER: &str = "telephone_receiver";
pub const PAGER: &str = "pager";
pub const FAX: &str = "fax";
pub const MINIDISC: &str = "minidisc";
pub const VHS: &str = "vhs";
pub const SOUND: &str = "sound";
pub const SPEAKER: &str = "speaker";
pub const MUTE: &str = "mute";
pub const LOUDSPEAKER: &str = "loudspeaker";
pub const MEGA: &str = "mega";
pub const HOURGLASS: &str = "hourglass";
pub const HOURGLASS_FLOWING_SAND: &str = "hourglass_flowing_sand";
pub const ALARM_CLOCK: &str = "alarm_clock";
pub const WATCH: &str = "watch";
pub const RADIO: &str = "radio";
pub const SATELLITE: &str = "satellite";
pub const LOOP: &str = "loop";
pub const MAG: &str = "mag";
pub const MAG_RIGHT: &str = "mag_right";
pub const UNLOCK: &str = "unlock";
pub const LOCK: &str = "lock";
pub const LOCK_WITH_INK_PEN: &str = "lock_with_ink_pen";
pub const CLOSED_LOCK_WITH_KEY: &str = "closed_lock_with_key";
pub const KEY: &str = "key";
pub const BULB: &str = "bulb";
pub const FLASHLIGHT: &str = "flashlight";
pub const HIGH_BRIGHTNESS: &str = "high_brightness";
pub const LOW_BRIGHTNESS: &str = "low_brightness";
pub const ELECTRIC_PLUG: &str = "electric_plug";
pub const BATTERY: &str = "battery";
pub const CALLING: &str = "calling";
pub const EMAIL: &str = "email";
pub const MAILBOX: &str = "mailbox";
pub const POSTBOX: &str = "postbox";
pub const BATH: &str = "bath";
pub const BATHTUB: &str = "bathtub";
pub const SHOWER: &str = "shower";
pub const TOILET: &str = "toilet";
pub const WRENCH: &str = "wrench";
pub const NUT_AND_BOLT: &str = "nut_and_bolt";
pub const HAMMER: &str = "hammer";
pub const SEAT: &str = "seat";
pub const MONEYBAG: &str = "moneybag";
pub const YEN: &str = "yen";
pub const DOLLAR: &str = "dollar";
pub const POUND: &str = "pound";
pub const EURO: &str = "euro";
pub const CREDIT_CARD: &str = "credit_card";
pub const MONEY_WITH_WINGS: &str = "money_with_wings";
pub const INBOX_TRAY: &str = "inbox_tray";
pub const OUTBOX_TRAY: &str = "outbox_tray";
pub const ENVELOPE: &str = "envelope";
pub const INCOMING_ENVELOPE: &str = "incoming_envelope";
pub const POSTAL_HORN: &str = "postal_horn";
pub const MAILBOX_CLOSED: &str = "mailbox_closed";
pub const MAILBOX_WITH_MAIL: &str = "mailbox_with_mail";
pub const MAILBOX_WITH_NO_MAIL: &str = "mailbox_with_no_mail";
pub const PACKAGE: &str = "package";
pub const DOOR: &str = "door";
pub const SMOKING: &str = "smoking";
pub const BOMB: &str = "bomb";
pub const GUN: &str = "gun";
pub const HOCHO: &str = "hocho";
pub const PILL: &str = "pill";
pub const SYRINGE: &str = "syringe";
pub const PAGE_FACING_UP: &str = "page_facing_up";
pub const PAGE_WITH_CURL: &str = "page_with_curl";
pub const BOOKMARK_TABS: &str = "bookmark_tabs";
pub const BAR_CHART: &str = "bar_chart";
pub const CHART_WITH_UPWARDS_TREND: &str = "chart_with_upwards_trend";
pub const CHART_WITH_DOWNWARDS_TREND: &str = "chart_with_downwards_trend";
pub const SCROLL: &str = "scroll";
pub const CLIPBOARD: &str = "clipboard";
pub const CALENDAR: &str = "calendar";
pub const DATE: &str = "date";
pub const CARD_INDEX: &str = "card_index";
pub const FILE_FOLDER: &str = "file_folder";
pub const OPEN_FILE_FOLDER: &str = "open_file_folder";
pub const SCISSORS: &str = "scissors";
pub const PUSHPIN: &str = "pushpin";
pub const PAPERCLIP: &str = "paperclip";
pub const BLACK_NIB: &str = "black_nib";
pub const PENCIL2: &str = "pencil2";
pub const STRAIGHT_RULER: &str = "straight_ruler";
pub const TRIANGULAR_RULER: &str = "triangular_ruler";
pub const CLOSED_BOOK: &str = "closed_book";
pub const GREEN_BOOK: &str = "green_book";
pub const BLUE_BOOK: &str = "blue_book";
pub const ORANGE_BOOK: &str = "orange_book";
pub const NOTEBOOK: &str = "notebook";
pub const NOTEBOOK_WITH_DECORATIVE_COVER: &str = "notebook_with_decorative_cover";
pub const LEDGER: &str = "ledger";
pub const BOOKS: &str = "books";
pub const BOOKMARK: &str = "bookmark";
pub const NAME_BADGE: &str = "name_badge";
pub const MICROSCOPE: &str = "microscope";
pub const TELESCOPE: &str = "telescope";
pub const NEWSPAPER: &str = "newspaper";
pub const FOOTBALL: &str = "football";
pub const BASKETBALL: &str = "basketball";
pub const SOCCER: &str = "soccer";
pub const BASEBALL: &str = "baseball";
pub const TENNIS: &str = "tennis";
pub const EIGHT_BALL: &str = "8ball";
pub const RUGBY_FOOTBALL: &str = "rugby_football";
pub const BOWLING: &str = "bowling";
pub const GOLF: &str = "golf";
pub const MOUNTAIN_BICYCLIST: &str = "mountain_bicyclist";
pub const BICYCLIST: &str = "bicyclist";
pub const HORSE_RACING: &str = "horse_racing";
pub const SNOWBOARDER: &str = "snowboarder";
pub const SWIMMER: &str = "swimmer";
pub const SURFER: &str = "surfer";
pub const SKI: &str = "ski";
pub const SPADES: &str = "spades";
pub const HEARTS: &str = "hearts";
pub const CLUBS: &str = "clubs";
pub const DIAMONDS: &str = "diamonds";
pub const GEM: &str = "gem";
pub const RING: &str = "ring";
pub const TROPHY: &str = "trophy";
pub const MUSICAL_SCORE: &str = "musical_score";
pub const MUSICAL_KEYBOARD: &str = "musical_keyboard";
pub const VIOLIN: &str = "violin";
pub const SPACE_INVADER: &str = "space_invader";
pub const VIDEO_GAME: &str = "video_game";
pub const BLACK_JOKER: &str = "black_joker";
pub const FLOWER_PLAYING_CARDS: &str = "flower_playing_cards";
pub const GAME_DIE: &str = "game_die";
pub const DART: &str = "dart";
pub const MAHJONG: &str = "mahjong";
pub const CLAPPER: &str = "clapper";
pub const MEMO: &str = "memo";
pub const PENCIL: &str = "pencil";
pub const BOOK: &str = "book";
pub const ART: &str = "art";
pub const MICROPHONE: &str = "microphone";
pub const HEADPHONES: &str = "headphones";
pub const TRUMPET: &str = "trumpet";
pub const SAXOPHONE: &str = "saxophone";
pub const GUITAR: &str = "guitar";
pub const SHOE: &str = "shoe";
pub const SANDAL: &str = "sandal";
pub const HIGH_HEEL: &str = "high_heel";
pub const LIPSTICK: &str = "lipstick";
pub const BOOT: &str = "boot";
pub const SHIRT: &str = "shirt";
pub const TSHIRT: &str = "tshirt";
pub const NECKTIE: &str = "necktie";
pub const WOMANS_CLOTHES: &str = "womans_clothes";
pub const DRESS: &str = "dress";
pub const RUNNING_SHIRT_WITH_SASH: &str = "running_shirt_with_sash";
pub const JEANS: &str = "jeans";
pub const KIMONO: &str = "kimono";
pub const BIKINI: &str = "bikini";
pub const RIBBON: &str = "ribbon";
pub const TOPHAT: &str = "tophat";
pub const CROWN: &str = "crown";
pub const WOMANS_HAT: &str = "womans_hat";
pub const MANS_SHOE: &str = "mans_shoe";
pub const CLOSED_UMBRELLA: &str = "closed_umbrella";
pub const BRIEFCASE: &str = "briefcase";
pub const HANDBAG: &str = "handbag";
pub const POUCH: &str = "pouch";
pub const PURSE: &str = "purse";
pub const EYEGLASSES: &str = "eyeglasses";
pub const FISHING_POLE_AND_FISH: &str = "fishing_pole_and_fish";
pub const COFFEE: &str = "coffee";
pub const TEA: &str = "tea";
pub const SAKE: &str = "sake";
pub const BABY_BOTTLE: &str = "baby_bottle";
pub const BEER: &str = "beer";
pub const BEERS: &str = "beers";
pub const COCKTAIL: &str = "cocktail";
pub const TROPICAL_DRINK: &str = "tropical_drink";
pub const WINE_GLASS: &str = "wine_glass";
pub const FORK_AND_KNIFE: &str = "fork_and_knife";
pub const PIZZA: &str = "pizza";
pub const HAMBURGER: &str = "hamburger";
pub const FRIES: &str = "fries";
pub const POULTRY_LEG: &str = "poultry_leg";
pub const MEAT_ON_BONE: &str = "meat_on_bone";
pub const SPAGHETTI: &str = "spaghetti";
pub const CURRY: &str = "curry";
pub const FRIED_SHRIMP: &str = "fried_shrimp";
pub const BENTO: &str = "bento";
pub const SUSHI: &str = "sushi";
pub const FISH_CAKE: &str = "fish_cake";
pub const RICE_BALL: &str = "rice_ball";
pub const RICE_CRACKER: &str = "rice_cracker";
pub const RICE: &str = "rice";
pub const RAMEN: &str = "ramen";
pub const STEW: &str = "stew";
pub const ODEN: &str = "oden";
pub const DANGO: &str = "dango";
pub const EGG: &str = "egg";
pub const BREAD: &str = "bread";
pub const DOUGHNUT: &str = "doughnut";
pub const CUSTARD: &str = "custard";
pub const ICECREAM: &str = "icecream";
pub const ICE_CREAM: &str = "ice_cream";
pub const SHAVED_ICE: &str = "shaved_ice";
pub const BIRTHDAY: &str = "birthday";
pub const CAKE: &str = "cake";
pub const COOKIE: &str = "cookie";
pub const CHOCOLATE_BAR: &str = "chocolate_bar";
pub const CANDY: &str = "candy";
pub const LOLLIPOP: &str = "lollipop";
pub const HONEY_POT: &str = "honey_pot";
pub const APPLE: &str = "apple";
pub const GREEN_APPLE: &str = "green_apple";
pub const TANGERINE: &str = "tangerine";
pub const LEMON: &str = "lemon";
pub const CHERRIES: &str = "cherries";
pub const GRAPES: &str = "grapes";
pub const WATERMELON: &str = "watermelon";
pub const STRAWBERRY: &str = "strawberry";
pub const PEACH: &str = "peach";
pub const MELON: &str = "melon";
pub const BANANA: &str = "banana";
pub const PEAR: &str = "pear";
pub const PINEAPPLE: &str = "pineapple";
pub const SWEET_POTATO: &str = "sweet_potato";
pub const EGGPLANT: &str = "eggplant";
pub const TOMATO: &str = "tomato";
pub const CORN: &str = "corn";

// Places
pub const HOUSE: &str = "house";
pub const HOUSE_WITH_GARDEN: &str = "house_with_garden";
pub const SCHOOL: &str = "school";
pub const OFFICE: &str = "office";
pub const POST_OFFICE: &str = "post_office";
pub const HOSPITAL: &str = "hospital";
pub const BANK: &str = "bank";
pub const CONVENIENCE_STORE: &str = "convenience_store";
pub const LOVE_HOTEL: &str = "love_hotel";
pub const HOTEL: &str = "hotel";
pub const WEDDING: &str = "wedding";
pub const CHURCH: &str = "church";
pub const DEPARTMENT_STORE: &str = "department_store";
pub const EUROPEAN_POST_OFFICE: &str = "european_post_office";
pub const CITY_SUNRISE: &str = "city_sunrise";
pub const CITY_SUNSET: &str = "city_sunset";
pub const JAPANESE_CASTLE: &str = "japanese_castle";
pub const EUROPEAN_CASTLE: &str = "european_castle";
pub const TENT: &str = "tent";
pub const FACTORY: &str = "factory";
pub const TOKYO_TOWER: &str = "tokyo_tower";
pub const JAPAN: &str = "japan";
pub const MOUNT_FUJI: &str = "mount_fuji";
pub const SUNRISE_OVER_MOUNTAINS: &str = "sunrise_over_mountains";
pub const SUNRISE: &str = "sunrise";
pub const STARS: &str = "stars";
pub const STATUE_OF_LIBERTY: &str = "statue_of_liberty";
pub const BRIDGE_AT_NIGHT: &str = "bridge_at_night";
pub const CAROUSEL_HORSE: &str = "carousel_horse";
pub const RAINBOW: &str = "rainbow";
pub const FERRIS_WHEEL: &str = "ferris_wheel";
pub const FOUNTAIN: &str = "fountain";
pub const ROLLER_COASTER: &str = "roller_coaster";
pub const SHIP: &str = "ship";
pub const SPEEDBOAT: &str = "speedboat";
pub const BOAT: &str = "boat";
pub const SAILBOAT: &str = "sailboat";
pub const ROWBOAT: &str = "rowboat";
pub const ANCHOR: &str = "anchor";
pub const ROCKET: &str = "rocket";
pub const AIRPLANE: &str = "airplane";
pub const HELICOPTER: &str = "helicopter";
pub const STEAM_LOCOMOTIVE: &str = "steam_locomotive";
pub const TRAM: &str = "tram";
pub const MOUNTAIN_RAILWAY: &str = "mountain_railway";
pub const BIKE: &str = "bike";
pub const AERIAL_TRAMWAY: &str = "aerial_tramway";
pub const SUSPENSION_RAILWAY: &str = "suspension_railway";
pub const MOUNTAIN_CABLEWAY: &str = "mountain_cableway";
pub const TRACTOR: &str = "tractor";
pub const BLUE_CAR: &str = "blue_car";
pub const ONCOMING_AUTOMOBILE: &str = "oncoming_automobile";
pub const CAR: &str = "car";
pub const RED_CAR: &str = "red_car";
pub const TAXI: &str = "taxi";
pub const ONCOMING_TAXI: &str = "oncoming_taxi";
pub const ARTICULATED_LORRY: &str = "articulated_lorry";
pub const BUS: &str = "bus";
pub const ONCOMING_BUS: &str = "oncoming_bus";
pub const ROTATING_LIGHT: &str = "rotating_light";
pub const POLICE_CAR: &str = "police_car";
pub const ONCOMING_POLICE_CAR: &str = "oncoming_police_car";
pub const FIRE_ENGINE: &str = "fire_engine";
pub const AMBULANCE: &str = "ambulance";
pub const MINIBUS: &str = "minibus";
pub const TRUCK: &str = "truck";
pub const TRAIN: &str = "train";
pub const STATION: &str = "station";
pub const TRAIN2: &str = "train2";
pub const BULLETTRAIN_FRONT: &str = "bullettrain_front";
pub const BULLETTRAIN_SIDE: &str = "bullettrain_side";
pub const LIGHT_RAIL: &str = "light_rail";
pub const MONORAIL: &str = "monorail";
pub const RAILWAY_CAR: &str = "railway_car";
pub const TROLLEYBUS: &str = "trolleybus";
pub const TICKET: &str = "ticket";
pub const FUELPUMP: &str = "fuelpump";
pub const VERTICAL_TRAFFIC_LIGHT: &str = "vertical_traffic_light";
pub const TRAFFIC_LIGHT: &str = "traffic_light";
pub const WARNING: &str = "warning";
pub const CONSTRUCTION: &str = "construction";
pub const BEGINNER: &str = "beginner";
pub const ATM: &str = "atm";
pub const SLOT_MACHINE: &str = "slot_machine";
pub const BUSSTOP: &str = "busstop";
pub const BARBER: &str = "barber";
pub const HOTSPRINGS: &str = "hotsprings";
pub const CHECKERED_FLAG: &str = "checkered_flag";
pub const CROSSED_FLAGS: &str = "crossed_flags";
pub const IZAKAYA_LANTERN: &str = "izakaya_lantern";
pub const MOYAI: &str = "moyai";
pub const CIRCUS_TENT: &str = "circus_tent";
pub const PERFORMING_ARTS: &str = "performing_arts";
pub const ROUND_PUSHPIN: &str = "round_pushpin";
pub const TRIANGULAR_FLAG_ON_POST: &str = "triangular_flag_on_post";
pub const JP: &str = "jp";
pub const KR: &str = "kr";
pub const CN: &str = "cn";
pub const US: &str = "us";
pub const FR: &str = "fr";
pub const ES: &str = "es";
pub const IT: &str = "it";
pub const RU: &str = "ru";
pub const GB: &str = "gb";
pub const UK: &str = "uk";
pub const DE: &str = "de";

// Symbols
pub const ONE: &str = "one";
pub const TWO: &str = "two";
pub const THREE: &str = "three";
pub const FOUR: &str = "four";
pub const FIVE: &str = "five";
pub const SIX: &str = "six";
pub const SEVEN: &str = "seven";
pub const EIGHT: &str = "eight";
pub const NINE: &str = "nine";
pub const KEYCAP_TEN: &str = "keycap_ten";
pub const NUM_1234: &str = "1234";
pub const ZERO: &str = "zero";
pub const HASH: &str = "hash";
pub const SYMBOLS: &str = "symbols";
pub const ARROW_BACKWARD: &str = "arrow_backward";
pub const ARROW_DOWN: &str = "arrow_down";
pub const ARROW_FORWARD: &str = "arrow_forward";
pub const ARROW_LEFT: &str = "arrow_left";
pub const CAPITAL_ABCD: &str = "capital_abcd";
pub const ABCD: &str = "abcd";
pub const ABC: &str = "abc";
pub const ARROW_LOWER_LEFT: &str = "arrow_lower_left";
pub const ARROW_LOWER_RIGHT: &str = "arrow_lower_right";
pub const ARROW_RIGHT: &str = "arrow_right";
pub const ARROW_UP: &str = "arrow_up";
pub const ARROW_UPPER_LEFT: &str = "arrow_upper_left";
pub const ARROW_UPPER_RIGHT: &str = "arrow_upper_right";
pub const ARROW_DOUBLE_DOWN: &str = "arrow_double_down";
pub const ARROW_DOUBLE_UP: &str = "arrow_double_up";
pub const ARROW_DOWN_SMALL: &str = "arrow_down_small";
pub const ARROW_HEADING_DOWN: &str = "arrow_heading_down";
pub const ARROW_HEADING_UP: &str = "arrow_heading_up";
pub const LEFTWARDS_ARROW_WITH_HOOK: &str = "leftwards_arrow_with_hook";
pub const ARROW_RIGHT_HOOK: &str = "arrow_right_hook";
pub const LEFT_RIGHT_ARROW: &str = "left_right_arrow";
pub const ARROW_UP_DOWN: &str = "arrow_up_down";
pub const ARROW_UP_SMALL: &str = "arrow_up_small";
pub const ARROWS_CLOCKWISE: &str = "arrows_clockwise";
pub const ARROWS_COUNTERCLOCKWISE: &str = "arrows_counterclockwise";
pub const REWIND: &str = "rewind";
pub const FAST_FORWARD: &str = "fast_forward";
pub const INFORMATION_SOURCE: &str = "information_source";
pub const OK: &str = "ok";
pub const TWISTED_RIGHTWARDS_ARROWS: &str = "twisted_rightwards_arrows";
pub const REPEAT: &str = "repeat";
pub const REPEAT_ONE: &str = "repeat_one";
pub const NEW: &str = "new";
pub const TOP: &str = "top";
pub const UP: &str = "up";
pub const COOL: &str = "cool";
pub const FREE: &str = "free";
pub const NG: &str = "ng";
pub const CINEMA: &str = "cinema";
pub const KOKO: &str = "koko";
pub const SIGNAL_STRENGTH: &str = "signal_strength";
pub const U5272: &str = "u5272";
pub const U5408: &str = "u5408";
pub const U55B6: &str = "u55b6";
pub const U6307: &str = "u6307";
pub const U6708: &str = "u6708";
pub const U6709: &str = "u6709";
pub const U6E80: &str = "u6e80";
pub const U7121: &str = "u7121";
pub const U7533: &str = "u7533";
pub const U7A7A: &str = "u7a7a";
pub const U7981: &str = "u7981";
pub const SA: &str = "sa";
pub const RESTROOM: &str = "restroom";
pub const MENS: &str = "mens";
pub const WOMENS: &str = "womens";
pub const BABY_SYMBOL: &str = "baby_symbol";
pub const NO_SMOKING: &str = "no_smoking";
pub const PARKING: &str = "parking";
pub const WHEELCHAIR: &str = "wheelchair";
pub const METRO: &str = "metro";
pub const BAGGAGE_CLAIM: &str = "baggage_claim";
pub const ACCEPT: &str = "accept";
pub const WC: &str = "wc";
pub const POTABLE_WATER: &str = "potable_water";
pub const PUT_LITTER_IN_ITS_PLACE: &str = "put_litter_in_its_place";
pub const SECRET: &str = "secret";
pub const CONGRATULATIONS: &str = "congratulations";
pub const M: &str = "m";
pub const PASSPORT_CONTROL: &str = "passport_control";
pub const LEFT_LUGGAGE: &str = "left_luggage";
pub const CUSTOMS: &str = "customs";
pub const IDEOGRAPH_ADVANTAGE: &str = "ideograph_advantage";
pub const CL: &str = "cl";
pub const SOS: &str = "sos";
pub const ID: &str = "id";
pub const NO_ENTRY_SIGN: &str = "no_entry_sign";
pub const UNDERAGE: &str = "underage";
pub const NO_MOBILE_PHONES: &str = "no_mobile_phones";
pub const DO_NOT_LITTER: &str = "do_not_litter";
pub const NON_POTABLE_WATER: &str = "non-potable_water";
pub const NO_BICYCLES: &str = "no_bicycles";
pub const NO_PEDESTRIANS: &str = "no_pedestrians";
pub const CHILDREN_CROSSING: &str = "children_crossing";
pub const NO_ENTRY: &str = "no_entry";
pub const EIGHT_SPOKED_ASTERISK: &str = "eight_spoked_asterisk";
pub const SPARKLE: &str = "sparkle";
pub const EIGHT_POINTED_BLACK_STAR: &str = "eight_pointed_black_star";
pub const HEART_DECORATION: &str = "heart_decoration";
pub const VS: &str = "vs";
pub const VIBRATION_MODE: &str = "vibration_mode";
pub const MOBILE_PHONE_OFF: &str = "mobile_phone_off";
pub const CHART: &str = "chart";
pub const CURRENCY_EXCHANGE: &str = "currency_exchange";
pub const ARIES: &str = "aries";
pub const TAURUS: &str = "taurus";
pub const GEMINI: &str = "gemini";
pub const CANCER: &str = "cancer";
pub const LEO: &str = "leo";
pub const VIRGO: &str = "virgo";
pub const LIBRA: &str = "libra";
pub const SCORPIUS: &str = "scorpius";
pub const SAGITTARIUS: &str = "sagittarius";
pub const CAPRICORN: &str = "capricorn";
pub const AQUARIUS: &str = "aquarius";
pub const PISCES: &str = "pisces";
pub const OPHIUCHUS: &str = "ophiuchus";
pub const SIX_POINTED_STAR: &str = "six_pointed_star";
pub const NEGATIVE_SQUARED_CROSS_MARK: &str = "negative_squared_cross_mark";
pub const A: &str = "a";
pub const B: &str = "b";
pub const AB: &str = "ab";
pub const O2: &str = "o2";
pub const DIAMOND_SHAPE_WITH_A_DOT_INSIDE: &str = "diamond_shape_with_a_dot_inside";
pub const RECYCLE: &str = "recycle";
pub const END: &str = "end";
pub const BACK: &str = "back";
pub const ON: &str = "on";
pub const SOON: &str = "soon";
pub const CLOCK1: &str = "clock1";
pub const CLOCK130: &str = "clock130";
pub const CLOCK10: &str = "clock10";
pub const CLOCK1030: &str = "clock1030";
pub const CLOCK11: &str = "clock11";
pub const CLOCK1130: &str = "clock1130";
pub const CLOCK12: &str = "clock12";
pub const CLOCK1230: &str = "clock1230";
pub const CLOCK2: &str = "clock2";
pub const CLOCK230: &str = "clock230";
pub const CLOCK3: &str = "clock3";
pub const CLOCK330: &str = "clock330";
pub const CLOCK4: &str = "clock4";
pub const CLOCK430: &str = "clock430";
pub const CLOCK5: &str = "clock5";
pub const CLOCK530: &str = "clock530";
pub const CLOCK6: &str = "clock6";
pub const CLOCK630: &str = "clock630";
pub const CLOCK7: &str = "clock7";
pub const CLOCK730: &str = "clock730";
pub const CLOCK8: &str = "clock8";
pub const CLOCK830: &str = "clock830";
pub const CLOCK9: &str = "clock9";
pub const CLOCK930: &str = "clock930";
pub const HEAVY_DOLLAR_SIGN: &str = "heavy_dollar_sign";
pub const COPYRIGHT: &str = "copyright";
pub const REGISTERED: &str = "registered";
pub const TM: &str = "tm";
pub const X: &str = "x";
pub const HEAVY_EXCLAMATION_MARK: &str = "heavy_exclamation_mark";
pub const BANGBANG: &str = "bangbang";
pub const INTERROBANG: &str = "interrobang";
pub const O: &str = "o";
pub const HEAVY_MULTIPLICATION_X: &str = "heavy_multiplication_x";
pub const HEAVY_PLUS_SIGN: &str = "heavy_plus_sign";
pub const HEAVY_MINUS_SIGN: &str = "heavy_minus_sign";
pub const HEAVY_DIVISION_SIGN: &str = "heavy_division_sign";
pub const WHITE_FLOWER: &str = "white_flower";
pub const TIMES_100: &str = "100";
pub const HEAVY_CHECK_MARK: &str = "heavy_check_mark";
pub const BALLOT_BOX_WITH_CHECK: &str = "ballot_box_with_check";
pub const RADIO_BUTTON: &str = "radio_button";
pub const LINK: &str = "link";
pub const CURLY_LOOP: &str = "curly_loop";
pub const WAVY_DASH: &str = "wavy_dash";
pub const PART_ALTERNATION_MARK: &str = "part_alternation_mark";
pub const TRIDENT: &str = "trident";
pub const BLACK_SMALL_SQUARE: &str = "black_small_square";
pub const WHITE_SMALL_SQUARE: &str = "white_small_square";
pub const BLACK_MEDIUM_SMALL_SQUARE: &str = "black_medium_small_square";
pub const WHITE_MEDIUM_SMALL_SQUARE: &str = "white_medium_small_square";
pub const BLACK_MEDIUM_SQUARE: &str = "black_medium_square";
pub const WHITE_MEDIUM_SQUARE: &str = "white_medium_square";
pub const BLACK_LARGE_SQUARE: &str = "black_large_square";
pub const WHITE_LARGE_SQUARE: &str = "white_large_square";
pub const WHITE_CHECK_MARK: &str = "white_check_mark";
pub const BLACK_SQUARE_BUTTON: &str = "black_square_button";
pub const WHITE_SQUARE_BUTTON: &str = "white_square_button";
pub const BLACK_CIRCLE: &str = "black_circle";
pub const WHITE_CIRCLE: &str = "white_circle";
pub const RED_CIRCLE: &str = "red_circle";
pub const LARGE_BLUE_CIRCLE: &str = "large_blue_circle";
pub const LARGE_BLUE_DIAMOND: &str = "large_blue_diamond";
pub const LARGE_ORANGE_DIAMOND: &str = "large_orange_diamond";
pub const SMALL_BLUE_DIAMOND: &str = "small_blue_diamond";
pub const SMALL_ORANGE_DIAMOND: &str = "small_orange_diamond";
pub const SMALL_RED_TRIANGLE: &str = "small_red_triangle";
pub const SMALL_RED_TRIANGLE_DOWN: &str = "small_red_triangle_down";
pub const SHIPIT: &str = "shipit";