-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
2375 lines (2374 loc) · 58.3 KB
/
config.yml
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
font:
svg: fonts/fontawesome-webfont.svg
ttf: fonts/fontawesome-webfont.ttf
eot: fonts/fontawesome-webfont.eot
woff: fonts/fontawesome-webfont.woff
css: fonts/fontawesome-webfont.css
html: fonts/fontawesome-webfont.html
name: FontAwesome
prefix: fa
fixedwidth: false
height: 1000
descent: 150
normalize: true
center: true
round: 10e12
glyphs:
- glyph: glyphs/500px.svg
name: 500px
code: 0xF26E
- glyph: glyphs/address-book.svg
name: address_book
code: 0xF2B9
- glyph: glyphs/address-book-o.svg
name: address_book_o
code: 0xF2BA
- glyph: glyphs/address-card.svg
name: address_card
code: 0xF2BB
- glyph: glyphs/address-card-o.svg
name: address_card_o
code: 0xF2BC
- glyph: glyphs/adjust.svg
name: adjust
code: 0xF042
- glyph: glyphs/adn.svg
name: adn
code: 0xF170
- glyph: glyphs/align-center.svg
name: align_center
code: 0xF037
- glyph: glyphs/align-justify.svg
name: align_justify
code: 0xF039
- glyph: glyphs/align-left.svg
name: align_left
code: 0xF036
- glyph: glyphs/align-right.svg
name: align_right
code: 0xF038
- glyph: glyphs/amazon.svg
name: amazon
code: 0xF270
- glyph: glyphs/ambulance.svg
name: ambulance
code: 0xF0F9
- glyph: glyphs/american-sign-language-interpreting.svg
name: american_sign_language_interpreting
code: 0xF2A3
- glyph: glyphs/anchor.svg
name: anchor
code: 0xF13D
- glyph: glyphs/android.svg
name: android
code: 0xF17B
- glyph: glyphs/angellist.svg
name: angellist
code: 0xF209
- glyph: glyphs/angle-double-down.svg
name: angle_double_down
code: 0xF103
- glyph: glyphs/angle-double-left.svg
name: angle_double_left
code: 0xF100
- glyph: glyphs/angle-double-right.svg
name: angle_double_right
code: 0xF101
- glyph: glyphs/angle-double-up.svg
name: angle_double_up
code: 0xF102
- glyph: glyphs/angle-down.svg
name: angle_down
code: 0xF107
- glyph: glyphs/angle-left.svg
name: angle_left
code: 0xF104
- glyph: glyphs/angle-right.svg
name: angle_right
code: 0xF105
- glyph: glyphs/angle-up.svg
name: angle_up
code: 0xF106
- glyph: glyphs/apple.svg
name: apple
code: 0xF179
- glyph: glyphs/archive.svg
name: archive
code: 0xF187
- glyph: glyphs/area-chart.svg
name: area_chart
code: 0xF1FE
- glyph: glyphs/arrow-circle-down.svg
name: arrow_circle_down
code: 0xF0AB
- glyph: glyphs/arrow-circle-left.svg
name: arrow_circle_left
code: 0xF0A8
- glyph: glyphs/arrow-circle-o-down.svg
name: arrow_circle_o_down
code: 0xF01A
- glyph: glyphs/arrow-circle-o-left.svg
name: arrow_circle_o_left
code: 0xF190
- glyph: glyphs/arrow-circle-o-right.svg
name: arrow_circle_o_right
code: 0xF18E
- glyph: glyphs/arrow-circle-o-up.svg
name: arrow_circle_o_up
code: 0xF01B
- glyph: glyphs/arrow-circle-right.svg
name: arrow_circle_right
code: 0xF0A9
- glyph: glyphs/arrow-circle-up.svg
name: arrow_circle_up
code: 0xF0AA
- glyph: glyphs/arrow-down.svg
name: arrow_down
code: 0xF063
- glyph: glyphs/arrow-left.svg
name: arrow_left
code: 0xF060
- glyph: glyphs/arrow-right.svg
name: arrow_right
code: 0xF061
- glyph: glyphs/arrow-up.svg
name: arrow_up
code: 0xF062
- glyph: glyphs/arrows.svg
name: arrows
code: 0xF047
- glyph: glyphs/arrows-alt.svg
name: arrows_alt
code: 0xF0B2
- glyph: glyphs/arrows-h.svg
name: arrows_h
code: 0xF07E
- glyph: glyphs/arrows-v.svg
name: arrows_v
code: 0xF07D
- glyph: glyphs/asl-interpreting.svg
name: asl_interpreting
code: 0xF2A3
- glyph: glyphs/assistive-listening-systems.svg
name: assistive_listening_systems
code: 0xF2A2
- glyph: glyphs/asterisk.svg
name: asterisk
code: 0xF069
- glyph: glyphs/at.svg
name: at
code: 0xF1FA
- glyph: glyphs/audio-description.svg
name: audio_description
code: 0xF29E
- glyph: glyphs/automobile.svg
name: automobile
code: 0xF1B9
- glyph: glyphs/backward.svg
name: backward
code: 0xF04A
- glyph: glyphs/balance-scale.svg
name: balance_scale
code: 0xF24E
- glyph: glyphs/ban.svg
name: ban
code: 0xF05E
- glyph: glyphs/bandcamp.svg
name: bandcamp
code: 0xF2D5
- glyph: glyphs/bank.svg
name: bank
code: 0xF19C
- glyph: glyphs/bar-chart.svg
name: bar_chart
code: 0xF080
- glyph: glyphs/bar-chart-o.svg
name: bar_chart_o
code: 0xF080
- glyph: glyphs/barcode.svg
name: barcode
code: 0xF02A
- glyph: glyphs/bars.svg
name: bars
code: 0xF0C9
- glyph: glyphs/bath.svg
name: bath
code: 0xF2CD
- glyph: glyphs/bathtub.svg
name: bathtub
code: 0xF2CD
- glyph: glyphs/battery.svg
name: battery
code: 0xF240
- glyph: glyphs/battery-0.svg
name: battery_0
code: 0xF244
- glyph: glyphs/battery-1.svg
name: battery_1
code: 0xF243
- glyph: glyphs/battery-2.svg
name: battery_2
code: 0xF242
- glyph: glyphs/battery-3.svg
name: battery_3
code: 0xF241
- glyph: glyphs/battery-4.svg
name: battery_4
code: 0xF240
- glyph: glyphs/battery-empty.svg
name: battery_empty
code: 0xF244
- glyph: glyphs/battery-full.svg
name: battery_full
code: 0xF240
- glyph: glyphs/battery-half.svg
name: battery_half
code: 0xF242
- glyph: glyphs/battery-quarter.svg
name: battery_quarter
code: 0xF243
- glyph: glyphs/battery-three-quarters.svg
name: battery_three_quarters
code: 0xF241
- glyph: glyphs/bed.svg
name: bed
code: 0xF236
- glyph: glyphs/beer.svg
name: beer
code: 0xF0FC
- glyph: glyphs/behance.svg
name: behance
code: 0xF1B4
- glyph: glyphs/behance-square.svg
name: behance_square
code: 0xF1B5
- glyph: glyphs/bell.svg
name: bell
code: 0xF0F3
- glyph: glyphs/bell-o.svg
name: bell_o
code: 0xF0A2
- glyph: glyphs/bell-slash.svg
name: bell_slash
code: 0xF1F6
- glyph: glyphs/bell-slash-o.svg
name: bell_slash_o
code: 0xF1F7
- glyph: glyphs/bicycle.svg
name: bicycle
code: 0xF206
- glyph: glyphs/binoculars.svg
name: binoculars
code: 0xF1E5
- glyph: glyphs/birthday-cake.svg
name: birthday_cake
code: 0xF1FD
- glyph: glyphs/bitbucket.svg
name: bitbucket
code: 0xF171
- glyph: glyphs/bitbucket-square.svg
name: bitbucket_square
code: 0xF172
- glyph: glyphs/bitcoin.svg
name: bitcoin
code: 0xF15A
- glyph: glyphs/black-tie.svg
name: black_tie
code: 0xF27E
- glyph: glyphs/blind.svg
name: blind
code: 0xF29D
- glyph: glyphs/bluetooth.svg
name: bluetooth
code: 0xF293
- glyph: glyphs/bluetooth-b.svg
name: bluetooth_b
code: 0xF294
- glyph: glyphs/bold.svg
name: bold
code: 0xF032
- glyph: glyphs/bolt.svg
name: bolt
code: 0xF0E7
- glyph: glyphs/bomb.svg
name: bomb
code: 0xF1E2
- glyph: glyphs/book.svg
name: book
code: 0xF02D
- glyph: glyphs/bookmark.svg
name: bookmark
code: 0xF02E
- glyph: glyphs/bookmark-o.svg
name: bookmark_o
code: 0xF097
- glyph: glyphs/braille.svg
name: braille
code: 0xF2A1
- glyph: glyphs/briefcase.svg
name: briefcase
code: 0xF0B1
- glyph: glyphs/btc.svg
name: btc
code: 0xF15A
- glyph: glyphs/bug.svg
name: bug
code: 0xF188
- glyph: glyphs/building.svg
name: building
code: 0xF1AD
- glyph: glyphs/building-o.svg
name: building_o
code: 0xF0F7
- glyph: glyphs/bullhorn.svg
name: bullhorn
code: 0xF0A1
- glyph: glyphs/bullseye.svg
name: bullseye
code: 0xF140
- glyph: glyphs/bus.svg
name: bus
code: 0xF207
- glyph: glyphs/buysellads.svg
name: buysellads
code: 0xF20D
- glyph: glyphs/cab.svg
name: cab
code: 0xF1BA
- glyph: glyphs/calculator.svg
name: calculator
code: 0xF1EC
- glyph: glyphs/calendar.svg
name: calendar
code: 0xF073
- glyph: glyphs/calendar-check-o.svg
name: calendar_check_o
code: 0xF274
- glyph: glyphs/calendar-minus-o.svg
name: calendar_minus_o
code: 0xF272
- glyph: glyphs/calendar-o.svg
name: calendar_o
code: 0xF133
- glyph: glyphs/calendar-plus-o.svg
name: calendar_plus_o
code: 0xF271
- glyph: glyphs/calendar-times-o.svg
name: calendar_times_o
code: 0xF273
- glyph: glyphs/camera.svg
name: camera
code: 0xF030
- glyph: glyphs/camera-retro.svg
name: camera_retro
code: 0xF083
- glyph: glyphs/car.svg
name: car
code: 0xF1B9
- glyph: glyphs/caret-down.svg
name: caret_down
code: 0xF0D7
- glyph: glyphs/caret-left.svg
name: caret_left
code: 0xF0D9
- glyph: glyphs/caret-right.svg
name: caret_right
code: 0xF0DA
- glyph: glyphs/caret-square-o-down.svg
name: caret_square_o_down
code: 0xF150
- glyph: glyphs/caret-square-o-left.svg
name: caret_square_o_left
code: 0xF191
- glyph: glyphs/caret-square-o-right.svg
name: caret_square_o_right
code: 0xF152
- glyph: glyphs/caret-square-o-up.svg
name: caret_square_o_up
code: 0xF151
- glyph: glyphs/caret-up.svg
name: caret_up
code: 0xF0D8
- glyph: glyphs/cart-arrow-down.svg
name: cart_arrow_down
code: 0xF218
- glyph: glyphs/cart-plus.svg
name: cart_plus
code: 0xF217
- glyph: glyphs/cc.svg
name: cc
code: 0xF20A
- glyph: glyphs/cc-amex.svg
name: cc_amex
code: 0xF1F3
- glyph: glyphs/cc-diners-club.svg
name: cc_diners_club
code: 0xF24C
- glyph: glyphs/cc-discover.svg
name: cc_discover
code: 0xF1F2
- glyph: glyphs/cc-jcb.svg
name: cc_jcb
code: 0xF24B
- glyph: glyphs/cc-mastercard.svg
name: cc_mastercard
code: 0xF1F1
- glyph: glyphs/cc-paypal.svg
name: cc_paypal
code: 0xF1F4
- glyph: glyphs/cc-stripe.svg
name: cc_stripe
code: 0xF1F5
- glyph: glyphs/cc-visa.svg
name: cc_visa
code: 0xF1F0
- glyph: glyphs/certificate.svg
name: certificate
code: 0xF0A3
- glyph: glyphs/chain.svg
name: chain
code: 0xF0C1
- glyph: glyphs/chain-broken.svg
name: chain_broken
code: 0xF127
- glyph: glyphs/check.svg
name: check
code: 0xF00C
- glyph: glyphs/check-circle.svg
name: check_circle
code: 0xF058
- glyph: glyphs/check-circle-o.svg
name: check_circle_o
code: 0xF05D
- glyph: glyphs/check-square.svg
name: check_square
code: 0xF14A
- glyph: glyphs/check-square-o.svg
name: check_square_o
code: 0xF046
- glyph: glyphs/chevron-circle-down.svg
name: chevron_circle_down
code: 0xF13A
- glyph: glyphs/chevron-circle-left.svg
name: chevron_circle_left
code: 0xF137
- glyph: glyphs/chevron-circle-right.svg
name: chevron_circle_right
code: 0xF138
- glyph: glyphs/chevron-circle-up.svg
name: chevron_circle_up
code: 0xF139
- glyph: glyphs/chevron-down.svg
name: chevron_down
code: 0xF078
- glyph: glyphs/chevron-left.svg
name: chevron_left
code: 0xF053
- glyph: glyphs/chevron-right.svg
name: chevron_right
code: 0xF054
- glyph: glyphs/chevron-up.svg
name: chevron_up
code: 0xF077
- glyph: glyphs/child.svg
name: child
code: 0xF1AE
- glyph: glyphs/chrome.svg
name: chrome
code: 0xF268
- glyph: glyphs/circle.svg
name: circle
code: 0xF111
- glyph: glyphs/circle-o.svg
name: circle_o
code: 0xF10C
- glyph: glyphs/circle-o-notch.svg
name: circle_o_notch
code: 0xF1CE
- glyph: glyphs/circle-thin.svg
name: circle_thin
code: 0xF1DB
- glyph: glyphs/clipboard.svg
name: clipboard
code: 0xF0EA
- glyph: glyphs/clock-o.svg
name: clock_o
code: 0xF017
- glyph: glyphs/clone.svg
name: clone
code: 0xF24D
- glyph: glyphs/close.svg
name: close
code: 0xF00D
- glyph: glyphs/cloud.svg
name: cloud
code: 0xF0C2
- glyph: glyphs/cloud-download.svg
name: cloud_download
code: 0xF0ED
- glyph: glyphs/cloud-upload.svg
name: cloud_upload
code: 0xF0EE
- glyph: glyphs/cny.svg
name: cny
code: 0xF157
- glyph: glyphs/code.svg
name: code
code: 0xF121
- glyph: glyphs/code-fork.svg
name: code_fork
code: 0xF126
- glyph: glyphs/codepen.svg
name: codepen
code: 0xF1CB
- glyph: glyphs/codiepie.svg
name: codiepie
code: 0xF284
- glyph: glyphs/coffee.svg
name: coffee
code: 0xF0F4
- glyph: glyphs/cog.svg
name: cog
code: 0xF013
- glyph: glyphs/cogs.svg
name: cogs
code: 0xF085
- glyph: glyphs/columns.svg
name: columns
code: 0xF0DB
- glyph: glyphs/comment.svg
name: comment
code: 0xF075
- glyph: glyphs/comment-o.svg
name: comment_o
code: 0xF0E5
- glyph: glyphs/commenting.svg
name: commenting
code: 0xF27A
- glyph: glyphs/commenting-o.svg
name: commenting_o
code: 0xF27B
- glyph: glyphs/comments.svg
name: comments
code: 0xF086
- glyph: glyphs/comments-o.svg
name: comments_o
code: 0xF0E6
- glyph: glyphs/compass.svg
name: compass
code: 0xF14E
- glyph: glyphs/compress.svg
name: compress
code: 0xF066
- glyph: glyphs/connectdevelop.svg
name: connectdevelop
code: 0xF20E
- glyph: glyphs/contao.svg
name: contao
code: 0xF26D
- glyph: glyphs/copy.svg
name: copy
code: 0xF0C5
- glyph: glyphs/copyright.svg
name: copyright
code: 0xF1F9
- glyph: glyphs/creative-commons.svg
name: creative_commons
code: 0xF25E
- glyph: glyphs/credit-card.svg
name: credit_card
code: 0xF09D
- glyph: glyphs/credit-card-alt.svg
name: credit_card_alt
code: 0xF283
- glyph: glyphs/crop.svg
name: crop
code: 0xF125
- glyph: glyphs/crosshairs.svg
name: crosshairs
code: 0xF05B
- glyph: glyphs/css3.svg
name: css3
code: 0xF13C
- glyph: glyphs/cube.svg
name: cube
code: 0xF1B2
- glyph: glyphs/cubes.svg
name: cubes
code: 0xF1B3
- glyph: glyphs/cut.svg
name: cut
code: 0xF0C4
- glyph: glyphs/cutlery.svg
name: cutlery
code: 0xF0F5
- glyph: glyphs/dashboard.svg
name: dashboard
code: 0xF0E4
- glyph: glyphs/dashcube.svg
name: dashcube
code: 0xF210
- glyph: glyphs/database.svg
name: database
code: 0xF1C0
- glyph: glyphs/deaf.svg
name: deaf
code: 0xF2A4
- glyph: glyphs/deafness.svg
name: deafness
code: 0xF2A4
- glyph: glyphs/dedent.svg
name: dedent
code: 0xF03B
- glyph: glyphs/delicious.svg
name: delicious
code: 0xF1A5
- glyph: glyphs/desktop.svg
name: desktop
code: 0xF108
- glyph: glyphs/deviantart.svg
name: deviantart
code: 0xF1BD
- glyph: glyphs/diamond.svg
name: diamond
code: 0xF219
- glyph: glyphs/digg.svg
name: digg
code: 0xF1A6
- glyph: glyphs/dollar.svg
name: dollar
code: 0xF155
- glyph: glyphs/dot-circle-o.svg
name: dot_circle_o
code: 0xF192
- glyph: glyphs/download.svg
name: download
code: 0xF019
- glyph: glyphs/dribbble.svg
name: dribbble
code: 0xF17D
- glyph: glyphs/drivers-license.svg
name: drivers_license
code: 0xF2C2
- glyph: glyphs/drivers-license-o.svg
name: drivers_license_o
code: 0xF2C3
- glyph: glyphs/dropbox.svg
name: dropbox
code: 0xF16B
- glyph: glyphs/drupal.svg
name: drupal
code: 0xF1A9
- glyph: glyphs/edge.svg
name: edge
code: 0xF282
- glyph: glyphs/edit.svg
name: edit
code: 0xF044
- glyph: glyphs/eercast.svg
name: eercast
code: 0xF2DA
- glyph: glyphs/eject.svg
name: eject
code: 0xF052
- glyph: glyphs/ellipsis-h.svg
name: ellipsis_h
code: 0xF141
- glyph: glyphs/ellipsis-v.svg
name: ellipsis_v
code: 0xF142
- glyph: glyphs/empire.svg
name: empire
code: 0xF1D1
- glyph: glyphs/envelope.svg
name: envelope
code: 0xF0E0
- glyph: glyphs/envelope-o.svg
name: envelope_o
code: 0xF003
- glyph: glyphs/envelope-open.svg
name: envelope_open
code: 0xF2B6
- glyph: glyphs/envelope-open-o.svg
name: envelope_open_o
code: 0xF2B7
- glyph: glyphs/envelope-square.svg
name: envelope_square
code: 0xF199
- glyph: glyphs/envira.svg
name: envira
code: 0xF299
- glyph: glyphs/eraser.svg
name: eraser
code: 0xF12D
- glyph: glyphs/etsy.svg
name: etsy
code: 0xF2D7
- glyph: glyphs/eur.svg
name: eur
code: 0xF153
- glyph: glyphs/euro.svg
name: euro
code: 0xF153
- glyph: glyphs/exchange.svg
name: exchange
code: 0xF0EC
- glyph: glyphs/exclamation.svg
name: exclamation
code: 0xF12A
- glyph: glyphs/exclamation-circle.svg
name: exclamation_circle
code: 0xF06A
- glyph: glyphs/exclamation-triangle.svg
name: exclamation_triangle
code: 0xF071
- glyph: glyphs/expand.svg
name: expand
code: 0xF065
- glyph: glyphs/expeditedssl.svg
name: expeditedssl
code: 0xF23E
- glyph: glyphs/external-link.svg
name: external_link
code: 0xF08E
- glyph: glyphs/external-link-square.svg
name: external_link_square
code: 0xF14C
- glyph: glyphs/eye.svg
name: eye
code: 0xF06E
- glyph: glyphs/eye-slash.svg
name: eye_slash
code: 0xF070
- glyph: glyphs/eyedropper.svg
name: eyedropper
code: 0xF1FB
- glyph: glyphs/fa.svg
name: fa
code: 0xF2B4
- glyph: glyphs/facebook.svg
name: facebook
code: 0xF09A
- glyph: glyphs/facebook-f.svg
name: facebook_f
code: 0xF09A
- glyph: glyphs/facebook-official.svg
name: facebook_official
code: 0xF230
- glyph: glyphs/facebook-square.svg
name: facebook_square
code: 0xF082
- glyph: glyphs/fast-backward.svg
name: fast_backward
code: 0xF049
- glyph: glyphs/fast-forward.svg
name: fast_forward
code: 0xF050
- glyph: glyphs/fax.svg
name: fax
code: 0xF1AC
- glyph: glyphs/feed.svg
name: feed
code: 0xF09E
- glyph: glyphs/female.svg
name: female
code: 0xF182
- glyph: glyphs/fighter-jet.svg
name: fighter_jet
code: 0xF0FB
- glyph: glyphs/file.svg
name: file
code: 0xF15B
- glyph: glyphs/file-archive-o.svg
name: file_archive_o
code: 0xF1C6
- glyph: glyphs/file-audio-o.svg
name: file_audio_o
code: 0xF1C7
- glyph: glyphs/file-code-o.svg
name: file_code_o
code: 0xF1C9
- glyph: glyphs/file-excel-o.svg
name: file_excel_o
code: 0xF1C3
- glyph: glyphs/file-image-o.svg
name: file_image_o
code: 0xF1C5
- glyph: glyphs/file-movie-o.svg
name: file_movie_o
code: 0xF1C8
- glyph: glyphs/file-o.svg
name: file_o
code: 0xF016
- glyph: glyphs/file-pdf-o.svg
name: file_pdf_o
code: 0xF1C1
- glyph: glyphs/file-photo-o.svg
name: file_photo_o
code: 0xF1C5
- glyph: glyphs/file-picture-o.svg
name: file_picture_o
code: 0xF1C5
- glyph: glyphs/file-powerpoint-o.svg
name: file_powerpoint_o
code: 0xF1C4
- glyph: glyphs/file-sound-o.svg
name: file_sound_o
code: 0xF1C7
- glyph: glyphs/file-text.svg
name: file_text
code: 0xF15C
- glyph: glyphs/file-text-o.svg
name: file_text_o
code: 0xF0F6
- glyph: glyphs/file-video-o.svg
name: file_video_o
code: 0xF1C8
- glyph: glyphs/file-word-o.svg
name: file_word_o
code: 0xF1C2
- glyph: glyphs/file-zip-o.svg
name: file_zip_o
code: 0xF1C6
- glyph: glyphs/files-o.svg
name: files_o
code: 0xF0C5
- glyph: glyphs/film.svg
name: film
code: 0xF008
- glyph: glyphs/filter.svg
name: filter
code: 0xF0B0
- glyph: glyphs/fire.svg
name: fire
code: 0xF06D
- glyph: glyphs/fire-extinguisher.svg
name: fire_extinguisher
code: 0xF134
- glyph: glyphs/firefox.svg
name: firefox
code: 0xF269
- glyph: glyphs/first-order.svg
name: first_order
code: 0xF2B0
- glyph: glyphs/flag.svg
name: flag
code: 0xF024
- glyph: glyphs/flag-checkered.svg
name: flag_checkered
code: 0xF11E
- glyph: glyphs/flag-o.svg
name: flag_o
code: 0xF11D
- glyph: glyphs/flash.svg
name: flash
code: 0xF0E7
- glyph: glyphs/flask.svg
name: flask
code: 0xF0C3
- glyph: glyphs/flickr.svg
name: flickr
code: 0xF16E
- glyph: glyphs/floppy-o.svg
name: floppy_o
code: 0xF0C7
- glyph: glyphs/folder.svg
name: folder
code: 0xF07B
- glyph: glyphs/folder-o.svg
name: folder_o
code: 0xF114
- glyph: glyphs/folder-open.svg
name: folder_open
code: 0xF07C
- glyph: glyphs/folder-open-o.svg
name: folder_open_o
code: 0xF115
- glyph: glyphs/font.svg
name: font
code: 0xF031
- glyph: glyphs/font-awesome.svg
name: font_awesome
code: 0xF2B4
- glyph: glyphs/fonticons.svg
name: fonticons
code: 0xF280
- glyph: glyphs/fort-awesome.svg
name: fort_awesome
code: 0xF286
- glyph: glyphs/forumbee.svg
name: forumbee
code: 0xF211
- glyph: glyphs/forward.svg
name: forward
code: 0xF04E
- glyph: glyphs/foursquare.svg
name: foursquare
code: 0xF180
- glyph: glyphs/free-code-camp.svg
name: free_code_camp
code: 0xF2C5
- glyph: glyphs/frown-o.svg
name: frown_o
code: 0xF119
- glyph: glyphs/futbol-o.svg
name: futbol_o
code: 0xF1E3
- glyph: glyphs/gamepad.svg
name: gamepad
code: 0xF11B
- glyph: glyphs/gavel.svg
name: gavel
code: 0xF0E3
- glyph: glyphs/gbp.svg
name: gbp
code: 0xF154
- glyph: glyphs/ge.svg
name: ge
code: 0xF1D1
- glyph: glyphs/gear.svg
name: gear
code: 0xF013
- glyph: glyphs/gears.svg
name: gears
code: 0xF085
- glyph: glyphs/genderless.svg
name: genderless
code: 0xF22D
- glyph: glyphs/get-pocket.svg
name: get_pocket
code: 0xF265
- glyph: glyphs/gg.svg
name: gg
code: 0xF260
- glyph: glyphs/gg-circle.svg
name: gg_circle
code: 0xF261
- glyph: glyphs/gift.svg
name: gift
code: 0xF06B
- glyph: glyphs/git.svg
name: git
code: 0xF1D3
- glyph: glyphs/git-square.svg
name: git_square
code: 0xF1D2
- glyph: glyphs/github.svg
name: github
code: 0xF09B
- glyph: glyphs/github-alt.svg
name: github_alt
code: 0xF113
- glyph: glyphs/github-square.svg
name: github_square
code: 0xF092
- glyph: glyphs/gitlab.svg
name: gitlab
code: 0xF296
- glyph: glyphs/gittip.svg
name: gittip
code: 0xF184
- glyph: glyphs/glass.svg
name: glass
code: 0xF000
- glyph: glyphs/glide.svg
name: glide
code: 0xF2A5
- glyph: glyphs/glide-g.svg
name: glide_g
code: 0xF2A6
- glyph: glyphs/globe.svg
name: globe
code: 0xF0AC
- glyph: glyphs/google.svg
name: google
code: 0xF1A0
- glyph: glyphs/google-plus.svg
name: google_plus
code: 0xF0D5
- glyph: glyphs/google-plus-circle.svg
name: google_plus_circle
code: 0xF2B3
- glyph: glyphs/google-plus-official.svg
name: google_plus_official
code: 0xF2B3
- glyph: glyphs/google-plus-square.svg
name: google_plus_square
code: 0xF0D4
- glyph: glyphs/google-wallet.svg
name: google_wallet