-
Notifications
You must be signed in to change notification settings - Fork 2
/
FI.php
2140 lines (2137 loc) · 81.3 KB
/
FI.php
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
<?php
/**
* Created by PhpStorm.
* User: Lukyanov Andrey <[email protected]>
* Date: 30.08.2016
* Time: 9:45
*/
namespace lo\icofont;
/**
* Class FontIcoHelper (FI)
* @package lo\icofont
* @author Lukyanov Andrey <[email protected]>
*/
class FI extends IcoFont
{
/**
* Get all icon constants for dropdown list in example
* @param bool $html whether to render icon as array value prefix
* @return array
*/
public static function getConstants($html = false)
{
$result = [];
foreach ((new \ReflectionClass(get_class()))->getConstants() as $constant) {
$key = static::$cssPrefix . ' ' . static::$cssPrefix . '-' . $constant;
$result[$key] = ($html)
? static::icon($constant) . ' ' . $constant
: $constant;
}
return $result;
}
const _ANGRY_MONSTER = 'angry-monster';
const _BATHTUB = 'bathtub';
const _BIRD_WINGS = 'bird-wings';
const _BOW = 'bow';
const _BRAIN_ALT = 'brain-alt';
const _BUTTERFLY_ALT = 'butterfly-alt';
const _CASTLE = 'castle';
const _CIRCUIT = 'circuit';
const _DART = 'dart';
const _DICE_ALT = 'dice-alt';
const _DISABILITY_RACE = 'disability-race';
const _DIVING_GOGGLE = 'diving-goggle';
const _FIRE_ALT = 'fire-alt';
const _FLAME_TORCH = 'flame-torch';
const _FLORA = 'flora';
const _FLORA_FLOWER = 'flora-flower';
const _GIFT_BOX = 'gift-box';
const _HALLOWEEN_PUMPKIN = 'halloween-pumpkin';
const _HAND_POWER = 'hand-power';
const _HAND_THUNDER = 'hand-thunder';
const _KING_CROWN = 'king-crown';
const _KING_MONSTER = 'king-monster';
const _LOVE = 'love';
const _MAGICIAN_HAT = 'magician-hat';
const _NATIVE_AMERICAN = 'native-american';
const _OPEN_EYE = 'open-eye';
const _OWL_LOOK = 'owl-look';
const _PHOENIX = 'phoenix';
const _QUEEN_CROWN = 'queen-crown';
const _ROBOT_FACE = 'robot-face';
const _SAND_CLOCK = 'sand-clock';
const _SHIELD_ALT = 'shield-alt';
const _SHIP_WHEEL = 'ship-wheel';
const _SKULL_DANGER = 'skull-danger';
const _SKULL_FACE = 'skull-face';
const _SNAIL = 'snail';
const _SNOW_ALT = 'snow-alt';
const _SNOW_FLAKE = 'snow-flake';
const _SNOWMOBILE = 'snowmobile';
const _SPACE_SHUTTLE = 'space-shuttle';
const _STAR_SHAPE = 'star-shape';
const _SWIRL = 'swirl';
const _TATTOO_WING = 'tattoo-wing';
const _THRONE = 'throne';
const _TOUCH = 'touch';
const _TREE_ALT = 'tree-alt';
const _TRIANGLE = 'triangle';
const _UNITY_HAND = 'unity-hand';
const _WEED = 'weed';
const _WOMAN_BIRD = 'woman-bird';
const _ANIMAL_BAT = 'animal-bat';
const _ANIMAL_BEAR = 'animal-bear';
const _ANIMAL_BEAR_TRACKS = 'animal-bear-tracks';
const _ANIMAL_BIRD = 'animal-bird';
const _ANIMAL_BIRD_ALT = 'animal-bird-alt';
const _ANIMAL_BONE = 'animal-bone';
const _ANIMAL_BULL = 'animal-bull';
const _ANIMAL_CAMEL = 'animal-camel';
const _ANIMAL_CAMEL_ALT = 'animal-camel-alt';
const _ANIMAL_CAMEL_HEAD = 'animal-camel-head';
const _ANIMAL_CAT = 'animal-cat';
const _ANIMAL_CAT_ALT_1 = 'animal-cat-alt-1';
const _ANIMAL_CAT_ALT_2 = 'animal-cat-alt-2';
const _ANIMAL_CAT_ALT_3 = 'animal-cat-alt-3';
const _ANIMAL_CAT_ALT_4 = 'animal-cat-alt-4';
const _ANIMAL_CAT_WITH_DOG = 'animal-cat-with-dog';
const _ANIMAL_COW = 'animal-cow';
const _ANIMAL_COW_HEAD = 'animal-cow-head';
const _ANIMAL_CRAB = 'animal-crab';
const _ANIMAL_CROCODILE = 'animal-crocodile';
const _ANIMAL_DEER_HEAD = 'animal-deer-head';
const _ANIMAL_DOG = 'animal-dog';
const _ANIMAL_DOG_ALT = 'animal-dog-alt';
const _ANIMAL_DOG_BARKING = 'animal-dog-barking';
const _ANIMAL_DOLPHIN = 'animal-dolphin';
const _ANIMAL_DUCK_TRACKS = 'animal-duck-tracks';
const _ANIMAL_EAGLE_HEAD = 'animal-eagle-head';
const _ANIMAL_EATEN_FISH = 'animal-eaten-fish';
const _ANIMAL_ELEPHANT = 'animal-elephant';
const _ANIMAL_ELEPHANT_ALT = 'animal-elephant-alt';
const _ANIMAL_ELEPHANT_HEAD = 'animal-elephant-head';
const _ANIMAL_ELEPHANT_HEAD_ALT = 'animal-elephant-head-alt';
const _ANIMAL_ELK = 'animal-elk';
const _ANIMAL_FISH = 'animal-fish';
const _ANIMAL_FISH_ALT_1 = 'animal-fish-alt-1';
const _ANIMAL_FISH_ALT_2 = 'animal-fish-alt-2';
const _ANIMAL_FISH_ALT_3 = 'animal-fish-alt-3';
const _ANIMAL_FISH_ALT_4 = 'animal-fish-alt-4';
const _ANIMAL_FOX = 'animal-fox';
const _ANIMAL_FOX_ALT = 'animal-fox-alt';
const _ANIMAL_FROG = 'animal-frog';
const _ANIMAL_FROG_TRACKS = 'animal-frog-tracks';
const _ANIMAL_FROGGY = 'animal-froggy';
const _ANIMAL_GIRAFFE = 'animal-giraffe';
const _ANIMAL_GIRAFFE_ALT = 'animal-giraffe-alt';
const _ANIMAL_GOAT_HEAD = 'animal-goat-head';
const _ANIMAL_GOAT_HEAD_ALT_1 = 'animal-goat-head-alt-1';
const _ANIMAL_GOAT_HEAD_ALT_2 = 'animal-goat-head-alt-2';
const _ANIMAL_GORILLA = 'animal-gorilla';
const _ANIMAL_HEN_TRACKS = 'animal-hen-tracks';
const _ANIMAL_HORSE_HEAD = 'animal-horse-head';
const _ANIMAL_HORSE_HEAD_ALT_1 = 'animal-horse-head-alt-1';
const _ANIMAL_HORSE_HEAD_ALT_2 = 'animal-horse-head-alt-2';
const _ANIMAL_HORSE_TRACKS = 'animal-horse-tracks';
const _ANIMAL_JELLYFISH = 'animal-jellyfish';
const _ANIMAL_KANGAROO = 'animal-kangaroo';
const _ANIMAL_LEMUR = 'animal-lemur';
const _ANIMAL_LION = 'animal-lion';
const _ANIMAL_LION_ALT = 'animal-lion-alt';
const _ANIMAL_LION_HEAD = 'animal-lion-head';
const _ANIMAL_LION_HEAD_ALT = 'animal-lion-head-alt';
const _ANIMAL_MONKEY = 'animal-monkey';
const _ANIMAL_MONKEY_ALT_1 = 'animal-monkey-alt-1';
const _ANIMAL_MONKEY_ALT_2 = 'animal-monkey-alt-2';
const _ANIMAL_MONKEY_ALT_3 = 'animal-monkey-alt-3';
const _ANIMAL_OCTOPUS = 'animal-octopus';
const _ANIMAL_OCTOPUS_ALT = 'animal-octopus-alt';
const _ANIMAL_OWL = 'animal-owl';
const _ANIMAL_PANDA = 'animal-panda';
const _ANIMAL_PANDA_ALT = 'animal-panda-alt';
const _ANIMAL_PANTHER = 'animal-panther';
const _ANIMAL_PARROT = 'animal-parrot';
const _ANIMAL_PARROT_LIP = 'animal-parrot-lip';
const _ANIMAL_PAW = 'animal-paw';
const _ANIMAL_PELICAN = 'animal-pelican';
const _ANIMAL_PENGUIN = 'animal-penguin';
const _ANIMAL_PIG = 'animal-pig';
const _ANIMAL_PIG_ALT = 'animal-pig-alt';
const _ANIMAL_PIGEON = 'animal-pigeon';
const _ANIMAL_PIGEON_ALT = 'animal-pigeon-alt';
const _ANIMAL_PIGEONS = 'animal-pigeons';
const _ANIMAL_RABBIT_RUNNING = 'animal-rabbit-running';
const _ANIMAL_RAT_ALT = 'animal-rat-alt';
const _ANIMAL_RHINO = 'animal-rhino';
const _ANIMAL_RHINO_HEAD = 'animal-rhino-head';
const _ANIMAL_ROOSTER = 'animal-rooster';
const _ANIMAL_SEAHORSE = 'animal-seahorse';
const _ANIMAL_SEAL = 'animal-seal';
const _ANIMAL_SHRIMP = 'animal-shrimp';
const _ANIMAL_SNAIL = 'animal-snail';
const _ANIMAL_SNAIL_ALT_1 = 'animal-snail-alt-1';
const _ANIMAL_SNAIL_ALT_2 = 'animal-snail-alt-2';
const _ANIMAL_SNAKE = 'animal-snake';
const _ANIMAL_SQUID = 'animal-squid';
const _ANIMAL_SQUIRREL = 'animal-squirrel';
const _ANIMAL_TIGER = 'animal-tiger';
const _ANIMAL_TIGER_ALT = 'animal-tiger-alt';
const _ANIMAL_TURTLE = 'animal-turtle';
const _ANIMAL_WHALE = 'animal-whale';
const _ANIMAL_WOODPECKER = 'animal-woodpecker';
const _ANIMAL_ZEBRA = 'animal-zebra';
const _BRAND_ACER = 'brand-acer';
const _BRAND_ADIDAS = 'brand-adidas';
const _BRAND_ADOBE = 'brand-adobe';
const _BRAND_AIR_NEW_ZEALAND = 'brand-air-new-zealand';
const _BRAND_AIRBNB = 'brand-airbnb';
const _BRAND_AIRCELL = 'brand-aircell';
const _BRAND_AIRTEL = 'brand-airtel';
const _BRAND_ALCATEL = 'brand-alcatel';
const _BRAND_ALIBABA = 'brand-alibaba';
const _BRAND_ALIEXPRESS = 'brand-aliexpress';
const _BRAND_ALIPAY = 'brand-alipay';
const _BRAND_AMAZON = 'brand-amazon';
const _BRAND_AMD = 'brand-amd';
const _BRAND_AMERICAN_AIRLINES = 'brand-american-airlines';
const _BRAND_ANDROID = 'brand-android';
const _BRAND_ANDROID_ROBOT = 'brand-android-robot';
const _BRAND_AOL = 'brand-aol';
const _BRAND_APPLE = 'brand-apple';
const _BRAND_APPSTORE = 'brand-appstore';
const _BRAND_ASUS = 'brand-asus';
const _BRAND_ATI = 'brand-ati';
const _BRAND_ATT = 'brand-att';
const _BRAND_AUDI = 'brand-audi';
const _BRAND_AXIATA = 'brand-axiata';
const _BRAND_BADA = 'brand-bada';
const _BRAND_BBC = 'brand-bbc';
const _BRAND_BING = 'brand-bing';
const _BRAND_BLACKBERRY = 'brand-blackberry';
const _BRAND_BMW = 'brand-bmw';
const _BRAND_BOX = 'brand-box';
const _BRAND_BURGER_KING = 'brand-burger-king';
const _BRAND_BUSINESS_INSIDER = 'brand-business-insider';
const _BRAND_BUZZFEED = 'brand-buzzfeed';
const _BRAND_CANNON = 'brand-cannon';
const _BRAND_CASIO = 'brand-casio';
const _BRAND_CHINA_MOBILE = 'brand-china-mobile';
const _BRAND_CHINA_TELECOM = 'brand-china-telecom';
const _BRAND_CHINA_UNICOM = 'brand-china-unicom';
const _BRAND_CISCO = 'brand-cisco';
const _BRAND_CITIBANK = 'brand-citibank';
const _BRAND_CNET = 'brand-cnet';
const _BRAND_CNN = 'brand-cnn';
const _BRAND_COCAL_COLA = 'brand-cocal-cola';
const _BRAND_COMPAQ = 'brand-compaq';
const _BRAND_COPY = 'brand-copy';
const _BRAND_DEBIAN = 'brand-debian';
const _BRAND_DELICIOUS = 'brand-delicious';
const _BRAND_DELL = 'brand-dell';
const _BRAND_DESIGNBUMP = 'brand-designbump';
const _BRAND_DESIGNFLOAT = 'brand-designfloat';
const _BRAND_DISNEY = 'brand-disney';
const _BRAND_DODGE = 'brand-dodge';
const _BRAND_DOVE = 'brand-dove';
const _BRAND_EBAY = 'brand-ebay';
const _BRAND_ELEVEN = 'brand-eleven';
const _BRAND_EMIRATES = 'brand-emirates';
const _BRAND_ESPN = 'brand-espn';
const _BRAND_ETIHAD_AIRWAYS = 'brand-etihad-airways';
const _BRAND_ETISALAT = 'brand-etisalat';
const _BRAND_ETSY = 'brand-etsy';
const _BRAND_FACEBOOK = 'brand-facebook';
const _BRAND_FASTRACK = 'brand-fastrack';
const _BRAND_FEDEX = 'brand-fedex';
const _BRAND_FERRARI = 'brand-ferrari';
const _BRAND_FITBIT = 'brand-fitbit';
const _BRAND_FLIKR = 'brand-flikr';
const _BRAND_FORBES = 'brand-forbes';
const _BRAND_FOURSQUARE = 'brand-foursquare';
const _BRAND_FOX = 'brand-fox';
const _BRAND_FOXCONN = 'brand-foxconn';
const _BRAND_FUJITSU = 'brand-fujitsu';
const _BRAND_GENERAL_ELECTRIC = 'brand-general-electric';
const _BRAND_GILLETTE = 'brand-gillette';
const _BRAND_GIZMODO = 'brand-gizmodo';
const _BRAND_GNOME = 'brand-gnome';
const _BRAND_GOOGLE = 'brand-google';
const _BRAND_GOPRO = 'brand-gopro';
const _BRAND_GUCCI = 'brand-gucci';
const _BRAND_HALLMARK = 'brand-hallmark';
const _BRAND_HI5 = 'brand-hi5';
const _BRAND_HONDA = 'brand-honda';
const _BRAND_HP = 'brand-hp';
const _BRAND_HSBC = 'brand-hsbc';
const _BRAND_HTC = 'brand-htc';
const _BRAND_HUAWEI = 'brand-huawei';
const _BRAND_HULU = 'brand-hulu';
const _BRAND_HYUNDAI = 'brand-hyundai';
const _BRAND_IBM = 'brand-ibm';
const _BRAND_ICOFONT = 'brand-icofont';
const _BRAND_ICQ = 'brand-icq';
const _BRAND_IKEA = 'brand-ikea';
const _BRAND_IMDB = 'brand-imdb';
const _BRAND_INDIEGOGO = 'brand-indiegogo';
const _BRAND_INTEL = 'brand-intel';
const _BRAND_IPAIR = 'brand-ipair';
const _BRAND_JAGUAR = 'brand-jaguar';
const _BRAND_JAVA = 'brand-java';
const _BRAND_JOOMLA = 'brand-joomla';
const _BRAND_JOOMSHAPER = 'brand-joomshaper';
const _BRAND_KICKSTARTER = 'brand-kickstarter';
const _BRAND_KIK = 'brand-kik';
const _BRAND_LASTFM = 'brand-lastfm';
const _BRAND_LEGO = 'brand-lego';
const _BRAND_LENOVO = 'brand-lenovo';
const _BRAND_LEVIS = 'brand-levis';
const _BRAND_LEXUS = 'brand-lexus';
const _BRAND_LG = 'brand-lg';
const _BRAND_LIFE_HACKER = 'brand-life-hacker';
const _BRAND_LINE_MESSENGER = 'brand-line-messenger';
const _BRAND_LINKEDIN = 'brand-linkedin';
const _BRAND_LINUX = 'brand-linux';
const _BRAND_LINUX_MINT = 'brand-linux-mint';
const _BRAND_LIONIX = 'brand-lionix';
const _BRAND_LIVE_MESSENGER = 'brand-live-messenger';
const _BRAND_LOREAL = 'brand-loreal';
const _BRAND_LOUIS_VUITTON = 'brand-louis-vuitton';
const _BRAND_MAC_OS = 'brand-mac-os';
const _BRAND_MARVEL_APP = 'brand-marvel-app';
const _BRAND_MASHABLE = 'brand-mashable';
const _BRAND_MAZDA = 'brand-mazda';
const _BRAND_MCDONALS = 'brand-mcdonals';
const _BRAND_MERCEDES = 'brand-mercedes';
const _BRAND_MICROMAX = 'brand-micromax';
const _BRAND_MICROSOFT = 'brand-microsoft';
const _BRAND_MOBILEME = 'brand-mobileme';
const _BRAND_MOBILY = 'brand-mobily';
const _BRAND_MOTOROLA = 'brand-motorola';
const _BRAND_MSI = 'brand-msi';
const _BRAND_MTS = 'brand-mts';
const _BRAND_MYSPACE = 'brand-myspace';
const _BRAND_MYTV = 'brand-mytv';
const _BRAND_NASA = 'brand-nasa';
const _BRAND_NATGEO = 'brand-natgeo';
const _BRAND_NBC = 'brand-nbc';
const _BRAND_NESCAFE = 'brand-nescafe';
const _BRAND_NESTLE = 'brand-nestle';
const _BRAND_NETFLIX = 'brand-netflix';
const _BRAND_NEXUS = 'brand-nexus';
const _BRAND_NIKE = 'brand-nike';
const _BRAND_NOKIA = 'brand-nokia';
const _BRAND_NVIDIA = 'brand-nvidia';
const _BRAND_OMEGA = 'brand-omega';
const _BRAND_OPENSUSE = 'brand-opensuse';
const _BRAND_ORACLE = 'brand-oracle';
const _BRAND_PANASONIC = 'brand-panasonic';
const _BRAND_PAYPAL = 'brand-paypal';
const _BRAND_PEPSI = 'brand-pepsi';
const _BRAND_PHILIPS = 'brand-philips';
const _BRAND_PIZZA_HUT = 'brand-pizza-hut';
const _BRAND_PLAYSTATION = 'brand-playstation';
const _BRAND_PUMA = 'brand-puma';
const _BRAND_QATAR_AIR = 'brand-qatar-air';
const _BRAND_QVC = 'brand-qvc';
const _BRAND_READERNAUT = 'brand-readernaut';
const _BRAND_REDBULL = 'brand-redbull';
const _BRAND_REEBOK = 'brand-reebok';
const _BRAND_REUTERS = 'brand-reuters';
const _BRAND_SAMSUNG = 'brand-samsung';
const _BRAND_SAP = 'brand-sap';
const _BRAND_SAUDIA_AIRLINES = 'brand-saudia-airlines';
const _BRAND_SCRIBD = 'brand-scribd';
const _BRAND_SHELL = 'brand-shell';
const _BRAND_SIEMENS = 'brand-siemens';
const _BRAND_SK_TELECOM = 'brand-sk-telecom';
const _BRAND_SLIDESHARE = 'brand-slideshare';
const _BRAND_SMASHING_MAGAZINE = 'brand-smashing-magazine';
const _BRAND_SNAPCHAT = 'brand-snapchat';
const _BRAND_SONY = 'brand-sony';
const _BRAND_SONY_ERICSSON = 'brand-sony-ericsson';
const _BRAND_SOUNDCLOUD = 'brand-soundcloud';
const _BRAND_SPRINT = 'brand-sprint';
const _BRAND_SQUIDOO = 'brand-squidoo';
const _BRAND_STARBUCKS = 'brand-starbucks';
const _BRAND_STC = 'brand-stc';
const _BRAND_STEAM = 'brand-steam';
const _BRAND_SUZUKI = 'brand-suzuki';
const _BRAND_SYMBIAN = 'brand-symbian';
const _BRAND_T_MOBILE = 'brand-t-mobile';
const _BRAND_TANGO = 'brand-tango';
const _BRAND_TARGET = 'brand-target';
const _BRAND_TATA_INDICOM = 'brand-tata-indicom';
const _BRAND_TECHCRUNCH = 'brand-techcrunch';
const _BRAND_TELENOR = 'brand-telenor';
const _BRAND_TELIASONERA = 'brand-teliasonera';
const _BRAND_TESLA = 'brand-tesla';
const _BRAND_THE_VERGE = 'brand-the-verge';
const _BRAND_THENEXTWEB = 'brand-thenextweb';
const _BRAND_TOSHIBA = 'brand-toshiba';
const _BRAND_TOYOTA = 'brand-toyota';
const _BRAND_TRIBENET = 'brand-tribenet';
const _BRAND_UBUNTU = 'brand-ubuntu';
const _BRAND_UNILEVER = 'brand-unilever';
const _BRAND_VAIO = 'brand-vaio';
const _BRAND_VERIZON = 'brand-verizon';
const _BRAND_VIBER = 'brand-viber';
const _BRAND_VODAFONE = 'brand-vodafone';
const _BRAND_VOLKSWAGEN = 'brand-volkswagen';
const _BRAND_WALMART = 'brand-walmart';
const _BRAND_WARNERBROS = 'brand-warnerbros';
const _BRAND_WHATSAPP = 'brand-whatsapp';
const _BRAND_WIKIPEDIA = 'brand-wikipedia';
const _BRAND_WINDOWS = 'brand-windows';
const _BRAND_WIRE = 'brand-wire';
const _BRAND_WORDPRESS = 'brand-wordpress';
const _BRAND_XIAOMI = 'brand-xiaomi';
const _BRAND_YAHOOBUZZ = 'brand-yahoobuzz';
const _BRAND_YAMAHA = 'brand-yamaha';
const _BRAND_YOUTUBE = 'brand-youtube';
const _BRAND_ZAIN = 'brand-zain';
const _SOCIAL_ENVATO = 'social-envato';
const _BANK_ALT = 'bank-alt';
const _BARCODE = 'barcode';
const _BASKET = 'basket';
const _BILL_ALT = 'bill-alt';
const _BILLBOARD = 'billboard';
const _BRIEFCASE_ALT_1 = 'briefcase-alt-1';
const _BRIEFCASE_ALT_2 = 'briefcase-alt-2';
const _BUILDING_ALT = 'building-alt';
const _BUSINESSMAN = 'businessman';
const _BUSINESSWOMAN = 'businesswoman';
const _CART_ALT = 'cart-alt';
const _CHAIR = 'chair';
const _CLIP = 'clip';
const _COINS = 'coins';
const _COMPANY = 'company';
const _CONTACT_ADD = 'contact-add';
const _DEAL = 'deal';
const _FILES = 'files';
const _GROWTH = 'growth';
const _ID_CARD = 'id-card';
const _IDEA = 'idea';
const _LIST = 'list';
const _MEETING_ADD = 'meeting-add';
const _MONEY_BAG = 'money-bag';
const _PEOPLE = 'people';
const _PIE_CHART = 'pie-chart';
const _PRESENTATION_ALT = 'presentation-alt';
const _STAMP = 'stamp';
const _STOCK_MOBILE = 'stock-mobile';
const _SUPPORT = 'support';
const _TASKS_ALT = 'tasks-alt';
const _WHEEL = 'wheel';
const _CHART_ARROWS_AXIS = 'chart-arrows-axis';
const _CHART_BAR_GRAPH = 'chart-bar-graph';
const _CHART_FLOW = 'chart-flow';
const _CHART_FLOW_ALT_1 = 'chart-flow-alt-1';
const _CHART_FLOW_ALT_2 = 'chart-flow-alt-2';
const _CHART_HISTOGRAM = 'chart-histogram';
const _CHART_HISTOGRAM_ALT = 'chart-histogram-alt';
const _CHART_LINE = 'chart-line';
const _CHART_LINE_ALT = 'chart-line-alt';
const _CHART_PIE = 'chart-pie';
const _CHART_PIE_ALT = 'chart-pie-alt';
const _CHART_RADAR_GRAPH = 'chart-radar-graph';
const _ARCHITECTURE = 'architecture';
const _ARCHITECTURE_ALT = 'architecture-alt';
const _BARRICADE = 'barricade';
const _BRICKS = 'bricks';
const _CALCULATIONS = 'calculations';
const _CEMENT_MIX = 'cement-mix';
const _CEMENT_MIXER = 'cement-mixer';
const _DANGER_ZONE = 'danger-zone';
const _DRILL = 'drill';
const _ECO_ENERGY = 'eco-energy';
const _ECO_ENVIRONMEN = 'eco-environmen';
const _ENERGY_AIR = 'energy-air';
const _ENERGY_OIL = 'energy-oil';
const _ENERGY_SAVINGS = 'energy-savings';
const _ENERGY_SOLAR = 'energy-solar';
const _ENERGY_WATER = 'energy-water';
const _ENGINEER = 'engineer';
const _FIRE_EXTINGUISHER_ALT = 'fire-extinguisher-alt';
const _FIX_TOOLS = 'fix-tools';
const _GLUE_OIL = 'glue-oil';
const _HAMMER_ALT = 'hammer-alt';
const _HELP_ROBOT = 'help-robot';
const _INDUSTRIES = 'industries';
const _INDUSTRIES_ALT_1 = 'industries-alt-1';
const _INDUSTRIES_ALT_2 = 'industries-alt-2';
const _INDUSTRIES_ALT_3 = 'industries-alt-3';
const _INDUSTRIES_ALT_4 = 'industries-alt-4';
const _INDUSTRIES_ALT_5 = 'industries-alt-5';
const _LABOUR = 'labour';
const _MINING = 'mining';
const _PAINT_BRUSH = 'paint-brush';
const _POLLUTION = 'pollution';
const _POWER_ZONE = 'power-zone';
const _RADIO_ACTIVE = 'radio-active';
const _RECYCLE_ALT = 'recycle-alt';
const _RECYCLING_MAN = 'recycling-man';
const _SAFETY_HAT = 'safety-hat';
const _SAFETY_HAT_LIGHT = 'safety-hat-light';
const _SAW = 'saw';
const _SCREW_DRIVER = 'screw-driver';
const _SETTINGS_ALT = 'settings-alt';
const _TOOLS_ALT_1 = 'tools-alt-1';
const _TOOLS_ALT_2 = 'tools-alt-2';
const _TOOLS_BAG = 'tools-bag';
const _TROLLEY = 'trolley';
const _TROWEL = 'trowel';
const _UNDER_CONSTRUCTION = 'under-construction';
const _UNDER_CONSTRUCTION_ALT = 'under-construction-alt';
const _VEHICLE_CEMENT = 'vehicle-cement';
const _VEHICLE_CRANE = 'vehicle-crane';
const _VEHICLE_DELIVERY_VAN = 'vehicle-delivery-van';
const _VEHICLE_DOZER = 'vehicle-dozer';
const _VEHICLE_EXCAVATOR = 'vehicle-excavator';
const _VEHICLE_TRUCKTOR = 'vehicle-trucktor';
const _VEHICLE_WRECKING = 'vehicle-wrecking';
const _WORKER = 'worker';
const _WORKER_GROUP = 'worker-group';
const _WRENCH = 'wrench';
const _CUR_AFGHANI = 'cur-afghani';
const _CUR_AFGHANI_FALSE = 'cur-afghani-false';
const _CUR_AFGHANI_MINUS = 'cur-afghani-minus';
const _CUR_AFGHANI_PLUS = 'cur-afghani-plus';
const _CUR_AFGHANI_TRUE = 'cur-afghani-true';
const _CUR_BAHT = 'cur-baht';
const _CUR_BAHT_FALSE = 'cur-baht-false';
const _CUR_BAHT_MINUS = 'cur-baht-minus';
const _CUR_BAHT_PLUS = 'cur-baht-plus';
const _CUR_BAHT_TRUE = 'cur-baht-true';
const _CUR_BITCOIN = 'cur-bitcoin';
const _CUR_BITCOIN_FALSE = 'cur-bitcoin-false';
const _CUR_BITCOIN_MINUS = 'cur-bitcoin-minus';
const _CUR_BITCOIN_PLUS = 'cur-bitcoin-plus';
const _CUR_BITCOIN_TRUE = 'cur-bitcoin-true';
const _CUR_DOLLAR = 'cur-dollar';
const _CUR_DOLLAR_FLASE = 'cur-dollar-flase';
const _CUR_DOLLAR_MINUS = 'cur-dollar-minus';
const _CUR_DOLLAR_PLUS = 'cur-dollar-plus';
const _CUR_DOLLAR_TRUE = 'cur-dollar-true';
const _CUR_DONG = 'cur-dong';
const _CUR_DONG_FALSE = 'cur-dong-false';
const _CUR_DONG_MINUS = 'cur-dong-minus';
const _CUR_DONG_PLUS = 'cur-dong-plus';
const _CUR_DONG_TRUE = 'cur-dong-true';
const _CUR_EURO = 'cur-euro';
const _CUR_EURO_FALSE = 'cur-euro-false';
const _CUR_EURO_MINUS = 'cur-euro-minus';
const _CUR_EURO_PLUS = 'cur-euro-plus';
const _CUR_EURO_TRUE = 'cur-euro-true';
const _CUR_FRANK = 'cur-frank';
const _CUR_FRANK_FALSE = 'cur-frank-false';
const _CUR_FRANK_MINUS = 'cur-frank-minus';
const _CUR_FRANK_PLUS = 'cur-frank-plus';
const _CUR_FRANK_TRUE = 'cur-frank-true';
const _CUR_HRYVNIA = 'cur-hryvnia';
const _CUR_HRYVNIA_FALSE = 'cur-hryvnia-false';
const _CUR_HRYVNIA_MINUS = 'cur-hryvnia-minus';
const _CUR_HRYVNIA_PLUS = 'cur-hryvnia-plus';
const _CUR_HRYVNIA_TRUE = 'cur-hryvnia-true';
const _CUR_LIRA = 'cur-lira';
const _CUR_LIRA_FALSE = 'cur-lira-false';
const _CUR_LIRA_MINUS = 'cur-lira-minus';
const _CUR_LIRA_PLUS = 'cur-lira-plus';
const _CUR_LIRA_TRUE = 'cur-lira-true';
const _CUR_PESETA = 'cur-peseta';
const _CUR_PESETA_FALSE = 'cur-peseta-false';
const _CUR_PESETA_MINUS = 'cur-peseta-minus';
const _CUR_PESETA_PLUS = 'cur-peseta-plus';
const _CUR_PESETA_TRUE = 'cur-peseta-true';
const _CUR_PESO = 'cur-peso';
const _CUR_PESO_FALSE = 'cur-peso-false';
const _CUR_PESO_MINUS = 'cur-peso-minus';
const _CUR_PESO_PLUS = 'cur-peso-plus';
const _CUR_PESO_TRUE = 'cur-peso-true';
const _CUR_POUND = 'cur-pound';
const _CUR_POUND_FALSE = 'cur-pound-false';
const _CUR_POUND_MINUS = 'cur-pound-minus';
const _CUR_POUND_PLUS = 'cur-pound-plus';
const _CUR_POUND_TRUE = 'cur-pound-true';
const _CUR_RENMINBI = 'cur-renminbi';
const _CUR_RENMINBI_FALSE = 'cur-renminbi-false';
const _CUR_RENMINBI_MINUS = 'cur-renminbi-minus';
const _CUR_RENMINBI_PLUS = 'cur-renminbi-plus';
const _CUR_RENMINBI_TRUE = 'cur-renminbi-true';
const _CUR_RIYAL = 'cur-riyal';
const _CUR_RIYAL_FALSE = 'cur-riyal-false';
const _CUR_RIYAL_MINUS = 'cur-riyal-minus';
const _CUR_RIYAL_PLUS = 'cur-riyal-plus';
const _CUR_RIYAL_TRUE = 'cur-riyal-true';
const _CUR_ROUBLE = 'cur-rouble';
const _CUR_ROUBLE_FALSE = 'cur-rouble-false';
const _CUR_ROUBLE_MINUS = 'cur-rouble-minus';
const _CUR_ROUBLE_PLUS = 'cur-rouble-plus';
const _CUR_ROUBLE_TRUE = 'cur-rouble-true';
const _CUR_RUPEE = 'cur-rupee';
const _CUR_RUPEE_FALSE = 'cur-rupee-false';
const _CUR_RUPEE_MINUS = 'cur-rupee-minus';
const _CUR_RUPEE_PLUS = 'cur-rupee-plus';
const _CUR_RUPEE_TRUE = 'cur-rupee-true';
const _CUR_TAKA = 'cur-taka';
const _CUR_TAKA_FALSE = 'cur-taka-false';
const _CUR_TAKA_MINUS = 'cur-taka-minus';
const _CUR_TAKA_PLUS = 'cur-taka-plus';
const _CUR_TAKA_TRUE = 'cur-taka-true';
const _CUR_TURKISH_LIRA = 'cur-turkish-lira';
const _CUR_TURKISH_LIRA_FALSE = 'cur-turkish-lira-false';
const _CUR_TURKISH_LIRA_MINUS = 'cur-turkish-lira-minus';
const _CUR_TURKISH_LIRA_PLUS = 'cur-turkish-lira-plus';
const _CUR_TURKISH_LIRA_TRUE = 'cur-turkish-lira-true';
const _CUR_WON = 'cur-won';
const _CUR_WON_FALSE = 'cur-won-false';
const _CUR_WON_MINUS = 'cur-won-minus';
const _CUR_WON_PLUS = 'cur-won-plus';
const _CUR_WON_TRUE = 'cur-won-true';
const _CUR_YEN = 'cur-yen';
const _CUR_YEN_FALSE = 'cur-yen-false';
const _CUR_YEN_MINUS = 'cur-yen-minus';
const _CUR_YEN_PLUS = 'cur-yen-plus';
const _CUR_YEN_TRUE = 'cur-yen-true';
const _ANDROID_NEXUS = 'android-nexus';
const _ANDROID_TABLET = 'android-tablet';
const _APPLE_WATCH = 'apple-watch';
const _DRWAING_TABLET = 'drwaing-tablet';
const _EARPHONE = 'earphone';
const _FLASH_DRIVE = 'flash-drive';
const _GAME_CONTROL = 'game-control';
const _HEADPHONE_ALT = 'headphone-alt';
const _HTC_ONE = 'htc-one';
const _IMAC = 'imac';
const _IPAD_TOUCH = 'ipad-touch';
const _IPHONE = 'iphone';
const _IPOD_NANO = 'ipod-nano';
const _IPOD_TOUCH = 'ipod-touch';
const _KEYBOARD_ALT = 'keyboard-alt';
const _KEYBOARD_WIRELESS = 'keyboard-wireless';
const _LAPTOP_ALT = 'laptop-alt';
const _MACBOOK = 'macbook';
const _MAGIC_MOUSE = 'magic-mouse';
const _MICROPHONE_ALT = 'microphone-alt';
const _MONITOR = 'monitor';
const _MOUSE = 'mouse';
const _NINTENDO = 'nintendo';
const _PLAYSTATION = 'playstation';
const _PSVITA = 'psvita';
const _RADIO_MIC = 'radio-mic';
const _REFRIGERATOR = 'refrigerator';
const _SAMSUNG_GALAXY = 'samsung-galaxy';
const _SURFACE_TABLET = 'surface-tablet';
const _WASHING_MACHINE = 'washing-machine';
const _WIFI_ROUTER = 'wifi-router';
const _WII_U = 'wii-u';
const _WINDOWS_LUMIA = 'windows-lumia';
const _WIRELESS_MOUSE = 'wireless-mouse';
const _XBOX_360 = 'xbox-360';
const _ARROW_DOWN = 'arrow-down';
const _ARROW_LEFT = 'arrow-left';
const _ARROW_RIGHT = 'arrow-right';
const _ARROW_UP = 'arrow-up';
const _BLOCK_DOWN = 'block-down';
const _BLOCK_LEFT = 'block-left';
const _BLOCK_RIGHT = 'block-right';
const _BLOCK_UP = 'block-up';
const _BUBBLE_DOWN = 'bubble-down';
const _BUBBLE_LEFT = 'bubble-left';
const _BUBBLE_RIGHT = 'bubble-right';
const _BUBBLE_UP = 'bubble-up';
const _CARET_DOWN = 'caret-down';
const _CARET_LEFT = 'caret-left';
const _CARET_RIGHT = 'caret-right';
const _CARET_UP = 'caret-up';
const _CIRCLED_DOWN = 'circled-down';
const _CIRCLED_LEFT = 'circled-left';
const _CIRCLED_RIGHT = 'circled-right';
const _CIRCLED_UP = 'circled-up';
const _COLLAPSE = 'collapse';
const _CURSOR_DRAG = 'cursor-drag';
const _CURVED_DOUBLE_LEFT = 'curved-double-left';
const _CURVED_DOUBLE_RIGHT = 'curved-double-right';
const _CURVED_DOWN = 'curved-down';
const _CURVED_LEFT = 'curved-left';
const _CURVED_RIGHT = 'curved-right';
const _CURVED_UP = 'curved-up';
const _DOTTED_DOWN = 'dotted-down';
const _DOTTED_LEFT = 'dotted-left';
const _DOTTED_RIGHT = 'dotted-right';
const _DOTTED_UP = 'dotted-up';
const _DOUBLE_LEFT = 'double-left';
const _DOUBLE_RIGHT = 'double-right';
const _DRAG = 'drag';
const _DRAG1 = 'drag1';
const _DRAG2 = 'drag2';
const _DRAG3 = 'drag3';
const _EXPAND_ALT = 'expand-alt';
const _HAND_DOWN = 'hand-down';
const _HAND_DRAG = 'hand-drag';
const _HAND_DRAG1 = 'hand-drag1';
const _HAND_DRAG2 = 'hand-drag2';
const _HAND_DRAWN_ALT_DOWN = 'hand-drawn-alt-down';
const _HAND_DRAWN_ALT_LEFT = 'hand-drawn-alt-left';
const _HAND_DRAWN_ALT_RIGHT = 'hand-drawn-alt-right';
const _HAND_DRAWN_ALT_UP = 'hand-drawn-alt-up';
const _HAND_DRAWN_DOWN = 'hand-drawn-down';
const _HAND_DRAWN_LEFT = 'hand-drawn-left';
const _HAND_DRAWN_RIGHT = 'hand-drawn-right';
const _HAND_DRAWN_UP = 'hand-drawn-up';
const _HAND_LEFT = 'hand-left';
const _HAND_RIGHT = 'hand-right';
const _HAND_UP = 'hand-up';
const _LINE_BLOCK_DOWN = 'line-block-down';
const _LINE_BLOCK_LEFT = 'line-block-left';
const _LINE_BLOCK_RIGHT = 'line-block-right';
const _LINE_BLOCK_UP = 'line-block-up';
const _LONG_ARROW_DOWN = 'long-arrow-down';
const _LONG_ARROW_LEFT = 'long-arrow-left';
const _LONG_ARROW_RIGHT = 'long-arrow-right';
const _LONG_ARROW_UP = 'long-arrow-up';
const _ROUNDED_COLLAPSE = 'rounded-collapse';
const _ROUNDED_DOUBLE_LEFT = 'rounded-double-left';
const _ROUNDED_DOUBLE_RIGHT = 'rounded-double-right';
const _ROUNDED_DOWN = 'rounded-down';
const _ROUNDED_EXPAND = 'rounded-expand';
const _ROUNDED_LEFT = 'rounded-left';
const _ROUNDED_LEFT_DOWN = 'rounded-left-down';
const _ROUNDED_LEFT_UP = 'rounded-left-up';
const _ROUNDED_RIGHT = 'rounded-right';
const _ROUNDED_RIGHT_DOWN = 'rounded-right-down';
const _ROUNDED_RIGHT_UP = 'rounded-right-up';
const _ROUNDED_UP = 'rounded-up';
const _SCROLL_BUBBLE_DOWN = 'scroll-bubble-down';
const _SCROLL_BUBBLE_LEFT = 'scroll-bubble-left';
const _SCROLL_BUBBLE_RIGHT = 'scroll-bubble-right';
const _SCROLL_BUBBLE_UP = 'scroll-bubble-up';
const _SCROLL_DOUBLE_DOWN = 'scroll-double-down';
const _SCROLL_DOUBLE_LEFT = 'scroll-double-left';
const _SCROLL_DOUBLE_RIGHT = 'scroll-double-right';
const _SCROLL_DOUBLE_UP = 'scroll-double-up';
const _SCROLL_DOWN = 'scroll-down';
const _SCROLL_LEFT = 'scroll-left';
const _SCROLL_LONG_DOWN = 'scroll-long-down';
const _SCROLL_LONG_LEFT = 'scroll-long-left';
const _SCROLL_LONG_RIGHT = 'scroll-long-right';
const _SCROLL_LONG_UP = 'scroll-long-up';
const _SCROLL_RIGHT = 'scroll-right';
const _SCROLL_UP = 'scroll-up';
const _SIMPLE_DOWN = 'simple-down';
const _SIMPLE_LEFT = 'simple-left';
const _SIMPLE_LEFT_DOWN = 'simple-left-down';
const _SIMPLE_LEFT_UP = 'simple-left-up';
const _SIMPLE_RIGHT = 'simple-right';
const _SIMPLE_RIGHT_DOWN = 'simple-right-down';
const _SIMPLE_RIGHT_UP = 'simple-right-up';
const _SIMPLE_UP = 'simple-up';
const _SQUARE_DOWN = 'square-down';
const _SQUARE_LEFT = 'square-left';
const _SQUARE_RIGHT = 'square-right';
const _SQUARE_UP = 'square-up';
const _STYLISH_DOWN = 'stylish-down';
const _STYLISH_LEFT = 'stylish-left';
const _STYLISH_RIGHT = 'stylish-right';
const _STYLISH_UP = 'stylish-up';
const _SWOOSH_DOWN = 'swoosh-down';
const _SWOOSH_LEFT = 'swoosh-left';
const _SWOOSH_RIGHT = 'swoosh-right';
const _SWOOSH_UP = 'swoosh-up';
const _THIN_DOUBLE_LEFT = 'thin-double-left';
const _THIN_DOUBLE_RIGHT = 'thin-double-right';
const _THIN_DOWN = 'thin-down';
const _THIN_LEFT = 'thin-left';
const _THIN_RIGHT = 'thin-right';
const _THIN_UP = 'thin-up';
const _ATOM = 'atom';
const _AWARD = 'award';
const _BELL_ALT = 'bell-alt';
const _BOOK_ALT = 'book-alt';
const _BRAINSTORMING = 'brainstorming';
const _CERTIFICATE_ALT_1 = 'certificate-alt-1';
const _CERTIFICATE_ALT_2 = 'certificate-alt-2';
const _DNA_ALT_2 = 'dna-alt-2';
const _EDUCATION = 'education';
const _ELECTRON = 'electron';
const _FOUNTAIN_PEN = 'fountain-pen';
const _GLOBE_ALT = 'globe-alt';
const _GRADUATE_ALT = 'graduate-alt';
const _GROUP_STUDENTS = 'group-students';
const _HAT = 'hat';
const _HAT_ALT = 'hat-alt';
const _INSTRUMENT = 'instrument';
const _LAMP_LIGHT = 'lamp-light';
const _MICROSCOPE_ALT = 'microscope-alt';
const _PAPER = 'paper';
const _PEN_ALT_4 = 'pen-alt-4';
const _PEN_NIB = 'pen-nib';
const _PENCIL_ALT_5 = 'pencil-alt-5';
const _QUILL_PEN = 'quill-pen';
const _READ_BOOK = 'read-book';
const _READ_BOOK_ALT = 'read-book-alt';
const _SCHOOL_BAG = 'school-bag';
const _SCHOOL_BUS = 'school-bus';
const _STUDENT = 'student';
const _STUDENT_ALT = 'student-alt';
const _TEACHER = 'teacher';
const _TEST_BULB = 'test-bulb';
const _TEST_TUBE_ALT = 'test-tube-alt';
const _UNIVERSITY = 'university';
const _EMO_ANGRY = 'emo-angry';
const _EMO_ASTONISHED = 'emo-astonished';
const _EMO_CONFOUNDED = 'emo-confounded';
const _EMO_CONFUSED = 'emo-confused';
const _EMO_CRYING = 'emo-crying';
const _EMO_DIZZY = 'emo-dizzy';
const _EMO_EXPRESSIONLESS = 'emo-expressionless';
const _EMO_HEART_EYES = 'emo-heart-eyes';
const _EMO_LAUGHING = 'emo-laughing';
const _EMO_NERD_SMILE = 'emo-nerd-smile';
const _EMO_OPEN_MOUTH = 'emo-open-mouth';
const _EMO_RAGE = 'emo-rage';
const _EMO_ROLLING_EYES = 'emo-rolling-eyes';
const _EMO_SAD = 'emo-sad';
const _EMO_SIMPLE_SMILE = 'emo-simple-smile';
const _EMO_SLIGHTLY_SMILE = 'emo-slightly-smile';
const _EMO_SMIRK = 'emo-smirk';
const _EMO_STUCK_OUT_TONGUE = 'emo-stuck-out-tongue';
const _EMO_WINK_SMILE = 'emo-wink-smile';
const _EMO_WORRIED = 'emo-worried';
const _FILE_AUDIO = 'file-audio';
const _FILE_AVI_MP4 = 'file-avi-mp4';
const _FILE_BMP = 'file-bmp';
const _FILE_CODE = 'file-code';
const _FILE_CSS = 'file-css';
const _FILE_DOCUMENT = 'file-document';
const _FILE_EPS = 'file-eps';
const _FILE_EXCEL = 'file-excel';
const _FILE_EXE = 'file-exe';
const _FILE_FILE = 'file-file';
const _FILE_FLV = 'file-flv';
const _FILE_GIF = 'file-gif';
const _FILE_HTML5 = 'file-html5';
const _FILE_IMAGE = 'file-image';
const _FILE_ISO = 'file-iso';
const _FILE_JAVA = 'file-java';
const _FILE_JAVASCRIPT = 'file-javascript';
const _FILE_JPG = 'file-jpg';
const _FILE_MIDI = 'file-midi';
const _FILE_MOV = 'file-mov';
const _FILE_MP3 = 'file-mp3';
const _FILE_PDF = 'file-pdf';
const _FILE_PHP = 'file-php';
const _FILE_PNG = 'file-png';
const _FILE_POWERPOINT = 'file-powerpoint';
const _FILE_PRESENTATION = 'file-presentation';
const _FILE_PSB = 'file-psb';
const _FILE_PSD = 'file-psd';
const _FILE_PYTHON = 'file-python';
const _FILE_RUBY = 'file-ruby';
const _FILE_SPREADSHEET = 'file-spreadsheet';
const _FILE_SQL = 'file-sql';
const _FILE_SVG = 'file-svg';
const _FILE_TEXT = 'file-text';
const _FILE_TIFF = 'file-tiff';
const _FILE_VIDEO = 'file-video';
const _FILE_WAVE = 'file-wave';
const _FILE_WMV = 'file-wmv';
const _FILE_WORD = 'file-word';
const _FILE_ZIP = 'file-zip';
const _APPLE = 'apple';
const _ARABIAN_COFFEE = 'arabian-coffee';
const _ARTICHOKE = 'artichoke';
const _ASPARAGUS = 'asparagus';
const _AVOCADO = 'avocado';
const _BABY_FOOD = 'baby-food';
const _BANANA = 'banana';
const _BBQ = 'bbq';
const _BEANS = 'beans';
const _BEER = 'beer';
const _BELL_PEPPER_CAPSICUM = 'bell-pepper-capsicum';
const _BIRTHDAY_CAKE = 'birthday-cake';
const _BREAD = 'bread';
const _BROCCOLI = 'broccoli';
const _BURGER = 'burger';
const _CABBAGE = 'cabbage';
const _CARROT = 'carrot';
const _CAULI_FLOWER = 'cauli-flower';
const _CHEESE = 'cheese';
const _CHEF = 'chef';
const _CHERRY = 'cherry';
const _CHICKEN = 'chicken';
const _CHICKEN_FRY = 'chicken-fry';
const _COCKTAIL = 'cocktail';
const _COCONUT = 'coconut';
const _COFFEE_ALT = 'coffee-alt';
const _COFFEE_MUG = 'coffee-mug';
const _COFFEE_POT = 'coffee-pot';
const _COLA = 'cola';
const _CORN = 'corn';
const _CROISSANT = 'croissant';
const _CROP_PLANT = 'crop-plant';
const _CUCUMBER = 'cucumber';
const _CUP_CAKE = 'cup-cake';
const _DINING_TABLE = 'dining-table';
const _DONUT = 'donut';
const _EGG_PLANT = 'egg-plant';
const _EGG_POACHED = 'egg-poached';
const _FARMER = 'farmer';
const _FARMER1 = 'farmer1';
const _FAST_FOOD = 'fast-food';
const _FISH = 'fish';
const _FOOD_BASKET = 'food-basket';
const _FOOD_CART = 'food-cart';
const _FORK_AND_KNIFE = 'fork-and-knife';
const _FRENCH_FRIES = 'french-fries';
const _FRESH_JUICE = 'fresh-juice';
const _FRUITS = 'fruits';
const _GRAPES = 'grapes';
const _HONEY = 'honey';
const _HOT_DOG = 'hot-dog';
const _HOTEL_ALT = 'hotel-alt';
const _ICE_CREAM = 'ice-cream';
const _ICE_CREAM_ALT = 'ice-cream-alt';
const _KETCHUP = 'ketchup';
const _KIWI = 'kiwi';
const _LAYERED_CAKE = 'layered-cake';
const _LEMON_ALT = 'lemon-alt';
const _LOBSTER = 'lobster';
const _MANGO = 'mango';
const _MILK = 'milk';
const _MUSHROOM = 'mushroom';
const _NOODLES = 'noodles';
const _ONION = 'onion';
const _ORANGE = 'orange';
const _PEAR = 'pear';
const _PEAS = 'peas';
const _PEPPER = 'pepper';
const _PIE_ALT = 'pie-alt';
const _PINEAPPLE = 'pineapple';
const _PIZZA = 'pizza';
const _PIZZA_SLICE = 'pizza-slice';
const _PLANT = 'plant';
const _POPCORN = 'popcorn';
const _POTATO = 'potato';
const _PUMPKIN = 'pumpkin';
const _RADDISH = 'raddish';
const _RESTAURANT = 'restaurant';
const _RESTAURANT_MENU = 'restaurant-menu';
const _SALT_AND_PEPPER = 'salt-and-pepper';
const _SANDWICH = 'sandwich';
const _SAUSAGE = 'sausage';
const _SHRIMP = 'shrimp';
const _SOF_DRINKS = 'sof-drinks';
const _SOUP_BOWL = 'soup-bowl';
const _SPOON_AND_FORK = 'spoon-and-fork';
const _STEAK = 'steak';
const _STRAWBERRY = 'strawberry';
const _SUB_SANDWICH = 'sub-sandwich';
const _SUSHI = 'sushi';
const _TACO = 'taco';
const _TEA = 'tea';
const _TEA_POT = 'tea-pot';
const _TOMATO = 'tomato';
const _WAITER_ALT = 'waiter-alt';
const _WATERMELON = 'watermelon';
const _WHEAT = 'wheat';
const _ABC = 'abc';
const _BABY_CLOTH = 'baby-cloth';
const _BABY_MILK_BOTTLE = 'baby-milk-bottle';
const _BABY_TROLLEY = 'baby-trolley';
const _BACK_PACK = 'back-pack';
const _CANDY = 'candy';
const _CYCLING = 'cycling';
const _HOLDING_HANDS = 'holding-hands';
const _INFANT_NIPPLE = 'infant-nipple';
const _KIDS_SCOOTER = 'kids-scooter';
const _SAFETY_PIN = 'safety-pin';
const _TEDDY_BEAR = 'teddy-bear';
const _TOY_BALL = 'toy-ball';
const _TOY_CAT = 'toy-cat';
const _TOY_DUCK = 'toy-duck';
const _TOY_ELEPHANT = 'toy-elephant';
const _TOY_HAND = 'toy-hand';
const _TOY_HORSE = 'toy-horse';
const _TOY_LATTU = 'toy-lattu';
const _TOY_TRAIN = 'toy-train';
const _UNIQUE_IDEA = 'unique-idea';
const _BAG_ALT = 'bag-alt';
const _BURGLAR = 'burglar';
const _CANNON_FIRING = 'cannon-firing';
const _CC_CAMERA = 'cc-camera';
const _COP = 'cop';
const _COP_BADGE = 'cop-badge';
const _COURT = 'court';
const _COURT_HAMMER = 'court-hammer';
const _FINGER_PRINT = 'finger-print';
const _HANDCUFF = 'handcuff';
const _HANDCUFF_ALT = 'handcuff-alt';
const _INVESTIGATION = 'investigation';
const _INVESTIGATOR = 'investigator';
const _JAIL = 'jail';
const _JUDGE = 'judge';
const _LAW = 'law';
const _LAW_ALT_1 = 'law-alt-1';
const _LAW_ALT_2 = 'law-alt-2';
const _LAW_ALT_3 = 'law-alt-3';
const _LAW_BOOK = 'law-book';
const _LAW_DOCUMENT = 'law-document';
const _LAWYER = 'lawyer';
const _LAWYER_ALT_1 = 'lawyer-alt-1';
const _LAWYER_ALT_2 = 'lawyer-alt-2';
const _ORDER = 'order';
const _PISTOL = 'pistol';
const _POLICE = 'police';
const _POLICE_BADGE = 'police-badge';
const _POLICE_CAP = 'police-cap';
const _POLICE_CAR_ALT_1 = 'police-car-alt-1';
const _POLICE_CAR_ALT_2 = 'police-car-alt-2';
const _POLICE_HAT = 'police-hat';
const _POLICE_VAN = 'police-van';
const _PROTECT = 'protect';
const _SCALES = 'scales';
const _THIEF = 'thief';
const _THIEF_ALT = 'thief-alt';
const _ABACUS = 'abacus';
const _ABACUS_ALT = 'abacus-alt';
const _ANGLE = 'angle';