-
Notifications
You must be signed in to change notification settings - Fork 0
/
icons.php
1687 lines (1686 loc) · 64.1 KB
/
icons.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
return [
'123' => '123',
'alarm-fill' => 'alarm-fill',
'alarm' => 'alarm',
'align-bottom' => 'align-bottom',
'align-center' => 'align-center',
'align-end' => 'align-end',
'align-middle' => 'align-middle',
'align-start' => 'align-start',
'align-top' => 'align-top',
'alt' => 'alt',
'app-indicator' => 'app-indicator',
'app' => 'app',
'archive-fill' => 'archive-fill',
'archive' => 'archive',
'arrow-90deg-down' => 'arrow-90deg-down',
'arrow-90deg-left' => 'arrow-90deg-left',
'arrow-90deg-right' => 'arrow-90deg-right',
'arrow-90deg-up' => 'arrow-90deg-up',
'arrow-bar-down' => 'arrow-bar-down',
'arrow-bar-left' => 'arrow-bar-left',
'arrow-bar-right' => 'arrow-bar-right',
'arrow-bar-up' => 'arrow-bar-up',
'arrow-clockwise' => 'arrow-clockwise',
'arrow-counterclockwise' => 'arrow-counterclockwise',
'arrow-down-circle-fill' => 'arrow-down-circle-fill',
'arrow-down-circle' => 'arrow-down-circle',
'arrow-down-left-circle-fill' => 'arrow-down-left-circle-fill',
'arrow-down-left-circle' => 'arrow-down-left-circle',
'arrow-down-left-square-fill' => 'arrow-down-left-square-fill',
'arrow-down-left-square' => 'arrow-down-left-square',
'arrow-down-left' => 'arrow-down-left',
'arrow-down-right-circle-fill' => 'arrow-down-right-circle-fill',
'arrow-down-right-circle' => 'arrow-down-right-circle',
'arrow-down-right-square-fill' => 'arrow-down-right-square-fill',
'arrow-down-right-square' => 'arrow-down-right-square',
'arrow-down-right' => 'arrow-down-right',
'arrow-down-short' => 'arrow-down-short',
'arrow-down-square-fill' => 'arrow-down-square-fill',
'arrow-down-square' => 'arrow-down-square',
'arrow-down-up' => 'arrow-down-up',
'arrow-down' => 'arrow-down',
'arrow-left-circle-fill' => 'arrow-left-circle-fill',
'arrow-left-circle' => 'arrow-left-circle',
'arrow-left-right' => 'arrow-left-right',
'arrow-left-short' => 'arrow-left-short',
'arrow-left-square-fill' => 'arrow-left-square-fill',
'arrow-left-square' => 'arrow-left-square',
'arrow-left' => 'arrow-left',
'arrow-repeat' => 'arrow-repeat',
'arrow-return-left' => 'arrow-return-left',
'arrow-return-right' => 'arrow-return-right',
'arrow-right-circle-fill' => 'arrow-right-circle-fill',
'arrow-right-circle' => 'arrow-right-circle',
'arrow-right-short' => 'arrow-right-short',
'arrow-right-square-fill' => 'arrow-right-square-fill',
'arrow-right-square' => 'arrow-right-square',
'arrow-right' => 'arrow-right',
'arrow-up-circle-fill' => 'arrow-up-circle-fill',
'arrow-up-circle' => 'arrow-up-circle',
'arrow-up-left-circle-fill' => 'arrow-up-left-circle-fill',
'arrow-up-left-circle' => 'arrow-up-left-circle',
'arrow-up-left-square-fill' => 'arrow-up-left-square-fill',
'arrow-up-left-square' => 'arrow-up-left-square',
'arrow-up-left' => 'arrow-up-left',
'arrow-up-right-circle-fill' => 'arrow-up-right-circle-fill',
'arrow-up-right-circle' => 'arrow-up-right-circle',
'arrow-up-right-square-fill' => 'arrow-up-right-square-fill',
'arrow-up-right-square' => 'arrow-up-right-square',
'arrow-up-right' => 'arrow-up-right',
'arrow-up-short' => 'arrow-up-short',
'arrow-up-square-fill' => 'arrow-up-square-fill',
'arrow-up-square' => 'arrow-up-square',
'arrow-up' => 'arrow-up',
'arrows-angle-contract' => 'arrows-angle-contract',
'arrows-angle-expand' => 'arrows-angle-expand',
'arrows-collapse' => 'arrows-collapse',
'arrows-expand' => 'arrows-expand',
'arrows-fullscreen' => 'arrows-fullscreen',
'arrows-move' => 'arrows-move',
'aspect-ratio-fill' => 'aspect-ratio-fill',
'aspect-ratio' => 'aspect-ratio',
'asterisk' => 'asterisk',
'at' => 'at',
'award-fill' => 'award-fill',
'award' => 'award',
'back' => 'back',
'backspace-fill' => 'backspace-fill',
'backspace-reverse-fill' => 'backspace-reverse-fill',
'backspace-reverse' => 'backspace-reverse',
'backspace' => 'backspace',
'badge-3d-fill' => 'badge-3d-fill',
'badge-3d' => 'badge-3d',
'badge-4k-fill' => 'badge-4k-fill',
'badge-4k' => 'badge-4k',
'badge-8k-fill' => 'badge-8k-fill',
'badge-8k' => 'badge-8k',
'badge-ad-fill' => 'badge-ad-fill',
'badge-ad' => 'badge-ad',
'badge-ar-fill' => 'badge-ar-fill',
'badge-ar' => 'badge-ar',
'badge-cc-fill' => 'badge-cc-fill',
'badge-cc' => 'badge-cc',
'badge-hd-fill' => 'badge-hd-fill',
'badge-hd' => 'badge-hd',
'badge-tm-fill' => 'badge-tm-fill',
'badge-tm' => 'badge-tm',
'badge-vo-fill' => 'badge-vo-fill',
'badge-vo' => 'badge-vo',
'badge-vr-fill' => 'badge-vr-fill',
'badge-vr' => 'badge-vr',
'badge-wc-fill' => 'badge-wc-fill',
'badge-wc' => 'badge-wc',
'bag-check-fill' => 'bag-check-fill',
'bag-check' => 'bag-check',
'bag-dash-fill' => 'bag-dash-fill',
'bag-dash' => 'bag-dash',
'bag-fill' => 'bag-fill',
'bag-plus-fill' => 'bag-plus-fill',
'bag-plus' => 'bag-plus',
'bag-x-fill' => 'bag-x-fill',
'bag-x' => 'bag-x',
'bag' => 'bag',
'bar-chart-fill' => 'bar-chart-fill',
'bar-chart-line-fill' => 'bar-chart-line-fill',
'bar-chart-line' => 'bar-chart-line',
'bar-chart-steps' => 'bar-chart-steps',
'bar-chart' => 'bar-chart',
'basket-fill' => 'basket-fill',
'basket' => 'basket',
'basket2-fill' => 'basket2-fill',
'basket2' => 'basket2',
'basket3-fill' => 'basket3-fill',
'basket3' => 'basket3',
'battery-charging' => 'battery-charging',
'battery-full' => 'battery-full',
'battery-half' => 'battery-half',
'battery' => 'battery',
'bell-fill' => 'bell-fill',
'bell' => 'bell',
'bezier' => 'bezier',
'bezier2' => 'bezier2',
'bicycle' => 'bicycle',
'binoculars-fill' => 'binoculars-fill',
'binoculars' => 'binoculars',
'blockquote-left' => 'blockquote-left',
'blockquote-right' => 'blockquote-right',
'book-fill' => 'book-fill',
'book-half' => 'book-half',
'book' => 'book',
'bookmark-check-fill' => 'bookmark-check-fill',
'bookmark-check' => 'bookmark-check',
'bookmark-dash-fill' => 'bookmark-dash-fill',
'bookmark-dash' => 'bookmark-dash',
'bookmark-fill' => 'bookmark-fill',
'bookmark-heart-fill' => 'bookmark-heart-fill',
'bookmark-heart' => 'bookmark-heart',
'bookmark-plus-fill' => 'bookmark-plus-fill',
'bookmark-plus' => 'bookmark-plus',
'bookmark-star-fill' => 'bookmark-star-fill',
'bookmark-star' => 'bookmark-star',
'bookmark-x-fill' => 'bookmark-x-fill',
'bookmark-x' => 'bookmark-x',
'bookmark' => 'bookmark',
'bookmarks-fill' => 'bookmarks-fill',
'bookmarks' => 'bookmarks',
'bookshelf' => 'bookshelf',
'bootstrap-fill' => 'bootstrap-fill',
'bootstrap-reboot' => 'bootstrap-reboot',
'bootstrap' => 'bootstrap',
'border-all' => 'border-all',
'border-bottom' => 'border-bottom',
'border-center' => 'border-center',
'border-inner' => 'border-inner',
'border-left' => 'border-left',
'border-middle' => 'border-middle',
'border-outer' => 'border-outer',
'border-right' => 'border-right',
'border-style' => 'border-style',
'border-top' => 'border-top',
'border-width' => 'border-width',
'border' => 'border',
'bounding-box-circles' => 'bounding-box-circles',
'bounding-box' => 'bounding-box',
'box-arrow-down-left' => 'box-arrow-down-left',
'box-arrow-down-right' => 'box-arrow-down-right',
'box-arrow-down' => 'box-arrow-down',
'box-arrow-in-down-left' => 'box-arrow-in-down-left',
'box-arrow-in-down-right' => 'box-arrow-in-down-right',
'box-arrow-in-down' => 'box-arrow-in-down',
'box-arrow-in-left' => 'box-arrow-in-left',
'box-arrow-in-right' => 'box-arrow-in-right',
'box-arrow-in-up-left' => 'box-arrow-in-up-left',
'box-arrow-in-up-right' => 'box-arrow-in-up-right',
'box-arrow-in-up' => 'box-arrow-in-up',
'box-arrow-left' => 'box-arrow-left',
'box-arrow-right' => 'box-arrow-right',
'box-arrow-up-left' => 'box-arrow-up-left',
'box-arrow-up-right' => 'box-arrow-up-right',
'box-arrow-up' => 'box-arrow-up',
'box-seam' => 'box-seam',
'box' => 'box',
'braces' => 'braces',
'bricks' => 'bricks',
'briefcase-fill' => 'briefcase-fill',
'briefcase' => 'briefcase',
'brightness-alt-high-fill' => 'brightness-alt-high-fill',
'brightness-alt-high' => 'brightness-alt-high',
'brightness-alt-low-fill' => 'brightness-alt-low-fill',
'brightness-alt-low' => 'brightness-alt-low',
'brightness-high-fill' => 'brightness-high-fill',
'brightness-high' => 'brightness-high',
'brightness-low-fill' => 'brightness-low-fill',
'brightness-low' => 'brightness-low',
'broadcast-pin' => 'broadcast-pin',
'broadcast' => 'broadcast',
'brush-fill' => 'brush-fill',
'brush' => 'brush',
'bucket-fill' => 'bucket-fill',
'bucket' => 'bucket',
'bug-fill' => 'bug-fill',
'bug' => 'bug',
'building' => 'building',
'bullseye' => 'bullseye',
'calculator-fill' => 'calculator-fill',
'calculator' => 'calculator',
'calendar-check-fill' => 'calendar-check-fill',
'calendar-check' => 'calendar-check',
'calendar-date-fill' => 'calendar-date-fill',
'calendar-date' => 'calendar-date',
'calendar-day-fill' => 'calendar-day-fill',
'calendar-day' => 'calendar-day',
'calendar-event-fill' => 'calendar-event-fill',
'calendar-event' => 'calendar-event',
'calendar-fill' => 'calendar-fill',
'calendar-minus-fill' => 'calendar-minus-fill',
'calendar-minus' => 'calendar-minus',
'calendar-month-fill' => 'calendar-month-fill',
'calendar-month' => 'calendar-month',
'calendar-plus-fill' => 'calendar-plus-fill',
'calendar-plus' => 'calendar-plus',
'calendar-range-fill' => 'calendar-range-fill',
'calendar-range' => 'calendar-range',
'calendar-week-fill' => 'calendar-week-fill',
'calendar-week' => 'calendar-week',
'calendar-x-fill' => 'calendar-x-fill',
'calendar-x' => 'calendar-x',
'calendar' => 'calendar',
'calendar2-check-fill' => 'calendar2-check-fill',
'calendar2-check' => 'calendar2-check',
'calendar2-date-fill' => 'calendar2-date-fill',
'calendar2-date' => 'calendar2-date',
'calendar2-day-fill' => 'calendar2-day-fill',
'calendar2-day' => 'calendar2-day',
'calendar2-event-fill' => 'calendar2-event-fill',
'calendar2-event' => 'calendar2-event',
'calendar2-fill' => 'calendar2-fill',
'calendar2-minus-fill' => 'calendar2-minus-fill',
'calendar2-minus' => 'calendar2-minus',
'calendar2-month-fill' => 'calendar2-month-fill',
'calendar2-month' => 'calendar2-month',
'calendar2-plus-fill' => 'calendar2-plus-fill',
'calendar2-plus' => 'calendar2-plus',
'calendar2-range-fill' => 'calendar2-range-fill',
'calendar2-range' => 'calendar2-range',
'calendar2-week-fill' => 'calendar2-week-fill',
'calendar2-week' => 'calendar2-week',
'calendar2-x-fill' => 'calendar2-x-fill',
'calendar2-x' => 'calendar2-x',
'calendar2' => 'calendar2',
'calendar3-event-fill' => 'calendar3-event-fill',
'calendar3-event' => 'calendar3-event',
'calendar3-fill' => 'calendar3-fill',
'calendar3-range-fill' => 'calendar3-range-fill',
'calendar3-range' => 'calendar3-range',
'calendar3-week-fill' => 'calendar3-week-fill',
'calendar3-week' => 'calendar3-week',
'calendar3' => 'calendar3',
'calendar4-event' => 'calendar4-event',
'calendar4-range' => 'calendar4-range',
'calendar4-week' => 'calendar4-week',
'calendar4' => 'calendar4',
'camera-fill' => 'camera-fill',
'camera-reels-fill' => 'camera-reels-fill',
'camera-reels' => 'camera-reels',
'camera-video-fill' => 'camera-video-fill',
'camera-video-off-fill' => 'camera-video-off-fill',
'camera-video-off' => 'camera-video-off',
'camera-video' => 'camera-video',
'camera' => 'camera',
'camera2' => 'camera2',
'capslock-fill' => 'capslock-fill',
'capslock' => 'capslock',
'card-checklist' => 'card-checklist',
'card-heading' => 'card-heading',
'card-image' => 'card-image',
'card-list' => 'card-list',
'card-text' => 'card-text',
'caret-down-fill' => 'caret-down-fill',
'caret-down-square-fill' => 'caret-down-square-fill',
'caret-down-square' => 'caret-down-square',
'caret-down' => 'caret-down',
'caret-left-fill' => 'caret-left-fill',
'caret-left-square-fill' => 'caret-left-square-fill',
'caret-left-square' => 'caret-left-square',
'caret-left' => 'caret-left',
'caret-right-fill' => 'caret-right-fill',
'caret-right-square-fill' => 'caret-right-square-fill',
'caret-right-square' => 'caret-right-square',
'caret-right' => 'caret-right',
'caret-up-fill' => 'caret-up-fill',
'caret-up-square-fill' => 'caret-up-square-fill',
'caret-up-square' => 'caret-up-square',
'caret-up' => 'caret-up',
'cart-check-fill' => 'cart-check-fill',
'cart-check' => 'cart-check',
'cart-dash-fill' => 'cart-dash-fill',
'cart-dash' => 'cart-dash',
'cart-fill' => 'cart-fill',
'cart-plus-fill' => 'cart-plus-fill',
'cart-plus' => 'cart-plus',
'cart-x-fill' => 'cart-x-fill',
'cart-x' => 'cart-x',
'cart' => 'cart',
'cart2' => 'cart2',
'cart3' => 'cart3',
'cart4' => 'cart4',
'cash-stack' => 'cash-stack',
'cash' => 'cash',
'cast' => 'cast',
'chat-dots-fill' => 'chat-dots-fill',
'chat-dots' => 'chat-dots',
'chat-fill' => 'chat-fill',
'chat-left-dots-fill' => 'chat-left-dots-fill',
'chat-left-dots' => 'chat-left-dots',
'chat-left-fill' => 'chat-left-fill',
'chat-left-quote-fill' => 'chat-left-quote-fill',
'chat-left-quote' => 'chat-left-quote',
'chat-left-text-fill' => 'chat-left-text-fill',
'chat-left-text' => 'chat-left-text',
'chat-left' => 'chat-left',
'chat-quote-fill' => 'chat-quote-fill',
'chat-quote' => 'chat-quote',
'chat-right-dots-fill' => 'chat-right-dots-fill',
'chat-right-dots' => 'chat-right-dots',
'chat-right-fill' => 'chat-right-fill',
'chat-right-quote-fill' => 'chat-right-quote-fill',
'chat-right-quote' => 'chat-right-quote',
'chat-right-text-fill' => 'chat-right-text-fill',
'chat-right-text' => 'chat-right-text',
'chat-right' => 'chat-right',
'chat-square-dots-fill' => 'chat-square-dots-fill',
'chat-square-dots' => 'chat-square-dots',
'chat-square-fill' => 'chat-square-fill',
'chat-square-quote-fill' => 'chat-square-quote-fill',
'chat-square-quote' => 'chat-square-quote',
'chat-square-text-fill' => 'chat-square-text-fill',
'chat-square-text' => 'chat-square-text',
'chat-square' => 'chat-square',
'chat-text-fill' => 'chat-text-fill',
'chat-text' => 'chat-text',
'chat' => 'chat',
'check-all' => 'check-all',
'check-circle-fill' => 'check-circle-fill',
'check-circle' => 'check-circle',
'check-square-fill' => 'check-square-fill',
'check-square' => 'check-square',
'check' => 'check',
'check2-all' => 'check2-all',
'check2-circle' => 'check2-circle',
'check2-square' => 'check2-square',
'check2' => 'check2',
'chevron-bar-contract' => 'chevron-bar-contract',
'chevron-bar-down' => 'chevron-bar-down',
'chevron-bar-expand' => 'chevron-bar-expand',
'chevron-bar-left' => 'chevron-bar-left',
'chevron-bar-right' => 'chevron-bar-right',
'chevron-bar-up' => 'chevron-bar-up',
'chevron-compact-down' => 'chevron-compact-down',
'chevron-compact-left' => 'chevron-compact-left',
'chevron-compact-right' => 'chevron-compact-right',
'chevron-compact-up' => 'chevron-compact-up',
'chevron-contract' => 'chevron-contract',
'chevron-double-down' => 'chevron-double-down',
'chevron-double-left' => 'chevron-double-left',
'chevron-double-right' => 'chevron-double-right',
'chevron-double-up' => 'chevron-double-up',
'chevron-down' => 'chevron-down',
'chevron-expand' => 'chevron-expand',
'chevron-left' => 'chevron-left',
'chevron-right' => 'chevron-right',
'chevron-up' => 'chevron-up',
'circle-fill' => 'circle-fill',
'circle-half' => 'circle-half',
'circle-square' => 'circle-square',
'circle' => 'circle',
'clipboard-check' => 'clipboard-check',
'clipboard-data' => 'clipboard-data',
'clipboard-minus' => 'clipboard-minus',
'clipboard-plus' => 'clipboard-plus',
'clipboard-x' => 'clipboard-x',
'clipboard' => 'clipboard',
'clock-fill' => 'clock-fill',
'clock-history' => 'clock-history',
'clock' => 'clock',
'cloud-arrow-down-fill' => 'cloud-arrow-down-fill',
'cloud-arrow-down' => 'cloud-arrow-down',
'cloud-arrow-up-fill' => 'cloud-arrow-up-fill',
'cloud-arrow-up' => 'cloud-arrow-up',
'cloud-check-fill' => 'cloud-check-fill',
'cloud-check' => 'cloud-check',
'cloud-download-fill' => 'cloud-download-fill',
'cloud-download' => 'cloud-download',
'cloud-drizzle-fill' => 'cloud-drizzle-fill',
'cloud-drizzle' => 'cloud-drizzle',
'cloud-fill' => 'cloud-fill',
'cloud-fog-fill' => 'cloud-fog-fill',
'cloud-fog' => 'cloud-fog',
'cloud-fog2-fill' => 'cloud-fog2-fill',
'cloud-fog2' => 'cloud-fog2',
'cloud-hail-fill' => 'cloud-hail-fill',
'cloud-hail' => 'cloud-hail',
'cloud-haze-1' => 'cloud-haze-1',
'cloud-haze-fill' => 'cloud-haze-fill',
'cloud-haze' => 'cloud-haze',
'cloud-haze2-fill' => 'cloud-haze2-fill',
'cloud-lightning-fill' => 'cloud-lightning-fill',
'cloud-lightning-rain-fill' => 'cloud-lightning-rain-fill',
'cloud-lightning-rain' => 'cloud-lightning-rain',
'cloud-lightning' => 'cloud-lightning',
'cloud-minus-fill' => 'cloud-minus-fill',
'cloud-minus' => 'cloud-minus',
'cloud-moon-fill' => 'cloud-moon-fill',
'cloud-moon' => 'cloud-moon',
'cloud-plus-fill' => 'cloud-plus-fill',
'cloud-plus' => 'cloud-plus',
'cloud-rain-fill' => 'cloud-rain-fill',
'cloud-rain-heavy-fill' => 'cloud-rain-heavy-fill',
'cloud-rain-heavy' => 'cloud-rain-heavy',
'cloud-rain' => 'cloud-rain',
'cloud-slash-fill' => 'cloud-slash-fill',
'cloud-slash' => 'cloud-slash',
'cloud-sleet-fill' => 'cloud-sleet-fill',
'cloud-sleet' => 'cloud-sleet',
'cloud-snow-fill' => 'cloud-snow-fill',
'cloud-snow' => 'cloud-snow',
'cloud-sun-fill' => 'cloud-sun-fill',
'cloud-sun' => 'cloud-sun',
'cloud-upload-fill' => 'cloud-upload-fill',
'cloud-upload' => 'cloud-upload',
'cloud' => 'cloud',
'clouds-fill' => 'clouds-fill',
'clouds' => 'clouds',
'cloudy-fill' => 'cloudy-fill',
'cloudy' => 'cloudy',
'code-slash' => 'code-slash',
'code-square' => 'code-square',
'code' => 'code',
'collection-fill' => 'collection-fill',
'collection-play-fill' => 'collection-play-fill',
'collection-play' => 'collection-play',
'collection' => 'collection',
'columns-gap' => 'columns-gap',
'columns' => 'columns',
'command' => 'command',
'compass-fill' => 'compass-fill',
'compass' => 'compass',
'cone-striped' => 'cone-striped',
'cone' => 'cone',
'controller' => 'controller',
'cpu-fill' => 'cpu-fill',
'cpu' => 'cpu',
'credit-card-2-back-fill' => 'credit-card-2-back-fill',
'credit-card-2-back' => 'credit-card-2-back',
'credit-card-2-front-fill' => 'credit-card-2-front-fill',
'credit-card-2-front' => 'credit-card-2-front',
'credit-card-fill' => 'credit-card-fill',
'credit-card' => 'credit-card',
'crop' => 'crop',
'cup-fill' => 'cup-fill',
'cup-straw' => 'cup-straw',
'cup' => 'cup',
'cursor-fill' => 'cursor-fill',
'cursor-text' => 'cursor-text',
'cursor' => 'cursor',
'dash-circle-dotted' => 'dash-circle-dotted',
'dash-circle-fill' => 'dash-circle-fill',
'dash-circle' => 'dash-circle',
'dash-square-dotted' => 'dash-square-dotted',
'dash-square-fill' => 'dash-square-fill',
'dash-square' => 'dash-square',
'dash' => 'dash',
'diagram-2-fill' => 'diagram-2-fill',
'diagram-2' => 'diagram-2',
'diagram-3-fill' => 'diagram-3-fill',
'diagram-3' => 'diagram-3',
'diamond-fill' => 'diamond-fill',
'diamond-half' => 'diamond-half',
'diamond' => 'diamond',
'dice-1-fill' => 'dice-1-fill',
'dice-1' => 'dice-1',
'dice-2-fill' => 'dice-2-fill',
'dice-2' => 'dice-2',
'dice-3-fill' => 'dice-3-fill',
'dice-3' => 'dice-3',
'dice-4-fill' => 'dice-4-fill',
'dice-4' => 'dice-4',
'dice-5-fill' => 'dice-5-fill',
'dice-5' => 'dice-5',
'dice-6-fill' => 'dice-6-fill',
'dice-6' => 'dice-6',
'disc-fill' => 'disc-fill',
'disc' => 'disc',
'discord' => 'discord',
'display-fill' => 'display-fill',
'display' => 'display',
'distribute-horizontal' => 'distribute-horizontal',
'distribute-vertical' => 'distribute-vertical',
'door-closed-fill' => 'door-closed-fill',
'door-closed' => 'door-closed',
'door-open-fill' => 'door-open-fill',
'door-open' => 'door-open',
'dot' => 'dot',
'download' => 'download',
'droplet-fill' => 'droplet-fill',
'droplet-half' => 'droplet-half',
'droplet' => 'droplet',
'earbuds' => 'earbuds',
'easel-fill' => 'easel-fill',
'easel' => 'easel',
'egg-fill' => 'egg-fill',
'egg-fried' => 'egg-fried',
'egg' => 'egg',
'eject-fill' => 'eject-fill',
'eject' => 'eject',
'emoji-angry-fill' => 'emoji-angry-fill',
'emoji-angry' => 'emoji-angry',
'emoji-dizzy-fill' => 'emoji-dizzy-fill',
'emoji-dizzy' => 'emoji-dizzy',
'emoji-expressionless-fill' => 'emoji-expressionless-fill',
'emoji-expressionless' => 'emoji-expressionless',
'emoji-frown-fill' => 'emoji-frown-fill',
'emoji-frown' => 'emoji-frown',
'emoji-heart-eyes-fill' => 'emoji-heart-eyes-fill',
'emoji-heart-eyes' => 'emoji-heart-eyes',
'emoji-laughing-fill' => 'emoji-laughing-fill',
'emoji-laughing' => 'emoji-laughing',
'emoji-neutral-fill' => 'emoji-neutral-fill',
'emoji-neutral' => 'emoji-neutral',
'emoji-smile-fill' => 'emoji-smile-fill',
'emoji-smile-upside-down-fill' => 'emoji-smile-upside-down-fill',
'emoji-smile-upside-down' => 'emoji-smile-upside-down',
'emoji-smile' => 'emoji-smile',
'emoji-sunglasses-fill' => 'emoji-sunglasses-fill',
'emoji-sunglasses' => 'emoji-sunglasses',
'emoji-wink-fill' => 'emoji-wink-fill',
'emoji-wink' => 'emoji-wink',
'envelope-fill' => 'envelope-fill',
'envelope-open-fill' => 'envelope-open-fill',
'envelope-open' => 'envelope-open',
'envelope' => 'envelope',
'eraser-fill' => 'eraser-fill',
'eraser' => 'eraser',
'exclamation-circle-fill' => 'exclamation-circle-fill',
'exclamation-circle' => 'exclamation-circle',
'exclamation-diamond-fill' => 'exclamation-diamond-fill',
'exclamation-diamond' => 'exclamation-diamond',
'exclamation-octagon-fill' => 'exclamation-octagon-fill',
'exclamation-octagon' => 'exclamation-octagon',
'exclamation-square-fill' => 'exclamation-square-fill',
'exclamation-square' => 'exclamation-square',
'exclamation-triangle-fill' => 'exclamation-triangle-fill',
'exclamation-triangle' => 'exclamation-triangle',
'exclamation' => 'exclamation',
'exclude' => 'exclude',
'eye-fill' => 'eye-fill',
'eye-slash-fill' => 'eye-slash-fill',
'eye-slash' => 'eye-slash',
'eye' => 'eye',
'eyedropper' => 'eyedropper',
'eyeglasses' => 'eyeglasses',
'facebook' => 'facebook',
'file-arrow-down-fill' => 'file-arrow-down-fill',
'file-arrow-down' => 'file-arrow-down',
'file-arrow-up-fill' => 'file-arrow-up-fill',
'file-arrow-up' => 'file-arrow-up',
'file-bar-graph-fill' => 'file-bar-graph-fill',
'file-bar-graph' => 'file-bar-graph',
'file-binary-fill' => 'file-binary-fill',
'file-binary' => 'file-binary',
'file-break-fill' => 'file-break-fill',
'file-break' => 'file-break',
'file-check-fill' => 'file-check-fill',
'file-check' => 'file-check',
'file-code-fill' => 'file-code-fill',
'file-code' => 'file-code',
'file-diff-fill' => 'file-diff-fill',
'file-diff' => 'file-diff',
'file-earmark-arrow-down-fill' => 'file-earmark-arrow-down-fill',
'file-earmark-arrow-down' => 'file-earmark-arrow-down',
'file-earmark-arrow-up-fill' => 'file-earmark-arrow-up-fill',
'file-earmark-arrow-up' => 'file-earmark-arrow-up',
'file-earmark-bar-graph-fill' => 'file-earmark-bar-graph-fill',
'file-earmark-bar-graph' => 'file-earmark-bar-graph',
'file-earmark-binary-fill' => 'file-earmark-binary-fill',
'file-earmark-binary' => 'file-earmark-binary',
'file-earmark-break-fill' => 'file-earmark-break-fill',
'file-earmark-break' => 'file-earmark-break',
'file-earmark-check-fill' => 'file-earmark-check-fill',
'file-earmark-check' => 'file-earmark-check',
'file-earmark-code-fill' => 'file-earmark-code-fill',
'file-earmark-code' => 'file-earmark-code',
'file-earmark-diff-fill' => 'file-earmark-diff-fill',
'file-earmark-diff' => 'file-earmark-diff',
'file-earmark-easel-fill' => 'file-earmark-easel-fill',
'file-earmark-easel' => 'file-earmark-easel',
'file-earmark-excel-fill' => 'file-earmark-excel-fill',
'file-earmark-excel' => 'file-earmark-excel',
'file-earmark-fill' => 'file-earmark-fill',
'file-earmark-font-fill' => 'file-earmark-font-fill',
'file-earmark-font' => 'file-earmark-font',
'file-earmark-image-fill' => 'file-earmark-image-fill',
'file-earmark-image' => 'file-earmark-image',
'file-earmark-lock-fill' => 'file-earmark-lock-fill',
'file-earmark-lock' => 'file-earmark-lock',
'file-earmark-lock2-fill' => 'file-earmark-lock2-fill',
'file-earmark-lock2' => 'file-earmark-lock2',
'file-earmark-medical-fill' => 'file-earmark-medical-fill',
'file-earmark-medical' => 'file-earmark-medical',
'file-earmark-minus-fill' => 'file-earmark-minus-fill',
'file-earmark-minus' => 'file-earmark-minus',
'file-earmark-music-fill' => 'file-earmark-music-fill',
'file-earmark-music' => 'file-earmark-music',
'file-earmark-person-fill' => 'file-earmark-person-fill',
'file-earmark-person' => 'file-earmark-person',
'file-earmark-play-fill' => 'file-earmark-play-fill',
'file-earmark-play' => 'file-earmark-play',
'file-earmark-plus-fill' => 'file-earmark-plus-fill',
'file-earmark-plus' => 'file-earmark-plus',
'file-earmark-post-fill' => 'file-earmark-post-fill',
'file-earmark-post' => 'file-earmark-post',
'file-earmark-ppt-fill' => 'file-earmark-ppt-fill',
'file-earmark-ppt' => 'file-earmark-ppt',
'file-earmark-richtext-fill' => 'file-earmark-richtext-fill',
'file-earmark-richtext' => 'file-earmark-richtext',
'file-earmark-ruled-fill' => 'file-earmark-ruled-fill',
'file-earmark-ruled' => 'file-earmark-ruled',
'file-earmark-slides-fill' => 'file-earmark-slides-fill',
'file-earmark-slides' => 'file-earmark-slides',
'file-earmark-spreadsheet-fill' => 'file-earmark-spreadsheet-fill',
'file-earmark-spreadsheet' => 'file-earmark-spreadsheet',
'file-earmark-text-fill' => 'file-earmark-text-fill',
'file-earmark-text' => 'file-earmark-text',
'file-earmark-word-fill' => 'file-earmark-word-fill',
'file-earmark-word' => 'file-earmark-word',
'file-earmark-x-fill' => 'file-earmark-x-fill',
'file-earmark-x' => 'file-earmark-x',
'file-earmark-zip-fill' => 'file-earmark-zip-fill',
'file-earmark-zip' => 'file-earmark-zip',
'file-earmark' => 'file-earmark',
'file-easel-fill' => 'file-easel-fill',
'file-easel' => 'file-easel',
'file-excel-fill' => 'file-excel-fill',
'file-excel' => 'file-excel',
'file-fill' => 'file-fill',
'file-font-fill' => 'file-font-fill',
'file-font' => 'file-font',
'file-image-fill' => 'file-image-fill',
'file-image' => 'file-image',
'file-lock-fill' => 'file-lock-fill',
'file-lock' => 'file-lock',
'file-lock2-fill' => 'file-lock2-fill',
'file-lock2' => 'file-lock2',
'file-medical-fill' => 'file-medical-fill',
'file-medical' => 'file-medical',
'file-minus-fill' => 'file-minus-fill',
'file-minus' => 'file-minus',
'file-music-fill' => 'file-music-fill',
'file-music' => 'file-music',
'file-person-fill' => 'file-person-fill',
'file-person' => 'file-person',
'file-play-fill' => 'file-play-fill',
'file-play' => 'file-play',
'file-plus-fill' => 'file-plus-fill',
'file-plus' => 'file-plus',
'file-post-fill' => 'file-post-fill',
'file-post' => 'file-post',
'file-ppt-fill' => 'file-ppt-fill',
'file-ppt' => 'file-ppt',
'file-richtext-fill' => 'file-richtext-fill',
'file-richtext' => 'file-richtext',
'file-ruled-fill' => 'file-ruled-fill',
'file-ruled' => 'file-ruled',
'file-slides-fill' => 'file-slides-fill',
'file-slides' => 'file-slides',
'file-spreadsheet-fill' => 'file-spreadsheet-fill',
'file-spreadsheet' => 'file-spreadsheet',
'file-text-fill' => 'file-text-fill',
'file-text' => 'file-text',
'file-word-fill' => 'file-word-fill',
'file-word' => 'file-word',
'file-x-fill' => 'file-x-fill',
'file-x' => 'file-x',
'file-zip-fill' => 'file-zip-fill',
'file-zip' => 'file-zip',
'file' => 'file',
'files-alt' => 'files-alt',
'files' => 'files',
'film' => 'film',
'filter-circle-fill' => 'filter-circle-fill',
'filter-circle' => 'filter-circle',
'filter-left' => 'filter-left',
'filter-right' => 'filter-right',
'filter-square-fill' => 'filter-square-fill',
'filter-square' => 'filter-square',
'filter' => 'filter',
'flag-fill' => 'flag-fill',
'flag' => 'flag',
'flower1' => 'flower1',
'flower2' => 'flower2',
'flower3' => 'flower3',
'folder-check' => 'folder-check',
'folder-fill' => 'folder-fill',
'folder-minus' => 'folder-minus',
'folder-plus' => 'folder-plus',
'folder-symlink-fill' => 'folder-symlink-fill',
'folder-symlink' => 'folder-symlink',
'folder-x' => 'folder-x',
'folder' => 'folder',
'folder2-open' => 'folder2-open',
'folder2' => 'folder2',
'fonts' => 'fonts',
'forward-fill' => 'forward-fill',
'forward' => 'forward',
'front' => 'front',
'fullscreen-exit' => 'fullscreen-exit',
'fullscreen' => 'fullscreen',
'funnel-fill' => 'funnel-fill',
'funnel' => 'funnel',
'gear-fill' => 'gear-fill',
'gear-wide-connected' => 'gear-wide-connected',
'gear-wide' => 'gear-wide',
'gear' => 'gear',
'gem' => 'gem',
'geo-alt-fill' => 'geo-alt-fill',
'geo-alt' => 'geo-alt',
'geo-fill' => 'geo-fill',
'geo' => 'geo',
'gift-fill' => 'gift-fill',
'gift' => 'gift',
'github' => 'github',
'globe' => 'globe',
'globe2' => 'globe2',
'google' => 'google',
'graph-down' => 'graph-down',
'graph-up' => 'graph-up',
'grid-1x2-fill' => 'grid-1x2-fill',
'grid-1x2' => 'grid-1x2',
'grid-3x2-gap-fill' => 'grid-3x2-gap-fill',
'grid-3x2-gap' => 'grid-3x2-gap',
'grid-3x2' => 'grid-3x2',
'grid-3x3-gap-fill' => 'grid-3x3-gap-fill',
'grid-3x3-gap' => 'grid-3x3-gap',
'grid-3x3' => 'grid-3x3',
'grid-fill' => 'grid-fill',
'grid' => 'grid',
'grip-horizontal' => 'grip-horizontal',
'grip-vertical' => 'grip-vertical',
'hammer' => 'hammer',
'hand-index-fill' => 'hand-index-fill',
'hand-index-thumb-fill' => 'hand-index-thumb-fill',
'hand-index-thumb' => 'hand-index-thumb',
'hand-index' => 'hand-index',
'hand-thumbs-down-fill' => 'hand-thumbs-down-fill',
'hand-thumbs-down' => 'hand-thumbs-down',
'hand-thumbs-up-fill' => 'hand-thumbs-up-fill',
'hand-thumbs-up' => 'hand-thumbs-up',
'handbag-fill' => 'handbag-fill',
'handbag' => 'handbag',
'hash' => 'hash',
'hdd-fill' => 'hdd-fill',
'hdd-network-fill' => 'hdd-network-fill',
'hdd-network' => 'hdd-network',
'hdd-rack-fill' => 'hdd-rack-fill',
'hdd-rack' => 'hdd-rack',
'hdd-stack-fill' => 'hdd-stack-fill',
'hdd-stack' => 'hdd-stack',
'hdd' => 'hdd',
'headphones' => 'headphones',
'headset' => 'headset',
'heart-fill' => 'heart-fill',
'heart-half' => 'heart-half',
'heart' => 'heart',
'heptagon-fill' => 'heptagon-fill',
'heptagon-half' => 'heptagon-half',
'heptagon' => 'heptagon',
'hexagon-fill' => 'hexagon-fill',
'hexagon-half' => 'hexagon-half',
'hexagon' => 'hexagon',
'hourglass-bottom' => 'hourglass-bottom',
'hourglass-split' => 'hourglass-split',
'hourglass-top' => 'hourglass-top',
'hourglass' => 'hourglass',
'house-door-fill' => 'house-door-fill',
'house-door' => 'house-door',
'house-fill' => 'house-fill',
'house' => 'house',
'hr' => 'hr',
'hurricane' => 'hurricane',
'image-alt' => 'image-alt',
'image-fill' => 'image-fill',
'image' => 'image',
'images' => 'images',
'inbox-fill' => 'inbox-fill',
'inbox' => 'inbox',
'inboxes-fill' => 'inboxes-fill',
'inboxes' => 'inboxes',
'info-circle-fill' => 'info-circle-fill',
'info-circle' => 'info-circle',
'info-square-fill' => 'info-square-fill',
'info-square' => 'info-square',
'info' => 'info',
'input-cursor-text' => 'input-cursor-text',
'input-cursor' => 'input-cursor',
'instagram' => 'instagram',
'intersect' => 'intersect',
'journal-album' => 'journal-album',
'journal-arrow-down' => 'journal-arrow-down',
'journal-arrow-up' => 'journal-arrow-up',
'journal-bookmark-fill' => 'journal-bookmark-fill',
'journal-bookmark' => 'journal-bookmark',
'journal-check' => 'journal-check',
'journal-code' => 'journal-code',
'journal-medical' => 'journal-medical',
'journal-minus' => 'journal-minus',
'journal-plus' => 'journal-plus',
'journal-richtext' => 'journal-richtext',
'journal-text' => 'journal-text',
'journal-x' => 'journal-x',
'journal' => 'journal',
'journals' => 'journals',
'joystick' => 'joystick',
'justify-left' => 'justify-left',
'justify-right' => 'justify-right',
'justify' => 'justify',
'kanban-fill' => 'kanban-fill',
'kanban' => 'kanban',
'key-fill' => 'key-fill',
'key' => 'key',
'keyboard-fill' => 'keyboard-fill',
'keyboard' => 'keyboard',
'ladder' => 'ladder',
'lamp-fill' => 'lamp-fill',
'lamp' => 'lamp',
'laptop-fill' => 'laptop-fill',
'laptop' => 'laptop',
'layer-backward' => 'layer-backward',
'layer-forward' => 'layer-forward',
'layers-fill' => 'layers-fill',
'layers-half' => 'layers-half',
'layers' => 'layers',
'layout-sidebar-inset-reverse' => 'layout-sidebar-inset-reverse',
'layout-sidebar-inset' => 'layout-sidebar-inset',
'layout-sidebar-reverse' => 'layout-sidebar-reverse',
'layout-sidebar' => 'layout-sidebar',
'layout-split' => 'layout-split',
'layout-text-sidebar-reverse' => 'layout-text-sidebar-reverse',
'layout-text-sidebar' => 'layout-text-sidebar',
'layout-text-window-reverse' => 'layout-text-window-reverse',
'layout-text-window' => 'layout-text-window',
'layout-three-columns' => 'layout-three-columns',
'layout-wtf' => 'layout-wtf',
'life-preserver' => 'life-preserver',
'lightbulb-fill' => 'lightbulb-fill',
'lightbulb-off-fill' => 'lightbulb-off-fill',
'lightbulb-off' => 'lightbulb-off',
'lightbulb' => 'lightbulb',
'lightning-charge-fill' => 'lightning-charge-fill',
'lightning-charge' => 'lightning-charge',
'lightning-fill' => 'lightning-fill',
'lightning' => 'lightning',
'link-45deg' => 'link-45deg',
'link' => 'link',
'linkedin' => 'linkedin',
'list-check' => 'list-check',
'list-nested' => 'list-nested',
'list-ol' => 'list-ol',
'list-stars' => 'list-stars',
'list-task' => 'list-task',
'list-ul' => 'list-ul',
'list' => 'list',
'lock-fill' => 'lock-fill',
'lock' => 'lock',
'mailbox' => 'mailbox',
'mailbox2' => 'mailbox2',
'map-fill' => 'map-fill',
'map' => 'map',
'markdown-fill' => 'markdown-fill',
'markdown' => 'markdown',
'mask' => 'mask',
'megaphone-fill' => 'megaphone-fill',
'megaphone' => 'megaphone',
'menu-app-fill' => 'menu-app-fill',
'menu-app' => 'menu-app',
'menu-button-fill' => 'menu-button-fill',
'menu-button-wide-fill' => 'menu-button-wide-fill',
'menu-button-wide' => 'menu-button-wide',
'menu-button' => 'menu-button',
'menu-down' => 'menu-down',
'menu-up' => 'menu-up',
'mic-fill' => 'mic-fill',
'mic-mute-fill' => 'mic-mute-fill',
'mic-mute' => 'mic-mute',
'mic' => 'mic',
'minecart-loaded' => 'minecart-loaded',
'minecart' => 'minecart',
'moisture' => 'moisture',
'moon-fill' => 'moon-fill',
'moon-stars-fill' => 'moon-stars-fill',
'moon-stars' => 'moon-stars',
'moon' => 'moon',
'mouse-fill' => 'mouse-fill',
'mouse' => 'mouse',
'mouse2-fill' => 'mouse2-fill',
'mouse2' => 'mouse2',
'mouse3-fill' => 'mouse3-fill',
'mouse3' => 'mouse3',
'music-note-beamed' => 'music-note-beamed',
'music-note-list' => 'music-note-list',
'music-note' => 'music-note',
'music-player-fill' => 'music-player-fill',
'music-player' => 'music-player',
'newspaper' => 'newspaper',
'node-minus-fill' => 'node-minus-fill',
'node-minus' => 'node-minus',
'node-plus-fill' => 'node-plus-fill',
'node-plus' => 'node-plus',
'nut-fill' => 'nut-fill',
'nut' => 'nut',
'octagon-fill' => 'octagon-fill',
'octagon-half' => 'octagon-half',
'octagon' => 'octagon',
'option' => 'option',
'outlet' => 'outlet',
'paint-bucket' => 'paint-bucket',
'palette-fill' => 'palette-fill',
'palette' => 'palette',
'palette2' => 'palette2',
'paperclip' => 'paperclip',
'paragraph' => 'paragraph',
'patch-check-fill' => 'patch-check-fill',
'patch-check' => 'patch-check',
'patch-exclamation-fill' => 'patch-exclamation-fill',
'patch-exclamation' => 'patch-exclamation',
'patch-minus-fill' => 'patch-minus-fill',
'patch-minus' => 'patch-minus',
'patch-plus-fill' => 'patch-plus-fill',
'patch-plus' => 'patch-plus',
'patch-question-fill' => 'patch-question-fill',
'patch-question' => 'patch-question',
'pause-btn-fill' => 'pause-btn-fill',
'pause-btn' => 'pause-btn',
'pause-circle-fill' => 'pause-circle-fill',
'pause-circle' => 'pause-circle',
'pause-fill' => 'pause-fill',
'pause' => 'pause',
'peace-fill' => 'peace-fill',
'peace' => 'peace',
'pen-fill' => 'pen-fill',
'pen' => 'pen',
'pencil-fill' => 'pencil-fill',
'pencil-square' => 'pencil-square',
'pencil' => 'pencil',
'pentagon-fill' => 'pentagon-fill',
'pentagon-half' => 'pentagon-half',
'pentagon' => 'pentagon',
'people-fill' => 'people-fill',
'people' => 'people',
'percent' => 'percent',
'person-badge-fill' => 'person-badge-fill',
'person-badge' => 'person-badge',
'person-bounding-box' => 'person-bounding-box',
'person-check-fill' => 'person-check-fill',
'person-check' => 'person-check',
'person-circle' => 'person-circle',
'person-dash-fill' => 'person-dash-fill',
'person-dash' => 'person-dash',
'person-fill' => 'person-fill',
'person-lines-fill' => 'person-lines-fill',
'person-plus-fill' => 'person-plus-fill',
'person-plus' => 'person-plus',
'person-square' => 'person-square',
'person-x-fill' => 'person-x-fill',
'person-x' => 'person-x',
'person' => 'person',
'phone-fill' => 'phone-fill',
'phone-landscape-fill' => 'phone-landscape-fill',
'phone-landscape' => 'phone-landscape',