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
#![allow(unused)]
pub const ADDRESS_BOOK: &str = "\u{E900}";
pub const AIRPLANE: &str = "\u{E901}";
pub const AIRPLANE_IN_FLIGHT: &str = "\u{E902}";
pub const AIRPLANE_LANDING: &str = "\u{E903}";
pub const AIRPLANE_TAKEOFF: &str = "\u{E904}";
pub const AIRPLANE_TILT: &str = "\u{E905}";
pub const AIRPLAY: &str = "\u{E906}";
pub const AIR_TRAFFIC_CONTROL: &str = "\u{E907}";
pub const ALARM: &str = "\u{E908}";
pub const ALIEN: &str = "\u{E909}";
pub const ALIGN_BOTTOM: &str = "\u{E90A}";
pub const ALIGN_BOTTOM_SIMPLE: &str = "\u{E90B}";
pub const ALIGN_CENTER_HORIZONTAL: &str = "\u{E90C}";
pub const ALIGN_CENTER_HORIZONTAL_SIMPLE: &str = "\u{E90D}";
pub const ALIGN_CENTER_VERTICAL: &str = "\u{E90E}";
pub const ALIGN_CENTER_VERTICAL_SIMPLE: &str = "\u{E90F}";
pub const ALIGN_LEFT: &str = "\u{E910}";
pub const ALIGN_LEFT_SIMPLE: &str = "\u{E911}";
pub const ALIGN_RIGHT: &str = "\u{E912}";
pub const ALIGN_RIGHT_SIMPLE: &str = "\u{E913}";
pub const ALIGN_TOP: &str = "\u{E914}";
pub const ALIGN_TOP_SIMPLE: &str = "\u{E915}";
pub const AMAZON_LOGO: &str = "\u{E916}";
pub const ANCHOR: &str = "\u{E917}";
pub const ANCHOR_SIMPLE: &str = "\u{E918}";
pub const ANDROID_LOGO: &str = "\u{E919}";
pub const ANGULAR_LOGO: &str = "\u{E91A}";
pub const APERTURE: &str = "\u{E91B}";
pub const APPLE_LOGO: &str = "\u{E91C}";
pub const APPLE_PODCASTS_LOGO: &str = "\u{E91D}";
pub const APP_STORE_LOGO: &str = "\u{E91E}";
pub const APP_WINDOW: &str = "\u{E91F}";
pub const ARCHIVE: &str = "\u{E920}";
pub const ARCHIVE_BOX: &str = "\u{E921}";
pub const ARCHIVE_TRAY: &str = "\u{E922}";
pub const ARMCHAIR: &str = "\u{E923}";
pub const ARROW_ARC_LEFT: &str = "\u{E924}";
pub const ARROW_ARC_RIGHT: &str = "\u{E925}";
pub const ARROW_BEND_DOUBLE_UP_LEFT: &str = "\u{E926}";
pub const ARROW_BEND_DOUBLE_UP_RIGHT: &str = "\u{E927}";
pub const ARROW_BEND_DOWN_LEFT: &str = "\u{E928}";
pub const ARROW_BEND_DOWN_RIGHT: &str = "\u{E929}";
pub const ARROW_BEND_LEFT_DOWN: &str = "\u{E92A}";
pub const ARROW_BEND_LEFT_UP: &str = "\u{E92B}";
pub const ARROW_BEND_RIGHT_DOWN: &str = "\u{E92C}";
pub const ARROW_BEND_RIGHT_UP: &str = "\u{E92D}";
pub const ARROW_BEND_UP_LEFT: &str = "\u{E92E}";
pub const ARROW_BEND_UP_RIGHT: &str = "\u{E92F}";
pub const ARROW_CIRCLE_DOWN: &str = "\u{E930}";
pub const ARROW_CIRCLE_DOWN_LEFT: &str = "\u{E931}";
pub const ARROW_CIRCLE_DOWN_RIGHT: &str = "\u{E932}";
pub const ARROW_CIRCLE_LEFT: &str = "\u{E933}";
pub const ARROW_CIRCLE_RIGHT: &str = "\u{E934}";
pub const ARROW_CIRCLE_UP: &str = "\u{E935}";
pub const ARROW_CIRCLE_UP_LEFT: &str = "\u{E936}";
pub const ARROW_CIRCLE_UP_RIGHT: &str = "\u{E937}";
pub const ARROW_CLOCKWISE: &str = "\u{E938}";
pub const ARROW_COUNTER_CLOCKWISE: &str = "\u{E939}";
pub const ARROW_DOWN: &str = "\u{E93A}";
pub const ARROW_DOWN_LEFT: &str = "\u{E93B}";
pub const ARROW_DOWN_RIGHT: &str = "\u{E93C}";
pub const ARROW_ELBOW_DOWN_LEFT: &str = "\u{E93D}";
pub const ARROW_ELBOW_DOWN_RIGHT: &str = "\u{E93E}";
pub const ARROW_ELBOW_LEFT: &str = "\u{E93F}";
pub const ARROW_ELBOW_LEFT_DOWN: &str = "\u{E940}";
pub const ARROW_ELBOW_LEFT_UP: &str = "\u{E941}";
pub const ARROW_ELBOW_RIGHT: &str = "\u{E942}";
pub const ARROW_ELBOW_RIGHT_DOWN: &str = "\u{E943}";
pub const ARROW_ELBOW_RIGHT_UP: &str = "\u{E944}";
pub const ARROW_ELBOW_UP_LEFT: &str = "\u{E945}";
pub const ARROW_ELBOW_UP_RIGHT: &str = "\u{E946}";
pub const ARROW_FAT_DOWN: &str = "\u{E947}";
pub const ARROW_FAT_LEFT: &str = "\u{E948}";
pub const ARROW_FAT_LINE_DOWN: &str = "\u{E949}";
pub const ARROW_FAT_LINE_LEFT: &str = "\u{E94A}";
pub const ARROW_FAT_LINE_RIGHT: &str = "\u{E94B}";
pub const ARROW_FAT_LINES_DOWN: &str = "\u{E94C}";
pub const ARROW_FAT_LINES_LEFT: &str = "\u{E94D}";
pub const ARROW_FAT_LINES_RIGHT: &str = "\u{E94E}";
pub const ARROW_FAT_LINES_UP: &str = "\u{E94F}";
pub const ARROW_FAT_LINE_UP: &str = "\u{E950}";
pub const ARROW_FAT_RIGHT: &str = "\u{E951}";
pub const ARROW_FAT_UP: &str = "\u{E952}";
pub const ARROW_LEFT: &str = "\u{E953}";
pub const ARROW_LINE_DOWN: &str = "\u{E954}";
pub const ARROW_LINE_DOWN_LEFT: &str = "\u{E955}";
pub const ARROW_LINE_DOWN_RIGHT: &str = "\u{E956}";
pub const ARROW_LINE_LEFT: &str = "\u{E957}";
pub const ARROW_LINE_RIGHT: &str = "\u{E958}";
pub const ARROW_LINE_UP: &str = "\u{E959}";
pub const ARROW_LINE_UP_LEFT: &str = "\u{E95A}";
pub const ARROW_LINE_UP_RIGHT: &str = "\u{E95B}";
pub const ARROW_RIGHT: &str = "\u{E95C}";
pub const ARROWS_CLOCKWISE: &str = "\u{E95D}";
pub const ARROWS_COUNTER_CLOCKWISE: &str = "\u{E95E}";
pub const ARROWS_DOWN_UP: &str = "\u{E95F}";
pub const ARROWS_HORIZONTAL: &str = "\u{E960}";
pub const ARROWS_IN: &str = "\u{E961}";
pub const ARROWS_IN_CARDINAL: &str = "\u{E962}";
pub const ARROWS_IN_LINE_HORIZONTAL: &str = "\u{E963}";
pub const ARROWS_IN_LINE_VERTICAL: &str = "\u{E964}";
pub const ARROWS_IN_SIMPLE: &str = "\u{E965}";
pub const ARROWS_LEFT_RIGHT: &str = "\u{E966}";
pub const ARROWS_MERGE: &str = "\u{E967}";
pub const ARROWS_OUT: &str = "\u{E968}";
pub const ARROWS_OUT_CARDINAL: &str = "\u{E969}";
pub const ARROWS_OUT_LINE_HORIZONTAL: &str = "\u{E96A}";
pub const ARROWS_OUT_LINE_VERTICAL: &str = "\u{E96B}";
pub const ARROWS_OUT_SIMPLE: &str = "\u{E96C}";
pub const ARROW_SQUARE_DOWN: &str = "\u{E96D}";
pub const ARROW_SQUARE_DOWN_LEFT: &str = "\u{E96E}";
pub const ARROW_SQUARE_DOWN_RIGHT: &str = "\u{E96F}";
pub const ARROW_SQUARE_IN: &str = "\u{E970}";
pub const ARROW_SQUARE_LEFT: &str = "\u{E971}";
pub const ARROW_SQUARE_OUT: &str = "\u{E972}";
pub const ARROW_SQUARE_RIGHT: &str = "\u{E973}";
pub const ARROW_SQUARE_UP: &str = "\u{E974}";
pub const ARROW_SQUARE_UP_LEFT: &str = "\u{E975}";
pub const ARROW_SQUARE_UP_RIGHT: &str = "\u{E976}";
pub const ARROWS_SPLIT: &str = "\u{E977}";
pub const ARROWS_VERTICAL: &str = "\u{E978}";
pub const ARROW_U_DOWN_LEFT: &str = "\u{E979}";
pub const ARROW_U_DOWN_RIGHT: &str = "\u{E97A}";
pub const ARROW_U_LEFT_DOWN: &str = "\u{E97B}";
pub const ARROW_U_LEFT_UP: &str = "\u{E97C}";
pub const ARROW_UP: &str = "\u{E97D}";
pub const ARROW_UP_LEFT: &str = "\u{E97E}";
pub const ARROW_UP_RIGHT: &str = "\u{E97F}";
pub const ARROW_U_RIGHT_DOWN: &str = "\u{E980}";
pub const ARROW_U_RIGHT_UP: &str = "\u{E981}";
pub const ARROW_U_UP_LEFT: &str = "\u{E982}";
pub const ARROW_U_UP_RIGHT: &str = "\u{E983}";
pub const ARTICLE: &str = "\u{E984}";
pub const ARTICLE_MEDIUM: &str = "\u{E985}";
pub const ARTICLE_NY_TIMES: &str = "\u{E986}";
pub const ASTERISK: &str = "\u{E987}";
pub const ASTERISK_SIMPLE: &str = "\u{E988}";
pub const AT: &str = "\u{E989}";
pub const ATOM: &str = "\u{E98A}";
pub const BABY: &str = "\u{E98B}";
pub const BACKPACK: &str = "\u{E98C}";
pub const BACKSPACE: &str = "\u{E98D}";
pub const BAG: &str = "\u{E98E}";
pub const BAG_SIMPLE: &str = "\u{E98F}";
pub const BALLOON: &str = "\u{E990}";
pub const BANDAIDS: &str = "\u{E991}";
pub const BANK: &str = "\u{E992}";
pub const BARBELL: &str = "\u{E993}";
pub const BARCODE: &str = "\u{E994}";
pub const BARRICADE: &str = "\u{E995}";
pub const BASEBALL: &str = "\u{E996}";
pub const BASEBALL_CAP: &str = "\u{E997}";
pub const BASKET: &str = "\u{E998}";
pub const BASKETBALL: &str = "\u{E999}";
pub const BATHTUB: &str = "\u{E99A}";
pub const BATTERY_CHARGING: &str = "\u{E99B}";
pub const BATTERY_CHARGING_VERTICAL: &str = "\u{E99C}";
pub const BATTERY_EMPTY: &str = "\u{E99D}";
pub const BATTERY_FULL: &str = "\u{E99E}";
pub const BATTERY_HIGH: &str = "\u{E99F}";
pub const BATTERY_LOW: &str = "\u{E9A0}";
pub const BATTERY_MEDIUM: &str = "\u{E9A1}";
pub const BATTERY_PLUS: &str = "\u{E9A2}";
pub const BATTERY_PLUS_VERTICAL: &str = "\u{E9A3}";
pub const BATTERY_VERTICAL_EMPTY: &str = "\u{E9A4}";
pub const BATTERY_VERTICAL_FULL: &str = "\u{E9A5}";
pub const BATTERY_VERTICAL_HIGH: &str = "\u{E9A6}";
pub const BATTERY_VERTICAL_LOW: &str = "\u{E9A7}";
pub const BATTERY_VERTICAL_MEDIUM: &str = "\u{E9A8}";
pub const BATTERY_WARNING: &str = "\u{E9A9}";
pub const BATTERY_WARNING_VERTICAL: &str = "\u{E9AA}";
pub const BED: &str = "\u{E9AB}";
pub const BEER_BOTTLE: &str = "\u{E9AC}";
pub const BEER_STEIN: &str = "\u{E9AD}";
pub const BEHANCE_LOGO: &str = "\u{E9AE}";
pub const BELL: &str = "\u{E9AF}";
pub const BELL_RINGING: &str = "\u{E9B0}";
pub const BELL_SIMPLE: &str = "\u{E9B1}";
pub const BELL_SIMPLE_RINGING: &str = "\u{E9B2}";
pub const BELL_SIMPLE_SLASH: &str = "\u{E9B3}";
pub const BELL_SIMPLE_Z: &str = "\u{E9B4}";
pub const BELL_SLASH: &str = "\u{E9B5}";
pub const BELL_Z: &str = "\u{E9B6}";
pub const BEZIER_CURVE: &str = "\u{E9B7}";
pub const BICYCLE: &str = "\u{E9B8}";
pub const BINOCULARS: &str = "\u{E9B9}";
pub const BIRD: &str = "\u{E9BA}";
pub const BLUETOOTH: &str = "\u{E9BB}";
pub const BLUETOOTH_CONNECTED: &str = "\u{E9BC}";
pub const BLUETOOTH_SLASH: &str = "\u{E9BD}";
pub const BLUETOOTH_X: &str = "\u{E9BE}";
pub const BOAT: &str = "\u{E9BF}";
pub const BONE: &str = "\u{E9C0}";
pub const BOOK: &str = "\u{E9C1}";
pub const BOOK_BOOKMARK: &str = "\u{E9C2}";
pub const BOOKMARK: &str = "\u{E9C3}";
pub const BOOKMARKS: &str = "\u{E9C4}";
pub const BOOKMARK_SIMPLE: &str = "\u{E9C5}";
pub const BOOKMARKS_SIMPLE: &str = "\u{E9C6}";
pub const BOOK_OPEN: &str = "\u{E9C7}";
pub const BOOK_OPEN_TEXT: &str = "\u{E9C8}";
pub const BOOKS: &str = "\u{E9C9}";
pub const BOOT: &str = "\u{E9CA}";
pub const BOUNDING_BOX: &str = "\u{E9CB}";
pub const BOWL_FOOD: &str = "\u{E9CC}";
pub const BRACKETS_ANGLE: &str = "\u{E9CD}";
pub const BRACKETS_CURLY: &str = "\u{E9CE}";
pub const BRACKETS_ROUND: &str = "\u{E9CF}";
pub const BRACKETS_SQUARE: &str = "\u{E9D0}";
pub const BRAIN: &str = "\u{E9D1}";
pub const BRANDY: &str = "\u{E9D2}";
pub const BRIDGE: &str = "\u{E9D3}";
pub const BRIEFCASE: &str = "\u{E9D4}";
pub const BRIEFCASE_METAL: &str = "\u{E9D5}";
pub const BROADCAST: &str = "\u{E9D6}";
pub const BROOM: &str = "\u{E9D7}";
pub const BROWSER: &str = "\u{E9D8}";
pub const BROWSERS: &str = "\u{E9D9}";
pub const BUG: &str = "\u{E9DA}";
pub const BUG_BEETLE: &str = "\u{E9DB}";
pub const BUG_DROID: &str = "\u{E9DC}";
pub const BUILDINGS: &str = "\u{E9DD}";
pub const BUS: &str = "\u{E9DE}";
pub const BUTTERFLY: &str = "\u{E9DF}";
pub const CACTUS: &str = "\u{E9E0}";
pub const CAKE: &str = "\u{E9E1}";
pub const CALCULATOR: &str = "\u{E9E2}";
pub const CALENDAR: &str = "\u{E9E3}";
pub const CALENDAR_BLANK: &str = "\u{E9E4}";
pub const CALENDAR_CHECK: &str = "\u{E9E5}";
pub const CALENDAR_PLUS: &str = "\u{E9E6}";
pub const CALENDAR_X: &str = "\u{E9E7}";
pub const CALL_BELL: &str = "\u{E9E8}";
pub const CAMERA: &str = "\u{E9E9}";
pub const CAMERA_PLUS: &str = "\u{E9EA}";
pub const CAMERA_ROTATE: &str = "\u{E9EB}";
pub const CAMERA_SLASH: &str = "\u{E9EC}";
pub const CAMPFIRE: &str = "\u{E9ED}";
pub const CAR: &str = "\u{E9EE}";
pub const CARDHOLDER: &str = "\u{E9EF}";
pub const CARDS: &str = "\u{E9F0}";
pub const CARET_CIRCLE_DOUBLE_DOWN: &str = "\u{E9F1}";
pub const CARET_CIRCLE_DOUBLE_LEFT: &str = "\u{E9F2}";
pub const CARET_CIRCLE_DOUBLE_RIGHT: &str = "\u{E9F3}";
pub const CARET_CIRCLE_DOUBLE_UP: &str = "\u{E9F4}";
pub const CARET_CIRCLE_DOWN: &str = "\u{E9F5}";
pub const CARET_CIRCLE_LEFT: &str = "\u{E9F6}";
pub const CARET_CIRCLE_RIGHT: &str = "\u{E9F7}";
pub const CARET_CIRCLE_UP: &str = "\u{E9F8}";
pub const CARET_CIRCLE_UP_DOWN: &str = "\u{E9F9}";
pub const CARET_DOUBLE_DOWN: &str = "\u{E9FA}";
pub const CARET_DOUBLE_LEFT: &str = "\u{E9FB}";
pub const CARET_DOUBLE_RIGHT: &str = "\u{E9FC}";
pub const CARET_DOUBLE_UP: &str = "\u{E9FD}";
pub const CARET_DOWN: &str = "\u{E9FE}";
pub const CARET_LEFT: &str = "\u{E9FF}";
pub const CARET_RIGHT: &str = "\u{EA00}";
pub const CARET_UP: &str = "\u{EA01}";
pub const CARET_UP_DOWN: &str = "\u{EA02}";
pub const CAR_PROFILE: &str = "\u{EA03}";
pub const CARROT: &str = "\u{EA04}";
pub const CAR_SIMPLE: &str = "\u{EA05}";
pub const CASSETTE_TAPE: &str = "\u{EA06}";
pub const CASTLE_TURRET: &str = "\u{EA07}";
pub const CAT: &str = "\u{EA08}";
pub const CELL_SIGNAL_FULL: &str = "\u{EA09}";
pub const CELL_SIGNAL_HIGH: &str = "\u{EA0A}";
pub const CELL_SIGNAL_LOW: &str = "\u{EA0B}";
pub const CELL_SIGNAL_MEDIUM: &str = "\u{EA0C}";
pub const CELL_SIGNAL_NONE: &str = "\u{EA0D}";
pub const CELL_SIGNAL_SLASH: &str = "\u{EA0E}";
pub const CELL_SIGNAL_X: &str = "\u{EA0F}";
pub const CERTIFICATE: &str = "\u{EA10}";
pub const CHAIR: &str = "\u{EA11}";
pub const CHALKBOARD: &str = "\u{EA12}";
pub const CHALKBOARD_SIMPLE: &str = "\u{EA13}";
pub const CHALKBOARD_TEACHER: &str = "\u{EA14}";
pub const CHAMPAGNE: &str = "\u{EA15}";
pub const CHARGING_STATION: &str = "\u{EA16}";
pub const CHART_BAR: &str = "\u{EA17}";
pub const CHART_BAR_HORIZONTAL: &str = "\u{EA18}";
pub const CHART_DONUT: &str = "\u{EA19}";
pub const CHART_LINE: &str = "\u{EA1A}";
pub const CHART_LINE_DOWN: &str = "\u{EA1B}";
pub const CHART_LINE_UP: &str = "\u{EA1C}";
pub const CHART_PIE: &str = "\u{EA1D}";
pub const CHART_PIE_SLICE: &str = "\u{EA1E}";
pub const CHART_POLAR: &str = "\u{EA1F}";
pub const CHART_SCATTER: &str = "\u{EA20}";
pub const CHAT: &str = "\u{EA21}";
pub const CHAT_CENTERED: &str = "\u{EA22}";
pub const CHAT_CENTERED_DOTS: &str = "\u{EA23}";
pub const CHAT_CENTERED_TEXT: &str = "\u{EA24}";
pub const CHAT_CIRCLE: &str = "\u{EA25}";
pub const CHAT_CIRCLE_DOTS: &str = "\u{EA26}";
pub const CHAT_CIRCLE_TEXT: &str = "\u{EA27}";
pub const CHAT_DOTS: &str = "\u{EA28}";
pub const CHATS: &str = "\u{EA29}";
pub const CHATS_CIRCLE: &str = "\u{EA2A}";
pub const CHATS_TEARDROP: &str = "\u{EA2B}";
pub const CHAT_TEARDROP: &str = "\u{EA2C}";
pub const CHAT_TEARDROP_DOTS: &str = "\u{EA2D}";
pub const CHAT_TEARDROP_TEXT: &str = "\u{EA2E}";
pub const CHAT_TEXT: &str = "\u{EA2F}";
pub const CHECK: &str = "\u{EA30}";
pub const CHECK_CIRCLE: &str = "\u{EA31}";
pub const CHECK_FAT: &str = "\u{EA32}";
pub const CHECKS: &str = "\u{EA33}";
pub const CHECK_SQUARE: &str = "\u{EA34}";
pub const CHECK_SQUARE_OFFSET: &str = "\u{EA35}";
pub const CHURCH: &str = "\u{EA36}";
pub const CIRCLE: &str = "\u{EA37}";
pub const CIRCLE_DASHED: &str = "\u{EA38}";
pub const CIRCLE_HALF: &str = "\u{EA39}";
pub const CIRCLE_HALF_TILT: &str = "\u{EA3A}";
pub const CIRCLE_NOTCH: &str = "\u{EA3B}";
pub const CIRCLES_FOUR: &str = "\u{EA3C}";
pub const CIRCLES_THREE: &str = "\u{EA3D}";
pub const CIRCLES_THREE_PLUS: &str = "\u{EA3E}";
pub const CIRCUITRY: &str = "\u{EA3F}";
pub const CLIPBOARD: &str = "\u{EA40}";
pub const CLIPBOARD_TEXT: &str = "\u{EA41}";
pub const CLOCK: &str = "\u{EA42}";
pub const CLOCK_AFTERNOON: &str = "\u{EA43}";
pub const CLOCK_CLOCKWISE: &str = "\u{EA44}";
pub const CLOCK_COUNTDOWN: &str = "\u{EA45}";
pub const CLOCK_COUNTER_CLOCKWISE: &str = "\u{EA46}";
pub const CLOSED_CAPTIONING: &str = "\u{EA47}";
pub const CLOUD: &str = "\u{EA48}";
pub const CLOUD_ARROW_DOWN: &str = "\u{EA49}";
pub const CLOUD_ARROW_UP: &str = "\u{EA4A}";
pub const CLOUD_CHECK: &str = "\u{EA4B}";
pub const CLOUD_FOG: &str = "\u{EA4C}";
pub const CLOUD_LIGHTNING: &str = "\u{EA4D}";
pub const CLOUD_MOON: &str = "\u{EA4E}";
pub const CLOUD_RAIN: &str = "\u{EA4F}";
pub const CLOUD_SLASH: &str = "\u{EA50}";
pub const CLOUD_SNOW: &str = "\u{EA51}";
pub const CLOUD_SUN: &str = "\u{EA52}";
pub const CLOUD_WARNING: &str = "\u{EA53}";
pub const CLOUD_X: &str = "\u{EA54}";
pub const CLUB: &str = "\u{EA55}";
pub const COAT_HANGER: &str = "\u{EA56}";
pub const CODA_LOGO: &str = "\u{EA57}";
pub const CODE: &str = "\u{EA58}";
pub const CODE_BLOCK: &str = "\u{EA59}";
pub const CODEPEN_LOGO: &str = "\u{EA5A}";
pub const CODESANDBOX_LOGO: &str = "\u{EA5B}";
pub const CODE_SIMPLE: &str = "\u{EA5C}";
pub const COFFEE: &str = "\u{EA5D}";
pub const COIN: &str = "\u{EA5E}";
pub const COINS: &str = "\u{EA5F}";
pub const COIN_VERTICAL: &str = "\u{EA60}";
pub const COLUMNS: &str = "\u{EA61}";
pub const COMMAND: &str = "\u{EA62}";
pub const COMPASS: &str = "\u{EA63}";
pub const COMPASS_TOOL: &str = "\u{EA64}";
pub const COMPUTER_TOWER: &str = "\u{EA65}";
pub const CONFETTI: &str = "\u{EA66}";
pub const CONTACTLESS_PAYMENT: &str = "\u{EA67}";
pub const CONTROL: &str = "\u{EA68}";
pub const COOKIE: &str = "\u{EA69}";
pub const COOKING_POT: &str = "\u{EA6A}";
pub const COPY: &str = "\u{EA6B}";
pub const COPYLEFT: &str = "\u{EA6C}";
pub const COPYRIGHT: &str = "\u{EA6D}";
pub const COPY_SIMPLE: &str = "\u{EA6E}";
pub const CORNERS_IN: &str = "\u{EA6F}";
pub const CORNERS_OUT: &str = "\u{EA70}";
pub const COUCH: &str = "\u{EA71}";
pub const CPU: &str = "\u{EA72}";
pub const CREDIT_CARD: &str = "\u{EA73}";
pub const CROP: &str = "\u{EA74}";
pub const CROSS: &str = "\u{EA75}";
pub const CROSSHAIR: &str = "\u{EA76}";
pub const CROSSHAIR_SIMPLE: &str = "\u{EA77}";
pub const CROWN: &str = "\u{EA78}";
pub const CROWN_SIMPLE: &str = "\u{EA79}";
pub const CUBE: &str = "\u{EA7A}";
pub const CUBE_FOCUS: &str = "\u{EA7B}";
pub const CUBE_TRANSPARENT: &str = "\u{EA7C}";
pub const CURRENCY_BTC: &str = "\u{EA7D}";
pub const CURRENCY_CIRCLE_DOLLAR: &str = "\u{EA7E}";
pub const CURRENCY_CNY: &str = "\u{EA7F}";
pub const CURRENCY_DOLLAR: &str = "\u{EA80}";
pub const CURRENCY_DOLLAR_SIMPLE: &str = "\u{EA81}";
pub const CURRENCY_ETH: &str = "\u{EA82}";
pub const CURRENCY_EUR: &str = "\u{EA83}";
pub const CURRENCY_GBP: &str = "\u{EA84}";
pub const CURRENCY_INR: &str = "\u{EA85}";
pub const CURRENCY_JPY: &str = "\u{EA86}";
pub const CURRENCY_KRW: &str = "\u{EA87}";
pub const CURRENCY_KZT: &str = "\u{EA88}";
pub const CURRENCY_NGN: &str = "\u{EA89}";
pub const CURRENCY_RUB: &str = "\u{EA8A}";
pub const CURSOR: &str = "\u{EA8B}";
pub const CURSOR_CLICK: &str = "\u{EA8C}";
pub const CURSOR_TEXT: &str = "\u{EA8D}";
pub const CYLINDER: &str = "\u{EA8E}";
pub const DATABASE: &str = "\u{EA8F}";
pub const DESKTOP: &str = "\u{EA90}";
pub const DESKTOP_TOWER: &str = "\u{EA91}";
pub const DETECTIVE: &str = "\u{EA92}";
pub const DEVICE_MOBILE: &str = "\u{EA93}";
pub const DEVICE_MOBILE_CAMERA: &str = "\u{EA94}";
pub const DEVICE_MOBILE_SPEAKER: &str = "\u{EA95}";
pub const DEVICES: &str = "\u{EA96}";
pub const DEVICE_TABLET: &str = "\u{EA97}";
pub const DEVICE_TABLET_CAMERA: &str = "\u{EA98}";
pub const DEVICE_TABLET_SPEAKER: &str = "\u{EA99}";
pub const DEV_TO_LOGO: &str = "\u{EA9A}";
pub const DIAMOND: &str = "\u{EA9B}";
pub const DIAMONDS_FOUR: &str = "\u{EA9C}";
pub const DICE_FIVE: &str = "\u{EA9D}";
pub const DICE_FOUR: &str = "\u{EA9E}";
pub const DICE_ONE: &str = "\u{EA9F}";
pub const DICE_SIX: &str = "\u{EAA0}";
pub const DICE_THREE: &str = "\u{EAA1}";
pub const DICE_TWO: &str = "\u{EAA2}";
pub const DISC: &str = "\u{EAA3}";
pub const DISCORD_LOGO: &str = "\u{EAA4}";
pub const DIVIDE: &str = "\u{EAA5}";
pub const DNA: &str = "\u{EAA6}";
pub const DOG: &str = "\u{EAA7}";
pub const DOOR: &str = "\u{EAA8}";
pub const DOOR_OPEN: &str = "\u{EAA9}";
pub const DOT: &str = "\u{EAAA}";
pub const DOT_OUTLINE: &str = "\u{EAAB}";
pub const DOTS_NINE: &str = "\u{EAAC}";
pub const DOTS_SIX: &str = "\u{EAAD}";
pub const DOTS_SIX_VERTICAL: &str = "\u{EAAE}";
pub const DOTS_THREE: &str = "\u{EAAF}";
pub const DOTS_THREE_CIRCLE: &str = "\u{EAB0}";
pub const DOTS_THREE_CIRCLE_VERTICAL: &str = "\u{EAB1}";
pub const DOTS_THREE_OUTLINE: &str = "\u{EAB2}";
pub const DOTS_THREE_OUTLINE_VERTICAL: &str = "\u{EAB3}";
pub const DOTS_THREE_VERTICAL: &str = "\u{EAB4}";
pub const DOWNLOAD: &str = "\u{EAB5}";
pub const DOWNLOAD_SIMPLE: &str = "\u{EAB6}";
pub const DRESS: &str = "\u{EAB7}";
pub const DRIBBBLE_LOGO: &str = "\u{EAB8}";
pub const DROP: &str = "\u{EAB9}";
pub const DROPBOX_LOGO: &str = "\u{EABA}";
pub const DROP_HALF: &str = "\u{EABB}";
pub const DROP_HALF_BOTTOM: &str = "\u{EABC}";
pub const EAR: &str = "\u{EABD}";
pub const EAR_SLASH: &str = "\u{EABE}";
pub const EGG: &str = "\u{EABF}";
pub const EGG_CRACK: &str = "\u{EAC0}";
pub const EJECT: &str = "\u{EAC1}";
pub const EJECT_SIMPLE: &str = "\u{EAC2}";
pub const ELEVATOR: &str = "\u{EAC3}";
pub const ENGINE: &str = "\u{EAC4}";
pub const ENVELOPE: &str = "\u{EAC5}";
pub const ENVELOPE_OPEN: &str = "\u{EAC6}";
pub const ENVELOPE_SIMPLE: &str = "\u{EAC7}";
pub const ENVELOPE_SIMPLE_OPEN: &str = "\u{EAC8}";
pub const EQUALIZER: &str = "\u{EAC9}";
pub const EQUALS: &str = "\u{EACA}";
pub const ERASER: &str = "\u{EACB}";
pub const ESCALATOR_DOWN: &str = "\u{EACC}";
pub const ESCALATOR_UP: &str = "\u{EACD}";
pub const EXAM: &str = "\u{EACE}";
pub const EXCLUDE: &str = "\u{EACF}";
pub const EXCLUDE_SQUARE: &str = "\u{EAD0}";
pub const EXPORT: &str = "\u{EAD1}";
pub const EYE: &str = "\u{EAD2}";
pub const EYE_CLOSED: &str = "\u{EAD3}";
pub const EYEDROPPER: &str = "\u{EAD4}";
pub const EYEDROPPER_SAMPLE: &str = "\u{EAD5}";
pub const EYEGLASSES: &str = "\u{EAD6}";
pub const EYE_SLASH: &str = "\u{EAD7}";
pub const FACEBOOK_LOGO: &str = "\u{EAD8}";
pub const FACE_MASK: &str = "\u{EAD9}";
pub const FACTORY: &str = "\u{EADA}";
pub const FADERS: &str = "\u{EADB}";
pub const FADERS_HORIZONTAL: &str = "\u{EADC}";
pub const FAN: &str = "\u{EADD}";
pub const FAST_FORWARD: &str = "\u{EADE}";
pub const FAST_FORWARD_CIRCLE: &str = "\u{EADF}";
pub const FEATHER: &str = "\u{EAE0}";
pub const FIGMA_LOGO: &str = "\u{EAE1}";
pub const FILE: &str = "\u{EAE2}";
pub const FILE_ARCHIVE: &str = "\u{EAE3}";
pub const FILE_ARROW_DOWN: &str = "\u{EAE4}";
pub const FILE_ARROW_UP: &str = "\u{EAE5}";
pub const FILE_AUDIO: &str = "\u{EAE6}";
pub const FILE_CLOUD: &str = "\u{EAE7}";
pub const FILE_CODE: &str = "\u{EAE8}";
pub const FILE_CSS: &str = "\u{EAE9}";
pub const FILE_CSV: &str = "\u{EAEA}";
pub const FILE_DASHED: &str = "\u{EAEB}";
pub const FILE_DOTTED: &str = "\u{EAEB}";
pub const FILE_DOC: &str = "\u{EAEC}";
pub const FILE_HTML: &str = "\u{EAED}";
pub const FILE_IMAGE: &str = "\u{EAEE}";
pub const FILE_JPG: &str = "\u{EAEF}";
pub const FILE_JS: &str = "\u{EAF0}";
pub const FILE_JSX: &str = "\u{EAF1}";
pub const FILE_LOCK: &str = "\u{EAF2}";
pub const FILE_MAGNIFYING_GLASS: &str = "\u{EAF3}";
pub const FILE_SEARCH: &str = "\u{EAF3}";
pub const FILE_MINUS: &str = "\u{EAF4}";
pub const FILE_PDF: &str = "\u{EAF5}";
pub const FILE_PLUS: &str = "\u{EAF6}";
pub const FILE_PNG: &str = "\u{EAF7}";
pub const FILE_PPT: &str = "\u{EAF8}";
pub const FILE_RS: &str = "\u{EAF9}";
pub const FILES: &str = "\u{EAFA}";
pub const FILE_SQL: &str = "\u{EAFB}";
pub const FILE_SVG: &str = "\u{EAFC}";
pub const FILE_TEXT: &str = "\u{EAFD}";
pub const FILE_TS: &str = "\u{EAFE}";
pub const FILE_TSX: &str = "\u{EAFF}";
pub const FILE_VIDEO: &str = "\u{EB00}";
pub const FILE_VUE: &str = "\u{EB01}";
pub const FILE_X: &str = "\u{EB02}";
pub const FILE_XLS: &str = "\u{EB03}";
pub const FILE_ZIP: &str = "\u{EB04}";
pub const FILM_REEL: &str = "\u{EB05}";
pub const FILM_SCRIPT: &str = "\u{EB06}";
pub const FILM_SLATE: &str = "\u{EB07}";
pub const FILM_STRIP: &str = "\u{EB08}";
pub const FINGERPRINT: &str = "\u{EB09}";
pub const FINGERPRINT_SIMPLE: &str = "\u{EB0A}";
pub const FINN_THE_HUMAN: &str = "\u{EB0B}";
pub const FIRE: &str = "\u{EB0C}";
pub const FIRE_EXTINGUISHER: &str = "\u{EB0D}";
pub const FIRE_SIMPLE: &str = "\u{EB0E}";
pub const FIRST_AID: &str = "\u{EB0F}";
pub const FIRST_AID_KIT: &str = "\u{EB10}";
pub const FISH: &str = "\u{EB11}";
pub const FISH_SIMPLE: &str = "\u{EB12}";
pub const FLAG: &str = "\u{EB13}";
pub const FLAG_BANNER: &str = "\u{EB14}";
pub const FLAG_CHECKERED: &str = "\u{EB15}";
pub const FLAG_PENNANT: &str = "\u{EB16}";
pub const FLAME: &str = "\u{EB17}";
pub const FLASHLIGHT: &str = "\u{EB18}";
pub const FLASK: &str = "\u{EB19}";
pub const FLOPPY_DISK: &str = "\u{EB1A}";
pub const FLOPPY_DISK_BACK: &str = "\u{EB1B}";
pub const FLOW_ARROW: &str = "\u{EB1C}";
pub const FLOWER: &str = "\u{EB1D}";
pub const FLOWER_LOTUS: &str = "\u{EB1E}";
pub const FLOWER_TULIP: &str = "\u{EB1F}";
pub const FLYING_SAUCER: &str = "\u{EB20}";
pub const FOLDER: &str = "\u{EB21}";
pub const FOLDER_DASHED: &str = "\u{EB22}";
pub const FOLDER_DOTTED: &str = "\u{EB22}";
pub const FOLDER_LOCK: &str = "\u{EB23}";
pub const FOLDER_MINUS: &str = "\u{EB24}";
pub const FOLDER_NOTCH: &str = "\u{EB25}";
pub const FOLDER_NOTCH_MINUS: &str = "\u{EB26}";
pub const FOLDER_NOTCH_OPEN: &str = "\u{EB27}";
pub const FOLDER_NOTCH_PLUS: &str = "\u{EB28}";
pub const FOLDER_OPEN: &str = "\u{EB29}";
pub const FOLDER_PLUS: &str = "\u{EB2A}";
pub const FOLDERS: &str = "\u{EB2B}";
pub const FOLDER_SIMPLE: &str = "\u{EB2C}";
pub const FOLDER_SIMPLE_DASHED: &str = "\u{EB2D}";
pub const FOLDER_SIMPLE_DOTTED: &str = "\u{EB2D}";
pub const FOLDER_SIMPLE_LOCK: &str = "\u{EB2E}";
pub const FOLDER_SIMPLE_MINUS: &str = "\u{EB2F}";
pub const FOLDER_SIMPLE_PLUS: &str = "\u{EB30}";
pub const FOLDER_SIMPLE_STAR: &str = "\u{EB31}";
pub const FOLDER_SIMPLE_USER: &str = "\u{EB32}";
pub const FOLDER_STAR: &str = "\u{EB33}";
pub const FOLDER_USER: &str = "\u{EB34}";
pub const FOOTBALL: &str = "\u{EB35}";
pub const FOOTPRINTS: &str = "\u{EB36}";
pub const FORK_KNIFE: &str = "\u{EB37}";
pub const FRAME_CORNERS: &str = "\u{EB38}";
pub const FRAMER_LOGO: &str = "\u{EB39}";
pub const FUNCTION: &str = "\u{EB3A}";
pub const FUNNEL: &str = "\u{EB3B}";
pub const FUNNEL_SIMPLE: &str = "\u{EB3C}";
pub const GAME_CONTROLLER: &str = "\u{EB3D}";
pub const GARAGE: &str = "\u{EB3E}";
pub const GAS_CAN: &str = "\u{EB3F}";
pub const GAS_PUMP: &str = "\u{EB40}";
pub const GAUGE: &str = "\u{EB41}";
pub const GAVEL: &str = "\u{EB42}";
pub const GEAR: &str = "\u{EB43}";
pub const GEAR_FINE: &str = "\u{EB44}";
pub const GEAR_SIX: &str = "\u{EB45}";
pub const GENDER_FEMALE: &str = "\u{EB46}";
pub const GENDER_INTERSEX: &str = "\u{EB47}";
pub const GENDER_MALE: &str = "\u{EB48}";
pub const GENDER_NEUTER: &str = "\u{EB49}";
pub const GENDER_NONBINARY: &str = "\u{EB4A}";
pub const GENDER_TRANSGENDER: &str = "\u{EB4B}";
pub const GHOST: &str = "\u{EB4C}";
pub const GIF: &str = "\u{EB4D}";
pub const GIFT: &str = "\u{EB4E}";
pub const GIT_BRANCH: &str = "\u{EB4F}";
pub const GIT_COMMIT: &str = "\u{EB50}";
pub const GIT_DIFF: &str = "\u{EB51}";
pub const GIT_FORK: &str = "\u{EB52}";
pub const GITHUB_LOGO: &str = "\u{EB53}";
pub const GITLAB_LOGO: &str = "\u{EB54}";
pub const GITLAB_LOGO_SIMPLE: &str = "\u{EB55}";
pub const GIT_MERGE: &str = "\u{EB56}";
pub const GIT_PULL_REQUEST: &str = "\u{EB57}";
pub const GLOBE: &str = "\u{EB58}";
pub const GLOBE_HEMISPHERE_EAST: &str = "\u{EB59}";
pub const GLOBE_HEMISPHERE_WEST: &str = "\u{EB5A}";
pub const GLOBE_SIMPLE: &str = "\u{EB5B}";
pub const GLOBE_STAND: &str = "\u{EB5C}";
pub const GOGGLES: &str = "\u{EB5D}";
pub const GOODREADS_LOGO: &str = "\u{EB5E}";
pub const GOOGLE_CARDBOARD_LOGO: &str = "\u{EB5F}";
pub const GOOGLE_CHROME_LOGO: &str = "\u{EB60}";
pub const GOOGLE_DRIVE_LOGO: &str = "\u{EB61}";
pub const GOOGLE_LOGO: &str = "\u{EB62}";
pub const GOOGLE_PHOTOS_LOGO: &str = "\u{EB63}";
pub const GOOGLE_PLAY_LOGO: &str = "\u{EB64}";
pub const GOOGLE_PODCASTS_LOGO: &str = "\u{EB65}";
pub const GRADIENT: &str = "\u{EB66}";
pub const GRADUATION_CAP: &str = "\u{EB67}";
pub const GRAINS: &str = "\u{EB68}";
pub const GRAINS_SLASH: &str = "\u{EB69}";
pub const GRAPH: &str = "\u{EB6A}";
pub const GRID_FOUR: &str = "\u{EB6B}";
pub const GRID_NINE: &str = "\u{EB6C}";
pub const GUITAR: &str = "\u{EB6D}";
pub const HAMBURGER: &str = "\u{EB6E}";
pub const HAMMER: &str = "\u{EB6F}";
pub const HAND: &str = "\u{EB70}";
pub const HANDBAG: &str = "\u{EB71}";
pub const HANDBAG_SIMPLE: &str = "\u{EB72}";
pub const HAND_COINS: &str = "\u{EB73}";
pub const HAND_EYE: &str = "\u{EB74}";
pub const HAND_FIST: &str = "\u{EB75}";
pub const HAND_GRABBING: &str = "\u{EB76}";
pub const HAND_HEART: &str = "\u{EB77}";
pub const HAND_PALM: &str = "\u{EB78}";
pub const HAND_POINTING: &str = "\u{EB79}";
pub const HANDS_CLAPPING: &str = "\u{EB7A}";
pub const HANDSHAKE: &str = "\u{EB7B}";
pub const HAND_SOAP: &str = "\u{EB7C}";
pub const HANDS_PRAYING: &str = "\u{EB7D}";
pub const HAND_SWIPE_LEFT: &str = "\u{EB7E}";
pub const HAND_SWIPE_RIGHT: &str = "\u{EB7F}";
pub const HAND_TAP: &str = "\u{EB80}";
pub const HAND_WAVING: &str = "\u{EB81}";
pub const HARD_DRIVE: &str = "\u{EB82}";
pub const HARD_DRIVES: &str = "\u{EB83}";
pub const HASH: &str = "\u{EB84}";
pub const HASH_STRAIGHT: &str = "\u{EB85}";
pub const HEADLIGHTS: &str = "\u{EB86}";
pub const HEADPHONES: &str = "\u{EB87}";
pub const HEADSET: &str = "\u{EB88}";
pub const HEART: &str = "\u{EB89}";
pub const HEARTBEAT: &str = "\u{EB8A}";
pub const HEART_BREAK: &str = "\u{EB8B}";
pub const HEART_HALF: &str = "\u{EB8C}";
pub const HEART_STRAIGHT: &str = "\u{EB8D}";
pub const HEART_STRAIGHT_BREAK: &str = "\u{EB8E}";
pub const HEXAGON: &str = "\u{EB8F}";
pub const HIGH_HEEL: &str = "\u{EB90}";
pub const HIGHLIGHTER_CIRCLE: &str = "\u{EB91}";
pub const HOODIE: &str = "\u{EB92}";
pub const HORSE: &str = "\u{EB93}";
pub const HOURGLASS: &str = "\u{EB94}";
pub const HOURGLASS_HIGH: &str = "\u{EB95}";
pub const HOURGLASS_LOW: &str = "\u{EB96}";
pub const HOURGLASS_MEDIUM: &str = "\u{EB97}";
pub const HOURGLASS_SIMPLE: &str = "\u{EB98}";
pub const HOURGLASS_SIMPLE_HIGH: &str = "\u{EB99}";
pub const HOURGLASS_SIMPLE_LOW: &str = "\u{EB9A}";
pub const HOURGLASS_SIMPLE_MEDIUM: &str = "\u{EB9B}";
pub const HOUSE: &str = "\u{EB9C}";
pub const HOUSE_LINE: &str = "\u{EB9D}";
pub const HOUSE_SIMPLE: &str = "\u{EB9E}";
pub const ICE_CREAM: &str = "\u{EB9F}";
pub const IDENTIFICATION_BADGE: &str = "\u{EBA0}";
pub const IDENTIFICATION_CARD: &str = "\u{EBA1}";
pub const IMAGE: &str = "\u{EBA2}";
pub const IMAGES: &str = "\u{EBA3}";
pub const IMAGE_SQUARE: &str = "\u{EBA4}";
pub const IMAGES_SQUARE: &str = "\u{EBA5}";
pub const INFINITY: &str = "\u{EBA6}";
pub const INFO: &str = "\u{EBA7}";
pub const INSTAGRAM_LOGO: &str = "\u{EBA8}";
pub const INTERSECT: &str = "\u{EBA9}";
pub const INTERSECT_SQUARE: &str = "\u{EBAA}";
pub const INTERSECT_THREE: &str = "\u{EBAB}";
pub const JEEP: &str = "\u{EBAC}";
pub const KANBAN: &str = "\u{EBAD}";
pub const KEY: &str = "\u{EBAE}";
pub const KEYBOARD: &str = "\u{EBAF}";
pub const KEYHOLE: &str = "\u{EBB0}";
pub const KEY_RETURN: &str = "\u{EBB1}";
pub const KNIFE: &str = "\u{EBB2}";
pub const LADDER: &str = "\u{EBB3}";
pub const LADDER_SIMPLE: &str = "\u{EBB4}";
pub const LAMP: &str = "\u{EBB5}";
pub const LAPTOP: &str = "\u{EBB6}";
pub const LAYOUT: &str = "\u{EBB7}";
pub const LEAF: &str = "\u{EBB8}";
pub const LIFEBUOY: &str = "\u{EBB9}";
pub const LIGHTBULB: &str = "\u{EBBA}";
pub const LIGHTBULB_FILAMENT: &str = "\u{EBBB}";
pub const LIGHTHOUSE: &str = "\u{EBBC}";
pub const LIGHTNING: &str = "\u{EBBD}";
pub const LIGHTNING_A: &str = "\u{EBBE}";
pub const LIGHTNING_SLASH: &str = "\u{EBBF}";
pub const LINE_SEGMENT: &str = "\u{EBC0}";
pub const LINE_SEGMENTS: &str = "\u{EBC1}";
pub const LINK: &str = "\u{EBC2}";
pub const LINK_BREAK: &str = "\u{EBC3}";
pub const LINKEDIN_LOGO: &str = "\u{EBC4}";
pub const LINK_SIMPLE: &str = "\u{EBC5}";
pub const LINK_SIMPLE_BREAK: &str = "\u{EBC6}";
pub const LINK_SIMPLE_HORIZONTAL: &str = "\u{EBC7}";
pub const LINK_SIMPLE_HORIZONTAL_BREAK: &str = "\u{EBC8}";
pub const LINUX_LOGO: &str = "\u{EBC9}";
pub const LIST: &str = "\u{EBCA}";
pub const LIST_BULLETS: &str = "\u{EBCB}";
pub const LIST_CHECKS: &str = "\u{EBCC}";
pub const LIST_DASHES: &str = "\u{EBCD}";
pub const LIST_MAGNIFYING_GLASS: &str = "\u{EBCE}";
pub const LIST_NUMBERS: &str = "\u{EBCF}";
pub const LIST_PLUS: &str = "\u{EBD0}";
pub const LOCK: &str = "\u{EBD1}";
pub const LOCKERS: &str = "\u{EBD2}";
pub const LOCK_KEY: &str = "\u{EBD3}";
pub const LOCK_KEY_OPEN: &str = "\u{EBD4}";
pub const LOCK_LAMINATED: &str = "\u{EBD5}";
pub const LOCK_LAMINATED_OPEN: &str = "\u{EBD6}";
pub const LOCK_OPEN: &str = "\u{EBD7}";
pub const LOCK_SIMPLE: &str = "\u{EBD8}";
pub const LOCK_SIMPLE_OPEN: &str = "\u{EBD9}";
pub const MAGIC_WAND: &str = "\u{EBDA}";
pub const MAGNET: &str = "\u{EBDB}";
pub const MAGNET_STRAIGHT: &str = "\u{EBDC}";
pub const MAGNIFYING_GLASS: &str = "\u{EBDD}";
pub const MAGNIFYING_GLASS_MINUS: &str = "\u{EBDE}";
pub const MAGNIFYING_GLASS_PLUS: &str = "\u{EBDF}";
pub const MAP_PIN: &str = "\u{EBE0}";
pub const MAP_PIN_LINE: &str = "\u{EBE1}";
pub const MAP_TRIFOLD: &str = "\u{EBE2}";
pub const MARKER_CIRCLE: &str = "\u{EBE3}";
pub const MARTINI: &str = "\u{EBE4}";
pub const MASK_HAPPY: &str = "\u{EBE5}";
pub const MASK_SAD: &str = "\u{EBE6}";
pub const MATH_OPERATIONS: &str = "\u{EBE7}";
pub const MEDAL: &str = "\u{EBE8}";
pub const MEDAL_MILITARY: &str = "\u{EBE9}";
pub const MEDIUM_LOGO: &str = "\u{EBEA}";
pub const MEGAPHONE: &str = "\u{EBEB}";
pub const MEGAPHONE_SIMPLE: &str = "\u{EBEC}";
pub const MESSENGER_LOGO: &str = "\u{EBED}";
pub const META_LOGO: &str = "\u{EBEE}";
pub const METRONOME: &str = "\u{EBEF}";
pub const MICROPHONE: &str = "\u{EBF0}";
pub const MICROPHONE_SLASH: &str = "\u{EBF1}";
pub const MICROPHONE_STAGE: &str = "\u{EBF2}";
pub const MICROSOFT_EXCEL_LOGO: &str = "\u{EBF3}";
pub const MICROSOFT_OUTLOOK_LOGO: &str = "\u{EBF4}";
pub const MICROSOFT_POWERPOINT_LOGO: &str = "\u{EBF5}";
pub const MICROSOFT_TEAMS_LOGO: &str = "\u{EBF6}";
pub const MICROSOFT_WORD_LOGO: &str = "\u{EBF7}";
pub const MINUS: &str = "\u{EBF8}";
pub const MINUS_CIRCLE: &str = "\u{EBF9}";
pub const MINUS_SQUARE: &str = "\u{EBFA}";
pub const MONEY: &str = "\u{EBFB}";
pub const MONITOR: &str = "\u{EBFC}";
pub const MONITOR_PLAY: &str = "\u{EBFD}";
pub const MOON: &str = "\u{EBFE}";
pub const MOON_STARS: &str = "\u{EBFF}";
pub const MOPED: &str = "\u{EC00}";
pub const MOPED_FRONT: &str = "\u{EC01}";
pub const MOSQUE: &str = "\u{EC02}";
pub const MOTORCYCLE: &str = "\u{EC03}";
pub const MOUNTAINS: &str = "\u{EC04}";
pub const MOUSE: &str = "\u{EC05}";
pub const MOUSE_SIMPLE: &str = "\u{EC06}";
pub const MUSIC_NOTE: &str = "\u{EC07}";
pub const MUSIC_NOTES: &str = "\u{EC08}";
pub const MUSIC_NOTE_SIMPLE: &str = "\u{EC09}";
pub const MUSIC_NOTES_PLUS: &str = "\u{EC0A}";
pub const MUSIC_NOTES_SIMPLE: &str = "\u{EC0B}";
pub const NAVIGATION_ARROW: &str = "\u{EC0C}";
pub const NEEDLE: &str = "\u{EC0D}";
pub const NEWSPAPER: &str = "\u{EC0E}";
pub const NEWSPAPER_CLIPPING: &str = "\u{EC0F}";
pub const NOTCHES: &str = "\u{EC10}";
pub const NOTE: &str = "\u{EC11}";
pub const NOTE_BLANK: &str = "\u{EC12}";
pub const NOTEBOOK: &str = "\u{EC13}";
pub const NOTEPAD: &str = "\u{EC14}";
pub const NOTE_PENCIL: &str = "\u{EC15}";
pub const NOTIFICATION: &str = "\u{EC16}";
pub const NOTION_LOGO: &str = "\u{EC17}";
pub const NUMBER_CIRCLE_EIGHT: &str = "\u{EC18}";
pub const NUMBER_CIRCLE_FIVE: &str = "\u{EC19}";
pub const NUMBER_CIRCLE_FOUR: &str = "\u{EC1A}";
pub const NUMBER_CIRCLE_NINE: &str = "\u{EC1B}";
pub const NUMBER_CIRCLE_ONE: &str = "\u{EC1C}";
pub const NUMBER_CIRCLE_SEVEN: &str = "\u{EC1D}";
pub const NUMBER_CIRCLE_SIX: &str = "\u{EC1E}";
pub const NUMBER_CIRCLE_THREE: &str = "\u{EC1F}";
pub const NUMBER_CIRCLE_TWO: &str = "\u{EC20}";
pub const NUMBER_CIRCLE_ZERO: &str = "\u{EC21}";
pub const NUMBER_EIGHT: &str = "\u{EC22}";
pub const NUMBER_FIVE: &str = "\u{EC23}";
pub const NUMBER_FOUR: &str = "\u{EC24}";
pub const NUMBER_NINE: &str = "\u{EC25}";
pub const NUMBER_ONE: &str = "\u{EC26}";
pub const NUMBER_SEVEN: &str = "\u{EC27}";
pub const NUMBER_SIX: &str = "\u{EC28}";
pub const NUMBER_SQUARE_EIGHT: &str = "\u{EC29}";
pub const NUMBER_SQUARE_FIVE: &str = "\u{EC2A}";
pub const NUMBER_SQUARE_FOUR: &str = "\u{EC2B}";
pub const NUMBER_SQUARE_NINE: &str = "\u{EC2C}";
pub const NUMBER_SQUARE_ONE: &str = "\u{EC2D}";
pub const NUMBER_SQUARE_SEVEN: &str = "\u{EC2E}";
pub const NUMBER_SQUARE_SIX: &str = "\u{EC2F}";
pub const NUMBER_SQUARE_THREE: &str = "\u{EC30}";
pub const NUMBER_SQUARE_TWO: &str = "\u{EC31}";
pub const NUMBER_SQUARE_ZERO: &str = "\u{EC32}";
pub const NUMBER_THREE: &str = "\u{EC33}";
pub const NUMBER_TWO: &str = "\u{EC34}";
pub const NUMBER_ZERO: &str = "\u{EC35}";
pub const NUT: &str = "\u{EC36}";
pub const NY_TIMES_LOGO: &str = "\u{EC37}";
pub const OCTAGON: &str = "\u{EC38}";
pub const OFFICE_CHAIR: &str = "\u{EC39}";
pub const OPTION: &str = "\u{EC3A}";
pub const ORANGE_SLICE: &str = "\u{EC3B}";
pub const PACKAGE: &str = "\u{EC3C}";
pub const PAINT_BRUSH: &str = "\u{EC3D}";
pub const PAINT_BRUSH_BROAD: &str = "\u{EC3E}";
pub const PAINT_BRUSH_HOUSEHOLD: &str = "\u{EC3F}";
pub const PAINT_BUCKET: &str = "\u{EC40}";
pub const PAINT_ROLLER: &str = "\u{EC41}";
pub const PALETTE: &str = "\u{EC42}";
pub const PANTS: &str = "\u{EC43}";
pub const PAPERCLIP: &str = "\u{EC44}";
pub const PAPERCLIP_HORIZONTAL: &str = "\u{EC45}";
pub const PAPER_PLANE: &str = "\u{EC46}";
pub const PAPER_PLANE_RIGHT: &str = "\u{EC47}";
pub const PAPER_PLANE_TILT: &str = "\u{EC48}";
pub const PARACHUTE: &str = "\u{EC49}";
pub const PARAGRAPH: &str = "\u{EC4A}";
pub const PARALLELOGRAM: &str = "\u{EC4B}";
pub const PARK: &str = "\u{EC4C}";
pub const PASSWORD: &str = "\u{EC4D}";
pub const PATH: &str = "\u{EC4E}";
pub const PATREON_LOGO: &str = "\u{EC4F}";
pub const PAUSE: &str = "\u{EC50}";
pub const PAUSE_CIRCLE: &str = "\u{EC51}";
pub const PAW_PRINT: &str = "\u{EC52}";
pub const PAYPAL_LOGO: &str = "\u{EC53}";
pub const PEACE: &str = "\u{EC54}";
pub const PEN: &str = "\u{EC55}";
pub const PENCIL: &str = "\u{EC56}";
pub const PENCIL_CIRCLE: &str = "\u{EC57}";
pub const PENCIL_LINE: &str = "\u{EC58}";
pub const PENCIL_SIMPLE: &str = "\u{EC59}";
pub const PENCIL_SIMPLE_LINE: &str = "\u{EC5A}";
pub const PENCIL_SIMPLE_SLASH: &str = "\u{EC5B}";
pub const PENCIL_SLASH: &str = "\u{EC5C}";
pub const PEN_NIB: &str = "\u{EC5D}";
pub const PEN_NIB_STRAIGHT: &str = "\u{EC5E}";
pub const PENTAGRAM: &str = "\u{EC5F}";
pub const PEPPER: &str = "\u{EC60}";
pub const PERCENT: &str = "\u{EC61}";
pub const PERSON: &str = "\u{EC62}";
pub const PERSON_ARMS_SPREAD: &str = "\u{EC63}";
pub const PERSON_SIMPLE: &str = "\u{EC64}";
pub const PERSON_SIMPLE_BIKE: &str = "\u{EC65}";
pub const PERSON_SIMPLE_RUN: &str = "\u{EC66}";
pub const PERSON_SIMPLE_THROW: &str = "\u{EC67}";
pub const PERSON_SIMPLE_WALK: &str = "\u{EC68}";
pub const PERSPECTIVE: &str = "\u{EC69}";
pub const PHONE: &str = "\u{EC6A}";
pub const PHONE_CALL: &str = "\u{EC6B}";
pub const PHONE_DISCONNECT: &str = "\u{EC6C}";
pub const PHONE_INCOMING: &str = "\u{EC6D}";
pub const PHONE_OUTGOING: &str = "\u{EC6E}";
pub const PHONE_PLUS: &str = "\u{EC6F}";
pub const PHONE_SLASH: &str = "\u{EC70}";
pub const PHONE_X: &str = "\u{EC71}";
pub const PHOSPHOR_LOGO: &str = "\u{EC72}";
pub const PI: &str = "\u{EC73}";
pub const PIANO_KEYS: &str = "\u{EC74}";
pub const PICTURE_IN_PICTURE: &str = "\u{EC75}";
pub const PIGGY_BANK: &str = "\u{EC76}";
pub const PILL: &str = "\u{EC77}";
pub const PINTEREST_LOGO: &str = "\u{EC78}";
pub const PINWHEEL: &str = "\u{EC79}";
pub const PIZZA: &str = "\u{EC7A}";
pub const PLACEHOLDER: &str = "\u{EC7B}";
pub const PLANET: &str = "\u{EC7C}";
pub const PLANT: &str = "\u{EC7D}";
pub const PLAY: &str = "\u{EC7E}";
pub const PLAY_CIRCLE: &str = "\u{EC7F}";
pub const PLAYLIST: &str = "\u{EC80}";
pub const PLAY_PAUSE: &str = "\u{EC81}";
pub const PLUG: &str = "\u{EC82}";
pub const PLUG_CHARGING: &str = "\u{EC83}";
pub const PLUGS: &str = "\u{EC84}";
pub const PLUGS_CONNECTED: &str = "\u{EC85}";
pub const PLUS: &str = "\u{EC86}";
pub const PLUS_CIRCLE: &str = "\u{EC87}";
pub const PLUS_MINUS: &str = "\u{EC88}";
pub const PLUS_SQUARE: &str = "\u{EC89}";
pub const POKER_CHIP: &str = "\u{EC8A}";
pub const POLICE_CAR: &str = "\u{EC8B}";
pub const POLYGON: &str = "\u{EC8C}";
pub const POPCORN: &str = "\u{EC8D}";
pub const POTTED_PLANT: &str = "\u{EC8E}";
pub const POWER: &str = "\u{EC8F}";
pub const PRESCRIPTION: &str = "\u{EC90}";
pub const PRESENTATION: &str = "\u{EC91}";
pub const PRESENTATION_CHART: &str = "\u{EC92}";
pub const PRINTER: &str = "\u{EC93}";
pub const PROHIBIT: &str = "\u{EC94}";
pub const PROHIBIT_INSET: &str = "\u{EC95}";
pub const PROJECTOR_SCREEN: &str = "\u{EC96}";
pub const PROJECTOR_SCREEN_CHART: &str = "\u{EC97}";
pub const PULSE: &str = "\u{EC98}";
pub const ACTIVITY: &str = "\u{EC98}";
pub const PUSH_PIN: &str = "\u{EC99}";
pub const PUSH_PIN_SIMPLE: &str = "\u{EC9A}";
pub const PUSH_PIN_SIMPLE_SLASH: &str = "\u{EC9B}";
pub const PUSH_PIN_SLASH: &str = "\u{EC9C}";
pub const PUZZLE_PIECE: &str = "\u{EC9D}";
pub const QR_CODE: &str = "\u{EC9E}";
pub const QUESTION: &str = "\u{EC9F}";
pub const QUEUE: &str = "\u{ECA0}";
pub const QUOTES: &str = "\u{ECA1}";
pub const RADICAL: &str = "\u{ECA2}";
pub const RADIO: &str = "\u{ECA3}";
pub const RADIOACTIVE: &str = "\u{ECA4}";
pub const RADIO_BUTTON: &str = "\u{ECA5}";
pub const RAINBOW: &str = "\u{ECA6}";
pub const RAINBOW_CLOUD: &str = "\u{ECA7}";
pub const READ_CV_LOGO: &str = "\u{ECA8}";
pub const RECEIPT: &str = "\u{ECA9}";
pub const RECEIPT_X: &str = "\u{ECAA}";
pub const RECORD: &str = "\u{ECAB}";
pub const RECTANGLE: &str = "\u{ECAC}";
pub const RECYCLE: &str = "\u{ECAD}";
pub const REDDIT_LOGO: &str = "\u{ECAE}";
pub const REPEAT: &str = "\u{ECAF}";
pub const REPEAT_ONCE: &str = "\u{ECB0}";
pub const REWIND: &str = "\u{ECB1}";
pub const REWIND_CIRCLE: &str = "\u{ECB2}";
pub const ROAD_HORIZON: &str = "\u{ECB3}";
pub const ROBOT: &str = "\u{ECB4}";
pub const ROCKET: &str = "\u{ECB5}";
pub const ROCKET_LAUNCH: &str = "\u{ECB6}";
pub const ROWS: &str = "\u{ECB7}";
pub const RSS: &str = "\u{ECB8}";
pub const RSS_SIMPLE: &str = "\u{ECB9}";
pub const RUG: &str = "\u{ECBA}";
pub const RULER: &str = "\u{ECBB}";
pub const SCALES: &str = "\u{ECBC}";
pub const SCAN: &str = "\u{ECBD}";
pub const SCISSORS: &str = "\u{ECBE}";
pub const SCOOTER: &str = "\u{ECBF}";
pub const SCREENCAST: &str = "\u{ECC0}";
pub const SCRIBBLE_LOOP: &str = "\u{ECC1}";
pub const SCROLL: &str = "\u{ECC2}";
pub const SEAL: &str = "\u{ECC3}";
pub const CIRCLE_WAVY: &str = "\u{ECC3}";
pub const SEAL_CHECK: &str = "\u{ECC4}";
pub const CIRCLE_WAVY_CHECK: &str = "\u{ECC4}";
pub const SEAL_QUESTION: &str = "\u{ECC5}";
pub const CIRCLE_WAVY_QUESTION: &str = "\u{ECC5}";
pub const SEAL_WARNING: &str = "\u{ECC6}";
pub const CIRCLE_WAVY_WARNING: &str = "\u{ECC6}";
pub const SELECTION: &str = "\u{ECC7}";
pub const SELECTION_ALL: &str = "\u{ECC8}";
pub const SELECTION_BACKGROUND: &str = "\u{ECC9}";
pub const SELECTION_FOREGROUND: &str = "\u{ECCA}";
pub const SELECTION_INVERSE: &str = "\u{ECCB}";
pub const SELECTION_PLUS: &str = "\u{ECCC}";
pub const SELECTION_SLASH: &str = "\u{ECCD}";
pub const SHAPES: &str = "\u{ECCE}";
pub const SHARE: &str = "\u{ECCF}";
pub const SHARE_FAT: &str = "\u{ECD0}";
pub const SHARE_NETWORK: &str = "\u{ECD1}";
pub const SHIELD: &str = "\u{ECD2}";
pub const SHIELD_CHECK: &str = "\u{ECD3}";
pub const SHIELD_CHECKERED: &str = "\u{ECD4}";
pub const SHIELD_CHEVRON: &str = "\u{ECD5}";
pub const SHIELD_PLUS: &str = "\u{ECD6}";
pub const SHIELD_SLASH: &str = "\u{ECD7}";
pub const SHIELD_STAR: &str = "\u{ECD8}";
pub const SHIELD_WARNING: &str = "\u{ECD9}";
pub const SHIRT_FOLDED: &str = "\u{ECDA}";
pub const SHOOTING_STAR: &str = "\u{ECDB}";
pub const SHOPPING_BAG: &str = "\u{ECDC}";
pub const SHOPPING_BAG_OPEN: &str = "\u{ECDD}";
pub const SHOPPING_CART: &str = "\u{ECDE}";
pub const SHOPPING_CART_SIMPLE: &str = "\u{ECDF}";
pub const SHOWER: &str = "\u{ECE0}";
pub const SHRIMP: &str = "\u{ECE1}";
pub const SHUFFLE: &str = "\u{ECE2}";
pub const SHUFFLE_ANGULAR: &str = "\u{ECE3}";
pub const SHUFFLE_SIMPLE: &str = "\u{ECE4}";
pub const SIDEBAR: &str = "\u{ECE5}";
pub const SIDEBAR_SIMPLE: &str = "\u{ECE6}";
pub const SIGMA: &str = "\u{ECE7}";
pub const SIGNATURE: &str = "\u{ECE8}";
pub const SIGN_IN: &str = "\u{ECE9}";
pub const SIGN_OUT: &str = "\u{ECEA}";
pub const SIGNPOST: &str = "\u{ECEB}";
pub const SIM_CARD: &str = "\u{ECEC}";
pub const SIREN: &str = "\u{ECED}";
pub const SKETCH_LOGO: &str = "\u{ECEE}";
pub const SKIP_BACK: &str = "\u{ECEF}";
pub const SKIP_BACK_CIRCLE: &str = "\u{ECF0}";
pub const SKIP_FORWARD: &str = "\u{ECF1}";
pub const SKIP_FORWARD_CIRCLE: &str = "\u{ECF2}";
pub const SKULL: &str = "\u{ECF3}";
pub const SLACK_LOGO: &str = "\u{ECF4}";
pub const SLIDERS: &str = "\u{ECF5}";
pub const SLIDERS_HORIZONTAL: &str = "\u{ECF6}";
pub const SLIDESHOW: &str = "\u{ECF7}";
pub const SMILEY: &str = "\u{ECF8}";
pub const SMILEY_ANGRY: &str = "\u{ECF9}";
pub const SMILEY_BLANK: &str = "\u{ECFA}";
pub const SMILEY_MEH: &str = "\u{ECFB}";
pub const SMILEY_NERVOUS: &str = "\u{ECFC}";
pub const SMILEY_SAD: &str = "\u{ECFD}";
pub const SMILEY_STICKER: &str = "\u{ECFE}";
pub const SMILEY_WINK: &str = "\u{ECFF}";
pub const SMILEY_X_EYES: &str = "\u{ED00}";
pub const SNAPCHAT_LOGO: &str = "\u{ED01}";
pub const SNEAKER: &str = "\u{ED02}";
pub const SNEAKER_MOVE: &str = "\u{ED03}";
pub const SNOWFLAKE: &str = "\u{ED04}";
pub const SOCCER_BALL: &str = "\u{ED05}";
pub const SORT_ASCENDING: &str = "\u{ED06}";
pub const SORT_DESCENDING: &str = "\u{ED07}";
pub const SOUNDCLOUD_LOGO: &str = "\u{ED08}";
pub const SPADE: &str = "\u{ED09}";
pub const SPARKLE: &str = "\u{ED0A}";
pub const SPEAKER_HIFI: &str = "\u{ED0B}";
pub const SPEAKER_HIGH: &str = "\u{ED0C}";
pub const SPEAKER_LOW: &str = "\u{ED0D}";
pub const SPEAKER_NONE: &str = "\u{ED0E}";
pub const SPEAKER_SIMPLE_HIGH: &str = "\u{ED0F}";
pub const SPEAKER_SIMPLE_LOW: &str = "\u{ED10}";
pub const SPEAKER_SIMPLE_NONE: &str = "\u{ED11}";
pub const SPEAKER_SIMPLE_SLASH: &str = "\u{ED12}";
pub const SPEAKER_SIMPLE_X: &str = "\u{ED13}";
pub const SPEAKER_SLASH: &str = "\u{ED14}";
pub const SPEAKER_X: &str = "\u{ED15}";
pub const SPINNER: &str = "\u{ED16}";
pub const SPINNER_GAP: &str = "\u{ED17}";
pub const SPIRAL: &str = "\u{ED18}";
pub const SPLIT_HORIZONTAL: &str = "\u{ED19}";
pub const SPLIT_VERTICAL: &str = "\u{ED1A}";
pub const SPOTIFY_LOGO: &str = "\u{ED1B}";
pub const SQUARE: &str = "\u{ED1C}";
pub const SQUARE_HALF: &str = "\u{ED1D}";
pub const SQUARE_HALF_BOTTOM: &str = "\u{ED1E}";
pub const SQUARE_LOGO: &str = "\u{ED1F}";
pub const SQUARES_FOUR: &str = "\u{ED20}";
pub const SQUARE_SPLIT_HORIZONTAL: &str = "\u{ED21}";
pub const SQUARE_SPLIT_VERTICAL: &str = "\u{ED22}";
pub const STACK: &str = "\u{ED23}";
pub const STACK_OVERFLOW_LOGO: &str = "\u{ED24}";
pub const STACK_SIMPLE: &str = "\u{ED25}";
pub const STAIRS: &str = "\u{ED26}";
pub const STAMP: &str = "\u{ED27}";
pub const STAR: &str = "\u{ED28}";
pub const STAR_AND_CRESCENT: &str = "\u{ED29}";
pub const STAR_FOUR: &str = "\u{ED2A}";
pub const STAR_HALF: &str = "\u{ED2B}";
pub const STAR_OF_DAVID: &str = "\u{ED2C}";
pub const STEERING_WHEEL: &str = "\u{ED2D}";
pub const STEPS: &str = "\u{ED2E}";
pub const STETHOSCOPE: &str = "\u{ED2F}";
pub const STICKER: &str = "\u{ED30}";
pub const STOOL: &str = "\u{ED31}";
pub const STOP: &str = "\u{ED32}";
pub const STOP_CIRCLE: &str = "\u{ED33}";
pub const STOREFRONT: &str = "\u{ED34}";
pub const STRATEGY: &str = "\u{ED35}";
pub const STRIPE_LOGO: &str = "\u{ED36}";
pub const STUDENT: &str = "\u{ED37}";
pub const SUBTITLES: &str = "\u{ED38}";
pub const SUBTRACT: &str = "\u{ED39}";
pub const SUBTRACT_SQUARE: &str = "\u{ED3A}";
pub const SUITCASE: &str = "\u{ED3B}";
pub const SUITCASE_ROLLING: &str = "\u{ED3C}";
pub const SUITCASE_SIMPLE: &str = "\u{ED3D}";
pub const SUN: &str = "\u{ED3E}";
pub const SUN_DIM: &str = "\u{ED3F}";
pub const SUNGLASSES: &str = "\u{ED40}";
pub const SUN_HORIZON: &str = "\u{ED41}";
pub const SWAP: &str = "\u{ED42}";
pub const SWATCHES: &str = "\u{ED43}";
pub const SWIMMING_POOL: &str = "\u{ED44}";
pub const SWORD: &str = "\u{ED45}";
pub const SYNAGOGUE: &str = "\u{ED46}";
pub const SYRINGE: &str = "\u{ED47}";
pub const TABLE: &str = "\u{ED48}";
pub const TABS: &str = "\u{ED49}";
pub const TAG: &str = "\u{ED4A}";
pub const TAG_CHEVRON: &str = "\u{ED4B}";
pub const TAG_SIMPLE: &str = "\u{ED4C}";
pub const TARGET: &str = "\u{ED4D}";
pub const TAXI: &str = "\u{ED4E}";
pub const TELEGRAM_LOGO: &str = "\u{ED4F}";
pub const TELEVISION: &str = "\u{ED50}";
pub const TELEVISION_SIMPLE: &str = "\u{ED51}";
pub const TENNIS_BALL: &str = "\u{ED52}";
pub const TENT: &str = "\u{ED53}";
pub const TERMINAL: &str = "\u{ED54}";
pub const TERMINAL_WINDOW: &str = "\u{ED55}";
pub const TEST_TUBE: &str = "\u{ED56}";
pub const TEXT_AA: &str = "\u{ED57}";
pub const TEXT_ALIGN_CENTER: &str = "\u{ED58}";
pub const TEXT_ALIGN_JUSTIFY: &str = "\u{ED59}";
pub const TEXT_ALIGN_LEFT: &str = "\u{ED5A}";
pub const TEXT_ALIGN_RIGHT: &str = "\u{ED5B}";
pub const TEXT_A_UNDERLINE: &str = "\u{ED5C}";
pub const TEXT_B: &str = "\u{ED5D}";
pub const TEXT_BOLDER: &str = "\u{ED5D}";
pub const TEXTBOX: &str = "\u{ED5E}";
pub const TEXT_COLUMNS: &str = "\u{ED5F}";
pub const TEXT_H: &str = "\u{ED60}";
pub const TEXT_H_FIVE: &str = "\u{ED61}";
pub const TEXT_H_FOUR: &str = "\u{ED62}";
pub const TEXT_H_ONE: &str = "\u{ED63}";
pub const TEXT_H_SIX: &str = "\u{ED64}";
pub const TEXT_H_THREE: &str = "\u{ED65}";
pub const TEXT_H_TWO: &str = "\u{ED66}";
pub const TEXT_INDENT: &str = "\u{ED67}";
pub const TEXT_ITALIC: &str = "\u{ED68}";
pub const TEXT_OUTDENT: &str = "\u{ED69}";
pub const TEXT_STRIKETHROUGH: &str = "\u{ED6A}";
pub const TEXT_T: &str = "\u{ED6B}";
pub const TEXT_UNDERLINE: &str = "\u{ED6C}";
pub const THERMOMETER: &str = "\u{ED6D}";
pub const THERMOMETER_COLD: &str = "\u{ED6E}";
pub const THERMOMETER_HOT: &str = "\u{ED6F}";
pub const THERMOMETER_SIMPLE: &str = "\u{ED70}";
pub const THUMBS_DOWN: &str = "\u{ED71}";
pub const THUMBS_UP: &str = "\u{ED72}";
pub const TICKET: &str = "\u{ED73}";
pub const TIDAL_LOGO: &str = "\u{ED74}";
pub const TIKTOK_LOGO: &str = "\u{ED75}";
pub const TIMER: &str = "\u{ED76}";
pub const TIPI: &str = "\u{ED77}";
pub const TOGGLE_LEFT: &str = "\u{ED78}";
pub const TOGGLE_RIGHT: &str = "\u{ED79}";
pub const TOILET: &str = "\u{ED7A}";
pub const TOILET_PAPER: &str = "\u{ED7B}";
pub const TOOLBOX: &str = "\u{ED7C}";
pub const TOOTH: &str = "\u{ED7D}";
pub const TOTE: &str = "\u{ED7E}";
pub const TOTE_SIMPLE: &str = "\u{ED7F}";
pub const TRADEMARK: &str = "\u{ED80}";
pub const TRADEMARK_REGISTERED: &str = "\u{ED81}";
pub const TRAFFIC_CONE: &str = "\u{ED82}";
pub const TRAFFIC_SIGN: &str = "\u{ED83}";
pub const TRAFFIC_SIGNAL: &str = "\u{ED84}";
pub const TRAIN: &str = "\u{ED85}";
pub const TRAIN_REGIONAL: &str = "\u{ED86}";
pub const TRAIN_SIMPLE: &str = "\u{ED87}";
pub const TRAM: &str = "\u{ED88}";
pub const TRANSLATE: &str = "\u{ED89}";
pub const TRASH: &str = "\u{ED8A}";
pub const TRASH_SIMPLE: &str = "\u{ED8B}";
pub const TRAY: &str = "\u{ED8C}";
pub const TREE: &str = "\u{ED8D}";
pub const TREE_EVERGREEN: &str = "\u{ED8E}";
pub const TREE_PALM: &str = "\u{ED8F}";
pub const TREE_STRUCTURE: &str = "\u{ED90}";
pub const TREND_DOWN: &str = "\u{ED91}";
pub const TREND_UP: &str = "\u{ED92}";
pub const TRIANGLE: &str = "\u{ED93}";
pub const TROPHY: &str = "\u{ED94}";
pub const TRUCK: &str = "\u{ED95}";
pub const T_SHIRT: &str = "\u{ED96}";
pub const TWITCH_LOGO: &str = "\u{ED97}";
pub const TWITTER_LOGO: &str = "\u{ED98}";
pub const UMBRELLA: &str = "\u{ED99}";
pub const UMBRELLA_SIMPLE: &str = "\u{ED9A}";
pub const UNITE: &str = "\u{ED9B}";
pub const UNITE_SQUARE: &str = "\u{ED9C}";
pub const UPLOAD: &str = "\u{ED9D}";
pub const UPLOAD_SIMPLE: &str = "\u{ED9E}";
pub const USB: &str = "\u{ED9F}";
pub const USER: &str = "\u{EDA0}";
pub const USER_CIRCLE: &str = "\u{EDA1}";
pub const USER_CIRCLE_GEAR: &str = "\u{EDA2}";
pub const USER_CIRCLE_MINUS: &str = "\u{EDA3}";
pub const USER_CIRCLE_PLUS: &str = "\u{EDA4}";
pub const USER_FOCUS: &str = "\u{EDA5}";
pub const USER_GEAR: &str = "\u{EDA6}";
pub const USER_LIST: &str = "\u{EDA7}";
pub const USER_MINUS: &str = "\u{EDA8}";
pub const USER_PLUS: &str = "\u{EDA9}";
pub const USER_RECTANGLE: &str = "\u{EDAA}";
pub const USERS: &str = "\u{EDAB}";
pub const USERS_FOUR: &str = "\u{EDAC}";
pub const USER_SQUARE: &str = "\u{EDAD}";
pub const USERS_THREE: &str = "\u{EDAE}";
pub const USER_SWITCH: &str = "\u{EDAF}";
pub const VAN: &str = "\u{EDB0}";
pub const VAULT: &str = "\u{EDB1}";
pub const VIBRATE: &str = "\u{EDB2}";
pub const VIDEO: &str = "\u{EDB3}";
pub const VIDEO_CAMERA: &str = "\u{EDB4}";
pub const VIDEO_CAMERA_SLASH: &str = "\u{EDB5}";
pub const VIGNETTE: &str = "\u{EDB6}";
pub const VINYL_RECORD: &str = "\u{EDB7}";
pub const VIRTUAL_REALITY: &str = "\u{EDB8}";
pub const VIRUS: &str = "\u{EDB9}";
pub const VOICEMAIL: &str = "\u{EDBA}";
pub const VOLLEYBALL: &str = "\u{EDBB}";
pub const WALL: &str = "\u{EDBC}";
pub const WALLET: &str = "\u{EDBD}";
pub const WAREHOUSE: &str = "\u{EDBE}";
pub const WARNING: &str = "\u{EDBF}";
pub const WARNING_CIRCLE: &str = "\u{EDC0}";
pub const WARNING_DIAMOND: &str = "\u{EDC1}";
pub const WARNING_OCTAGON: &str = "\u{EDC2}";
pub const WATCH: &str = "\u{EDC3}";
pub const WAVEFORM: &str = "\u{EDC4}";
pub const WAVES: &str = "\u{EDC5}";
pub const WAVE_SAWTOOTH: &str = "\u{EDC6}";
pub const WAVE_SINE: &str = "\u{EDC7}";
pub const WAVE_SQUARE: &str = "\u{EDC8}";
pub const WAVE_TRIANGLE: &str = "\u{EDC9}";
pub const WEBCAM: &str = "\u{EDCA}";
pub const WEBCAM_SLASH: &str = "\u{EDCB}";
pub const WEBHOOKS_LOGO: &str = "\u{EDCC}";
pub const WECHAT_LOGO: &str = "\u{EDCD}";
pub const WHATSAPP_LOGO: &str = "\u{EDCE}";
pub const WHEELCHAIR: &str = "\u{EDCF}";
pub const WHEELCHAIR_MOTION: &str = "\u{EDD0}";
pub const WIFI_HIGH: &str = "\u{EDD1}";
pub const WIFI_LOW: &str = "\u{EDD2}";
pub const WIFI_MEDIUM: &str = "\u{EDD3}";
pub const WIFI_NONE: &str = "\u{EDD4}";
pub const WIFI_SLASH: &str = "\u{EDD5}";
pub const WIFI_X: &str = "\u{EDD6}";
pub const WIND: &str = "\u{EDD7}";
pub const WINDOWS_LOGO: &str = "\u{EDD8}";
pub const WINE: &str = "\u{EDD9}";
pub const WRENCH: &str = "\u{EDDA}";
pub const X: &str = "\u{EDDB}";
pub const X_CIRCLE: &str = "\u{EDDC}";
pub const X_SQUARE: &str = "\u{EDDD}";
pub const YIN_YANG: &str = "\u{EDDE}";
pub const YOUTUBE_LOGO: &str = "\u{EDDF}";