-
-
Notifications
You must be signed in to change notification settings - Fork 148
/
IconsFontAwesome5Pro.h
1868 lines (1864 loc) · 95.1 KB
/
IconsFontAwesome5Pro.h
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
// Generated by https://github.com/juliettef/IconFontCppHeaders script GenerateIconFontCppHeaders.py
// for C and C++
// from codepoints icons.yml
// for use with font fa-light-300.ttf, fa-regular-400.ttf, fa-solid-900.ttf
#pragma once
#define FONT_ICON_FILE_NAME_FAL "fa-light-300.ttf"
#define FONT_ICON_FILE_NAME_FAR "fa-regular-400.ttf"
#define FONT_ICON_FILE_NAME_FAS "fa-solid-900.ttf"
#define ICON_MIN_FA 0xe000
#define ICON_MAX_16_FA 0xf8ff
#define ICON_MAX_FA 0xf8ff
#define ICON_FA_ABACUS "\xef\x99\x80" // U+f640
#define ICON_FA_ACORN "\xef\x9a\xae" // U+f6ae
#define ICON_FA_AD "\xef\x99\x81" // U+f641
#define ICON_FA_ADDRESS_BOOK "\xef\x8a\xb9" // U+f2b9
#define ICON_FA_ADDRESS_CARD "\xef\x8a\xbb" // U+f2bb
#define ICON_FA_ADJUST "\xef\x81\x82" // U+f042
#define ICON_FA_AIR_CONDITIONER "\xef\xa3\xb4" // U+f8f4
#define ICON_FA_AIR_FRESHENER "\xef\x97\x90" // U+f5d0
#define ICON_FA_ALARM_CLOCK "\xef\x8d\x8e" // U+f34e
#define ICON_FA_ALARM_EXCLAMATION "\xef\xa1\x83" // U+f843
#define ICON_FA_ALARM_PLUS "\xef\xa1\x84" // U+f844
#define ICON_FA_ALARM_SNOOZE "\xef\xa1\x85" // U+f845
#define ICON_FA_ALBUM "\xef\xa2\x9f" // U+f89f
#define ICON_FA_ALBUM_COLLECTION "\xef\xa2\xa0" // U+f8a0
#define ICON_FA_ALICORN "\xef\x9a\xb0" // U+f6b0
#define ICON_FA_ALIEN "\xef\xa3\xb5" // U+f8f5
#define ICON_FA_ALIEN_MONSTER "\xef\xa3\xb6" // U+f8f6
#define ICON_FA_ALIGN_CENTER "\xef\x80\xb7" // U+f037
#define ICON_FA_ALIGN_JUSTIFY "\xef\x80\xb9" // U+f039
#define ICON_FA_ALIGN_LEFT "\xef\x80\xb6" // U+f036
#define ICON_FA_ALIGN_RIGHT "\xef\x80\xb8" // U+f038
#define ICON_FA_ALIGN_SLASH "\xef\xa1\x86" // U+f846
#define ICON_FA_ALLERGIES "\xef\x91\xa1" // U+f461
#define ICON_FA_AMBULANCE "\xef\x83\xb9" // U+f0f9
#define ICON_FA_AMERICAN_SIGN_LANGUAGE_INTERPRETING "\xef\x8a\xa3" // U+f2a3
#define ICON_FA_AMP_GUITAR "\xef\xa2\xa1" // U+f8a1
#define ICON_FA_ANALYTICS "\xef\x99\x83" // U+f643
#define ICON_FA_ANCHOR "\xef\x84\xbd" // U+f13d
#define ICON_FA_ANGEL "\xef\x9d\xb9" // U+f779
#define ICON_FA_ANGLE_DOUBLE_DOWN "\xef\x84\x83" // U+f103
#define ICON_FA_ANGLE_DOUBLE_LEFT "\xef\x84\x80" // U+f100
#define ICON_FA_ANGLE_DOUBLE_RIGHT "\xef\x84\x81" // U+f101
#define ICON_FA_ANGLE_DOUBLE_UP "\xef\x84\x82" // U+f102
#define ICON_FA_ANGLE_DOWN "\xef\x84\x87" // U+f107
#define ICON_FA_ANGLE_LEFT "\xef\x84\x84" // U+f104
#define ICON_FA_ANGLE_RIGHT "\xef\x84\x85" // U+f105
#define ICON_FA_ANGLE_UP "\xef\x84\x86" // U+f106
#define ICON_FA_ANGRY "\xef\x95\x96" // U+f556
#define ICON_FA_ANKH "\xef\x99\x84" // U+f644
#define ICON_FA_APPLE_ALT "\xef\x97\x91" // U+f5d1
#define ICON_FA_APPLE_CRATE "\xef\x9a\xb1" // U+f6b1
#define ICON_FA_ARCHIVE "\xef\x86\x87" // U+f187
#define ICON_FA_ARCHWAY "\xef\x95\x97" // U+f557
#define ICON_FA_ARROW_ALT_CIRCLE_DOWN "\xef\x8d\x98" // U+f358
#define ICON_FA_ARROW_ALT_CIRCLE_LEFT "\xef\x8d\x99" // U+f359
#define ICON_FA_ARROW_ALT_CIRCLE_RIGHT "\xef\x8d\x9a" // U+f35a
#define ICON_FA_ARROW_ALT_CIRCLE_UP "\xef\x8d\x9b" // U+f35b
#define ICON_FA_ARROW_ALT_DOWN "\xef\x8d\x94" // U+f354
#define ICON_FA_ARROW_ALT_FROM_BOTTOM "\xef\x8d\x86" // U+f346
#define ICON_FA_ARROW_ALT_FROM_LEFT "\xef\x8d\x87" // U+f347
#define ICON_FA_ARROW_ALT_FROM_RIGHT "\xef\x8d\x88" // U+f348
#define ICON_FA_ARROW_ALT_FROM_TOP "\xef\x8d\x89" // U+f349
#define ICON_FA_ARROW_ALT_LEFT "\xef\x8d\x95" // U+f355
#define ICON_FA_ARROW_ALT_RIGHT "\xef\x8d\x96" // U+f356
#define ICON_FA_ARROW_ALT_SQUARE_DOWN "\xef\x8d\x90" // U+f350
#define ICON_FA_ARROW_ALT_SQUARE_LEFT "\xef\x8d\x91" // U+f351
#define ICON_FA_ARROW_ALT_SQUARE_RIGHT "\xef\x8d\x92" // U+f352
#define ICON_FA_ARROW_ALT_SQUARE_UP "\xef\x8d\x93" // U+f353
#define ICON_FA_ARROW_ALT_TO_BOTTOM "\xef\x8d\x8a" // U+f34a
#define ICON_FA_ARROW_ALT_TO_LEFT "\xef\x8d\x8b" // U+f34b
#define ICON_FA_ARROW_ALT_TO_RIGHT "\xef\x8d\x8c" // U+f34c
#define ICON_FA_ARROW_ALT_TO_TOP "\xef\x8d\x8d" // U+f34d
#define ICON_FA_ARROW_ALT_UP "\xef\x8d\x97" // U+f357
#define ICON_FA_ARROW_CIRCLE_DOWN "\xef\x82\xab" // U+f0ab
#define ICON_FA_ARROW_CIRCLE_LEFT "\xef\x82\xa8" // U+f0a8
#define ICON_FA_ARROW_CIRCLE_RIGHT "\xef\x82\xa9" // U+f0a9
#define ICON_FA_ARROW_CIRCLE_UP "\xef\x82\xaa" // U+f0aa
#define ICON_FA_ARROW_DOWN "\xef\x81\xa3" // U+f063
#define ICON_FA_ARROW_FROM_BOTTOM "\xef\x8d\x82" // U+f342
#define ICON_FA_ARROW_FROM_LEFT "\xef\x8d\x83" // U+f343
#define ICON_FA_ARROW_FROM_RIGHT "\xef\x8d\x84" // U+f344
#define ICON_FA_ARROW_FROM_TOP "\xef\x8d\x85" // U+f345
#define ICON_FA_ARROW_LEFT "\xef\x81\xa0" // U+f060
#define ICON_FA_ARROW_RIGHT "\xef\x81\xa1" // U+f061
#define ICON_FA_ARROW_SQUARE_DOWN "\xef\x8c\xb9" // U+f339
#define ICON_FA_ARROW_SQUARE_LEFT "\xef\x8c\xba" // U+f33a
#define ICON_FA_ARROW_SQUARE_RIGHT "\xef\x8c\xbb" // U+f33b
#define ICON_FA_ARROW_SQUARE_UP "\xef\x8c\xbc" // U+f33c
#define ICON_FA_ARROW_TO_BOTTOM "\xef\x8c\xbd" // U+f33d
#define ICON_FA_ARROW_TO_LEFT "\xef\x8c\xbe" // U+f33e
#define ICON_FA_ARROW_TO_RIGHT "\xef\x8d\x80" // U+f340
#define ICON_FA_ARROW_TO_TOP "\xef\x8d\x81" // U+f341
#define ICON_FA_ARROW_UP "\xef\x81\xa2" // U+f062
#define ICON_FA_ARROWS "\xef\x81\x87" // U+f047
#define ICON_FA_ARROWS_ALT "\xef\x82\xb2" // U+f0b2
#define ICON_FA_ARROWS_ALT_H "\xef\x8c\xb7" // U+f337
#define ICON_FA_ARROWS_ALT_V "\xef\x8c\xb8" // U+f338
#define ICON_FA_ARROWS_H "\xef\x81\xbe" // U+f07e
#define ICON_FA_ARROWS_V "\xef\x81\xbd" // U+f07d
#define ICON_FA_ASSISTIVE_LISTENING_SYSTEMS "\xef\x8a\xa2" // U+f2a2
#define ICON_FA_ASTERISK "\xef\x81\xa9" // U+f069
#define ICON_FA_AT "\xef\x87\xba" // U+f1fa
#define ICON_FA_ATLAS "\xef\x95\x98" // U+f558
#define ICON_FA_ATOM "\xef\x97\x92" // U+f5d2
#define ICON_FA_ATOM_ALT "\xef\x97\x93" // U+f5d3
#define ICON_FA_AUDIO_DESCRIPTION "\xef\x8a\x9e" // U+f29e
#define ICON_FA_AWARD "\xef\x95\x99" // U+f559
#define ICON_FA_AXE "\xef\x9a\xb2" // U+f6b2
#define ICON_FA_AXE_BATTLE "\xef\x9a\xb3" // U+f6b3
#define ICON_FA_BABY "\xef\x9d\xbc" // U+f77c
#define ICON_FA_BABY_CARRIAGE "\xef\x9d\xbd" // U+f77d
#define ICON_FA_BACKPACK "\xef\x97\x94" // U+f5d4
#define ICON_FA_BACKSPACE "\xef\x95\x9a" // U+f55a
#define ICON_FA_BACKWARD "\xef\x81\x8a" // U+f04a
#define ICON_FA_BACON "\xef\x9f\xa5" // U+f7e5
#define ICON_FA_BACTERIA "\xee\x81\x99" // U+e059
#define ICON_FA_BACTERIUM "\xee\x81\x9a" // U+e05a
#define ICON_FA_BADGE "\xef\x8c\xb5" // U+f335
#define ICON_FA_BADGE_CHECK "\xef\x8c\xb6" // U+f336
#define ICON_FA_BADGE_DOLLAR "\xef\x99\x85" // U+f645
#define ICON_FA_BADGE_PERCENT "\xef\x99\x86" // U+f646
#define ICON_FA_BADGE_SHERIFF "\xef\xa2\xa2" // U+f8a2
#define ICON_FA_BADGER_HONEY "\xef\x9a\xb4" // U+f6b4
#define ICON_FA_BAGS_SHOPPING "\xef\xa1\x87" // U+f847
#define ICON_FA_BAHAI "\xef\x99\xa6" // U+f666
#define ICON_FA_BALANCE_SCALE "\xef\x89\x8e" // U+f24e
#define ICON_FA_BALANCE_SCALE_LEFT "\xef\x94\x95" // U+f515
#define ICON_FA_BALANCE_SCALE_RIGHT "\xef\x94\x96" // U+f516
#define ICON_FA_BALL_PILE "\xef\x9d\xbe" // U+f77e
#define ICON_FA_BALLOT "\xef\x9c\xb2" // U+f732
#define ICON_FA_BALLOT_CHECK "\xef\x9c\xb3" // U+f733
#define ICON_FA_BAN "\xef\x81\x9e" // U+f05e
#define ICON_FA_BAND_AID "\xef\x91\xa2" // U+f462
#define ICON_FA_BANJO "\xef\xa2\xa3" // U+f8a3
#define ICON_FA_BARCODE "\xef\x80\xaa" // U+f02a
#define ICON_FA_BARCODE_ALT "\xef\x91\xa3" // U+f463
#define ICON_FA_BARCODE_READ "\xef\x91\xa4" // U+f464
#define ICON_FA_BARCODE_SCAN "\xef\x91\xa5" // U+f465
#define ICON_FA_BARS "\xef\x83\x89" // U+f0c9
#define ICON_FA_BASEBALL "\xef\x90\xb2" // U+f432
#define ICON_FA_BASEBALL_BALL "\xef\x90\xb3" // U+f433
#define ICON_FA_BASKETBALL_BALL "\xef\x90\xb4" // U+f434
#define ICON_FA_BASKETBALL_HOOP "\xef\x90\xb5" // U+f435
#define ICON_FA_BAT "\xef\x9a\xb5" // U+f6b5
#define ICON_FA_BATH "\xef\x8b\x8d" // U+f2cd
#define ICON_FA_BATTERY_BOLT "\xef\x8d\xb6" // U+f376
#define ICON_FA_BATTERY_EMPTY "\xef\x89\x84" // U+f244
#define ICON_FA_BATTERY_FULL "\xef\x89\x80" // U+f240
#define ICON_FA_BATTERY_HALF "\xef\x89\x82" // U+f242
#define ICON_FA_BATTERY_QUARTER "\xef\x89\x83" // U+f243
#define ICON_FA_BATTERY_SLASH "\xef\x8d\xb7" // U+f377
#define ICON_FA_BATTERY_THREE_QUARTERS "\xef\x89\x81" // U+f241
#define ICON_FA_BED "\xef\x88\xb6" // U+f236
#define ICON_FA_BED_ALT "\xef\xa3\xb7" // U+f8f7
#define ICON_FA_BED_BUNK "\xef\xa3\xb8" // U+f8f8
#define ICON_FA_BED_EMPTY "\xef\xa3\xb9" // U+f8f9
#define ICON_FA_BEER "\xef\x83\xbc" // U+f0fc
#define ICON_FA_BELL "\xef\x83\xb3" // U+f0f3
#define ICON_FA_BELL_EXCLAMATION "\xef\xa1\x88" // U+f848
#define ICON_FA_BELL_ON "\xef\xa3\xba" // U+f8fa
#define ICON_FA_BELL_PLUS "\xef\xa1\x89" // U+f849
#define ICON_FA_BELL_SCHOOL "\xef\x97\x95" // U+f5d5
#define ICON_FA_BELL_SCHOOL_SLASH "\xef\x97\x96" // U+f5d6
#define ICON_FA_BELL_SLASH "\xef\x87\xb6" // U+f1f6
#define ICON_FA_BELLS "\xef\x9d\xbf" // U+f77f
#define ICON_FA_BETAMAX "\xef\xa2\xa4" // U+f8a4
#define ICON_FA_BEZIER_CURVE "\xef\x95\x9b" // U+f55b
#define ICON_FA_BIBLE "\xef\x99\x87" // U+f647
#define ICON_FA_BICYCLE "\xef\x88\x86" // U+f206
#define ICON_FA_BIKING "\xef\xa1\x8a" // U+f84a
#define ICON_FA_BIKING_MOUNTAIN "\xef\xa1\x8b" // U+f84b
#define ICON_FA_BINOCULARS "\xef\x87\xa5" // U+f1e5
#define ICON_FA_BIOHAZARD "\xef\x9e\x80" // U+f780
#define ICON_FA_BIRTHDAY_CAKE "\xef\x87\xbd" // U+f1fd
#define ICON_FA_BLANKET "\xef\x92\x98" // U+f498
#define ICON_FA_BLENDER "\xef\x94\x97" // U+f517
#define ICON_FA_BLENDER_PHONE "\xef\x9a\xb6" // U+f6b6
#define ICON_FA_BLIND "\xef\x8a\x9d" // U+f29d
#define ICON_FA_BLINDS "\xef\xa3\xbb" // U+f8fb
#define ICON_FA_BLINDS_OPEN "\xef\xa3\xbc" // U+f8fc
#define ICON_FA_BLINDS_RAISED "\xef\xa3\xbd" // U+f8fd
#define ICON_FA_BLOG "\xef\x9e\x81" // U+f781
#define ICON_FA_BOLD "\xef\x80\xb2" // U+f032
#define ICON_FA_BOLT "\xef\x83\xa7" // U+f0e7
#define ICON_FA_BOMB "\xef\x87\xa2" // U+f1e2
#define ICON_FA_BONE "\xef\x97\x97" // U+f5d7
#define ICON_FA_BONE_BREAK "\xef\x97\x98" // U+f5d8
#define ICON_FA_BONG "\xef\x95\x9c" // U+f55c
#define ICON_FA_BOOK "\xef\x80\xad" // U+f02d
#define ICON_FA_BOOK_ALT "\xef\x97\x99" // U+f5d9
#define ICON_FA_BOOK_DEAD "\xef\x9a\xb7" // U+f6b7
#define ICON_FA_BOOK_HEART "\xef\x92\x99" // U+f499
#define ICON_FA_BOOK_MEDICAL "\xef\x9f\xa6" // U+f7e6
#define ICON_FA_BOOK_OPEN "\xef\x94\x98" // U+f518
#define ICON_FA_BOOK_READER "\xef\x97\x9a" // U+f5da
#define ICON_FA_BOOK_SPELLS "\xef\x9a\xb8" // U+f6b8
#define ICON_FA_BOOK_USER "\xef\x9f\xa7" // U+f7e7
#define ICON_FA_BOOKMARK "\xef\x80\xae" // U+f02e
#define ICON_FA_BOOKS "\xef\x97\x9b" // U+f5db
#define ICON_FA_BOOKS_MEDICAL "\xef\x9f\xa8" // U+f7e8
#define ICON_FA_BOOMBOX "\xef\xa2\xa5" // U+f8a5
#define ICON_FA_BOOT "\xef\x9e\x82" // U+f782
#define ICON_FA_BOOTH_CURTAIN "\xef\x9c\xb4" // U+f734
#define ICON_FA_BORDER_ALL "\xef\xa1\x8c" // U+f84c
#define ICON_FA_BORDER_BOTTOM "\xef\xa1\x8d" // U+f84d
#define ICON_FA_BORDER_CENTER_H "\xef\xa2\x9c" // U+f89c
#define ICON_FA_BORDER_CENTER_V "\xef\xa2\x9d" // U+f89d
#define ICON_FA_BORDER_INNER "\xef\xa1\x8e" // U+f84e
#define ICON_FA_BORDER_LEFT "\xef\xa1\x8f" // U+f84f
#define ICON_FA_BORDER_NONE "\xef\xa1\x90" // U+f850
#define ICON_FA_BORDER_OUTER "\xef\xa1\x91" // U+f851
#define ICON_FA_BORDER_RIGHT "\xef\xa1\x92" // U+f852
#define ICON_FA_BORDER_STYLE "\xef\xa1\x93" // U+f853
#define ICON_FA_BORDER_STYLE_ALT "\xef\xa1\x94" // U+f854
#define ICON_FA_BORDER_TOP "\xef\xa1\x95" // U+f855
#define ICON_FA_BOW_ARROW "\xef\x9a\xb9" // U+f6b9
#define ICON_FA_BOWLING_BALL "\xef\x90\xb6" // U+f436
#define ICON_FA_BOWLING_PINS "\xef\x90\xb7" // U+f437
#define ICON_FA_BOX "\xef\x91\xa6" // U+f466
#define ICON_FA_BOX_ALT "\xef\x92\x9a" // U+f49a
#define ICON_FA_BOX_BALLOT "\xef\x9c\xb5" // U+f735
#define ICON_FA_BOX_CHECK "\xef\x91\xa7" // U+f467
#define ICON_FA_BOX_FRAGILE "\xef\x92\x9b" // U+f49b
#define ICON_FA_BOX_FULL "\xef\x92\x9c" // U+f49c
#define ICON_FA_BOX_HEART "\xef\x92\x9d" // U+f49d
#define ICON_FA_BOX_OPEN "\xef\x92\x9e" // U+f49e
#define ICON_FA_BOX_TISSUE "\xee\x81\x9b" // U+e05b
#define ICON_FA_BOX_UP "\xef\x92\x9f" // U+f49f
#define ICON_FA_BOX_USD "\xef\x92\xa0" // U+f4a0
#define ICON_FA_BOXES "\xef\x91\xa8" // U+f468
#define ICON_FA_BOXES_ALT "\xef\x92\xa1" // U+f4a1
#define ICON_FA_BOXING_GLOVE "\xef\x90\xb8" // U+f438
#define ICON_FA_BRACKETS "\xef\x9f\xa9" // U+f7e9
#define ICON_FA_BRACKETS_CURLY "\xef\x9f\xaa" // U+f7ea
#define ICON_FA_BRAILLE "\xef\x8a\xa1" // U+f2a1
#define ICON_FA_BRAIN "\xef\x97\x9c" // U+f5dc
#define ICON_FA_BREAD_LOAF "\xef\x9f\xab" // U+f7eb
#define ICON_FA_BREAD_SLICE "\xef\x9f\xac" // U+f7ec
#define ICON_FA_BRIEFCASE "\xef\x82\xb1" // U+f0b1
#define ICON_FA_BRIEFCASE_MEDICAL "\xef\x91\xa9" // U+f469
#define ICON_FA_BRING_FORWARD "\xef\xa1\x96" // U+f856
#define ICON_FA_BRING_FRONT "\xef\xa1\x97" // U+f857
#define ICON_FA_BROADCAST_TOWER "\xef\x94\x99" // U+f519
#define ICON_FA_BROOM "\xef\x94\x9a" // U+f51a
#define ICON_FA_BROWSER "\xef\x8d\xbe" // U+f37e
#define ICON_FA_BRUSH "\xef\x95\x9d" // U+f55d
#define ICON_FA_BUG "\xef\x86\x88" // U+f188
#define ICON_FA_BUILDING "\xef\x86\xad" // U+f1ad
#define ICON_FA_BULLHORN "\xef\x82\xa1" // U+f0a1
#define ICON_FA_BULLSEYE "\xef\x85\x80" // U+f140
#define ICON_FA_BULLSEYE_ARROW "\xef\x99\x88" // U+f648
#define ICON_FA_BULLSEYE_POINTER "\xef\x99\x89" // U+f649
#define ICON_FA_BURGER_SODA "\xef\xa1\x98" // U+f858
#define ICON_FA_BURN "\xef\x91\xaa" // U+f46a
#define ICON_FA_BURRITO "\xef\x9f\xad" // U+f7ed
#define ICON_FA_BUS "\xef\x88\x87" // U+f207
#define ICON_FA_BUS_ALT "\xef\x95\x9e" // U+f55e
#define ICON_FA_BUS_SCHOOL "\xef\x97\x9d" // U+f5dd
#define ICON_FA_BUSINESS_TIME "\xef\x99\x8a" // U+f64a
#define ICON_FA_CABINET_FILING "\xef\x99\x8b" // U+f64b
#define ICON_FA_CACTUS "\xef\xa2\xa7" // U+f8a7
#define ICON_FA_CALCULATOR "\xef\x87\xac" // U+f1ec
#define ICON_FA_CALCULATOR_ALT "\xef\x99\x8c" // U+f64c
#define ICON_FA_CALENDAR "\xef\x84\xb3" // U+f133
#define ICON_FA_CALENDAR_ALT "\xef\x81\xb3" // U+f073
#define ICON_FA_CALENDAR_CHECK "\xef\x89\xb4" // U+f274
#define ICON_FA_CALENDAR_DAY "\xef\x9e\x83" // U+f783
#define ICON_FA_CALENDAR_EDIT "\xef\x8c\xb3" // U+f333
#define ICON_FA_CALENDAR_EXCLAMATION "\xef\x8c\xb4" // U+f334
#define ICON_FA_CALENDAR_MINUS "\xef\x89\xb2" // U+f272
#define ICON_FA_CALENDAR_PLUS "\xef\x89\xb1" // U+f271
#define ICON_FA_CALENDAR_STAR "\xef\x9c\xb6" // U+f736
#define ICON_FA_CALENDAR_TIMES "\xef\x89\xb3" // U+f273
#define ICON_FA_CALENDAR_WEEK "\xef\x9e\x84" // U+f784
#define ICON_FA_CAMCORDER "\xef\xa2\xa8" // U+f8a8
#define ICON_FA_CAMERA "\xef\x80\xb0" // U+f030
#define ICON_FA_CAMERA_ALT "\xef\x8c\xb2" // U+f332
#define ICON_FA_CAMERA_HOME "\xef\xa3\xbe" // U+f8fe
#define ICON_FA_CAMERA_MOVIE "\xef\xa2\xa9" // U+f8a9
#define ICON_FA_CAMERA_POLAROID "\xef\xa2\xaa" // U+f8aa
#define ICON_FA_CAMERA_RETRO "\xef\x82\x83" // U+f083
#define ICON_FA_CAMPFIRE "\xef\x9a\xba" // U+f6ba
#define ICON_FA_CAMPGROUND "\xef\x9a\xbb" // U+f6bb
#define ICON_FA_CANDLE_HOLDER "\xef\x9a\xbc" // U+f6bc
#define ICON_FA_CANDY_CANE "\xef\x9e\x86" // U+f786
#define ICON_FA_CANDY_CORN "\xef\x9a\xbd" // U+f6bd
#define ICON_FA_CANNABIS "\xef\x95\x9f" // U+f55f
#define ICON_FA_CAPSULES "\xef\x91\xab" // U+f46b
#define ICON_FA_CAR "\xef\x86\xb9" // U+f1b9
#define ICON_FA_CAR_ALT "\xef\x97\x9e" // U+f5de
#define ICON_FA_CAR_BATTERY "\xef\x97\x9f" // U+f5df
#define ICON_FA_CAR_BUILDING "\xef\xa1\x99" // U+f859
#define ICON_FA_CAR_BUMP "\xef\x97\xa0" // U+f5e0
#define ICON_FA_CAR_BUS "\xef\xa1\x9a" // U+f85a
#define ICON_FA_CAR_CRASH "\xef\x97\xa1" // U+f5e1
#define ICON_FA_CAR_GARAGE "\xef\x97\xa2" // U+f5e2
#define ICON_FA_CAR_MECHANIC "\xef\x97\xa3" // U+f5e3
#define ICON_FA_CAR_SIDE "\xef\x97\xa4" // U+f5e4
#define ICON_FA_CAR_TILT "\xef\x97\xa5" // U+f5e5
#define ICON_FA_CAR_WASH "\xef\x97\xa6" // U+f5e6
#define ICON_FA_CARAVAN "\xef\xa3\xbf" // U+f8ff
#define ICON_FA_CARAVAN_ALT "\xee\x80\x80" // U+e000
#define ICON_FA_CARET_CIRCLE_DOWN "\xef\x8c\xad" // U+f32d
#define ICON_FA_CARET_CIRCLE_LEFT "\xef\x8c\xae" // U+f32e
#define ICON_FA_CARET_CIRCLE_RIGHT "\xef\x8c\xb0" // U+f330
#define ICON_FA_CARET_CIRCLE_UP "\xef\x8c\xb1" // U+f331
#define ICON_FA_CARET_DOWN "\xef\x83\x97" // U+f0d7
#define ICON_FA_CARET_LEFT "\xef\x83\x99" // U+f0d9
#define ICON_FA_CARET_RIGHT "\xef\x83\x9a" // U+f0da
#define ICON_FA_CARET_SQUARE_DOWN "\xef\x85\x90" // U+f150
#define ICON_FA_CARET_SQUARE_LEFT "\xef\x86\x91" // U+f191
#define ICON_FA_CARET_SQUARE_RIGHT "\xef\x85\x92" // U+f152
#define ICON_FA_CARET_SQUARE_UP "\xef\x85\x91" // U+f151
#define ICON_FA_CARET_UP "\xef\x83\x98" // U+f0d8
#define ICON_FA_CARROT "\xef\x9e\x87" // U+f787
#define ICON_FA_CARS "\xef\xa1\x9b" // U+f85b
#define ICON_FA_CART_ARROW_DOWN "\xef\x88\x98" // U+f218
#define ICON_FA_CART_PLUS "\xef\x88\x97" // U+f217
#define ICON_FA_CASH_REGISTER "\xef\x9e\x88" // U+f788
#define ICON_FA_CASSETTE_TAPE "\xef\xa2\xab" // U+f8ab
#define ICON_FA_CAT "\xef\x9a\xbe" // U+f6be
#define ICON_FA_CAT_SPACE "\xee\x80\x81" // U+e001
#define ICON_FA_CAULDRON "\xef\x9a\xbf" // U+f6bf
#define ICON_FA_CCTV "\xef\xa2\xac" // U+f8ac
#define ICON_FA_CERTIFICATE "\xef\x82\xa3" // U+f0a3
#define ICON_FA_CHAIR "\xef\x9b\x80" // U+f6c0
#define ICON_FA_CHAIR_OFFICE "\xef\x9b\x81" // U+f6c1
#define ICON_FA_CHALKBOARD "\xef\x94\x9b" // U+f51b
#define ICON_FA_CHALKBOARD_TEACHER "\xef\x94\x9c" // U+f51c
#define ICON_FA_CHARGING_STATION "\xef\x97\xa7" // U+f5e7
#define ICON_FA_CHART_AREA "\xef\x87\xbe" // U+f1fe
#define ICON_FA_CHART_BAR "\xef\x82\x80" // U+f080
#define ICON_FA_CHART_LINE "\xef\x88\x81" // U+f201
#define ICON_FA_CHART_LINE_DOWN "\xef\x99\x8d" // U+f64d
#define ICON_FA_CHART_NETWORK "\xef\x9e\x8a" // U+f78a
#define ICON_FA_CHART_PIE "\xef\x88\x80" // U+f200
#define ICON_FA_CHART_PIE_ALT "\xef\x99\x8e" // U+f64e
#define ICON_FA_CHART_SCATTER "\xef\x9f\xae" // U+f7ee
#define ICON_FA_CHECK "\xef\x80\x8c" // U+f00c
#define ICON_FA_CHECK_CIRCLE "\xef\x81\x98" // U+f058
#define ICON_FA_CHECK_DOUBLE "\xef\x95\xa0" // U+f560
#define ICON_FA_CHECK_SQUARE "\xef\x85\x8a" // U+f14a
#define ICON_FA_CHEESE "\xef\x9f\xaf" // U+f7ef
#define ICON_FA_CHEESE_SWISS "\xef\x9f\xb0" // U+f7f0
#define ICON_FA_CHEESEBURGER "\xef\x9f\xb1" // U+f7f1
#define ICON_FA_CHESS "\xef\x90\xb9" // U+f439
#define ICON_FA_CHESS_BISHOP "\xef\x90\xba" // U+f43a
#define ICON_FA_CHESS_BISHOP_ALT "\xef\x90\xbb" // U+f43b
#define ICON_FA_CHESS_BOARD "\xef\x90\xbc" // U+f43c
#define ICON_FA_CHESS_CLOCK "\xef\x90\xbd" // U+f43d
#define ICON_FA_CHESS_CLOCK_ALT "\xef\x90\xbe" // U+f43e
#define ICON_FA_CHESS_KING "\xef\x90\xbf" // U+f43f
#define ICON_FA_CHESS_KING_ALT "\xef\x91\x80" // U+f440
#define ICON_FA_CHESS_KNIGHT "\xef\x91\x81" // U+f441
#define ICON_FA_CHESS_KNIGHT_ALT "\xef\x91\x82" // U+f442
#define ICON_FA_CHESS_PAWN "\xef\x91\x83" // U+f443
#define ICON_FA_CHESS_PAWN_ALT "\xef\x91\x84" // U+f444
#define ICON_FA_CHESS_QUEEN "\xef\x91\x85" // U+f445
#define ICON_FA_CHESS_QUEEN_ALT "\xef\x91\x86" // U+f446
#define ICON_FA_CHESS_ROOK "\xef\x91\x87" // U+f447
#define ICON_FA_CHESS_ROOK_ALT "\xef\x91\x88" // U+f448
#define ICON_FA_CHEVRON_CIRCLE_DOWN "\xef\x84\xba" // U+f13a
#define ICON_FA_CHEVRON_CIRCLE_LEFT "\xef\x84\xb7" // U+f137
#define ICON_FA_CHEVRON_CIRCLE_RIGHT "\xef\x84\xb8" // U+f138
#define ICON_FA_CHEVRON_CIRCLE_UP "\xef\x84\xb9" // U+f139
#define ICON_FA_CHEVRON_DOUBLE_DOWN "\xef\x8c\xa2" // U+f322
#define ICON_FA_CHEVRON_DOUBLE_LEFT "\xef\x8c\xa3" // U+f323
#define ICON_FA_CHEVRON_DOUBLE_RIGHT "\xef\x8c\xa4" // U+f324
#define ICON_FA_CHEVRON_DOUBLE_UP "\xef\x8c\xa5" // U+f325
#define ICON_FA_CHEVRON_DOWN "\xef\x81\xb8" // U+f078
#define ICON_FA_CHEVRON_LEFT "\xef\x81\x93" // U+f053
#define ICON_FA_CHEVRON_RIGHT "\xef\x81\x94" // U+f054
#define ICON_FA_CHEVRON_SQUARE_DOWN "\xef\x8c\xa9" // U+f329
#define ICON_FA_CHEVRON_SQUARE_LEFT "\xef\x8c\xaa" // U+f32a
#define ICON_FA_CHEVRON_SQUARE_RIGHT "\xef\x8c\xab" // U+f32b
#define ICON_FA_CHEVRON_SQUARE_UP "\xef\x8c\xac" // U+f32c
#define ICON_FA_CHEVRON_UP "\xef\x81\xb7" // U+f077
#define ICON_FA_CHILD "\xef\x86\xae" // U+f1ae
#define ICON_FA_CHIMNEY "\xef\x9e\x8b" // U+f78b
#define ICON_FA_CHURCH "\xef\x94\x9d" // U+f51d
#define ICON_FA_CIRCLE "\xef\x84\x91" // U+f111
#define ICON_FA_CIRCLE_NOTCH "\xef\x87\x8e" // U+f1ce
#define ICON_FA_CITY "\xef\x99\x8f" // U+f64f
#define ICON_FA_CLARINET "\xef\xa2\xad" // U+f8ad
#define ICON_FA_CLAW_MARKS "\xef\x9b\x82" // U+f6c2
#define ICON_FA_CLINIC_MEDICAL "\xef\x9f\xb2" // U+f7f2
#define ICON_FA_CLIPBOARD "\xef\x8c\xa8" // U+f328
#define ICON_FA_CLIPBOARD_CHECK "\xef\x91\xac" // U+f46c
#define ICON_FA_CLIPBOARD_LIST "\xef\x91\xad" // U+f46d
#define ICON_FA_CLIPBOARD_LIST_CHECK "\xef\x9c\xb7" // U+f737
#define ICON_FA_CLIPBOARD_PRESCRIPTION "\xef\x97\xa8" // U+f5e8
#define ICON_FA_CLIPBOARD_USER "\xef\x9f\xb3" // U+f7f3
#define ICON_FA_CLOCK "\xef\x80\x97" // U+f017
#define ICON_FA_CLONE "\xef\x89\x8d" // U+f24d
#define ICON_FA_CLOSED_CAPTIONING "\xef\x88\x8a" // U+f20a
#define ICON_FA_CLOUD "\xef\x83\x82" // U+f0c2
#define ICON_FA_CLOUD_DOWNLOAD "\xef\x83\xad" // U+f0ed
#define ICON_FA_CLOUD_DOWNLOAD_ALT "\xef\x8e\x81" // U+f381
#define ICON_FA_CLOUD_DRIZZLE "\xef\x9c\xb8" // U+f738
#define ICON_FA_CLOUD_HAIL "\xef\x9c\xb9" // U+f739
#define ICON_FA_CLOUD_HAIL_MIXED "\xef\x9c\xba" // U+f73a
#define ICON_FA_CLOUD_MEATBALL "\xef\x9c\xbb" // U+f73b
#define ICON_FA_CLOUD_MOON "\xef\x9b\x83" // U+f6c3
#define ICON_FA_CLOUD_MOON_RAIN "\xef\x9c\xbc" // U+f73c
#define ICON_FA_CLOUD_MUSIC "\xef\xa2\xae" // U+f8ae
#define ICON_FA_CLOUD_RAIN "\xef\x9c\xbd" // U+f73d
#define ICON_FA_CLOUD_RAINBOW "\xef\x9c\xbe" // U+f73e
#define ICON_FA_CLOUD_SHOWERS "\xef\x9c\xbf" // U+f73f
#define ICON_FA_CLOUD_SHOWERS_HEAVY "\xef\x9d\x80" // U+f740
#define ICON_FA_CLOUD_SLEET "\xef\x9d\x81" // U+f741
#define ICON_FA_CLOUD_SNOW "\xef\x9d\x82" // U+f742
#define ICON_FA_CLOUD_SUN "\xef\x9b\x84" // U+f6c4
#define ICON_FA_CLOUD_SUN_RAIN "\xef\x9d\x83" // U+f743
#define ICON_FA_CLOUD_UPLOAD "\xef\x83\xae" // U+f0ee
#define ICON_FA_CLOUD_UPLOAD_ALT "\xef\x8e\x82" // U+f382
#define ICON_FA_CLOUDS "\xef\x9d\x84" // U+f744
#define ICON_FA_CLOUDS_MOON "\xef\x9d\x85" // U+f745
#define ICON_FA_CLOUDS_SUN "\xef\x9d\x86" // U+f746
#define ICON_FA_CLUB "\xef\x8c\xa7" // U+f327
#define ICON_FA_COCKTAIL "\xef\x95\xa1" // U+f561
#define ICON_FA_CODE "\xef\x84\xa1" // U+f121
#define ICON_FA_CODE_BRANCH "\xef\x84\xa6" // U+f126
#define ICON_FA_CODE_COMMIT "\xef\x8e\x86" // U+f386
#define ICON_FA_CODE_MERGE "\xef\x8e\x87" // U+f387
#define ICON_FA_COFFEE "\xef\x83\xb4" // U+f0f4
#define ICON_FA_COFFEE_POT "\xee\x80\x82" // U+e002
#define ICON_FA_COFFEE_TOGO "\xef\x9b\x85" // U+f6c5
#define ICON_FA_COFFIN "\xef\x9b\x86" // U+f6c6
#define ICON_FA_COFFIN_CROSS "\xee\x81\x91" // U+e051
#define ICON_FA_COG "\xef\x80\x93" // U+f013
#define ICON_FA_COGS "\xef\x82\x85" // U+f085
#define ICON_FA_COIN "\xef\xa1\x9c" // U+f85c
#define ICON_FA_COINS "\xef\x94\x9e" // U+f51e
#define ICON_FA_COLUMNS "\xef\x83\x9b" // U+f0db
#define ICON_FA_COMET "\xee\x80\x83" // U+e003
#define ICON_FA_COMMENT "\xef\x81\xb5" // U+f075
#define ICON_FA_COMMENT_ALT "\xef\x89\xba" // U+f27a
#define ICON_FA_COMMENT_ALT_CHECK "\xef\x92\xa2" // U+f4a2
#define ICON_FA_COMMENT_ALT_DOLLAR "\xef\x99\x90" // U+f650
#define ICON_FA_COMMENT_ALT_DOTS "\xef\x92\xa3" // U+f4a3
#define ICON_FA_COMMENT_ALT_EDIT "\xef\x92\xa4" // U+f4a4
#define ICON_FA_COMMENT_ALT_EXCLAMATION "\xef\x92\xa5" // U+f4a5
#define ICON_FA_COMMENT_ALT_LINES "\xef\x92\xa6" // U+f4a6
#define ICON_FA_COMMENT_ALT_MEDICAL "\xef\x9f\xb4" // U+f7f4
#define ICON_FA_COMMENT_ALT_MINUS "\xef\x92\xa7" // U+f4a7
#define ICON_FA_COMMENT_ALT_MUSIC "\xef\xa2\xaf" // U+f8af
#define ICON_FA_COMMENT_ALT_PLUS "\xef\x92\xa8" // U+f4a8
#define ICON_FA_COMMENT_ALT_SLASH "\xef\x92\xa9" // U+f4a9
#define ICON_FA_COMMENT_ALT_SMILE "\xef\x92\xaa" // U+f4aa
#define ICON_FA_COMMENT_ALT_TIMES "\xef\x92\xab" // U+f4ab
#define ICON_FA_COMMENT_CHECK "\xef\x92\xac" // U+f4ac
#define ICON_FA_COMMENT_DOLLAR "\xef\x99\x91" // U+f651
#define ICON_FA_COMMENT_DOTS "\xef\x92\xad" // U+f4ad
#define ICON_FA_COMMENT_EDIT "\xef\x92\xae" // U+f4ae
#define ICON_FA_COMMENT_EXCLAMATION "\xef\x92\xaf" // U+f4af
#define ICON_FA_COMMENT_LINES "\xef\x92\xb0" // U+f4b0
#define ICON_FA_COMMENT_MEDICAL "\xef\x9f\xb5" // U+f7f5
#define ICON_FA_COMMENT_MINUS "\xef\x92\xb1" // U+f4b1
#define ICON_FA_COMMENT_MUSIC "\xef\xa2\xb0" // U+f8b0
#define ICON_FA_COMMENT_PLUS "\xef\x92\xb2" // U+f4b2
#define ICON_FA_COMMENT_SLASH "\xef\x92\xb3" // U+f4b3
#define ICON_FA_COMMENT_SMILE "\xef\x92\xb4" // U+f4b4
#define ICON_FA_COMMENT_TIMES "\xef\x92\xb5" // U+f4b5
#define ICON_FA_COMMENTS "\xef\x82\x86" // U+f086
#define ICON_FA_COMMENTS_ALT "\xef\x92\xb6" // U+f4b6
#define ICON_FA_COMMENTS_ALT_DOLLAR "\xef\x99\x92" // U+f652
#define ICON_FA_COMMENTS_DOLLAR "\xef\x99\x93" // U+f653
#define ICON_FA_COMPACT_DISC "\xef\x94\x9f" // U+f51f
#define ICON_FA_COMPASS "\xef\x85\x8e" // U+f14e
#define ICON_FA_COMPASS_SLASH "\xef\x97\xa9" // U+f5e9
#define ICON_FA_COMPRESS "\xef\x81\xa6" // U+f066
#define ICON_FA_COMPRESS_ALT "\xef\x90\xa2" // U+f422
#define ICON_FA_COMPRESS_ARROWS_ALT "\xef\x9e\x8c" // U+f78c
#define ICON_FA_COMPRESS_WIDE "\xef\x8c\xa6" // U+f326
#define ICON_FA_COMPUTER_CLASSIC "\xef\xa2\xb1" // U+f8b1
#define ICON_FA_COMPUTER_SPEAKER "\xef\xa2\xb2" // U+f8b2
#define ICON_FA_CONCIERGE_BELL "\xef\x95\xa2" // U+f562
#define ICON_FA_CONSTRUCTION "\xef\xa1\x9d" // U+f85d
#define ICON_FA_CONTAINER_STORAGE "\xef\x92\xb7" // U+f4b7
#define ICON_FA_CONVEYOR_BELT "\xef\x91\xae" // U+f46e
#define ICON_FA_CONVEYOR_BELT_ALT "\xef\x91\xaf" // U+f46f
#define ICON_FA_COOKIE "\xef\x95\xa3" // U+f563
#define ICON_FA_COOKIE_BITE "\xef\x95\xa4" // U+f564
#define ICON_FA_COPY "\xef\x83\x85" // U+f0c5
#define ICON_FA_COPYRIGHT "\xef\x87\xb9" // U+f1f9
#define ICON_FA_CORN "\xef\x9b\x87" // U+f6c7
#define ICON_FA_COUCH "\xef\x92\xb8" // U+f4b8
#define ICON_FA_COW "\xef\x9b\x88" // U+f6c8
#define ICON_FA_COWBELL "\xef\xa2\xb3" // U+f8b3
#define ICON_FA_COWBELL_MORE "\xef\xa2\xb4" // U+f8b4
#define ICON_FA_CREDIT_CARD "\xef\x82\x9d" // U+f09d
#define ICON_FA_CREDIT_CARD_BLANK "\xef\x8e\x89" // U+f389
#define ICON_FA_CREDIT_CARD_FRONT "\xef\x8e\x8a" // U+f38a
#define ICON_FA_CRICKET "\xef\x91\x89" // U+f449
#define ICON_FA_CROISSANT "\xef\x9f\xb6" // U+f7f6
#define ICON_FA_CROP "\xef\x84\xa5" // U+f125
#define ICON_FA_CROP_ALT "\xef\x95\xa5" // U+f565
#define ICON_FA_CROSS "\xef\x99\x94" // U+f654
#define ICON_FA_CROSSHAIRS "\xef\x81\x9b" // U+f05b
#define ICON_FA_CROW "\xef\x94\xa0" // U+f520
#define ICON_FA_CROWN "\xef\x94\xa1" // U+f521
#define ICON_FA_CRUTCH "\xef\x9f\xb7" // U+f7f7
#define ICON_FA_CRUTCHES "\xef\x9f\xb8" // U+f7f8
#define ICON_FA_CUBE "\xef\x86\xb2" // U+f1b2
#define ICON_FA_CUBES "\xef\x86\xb3" // U+f1b3
#define ICON_FA_CURLING "\xef\x91\x8a" // U+f44a
#define ICON_FA_CUT "\xef\x83\x84" // U+f0c4
#define ICON_FA_DAGGER "\xef\x9b\x8b" // U+f6cb
#define ICON_FA_DATABASE "\xef\x87\x80" // U+f1c0
#define ICON_FA_DEAF "\xef\x8a\xa4" // U+f2a4
#define ICON_FA_DEBUG "\xef\x9f\xb9" // U+f7f9
#define ICON_FA_DEER "\xef\x9e\x8e" // U+f78e
#define ICON_FA_DEER_RUDOLPH "\xef\x9e\x8f" // U+f78f
#define ICON_FA_DEMOCRAT "\xef\x9d\x87" // U+f747
#define ICON_FA_DESKTOP "\xef\x84\x88" // U+f108
#define ICON_FA_DESKTOP_ALT "\xef\x8e\x90" // U+f390
#define ICON_FA_DEWPOINT "\xef\x9d\x88" // U+f748
#define ICON_FA_DHARMACHAKRA "\xef\x99\x95" // U+f655
#define ICON_FA_DIAGNOSES "\xef\x91\xb0" // U+f470
#define ICON_FA_DIAMOND "\xef\x88\x99" // U+f219
#define ICON_FA_DICE "\xef\x94\xa2" // U+f522
#define ICON_FA_DICE_D10 "\xef\x9b\x8d" // U+f6cd
#define ICON_FA_DICE_D12 "\xef\x9b\x8e" // U+f6ce
#define ICON_FA_DICE_D20 "\xef\x9b\x8f" // U+f6cf
#define ICON_FA_DICE_D4 "\xef\x9b\x90" // U+f6d0
#define ICON_FA_DICE_D6 "\xef\x9b\x91" // U+f6d1
#define ICON_FA_DICE_D8 "\xef\x9b\x92" // U+f6d2
#define ICON_FA_DICE_FIVE "\xef\x94\xa3" // U+f523
#define ICON_FA_DICE_FOUR "\xef\x94\xa4" // U+f524
#define ICON_FA_DICE_ONE "\xef\x94\xa5" // U+f525
#define ICON_FA_DICE_SIX "\xef\x94\xa6" // U+f526
#define ICON_FA_DICE_THREE "\xef\x94\xa7" // U+f527
#define ICON_FA_DICE_TWO "\xef\x94\xa8" // U+f528
#define ICON_FA_DIGGING "\xef\xa1\x9e" // U+f85e
#define ICON_FA_DIGITAL_TACHOGRAPH "\xef\x95\xa6" // U+f566
#define ICON_FA_DIPLOMA "\xef\x97\xaa" // U+f5ea
#define ICON_FA_DIRECTIONS "\xef\x97\xab" // U+f5eb
#define ICON_FA_DISC_DRIVE "\xef\xa2\xb5" // U+f8b5
#define ICON_FA_DISEASE "\xef\x9f\xba" // U+f7fa
#define ICON_FA_DIVIDE "\xef\x94\xa9" // U+f529
#define ICON_FA_DIZZY "\xef\x95\xa7" // U+f567
#define ICON_FA_DNA "\xef\x91\xb1" // U+f471
#define ICON_FA_DO_NOT_ENTER "\xef\x97\xac" // U+f5ec
#define ICON_FA_DOG "\xef\x9b\x93" // U+f6d3
#define ICON_FA_DOG_LEASHED "\xef\x9b\x94" // U+f6d4
#define ICON_FA_DOLLAR_SIGN "\xef\x85\x95" // U+f155
#define ICON_FA_DOLLY "\xef\x91\xb2" // U+f472
#define ICON_FA_DOLLY_EMPTY "\xef\x91\xb3" // U+f473
#define ICON_FA_DOLLY_FLATBED "\xef\x91\xb4" // U+f474
#define ICON_FA_DOLLY_FLATBED_ALT "\xef\x91\xb5" // U+f475
#define ICON_FA_DOLLY_FLATBED_EMPTY "\xef\x91\xb6" // U+f476
#define ICON_FA_DONATE "\xef\x92\xb9" // U+f4b9
#define ICON_FA_DOOR_CLOSED "\xef\x94\xaa" // U+f52a
#define ICON_FA_DOOR_OPEN "\xef\x94\xab" // U+f52b
#define ICON_FA_DOT_CIRCLE "\xef\x86\x92" // U+f192
#define ICON_FA_DOVE "\xef\x92\xba" // U+f4ba
#define ICON_FA_DOWNLOAD "\xef\x80\x99" // U+f019
#define ICON_FA_DRAFTING_COMPASS "\xef\x95\xa8" // U+f568
#define ICON_FA_DRAGON "\xef\x9b\x95" // U+f6d5
#define ICON_FA_DRAW_CIRCLE "\xef\x97\xad" // U+f5ed
#define ICON_FA_DRAW_POLYGON "\xef\x97\xae" // U+f5ee
#define ICON_FA_DRAW_SQUARE "\xef\x97\xaf" // U+f5ef
#define ICON_FA_DREIDEL "\xef\x9e\x92" // U+f792
#define ICON_FA_DRONE "\xef\xa1\x9f" // U+f85f
#define ICON_FA_DRONE_ALT "\xef\xa1\xa0" // U+f860
#define ICON_FA_DRUM "\xef\x95\xa9" // U+f569
#define ICON_FA_DRUM_STEELPAN "\xef\x95\xaa" // U+f56a
#define ICON_FA_DRUMSTICK "\xef\x9b\x96" // U+f6d6
#define ICON_FA_DRUMSTICK_BITE "\xef\x9b\x97" // U+f6d7
#define ICON_FA_DRYER "\xef\xa1\xa1" // U+f861
#define ICON_FA_DRYER_ALT "\xef\xa1\xa2" // U+f862
#define ICON_FA_DUCK "\xef\x9b\x98" // U+f6d8
#define ICON_FA_DUMBBELL "\xef\x91\x8b" // U+f44b
#define ICON_FA_DUMPSTER "\xef\x9e\x93" // U+f793
#define ICON_FA_DUMPSTER_FIRE "\xef\x9e\x94" // U+f794
#define ICON_FA_DUNGEON "\xef\x9b\x99" // U+f6d9
#define ICON_FA_EAR "\xef\x97\xb0" // U+f5f0
#define ICON_FA_EAR_MUFFS "\xef\x9e\x95" // U+f795
#define ICON_FA_ECLIPSE "\xef\x9d\x89" // U+f749
#define ICON_FA_ECLIPSE_ALT "\xef\x9d\x8a" // U+f74a
#define ICON_FA_EDIT "\xef\x81\x84" // U+f044
#define ICON_FA_EGG "\xef\x9f\xbb" // U+f7fb
#define ICON_FA_EGG_FRIED "\xef\x9f\xbc" // U+f7fc
#define ICON_FA_EJECT "\xef\x81\x92" // U+f052
#define ICON_FA_ELEPHANT "\xef\x9b\x9a" // U+f6da
#define ICON_FA_ELLIPSIS_H "\xef\x85\x81" // U+f141
#define ICON_FA_ELLIPSIS_H_ALT "\xef\x8e\x9b" // U+f39b
#define ICON_FA_ELLIPSIS_V "\xef\x85\x82" // U+f142
#define ICON_FA_ELLIPSIS_V_ALT "\xef\x8e\x9c" // U+f39c
#define ICON_FA_EMPTY_SET "\xef\x99\x96" // U+f656
#define ICON_FA_ENGINE_WARNING "\xef\x97\xb2" // U+f5f2
#define ICON_FA_ENVELOPE "\xef\x83\xa0" // U+f0e0
#define ICON_FA_ENVELOPE_OPEN "\xef\x8a\xb6" // U+f2b6
#define ICON_FA_ENVELOPE_OPEN_DOLLAR "\xef\x99\x97" // U+f657
#define ICON_FA_ENVELOPE_OPEN_TEXT "\xef\x99\x98" // U+f658
#define ICON_FA_ENVELOPE_SQUARE "\xef\x86\x99" // U+f199
#define ICON_FA_EQUALS "\xef\x94\xac" // U+f52c
#define ICON_FA_ERASER "\xef\x84\xad" // U+f12d
#define ICON_FA_ETHERNET "\xef\x9e\x96" // U+f796
#define ICON_FA_EURO_SIGN "\xef\x85\x93" // U+f153
#define ICON_FA_EXCHANGE "\xef\x83\xac" // U+f0ec
#define ICON_FA_EXCHANGE_ALT "\xef\x8d\xa2" // U+f362
#define ICON_FA_EXCLAMATION "\xef\x84\xaa" // U+f12a
#define ICON_FA_EXCLAMATION_CIRCLE "\xef\x81\xaa" // U+f06a
#define ICON_FA_EXCLAMATION_SQUARE "\xef\x8c\xa1" // U+f321
#define ICON_FA_EXCLAMATION_TRIANGLE "\xef\x81\xb1" // U+f071
#define ICON_FA_EXPAND "\xef\x81\xa5" // U+f065
#define ICON_FA_EXPAND_ALT "\xef\x90\xa4" // U+f424
#define ICON_FA_EXPAND_ARROWS "\xef\x8c\x9d" // U+f31d
#define ICON_FA_EXPAND_ARROWS_ALT "\xef\x8c\x9e" // U+f31e
#define ICON_FA_EXPAND_WIDE "\xef\x8c\xa0" // U+f320
#define ICON_FA_EXTERNAL_LINK "\xef\x82\x8e" // U+f08e
#define ICON_FA_EXTERNAL_LINK_ALT "\xef\x8d\x9d" // U+f35d
#define ICON_FA_EXTERNAL_LINK_SQUARE "\xef\x85\x8c" // U+f14c
#define ICON_FA_EXTERNAL_LINK_SQUARE_ALT "\xef\x8d\xa0" // U+f360
#define ICON_FA_EYE "\xef\x81\xae" // U+f06e
#define ICON_FA_EYE_DROPPER "\xef\x87\xbb" // U+f1fb
#define ICON_FA_EYE_EVIL "\xef\x9b\x9b" // U+f6db
#define ICON_FA_EYE_SLASH "\xef\x81\xb0" // U+f070
#define ICON_FA_FAN "\xef\xa1\xa3" // U+f863
#define ICON_FA_FAN_TABLE "\xee\x80\x84" // U+e004
#define ICON_FA_FARM "\xef\xa1\xa4" // U+f864
#define ICON_FA_FAST_BACKWARD "\xef\x81\x89" // U+f049
#define ICON_FA_FAST_FORWARD "\xef\x81\x90" // U+f050
#define ICON_FA_FAUCET "\xee\x80\x85" // U+e005
#define ICON_FA_FAUCET_DRIP "\xee\x80\x86" // U+e006
#define ICON_FA_FAX "\xef\x86\xac" // U+f1ac
#define ICON_FA_FEATHER "\xef\x94\xad" // U+f52d
#define ICON_FA_FEATHER_ALT "\xef\x95\xab" // U+f56b
#define ICON_FA_FEMALE "\xef\x86\x82" // U+f182
#define ICON_FA_FIELD_HOCKEY "\xef\x91\x8c" // U+f44c
#define ICON_FA_FIGHTER_JET "\xef\x83\xbb" // U+f0fb
#define ICON_FA_FILE "\xef\x85\x9b" // U+f15b
#define ICON_FA_FILE_ALT "\xef\x85\x9c" // U+f15c
#define ICON_FA_FILE_ARCHIVE "\xef\x87\x86" // U+f1c6
#define ICON_FA_FILE_AUDIO "\xef\x87\x87" // U+f1c7
#define ICON_FA_FILE_CERTIFICATE "\xef\x97\xb3" // U+f5f3
#define ICON_FA_FILE_CHART_LINE "\xef\x99\x99" // U+f659
#define ICON_FA_FILE_CHART_PIE "\xef\x99\x9a" // U+f65a
#define ICON_FA_FILE_CHECK "\xef\x8c\x96" // U+f316
#define ICON_FA_FILE_CODE "\xef\x87\x89" // U+f1c9
#define ICON_FA_FILE_CONTRACT "\xef\x95\xac" // U+f56c
#define ICON_FA_FILE_CSV "\xef\x9b\x9d" // U+f6dd
#define ICON_FA_FILE_DOWNLOAD "\xef\x95\xad" // U+f56d
#define ICON_FA_FILE_EDIT "\xef\x8c\x9c" // U+f31c
#define ICON_FA_FILE_EXCEL "\xef\x87\x83" // U+f1c3
#define ICON_FA_FILE_EXCLAMATION "\xef\x8c\x9a" // U+f31a
#define ICON_FA_FILE_EXPORT "\xef\x95\xae" // U+f56e
#define ICON_FA_FILE_IMAGE "\xef\x87\x85" // U+f1c5
#define ICON_FA_FILE_IMPORT "\xef\x95\xaf" // U+f56f
#define ICON_FA_FILE_INVOICE "\xef\x95\xb0" // U+f570
#define ICON_FA_FILE_INVOICE_DOLLAR "\xef\x95\xb1" // U+f571
#define ICON_FA_FILE_MEDICAL "\xef\x91\xb7" // U+f477
#define ICON_FA_FILE_MEDICAL_ALT "\xef\x91\xb8" // U+f478
#define ICON_FA_FILE_MINUS "\xef\x8c\x98" // U+f318
#define ICON_FA_FILE_MUSIC "\xef\xa2\xb6" // U+f8b6
#define ICON_FA_FILE_PDF "\xef\x87\x81" // U+f1c1
#define ICON_FA_FILE_PLUS "\xef\x8c\x99" // U+f319
#define ICON_FA_FILE_POWERPOINT "\xef\x87\x84" // U+f1c4
#define ICON_FA_FILE_PRESCRIPTION "\xef\x95\xb2" // U+f572
#define ICON_FA_FILE_SEARCH "\xef\xa1\xa5" // U+f865
#define ICON_FA_FILE_SIGNATURE "\xef\x95\xb3" // U+f573
#define ICON_FA_FILE_SPREADSHEET "\xef\x99\x9b" // U+f65b
#define ICON_FA_FILE_TIMES "\xef\x8c\x97" // U+f317
#define ICON_FA_FILE_UPLOAD "\xef\x95\xb4" // U+f574
#define ICON_FA_FILE_USER "\xef\x99\x9c" // U+f65c
#define ICON_FA_FILE_VIDEO "\xef\x87\x88" // U+f1c8
#define ICON_FA_FILE_WORD "\xef\x87\x82" // U+f1c2
#define ICON_FA_FILES_MEDICAL "\xef\x9f\xbd" // U+f7fd
#define ICON_FA_FILL "\xef\x95\xb5" // U+f575
#define ICON_FA_FILL_DRIP "\xef\x95\xb6" // U+f576
#define ICON_FA_FILM "\xef\x80\x88" // U+f008
#define ICON_FA_FILM_ALT "\xef\x8e\xa0" // U+f3a0
#define ICON_FA_FILM_CANISTER "\xef\xa2\xb7" // U+f8b7
#define ICON_FA_FILTER "\xef\x82\xb0" // U+f0b0
#define ICON_FA_FINGERPRINT "\xef\x95\xb7" // U+f577
#define ICON_FA_FIRE "\xef\x81\xad" // U+f06d
#define ICON_FA_FIRE_ALT "\xef\x9f\xa4" // U+f7e4
#define ICON_FA_FIRE_EXTINGUISHER "\xef\x84\xb4" // U+f134
#define ICON_FA_FIRE_SMOKE "\xef\x9d\x8b" // U+f74b
#define ICON_FA_FIREPLACE "\xef\x9e\x9a" // U+f79a
#define ICON_FA_FIRST_AID "\xef\x91\xb9" // U+f479
#define ICON_FA_FISH "\xef\x95\xb8" // U+f578
#define ICON_FA_FISH_COOKED "\xef\x9f\xbe" // U+f7fe
#define ICON_FA_FIST_RAISED "\xef\x9b\x9e" // U+f6de
#define ICON_FA_FLAG "\xef\x80\xa4" // U+f024
#define ICON_FA_FLAG_ALT "\xef\x9d\x8c" // U+f74c
#define ICON_FA_FLAG_CHECKERED "\xef\x84\x9e" // U+f11e
#define ICON_FA_FLAG_USA "\xef\x9d\x8d" // U+f74d
#define ICON_FA_FLAME "\xef\x9b\x9f" // U+f6df
#define ICON_FA_FLASHLIGHT "\xef\xa2\xb8" // U+f8b8
#define ICON_FA_FLASK "\xef\x83\x83" // U+f0c3
#define ICON_FA_FLASK_POISON "\xef\x9b\xa0" // U+f6e0
#define ICON_FA_FLASK_POTION "\xef\x9b\xa1" // U+f6e1
#define ICON_FA_FLOWER "\xef\x9f\xbf" // U+f7ff
#define ICON_FA_FLOWER_DAFFODIL "\xef\xa0\x80" // U+f800
#define ICON_FA_FLOWER_TULIP "\xef\xa0\x81" // U+f801
#define ICON_FA_FLUSHED "\xef\x95\xb9" // U+f579
#define ICON_FA_FLUTE "\xef\xa2\xb9" // U+f8b9
#define ICON_FA_FLUX_CAPACITOR "\xef\xa2\xba" // U+f8ba
#define ICON_FA_FOG "\xef\x9d\x8e" // U+f74e
#define ICON_FA_FOLDER "\xef\x81\xbb" // U+f07b
#define ICON_FA_FOLDER_DOWNLOAD "\xee\x81\x93" // U+e053
#define ICON_FA_FOLDER_MINUS "\xef\x99\x9d" // U+f65d
#define ICON_FA_FOLDER_OPEN "\xef\x81\xbc" // U+f07c
#define ICON_FA_FOLDER_PLUS "\xef\x99\x9e" // U+f65e
#define ICON_FA_FOLDER_TIMES "\xef\x99\x9f" // U+f65f
#define ICON_FA_FOLDER_TREE "\xef\xa0\x82" // U+f802
#define ICON_FA_FOLDER_UPLOAD "\xee\x81\x94" // U+e054
#define ICON_FA_FOLDERS "\xef\x99\xa0" // U+f660
#define ICON_FA_FONT "\xef\x80\xb1" // U+f031
#define ICON_FA_FONT_AWESOME_LOGO_FULL "\xef\x93\xa6" // U+f4e6
#define ICON_FA_FONT_CASE "\xef\xa1\xa6" // U+f866
#define ICON_FA_FOOTBALL_BALL "\xef\x91\x8e" // U+f44e
#define ICON_FA_FOOTBALL_HELMET "\xef\x91\x8f" // U+f44f
#define ICON_FA_FORKLIFT "\xef\x91\xba" // U+f47a
#define ICON_FA_FORWARD "\xef\x81\x8e" // U+f04e
#define ICON_FA_FRAGILE "\xef\x92\xbb" // U+f4bb
#define ICON_FA_FRENCH_FRIES "\xef\xa0\x83" // U+f803
#define ICON_FA_FROG "\xef\x94\xae" // U+f52e
#define ICON_FA_FROSTY_HEAD "\xef\x9e\x9b" // U+f79b
#define ICON_FA_FROWN "\xef\x84\x99" // U+f119
#define ICON_FA_FROWN_OPEN "\xef\x95\xba" // U+f57a
#define ICON_FA_FUNCTION "\xef\x99\xa1" // U+f661
#define ICON_FA_FUNNEL_DOLLAR "\xef\x99\xa2" // U+f662
#define ICON_FA_FUTBOL "\xef\x87\xa3" // U+f1e3
#define ICON_FA_GALAXY "\xee\x80\x88" // U+e008
#define ICON_FA_GAME_BOARD "\xef\xa1\xa7" // U+f867
#define ICON_FA_GAME_BOARD_ALT "\xef\xa1\xa8" // U+f868
#define ICON_FA_GAME_CONSOLE_HANDHELD "\xef\xa2\xbb" // U+f8bb
#define ICON_FA_GAMEPAD "\xef\x84\x9b" // U+f11b
#define ICON_FA_GAMEPAD_ALT "\xef\xa2\xbc" // U+f8bc
#define ICON_FA_GARAGE "\xee\x80\x89" // U+e009
#define ICON_FA_GARAGE_CAR "\xee\x80\x8a" // U+e00a
#define ICON_FA_GARAGE_OPEN "\xee\x80\x8b" // U+e00b
#define ICON_FA_GAS_PUMP "\xef\x94\xaf" // U+f52f
#define ICON_FA_GAS_PUMP_SLASH "\xef\x97\xb4" // U+f5f4
#define ICON_FA_GAVEL "\xef\x83\xa3" // U+f0e3
#define ICON_FA_GEM "\xef\x8e\xa5" // U+f3a5
#define ICON_FA_GENDERLESS "\xef\x88\xad" // U+f22d
#define ICON_FA_GHOST "\xef\x9b\xa2" // U+f6e2
#define ICON_FA_GIFT "\xef\x81\xab" // U+f06b
#define ICON_FA_GIFT_CARD "\xef\x99\xa3" // U+f663
#define ICON_FA_GIFTS "\xef\x9e\x9c" // U+f79c
#define ICON_FA_GINGERBREAD_MAN "\xef\x9e\x9d" // U+f79d
#define ICON_FA_GLASS "\xef\xa0\x84" // U+f804
#define ICON_FA_GLASS_CHAMPAGNE "\xef\x9e\x9e" // U+f79e
#define ICON_FA_GLASS_CHEERS "\xef\x9e\x9f" // U+f79f
#define ICON_FA_GLASS_CITRUS "\xef\xa1\xa9" // U+f869
#define ICON_FA_GLASS_MARTINI "\xef\x80\x80" // U+f000
#define ICON_FA_GLASS_MARTINI_ALT "\xef\x95\xbb" // U+f57b
#define ICON_FA_GLASS_WHISKEY "\xef\x9e\xa0" // U+f7a0
#define ICON_FA_GLASS_WHISKEY_ROCKS "\xef\x9e\xa1" // U+f7a1
#define ICON_FA_GLASSES "\xef\x94\xb0" // U+f530
#define ICON_FA_GLASSES_ALT "\xef\x97\xb5" // U+f5f5
#define ICON_FA_GLOBE "\xef\x82\xac" // U+f0ac
#define ICON_FA_GLOBE_AFRICA "\xef\x95\xbc" // U+f57c
#define ICON_FA_GLOBE_AMERICAS "\xef\x95\xbd" // U+f57d
#define ICON_FA_GLOBE_ASIA "\xef\x95\xbe" // U+f57e
#define ICON_FA_GLOBE_EUROPE "\xef\x9e\xa2" // U+f7a2
#define ICON_FA_GLOBE_SNOW "\xef\x9e\xa3" // U+f7a3
#define ICON_FA_GLOBE_STAND "\xef\x97\xb6" // U+f5f6
#define ICON_FA_GOLF_BALL "\xef\x91\x90" // U+f450
#define ICON_FA_GOLF_CLUB "\xef\x91\x91" // U+f451
#define ICON_FA_GOPURAM "\xef\x99\xa4" // U+f664
#define ICON_FA_GRADUATION_CAP "\xef\x86\x9d" // U+f19d
#define ICON_FA_GRAMOPHONE "\xef\xa2\xbd" // U+f8bd
#define ICON_FA_GREATER_THAN "\xef\x94\xb1" // U+f531
#define ICON_FA_GREATER_THAN_EQUAL "\xef\x94\xb2" // U+f532
#define ICON_FA_GRIMACE "\xef\x95\xbf" // U+f57f
#define ICON_FA_GRIN "\xef\x96\x80" // U+f580
#define ICON_FA_GRIN_ALT "\xef\x96\x81" // U+f581
#define ICON_FA_GRIN_BEAM "\xef\x96\x82" // U+f582
#define ICON_FA_GRIN_BEAM_SWEAT "\xef\x96\x83" // U+f583
#define ICON_FA_GRIN_HEARTS "\xef\x96\x84" // U+f584
#define ICON_FA_GRIN_SQUINT "\xef\x96\x85" // U+f585
#define ICON_FA_GRIN_SQUINT_TEARS "\xef\x96\x86" // U+f586
#define ICON_FA_GRIN_STARS "\xef\x96\x87" // U+f587
#define ICON_FA_GRIN_TEARS "\xef\x96\x88" // U+f588
#define ICON_FA_GRIN_TONGUE "\xef\x96\x89" // U+f589
#define ICON_FA_GRIN_TONGUE_SQUINT "\xef\x96\x8a" // U+f58a
#define ICON_FA_GRIN_TONGUE_WINK "\xef\x96\x8b" // U+f58b
#define ICON_FA_GRIN_WINK "\xef\x96\x8c" // U+f58c
#define ICON_FA_GRIP_HORIZONTAL "\xef\x96\x8d" // U+f58d
#define ICON_FA_GRIP_LINES "\xef\x9e\xa4" // U+f7a4
#define ICON_FA_GRIP_LINES_VERTICAL "\xef\x9e\xa5" // U+f7a5
#define ICON_FA_GRIP_VERTICAL "\xef\x96\x8e" // U+f58e
#define ICON_FA_GUITAR "\xef\x9e\xa6" // U+f7a6
#define ICON_FA_GUITAR_ELECTRIC "\xef\xa2\xbe" // U+f8be
#define ICON_FA_GUITARS "\xef\xa2\xbf" // U+f8bf
#define ICON_FA_H_SQUARE "\xef\x83\xbd" // U+f0fd
#define ICON_FA_H1 "\xef\x8c\x93" // U+f313
#define ICON_FA_H2 "\xef\x8c\x94" // U+f314
#define ICON_FA_H3 "\xef\x8c\x95" // U+f315
#define ICON_FA_H4 "\xef\xa1\xaa" // U+f86a
#define ICON_FA_HAMBURGER "\xef\xa0\x85" // U+f805
#define ICON_FA_HAMMER "\xef\x9b\xa3" // U+f6e3
#define ICON_FA_HAMMER_WAR "\xef\x9b\xa4" // U+f6e4
#define ICON_FA_HAMSA "\xef\x99\xa5" // U+f665
#define ICON_FA_HAND_HEART "\xef\x92\xbc" // U+f4bc
#define ICON_FA_HAND_HOLDING "\xef\x92\xbd" // U+f4bd
#define ICON_FA_HAND_HOLDING_BOX "\xef\x91\xbb" // U+f47b
#define ICON_FA_HAND_HOLDING_HEART "\xef\x92\xbe" // U+f4be
#define ICON_FA_HAND_HOLDING_MAGIC "\xef\x9b\xa5" // U+f6e5
#define ICON_FA_HAND_HOLDING_MEDICAL "\xee\x81\x9c" // U+e05c
#define ICON_FA_HAND_HOLDING_SEEDLING "\xef\x92\xbf" // U+f4bf
#define ICON_FA_HAND_HOLDING_USD "\xef\x93\x80" // U+f4c0
#define ICON_FA_HAND_HOLDING_WATER "\xef\x93\x81" // U+f4c1
#define ICON_FA_HAND_LIZARD "\xef\x89\x98" // U+f258
#define ICON_FA_HAND_MIDDLE_FINGER "\xef\xa0\x86" // U+f806
#define ICON_FA_HAND_PAPER "\xef\x89\x96" // U+f256
#define ICON_FA_HAND_PEACE "\xef\x89\x9b" // U+f25b
#define ICON_FA_HAND_POINT_DOWN "\xef\x82\xa7" // U+f0a7
#define ICON_FA_HAND_POINT_LEFT "\xef\x82\xa5" // U+f0a5
#define ICON_FA_HAND_POINT_RIGHT "\xef\x82\xa4" // U+f0a4
#define ICON_FA_HAND_POINT_UP "\xef\x82\xa6" // U+f0a6
#define ICON_FA_HAND_POINTER "\xef\x89\x9a" // U+f25a
#define ICON_FA_HAND_RECEIVING "\xef\x91\xbc" // U+f47c
#define ICON_FA_HAND_ROCK "\xef\x89\x95" // U+f255
#define ICON_FA_HAND_SCISSORS "\xef\x89\x97" // U+f257
#define ICON_FA_HAND_SPARKLES "\xee\x81\x9d" // U+e05d
#define ICON_FA_HAND_SPOCK "\xef\x89\x99" // U+f259
#define ICON_FA_HANDS "\xef\x93\x82" // U+f4c2
#define ICON_FA_HANDS_HEART "\xef\x93\x83" // U+f4c3
#define ICON_FA_HANDS_HELPING "\xef\x93\x84" // U+f4c4
#define ICON_FA_HANDS_USD "\xef\x93\x85" // U+f4c5
#define ICON_FA_HANDS_WASH "\xee\x81\x9e" // U+e05e
#define ICON_FA_HANDSHAKE "\xef\x8a\xb5" // U+f2b5
#define ICON_FA_HANDSHAKE_ALT "\xef\x93\x86" // U+f4c6
#define ICON_FA_HANDSHAKE_ALT_SLASH "\xee\x81\x9f" // U+e05f
#define ICON_FA_HANDSHAKE_SLASH "\xee\x81\xa0" // U+e060
#define ICON_FA_HANUKIAH "\xef\x9b\xa6" // U+f6e6
#define ICON_FA_HARD_HAT "\xef\xa0\x87" // U+f807
#define ICON_FA_HASHTAG "\xef\x8a\x92" // U+f292
#define ICON_FA_HAT_CHEF "\xef\xa1\xab" // U+f86b
#define ICON_FA_HAT_COWBOY "\xef\xa3\x80" // U+f8c0
#define ICON_FA_HAT_COWBOY_SIDE "\xef\xa3\x81" // U+f8c1
#define ICON_FA_HAT_SANTA "\xef\x9e\xa7" // U+f7a7
#define ICON_FA_HAT_WINTER "\xef\x9e\xa8" // U+f7a8
#define ICON_FA_HAT_WITCH "\xef\x9b\xa7" // U+f6e7
#define ICON_FA_HAT_WIZARD "\xef\x9b\xa8" // U+f6e8
#define ICON_FA_HDD "\xef\x82\xa0" // U+f0a0
#define ICON_FA_HEAD_SIDE "\xef\x9b\xa9" // U+f6e9
#define ICON_FA_HEAD_SIDE_BRAIN "\xef\xa0\x88" // U+f808
#define ICON_FA_HEAD_SIDE_COUGH "\xee\x81\xa1" // U+e061
#define ICON_FA_HEAD_SIDE_COUGH_SLASH "\xee\x81\xa2" // U+e062
#define ICON_FA_HEAD_SIDE_HEADPHONES "\xef\xa3\x82" // U+f8c2
#define ICON_FA_HEAD_SIDE_MASK "\xee\x81\xa3" // U+e063
#define ICON_FA_HEAD_SIDE_MEDICAL "\xef\xa0\x89" // U+f809
#define ICON_FA_HEAD_SIDE_VIRUS "\xee\x81\xa4" // U+e064
#define ICON_FA_HEAD_VR "\xef\x9b\xaa" // U+f6ea
#define ICON_FA_HEADING "\xef\x87\x9c" // U+f1dc
#define ICON_FA_HEADPHONES "\xef\x80\xa5" // U+f025
#define ICON_FA_HEADPHONES_ALT "\xef\x96\x8f" // U+f58f
#define ICON_FA_HEADSET "\xef\x96\x90" // U+f590
#define ICON_FA_HEART "\xef\x80\x84" // U+f004
#define ICON_FA_HEART_BROKEN "\xef\x9e\xa9" // U+f7a9
#define ICON_FA_HEART_CIRCLE "\xef\x93\x87" // U+f4c7
#define ICON_FA_HEART_RATE "\xef\x97\xb8" // U+f5f8
#define ICON_FA_HEART_SQUARE "\xef\x93\x88" // U+f4c8
#define ICON_FA_HEARTBEAT "\xef\x88\x9e" // U+f21e
#define ICON_FA_HEAT "\xee\x80\x8c" // U+e00c
#define ICON_FA_HELICOPTER "\xef\x94\xb3" // U+f533
#define ICON_FA_HELMET_BATTLE "\xef\x9b\xab" // U+f6eb
#define ICON_FA_HEXAGON "\xef\x8c\x92" // U+f312
#define ICON_FA_HIGHLIGHTER "\xef\x96\x91" // U+f591
#define ICON_FA_HIKING "\xef\x9b\xac" // U+f6ec
#define ICON_FA_HIPPO "\xef\x9b\xad" // U+f6ed
#define ICON_FA_HISTORY "\xef\x87\x9a" // U+f1da
#define ICON_FA_HOCKEY_MASK "\xef\x9b\xae" // U+f6ee
#define ICON_FA_HOCKEY_PUCK "\xef\x91\x93" // U+f453
#define ICON_FA_HOCKEY_STICKS "\xef\x91\x94" // U+f454
#define ICON_FA_HOLLY_BERRY "\xef\x9e\xaa" // U+f7aa
#define ICON_FA_HOME "\xef\x80\x95" // U+f015
#define ICON_FA_HOME_ALT "\xef\xa0\x8a" // U+f80a
#define ICON_FA_HOME_HEART "\xef\x93\x89" // U+f4c9
#define ICON_FA_HOME_LG "\xef\xa0\x8b" // U+f80b
#define ICON_FA_HOME_LG_ALT "\xef\xa0\x8c" // U+f80c
#define ICON_FA_HOOD_CLOAK "\xef\x9b\xaf" // U+f6ef
#define ICON_FA_HORIZONTAL_RULE "\xef\xa1\xac" // U+f86c
#define ICON_FA_HORSE "\xef\x9b\xb0" // U+f6f0
#define ICON_FA_HORSE_HEAD "\xef\x9e\xab" // U+f7ab
#define ICON_FA_HORSE_SADDLE "\xef\xa3\x83" // U+f8c3
#define ICON_FA_HOSPITAL "\xef\x83\xb8" // U+f0f8
#define ICON_FA_HOSPITAL_ALT "\xef\x91\xbd" // U+f47d
#define ICON_FA_HOSPITAL_SYMBOL "\xef\x91\xbe" // U+f47e
#define ICON_FA_HOSPITAL_USER "\xef\xa0\x8d" // U+f80d
#define ICON_FA_HOSPITALS "\xef\xa0\x8e" // U+f80e
#define ICON_FA_HOT_TUB "\xef\x96\x93" // U+f593
#define ICON_FA_HOTDOG "\xef\xa0\x8f" // U+f80f
#define ICON_FA_HOTEL "\xef\x96\x94" // U+f594
#define ICON_FA_HOURGLASS "\xef\x89\x94" // U+f254
#define ICON_FA_HOURGLASS_END "\xef\x89\x93" // U+f253
#define ICON_FA_HOURGLASS_HALF "\xef\x89\x92" // U+f252
#define ICON_FA_HOURGLASS_START "\xef\x89\x91" // U+f251
#define ICON_FA_HOUSE "\xee\x80\x8d" // U+e00d
#define ICON_FA_HOUSE_DAMAGE "\xef\x9b\xb1" // U+f6f1
#define ICON_FA_HOUSE_DAY "\xee\x80\x8e" // U+e00e
#define ICON_FA_HOUSE_FLOOD "\xef\x9d\x8f" // U+f74f
#define ICON_FA_HOUSE_LEAVE "\xee\x80\x8f" // U+e00f
#define ICON_FA_HOUSE_NIGHT "\xee\x80\x90" // U+e010
#define ICON_FA_HOUSE_RETURN "\xee\x80\x91" // U+e011
#define ICON_FA_HOUSE_SIGNAL "\xee\x80\x92" // U+e012
#define ICON_FA_HOUSE_USER "\xee\x81\xa5" // U+e065
#define ICON_FA_HRYVNIA "\xef\x9b\xb2" // U+f6f2
#define ICON_FA_HUMIDITY "\xef\x9d\x90" // U+f750
#define ICON_FA_HURRICANE "\xef\x9d\x91" // U+f751
#define ICON_FA_I_CURSOR "\xef\x89\x86" // U+f246
#define ICON_FA_ICE_CREAM "\xef\xa0\x90" // U+f810
#define ICON_FA_ICE_SKATE "\xef\x9e\xac" // U+f7ac
#define ICON_FA_ICICLES "\xef\x9e\xad" // U+f7ad
#define ICON_FA_ICONS "\xef\xa1\xad" // U+f86d
#define ICON_FA_ICONS_ALT "\xef\xa1\xae" // U+f86e
#define ICON_FA_ID_BADGE "\xef\x8b\x81" // U+f2c1
#define ICON_FA_ID_CARD "\xef\x8b\x82" // U+f2c2
#define ICON_FA_ID_CARD_ALT "\xef\x91\xbf" // U+f47f
#define ICON_FA_IGLOO "\xef\x9e\xae" // U+f7ae
#define ICON_FA_IMAGE "\xef\x80\xbe" // U+f03e
#define ICON_FA_IMAGE_POLAROID "\xef\xa3\x84" // U+f8c4
#define ICON_FA_IMAGES "\xef\x8c\x82" // U+f302
#define ICON_FA_INBOX "\xef\x80\x9c" // U+f01c
#define ICON_FA_INBOX_IN "\xef\x8c\x90" // U+f310
#define ICON_FA_INBOX_OUT "\xef\x8c\x91" // U+f311
#define ICON_FA_INDENT "\xef\x80\xbc" // U+f03c
#define ICON_FA_INDUSTRY "\xef\x89\xb5" // U+f275
#define ICON_FA_INDUSTRY_ALT "\xef\x8e\xb3" // U+f3b3
#define ICON_FA_INFINITY "\xef\x94\xb4" // U+f534
#define ICON_FA_INFO "\xef\x84\xa9" // U+f129
#define ICON_FA_INFO_CIRCLE "\xef\x81\x9a" // U+f05a
#define ICON_FA_INFO_SQUARE "\xef\x8c\x8f" // U+f30f
#define ICON_FA_INHALER "\xef\x97\xb9" // U+f5f9
#define ICON_FA_INTEGRAL "\xef\x99\xa7" // U+f667
#define ICON_FA_INTERSECTION "\xef\x99\xa8" // U+f668
#define ICON_FA_INVENTORY "\xef\x92\x80" // U+f480
#define ICON_FA_ISLAND_TROPICAL "\xef\xa0\x91" // U+f811
#define ICON_FA_ITALIC "\xef\x80\xb3" // U+f033
#define ICON_FA_JACK_O_LANTERN "\xef\x8c\x8e" // U+f30e
#define ICON_FA_JEDI "\xef\x99\xa9" // U+f669
#define ICON_FA_JOINT "\xef\x96\x95" // U+f595
#define ICON_FA_JOURNAL_WHILLS "\xef\x99\xaa" // U+f66a
#define ICON_FA_JOYSTICK "\xef\xa3\x85" // U+f8c5
#define ICON_FA_JUG "\xef\xa3\x86" // U+f8c6
#define ICON_FA_KAABA "\xef\x99\xab" // U+f66b
#define ICON_FA_KAZOO "\xef\xa3\x87" // U+f8c7
#define ICON_FA_KERNING "\xef\xa1\xaf" // U+f86f
#define ICON_FA_KEY "\xef\x82\x84" // U+f084
#define ICON_FA_KEY_SKELETON "\xef\x9b\xb3" // U+f6f3
#define ICON_FA_KEYBOARD "\xef\x84\x9c" // U+f11c
#define ICON_FA_KEYNOTE "\xef\x99\xac" // U+f66c
#define ICON_FA_KHANDA "\xef\x99\xad" // U+f66d
#define ICON_FA_KIDNEYS "\xef\x97\xbb" // U+f5fb
#define ICON_FA_KISS "\xef\x96\x96" // U+f596
#define ICON_FA_KISS_BEAM "\xef\x96\x97" // U+f597
#define ICON_FA_KISS_WINK_HEART "\xef\x96\x98" // U+f598
#define ICON_FA_KITE "\xef\x9b\xb4" // U+f6f4
#define ICON_FA_KIWI_BIRD "\xef\x94\xb5" // U+f535
#define ICON_FA_KNIFE_KITCHEN "\xef\x9b\xb5" // U+f6f5
#define ICON_FA_LAMBDA "\xef\x99\xae" // U+f66e
#define ICON_FA_LAMP "\xef\x93\x8a" // U+f4ca
#define ICON_FA_LAMP_DESK "\xee\x80\x94" // U+e014
#define ICON_FA_LAMP_FLOOR "\xee\x80\x95" // U+e015
#define ICON_FA_LANDMARK "\xef\x99\xaf" // U+f66f
#define ICON_FA_LANDMARK_ALT "\xef\x9d\x92" // U+f752
#define ICON_FA_LANGUAGE "\xef\x86\xab" // U+f1ab
#define ICON_FA_LAPTOP "\xef\x84\x89" // U+f109
#define ICON_FA_LAPTOP_CODE "\xef\x97\xbc" // U+f5fc
#define ICON_FA_LAPTOP_HOUSE "\xee\x81\xa6" // U+e066
#define ICON_FA_LAPTOP_MEDICAL "\xef\xa0\x92" // U+f812
#define ICON_FA_LASSO "\xef\xa3\x88" // U+f8c8
#define ICON_FA_LAUGH "\xef\x96\x99" // U+f599
#define ICON_FA_LAUGH_BEAM "\xef\x96\x9a" // U+f59a
#define ICON_FA_LAUGH_SQUINT "\xef\x96\x9b" // U+f59b
#define ICON_FA_LAUGH_WINK "\xef\x96\x9c" // U+f59c
#define ICON_FA_LAYER_GROUP "\xef\x97\xbd" // U+f5fd
#define ICON_FA_LAYER_MINUS "\xef\x97\xbe" // U+f5fe
#define ICON_FA_LAYER_PLUS "\xef\x97\xbf" // U+f5ff
#define ICON_FA_LEAF "\xef\x81\xac" // U+f06c
#define ICON_FA_LEAF_HEART "\xef\x93\x8b" // U+f4cb
#define ICON_FA_LEAF_MAPLE "\xef\x9b\xb6" // U+f6f6
#define ICON_FA_LEAF_OAK "\xef\x9b\xb7" // U+f6f7
#define ICON_FA_LEMON "\xef\x82\x94" // U+f094
#define ICON_FA_LESS_THAN "\xef\x94\xb6" // U+f536
#define ICON_FA_LESS_THAN_EQUAL "\xef\x94\xb7" // U+f537
#define ICON_FA_LEVEL_DOWN "\xef\x85\x89" // U+f149
#define ICON_FA_LEVEL_DOWN_ALT "\xef\x8e\xbe" // U+f3be
#define ICON_FA_LEVEL_UP "\xef\x85\x88" // U+f148
#define ICON_FA_LEVEL_UP_ALT "\xef\x8e\xbf" // U+f3bf
#define ICON_FA_LIFE_RING "\xef\x87\x8d" // U+f1cd
#define ICON_FA_LIGHT_CEILING "\xee\x80\x96" // U+e016
#define ICON_FA_LIGHT_SWITCH "\xee\x80\x97" // U+e017
#define ICON_FA_LIGHT_SWITCH_OFF "\xee\x80\x98" // U+e018
#define ICON_FA_LIGHT_SWITCH_ON "\xee\x80\x99" // U+e019
#define ICON_FA_LIGHTBULB "\xef\x83\xab" // U+f0eb
#define ICON_FA_LIGHTBULB_DOLLAR "\xef\x99\xb0" // U+f670
#define ICON_FA_LIGHTBULB_EXCLAMATION "\xef\x99\xb1" // U+f671