yew_icons 0.2.0

Easily include a variety of SVG icons into your yew app
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
[[bin]]
name = "generator"
path = "src/generator.rs"
required-features = ["generator"]
[dependencies.convert_case]
optional = true
version = "0.5"

[dependencies.enum-iterator]
optional = true
version = "0.7"

[dependencies.proc-macro2]
optional = true
version = "1.0"

[dependencies.quote]
optional = true
version = "1.0"

[dependencies.regex]
optional = true
version = "1"

[dependencies.yew]
version = "0"
[dev-dependencies.tokio]
features = ["rt", "macros"]
version = "1"

[features]
Bootstrap123 = []
BootstrapActivity = []
BootstrapAlarm = []
BootstrapAlarmFill = []
BootstrapAlignBottom = []
BootstrapAlignCenter = []
BootstrapAlignEnd = []
BootstrapAlignMiddle = []
BootstrapAlignStart = []
BootstrapAlignTop = []
BootstrapAlt = []
BootstrapApp = []
BootstrapAppIndicator = []
BootstrapApple = []
BootstrapArchive = []
BootstrapArchiveFill = []
BootstrapArrow90DegDown = []
BootstrapArrow90DegLeft = []
BootstrapArrow90DegRight = []
BootstrapArrow90DegUp = []
BootstrapArrowBarDown = []
BootstrapArrowBarLeft = []
BootstrapArrowBarRight = []
BootstrapArrowBarUp = []
BootstrapArrowClockwise = []
BootstrapArrowCounterclockwise = []
BootstrapArrowDown = []
BootstrapArrowDownCircle = []
BootstrapArrowDownCircleFill = []
BootstrapArrowDownLeft = []
BootstrapArrowDownLeftCircle = []
BootstrapArrowDownLeftCircleFill = []
BootstrapArrowDownLeftSquare = []
BootstrapArrowDownLeftSquareFill = []
BootstrapArrowDownRight = []
BootstrapArrowDownRightCircle = []
BootstrapArrowDownRightCircleFill = []
BootstrapArrowDownRightSquare = []
BootstrapArrowDownRightSquareFill = []
BootstrapArrowDownShort = []
BootstrapArrowDownSquare = []
BootstrapArrowDownSquareFill = []
BootstrapArrowDownUp = []
BootstrapArrowLeft = []
BootstrapArrowLeftCircle = []
BootstrapArrowLeftCircleFill = []
BootstrapArrowLeftRight = []
BootstrapArrowLeftShort = []
BootstrapArrowLeftSquare = []
BootstrapArrowLeftSquareFill = []
BootstrapArrowRepeat = []
BootstrapArrowReturnLeft = []
BootstrapArrowReturnRight = []
BootstrapArrowRight = []
BootstrapArrowRightCircle = []
BootstrapArrowRightCircleFill = []
BootstrapArrowRightShort = []
BootstrapArrowRightSquare = []
BootstrapArrowRightSquareFill = []
BootstrapArrowThroughHeart = []
BootstrapArrowThroughHeartFill = []
BootstrapArrowUp = []
BootstrapArrowUpCircle = []
BootstrapArrowUpCircleFill = []
BootstrapArrowUpLeft = []
BootstrapArrowUpLeftCircle = []
BootstrapArrowUpLeftCircleFill = []
BootstrapArrowUpLeftSquare = []
BootstrapArrowUpLeftSquareFill = []
BootstrapArrowUpRight = []
BootstrapArrowUpRightCircle = []
BootstrapArrowUpRightCircleFill = []
BootstrapArrowUpRightSquare = []
BootstrapArrowUpRightSquareFill = []
BootstrapArrowUpShort = []
BootstrapArrowUpSquare = []
BootstrapArrowUpSquareFill = []
BootstrapArrowsAngleContract = []
BootstrapArrowsAngleExpand = []
BootstrapArrowsCollapse = []
BootstrapArrowsExpand = []
BootstrapArrowsFullscreen = []
BootstrapArrowsMove = []
BootstrapAspectRatio = []
BootstrapAspectRatioFill = []
BootstrapAsterisk = []
BootstrapAt = []
BootstrapAward = []
BootstrapAwardFill = []
BootstrapBack = []
BootstrapBackspace = []
BootstrapBackspaceFill = []
BootstrapBackspaceReverse = []
BootstrapBackspaceReverseFill = []
BootstrapBadge3D = []
BootstrapBadge3DFill = []
BootstrapBadge4K = []
BootstrapBadge4KFill = []
BootstrapBadge8K = []
BootstrapBadge8KFill = []
BootstrapBadgeAd = []
BootstrapBadgeAdFill = []
BootstrapBadgeAr = []
BootstrapBadgeArFill = []
BootstrapBadgeCc = []
BootstrapBadgeCcFill = []
BootstrapBadgeHd = []
BootstrapBadgeHdFill = []
BootstrapBadgeSd = []
BootstrapBadgeSdFill = []
BootstrapBadgeTm = []
BootstrapBadgeTmFill = []
BootstrapBadgeVo = []
BootstrapBadgeVoFill = []
BootstrapBadgeVr = []
BootstrapBadgeVrFill = []
BootstrapBadgeWc = []
BootstrapBadgeWcFill = []
BootstrapBag = []
BootstrapBagCheck = []
BootstrapBagCheckFill = []
BootstrapBagDash = []
BootstrapBagDashFill = []
BootstrapBagFill = []
BootstrapBagHeart = []
BootstrapBagHeartFill = []
BootstrapBagPlus = []
BootstrapBagPlusFill = []
BootstrapBagX = []
BootstrapBagXFill = []
BootstrapBalloon = []
BootstrapBalloonFill = []
BootstrapBalloonHeart = []
BootstrapBalloonHeartFill = []
BootstrapBandaid = []
BootstrapBandaidFill = []
BootstrapBank = []
BootstrapBank2 = []
BootstrapBarChart = []
BootstrapBarChartFill = []
BootstrapBarChartLine = []
BootstrapBarChartLineFill = []
BootstrapBarChartSteps = []
BootstrapBasket = []
BootstrapBasket2 = []
BootstrapBasket2Fill = []
BootstrapBasket3 = []
BootstrapBasket3Fill = []
BootstrapBasketFill = []
BootstrapBattery = []
BootstrapBatteryCharging = []
BootstrapBatteryFull = []
BootstrapBatteryHalf = []
BootstrapBehance = []
BootstrapBell = []
BootstrapBellFill = []
BootstrapBellSlash = []
BootstrapBellSlashFill = []
BootstrapBezier = []
BootstrapBezier2 = []
BootstrapBicycle = []
BootstrapBinoculars = []
BootstrapBinocularsFill = []
BootstrapBlockquoteLeft = []
BootstrapBlockquoteRight = []
BootstrapBluetooth = []
BootstrapBodyText = []
BootstrapBook = []
BootstrapBookFill = []
BootstrapBookHalf = []
BootstrapBookmark = []
BootstrapBookmarkCheck = []
BootstrapBookmarkCheckFill = []
BootstrapBookmarkDash = []
BootstrapBookmarkDashFill = []
BootstrapBookmarkFill = []
BootstrapBookmarkHeart = []
BootstrapBookmarkHeartFill = []
BootstrapBookmarkPlus = []
BootstrapBookmarkPlusFill = []
BootstrapBookmarkStar = []
BootstrapBookmarkStarFill = []
BootstrapBookmarkX = []
BootstrapBookmarkXFill = []
BootstrapBookmarks = []
BootstrapBookmarksFill = []
BootstrapBookshelf = []
BootstrapBoombox = []
BootstrapBoomboxFill = []
BootstrapBootstrap = []
BootstrapBootstrapFill = []
BootstrapBootstrapReboot = []
BootstrapBorder = []
BootstrapBorderAll = []
BootstrapBorderBottom = []
BootstrapBorderCenter = []
BootstrapBorderInner = []
BootstrapBorderLeft = []
BootstrapBorderMiddle = []
BootstrapBorderOuter = []
BootstrapBorderRight = []
BootstrapBorderStyle = []
BootstrapBorderTop = []
BootstrapBorderWidth = []
BootstrapBoundingBox = []
BootstrapBoundingBoxCircles = []
BootstrapBox = []
BootstrapBox2 = []
BootstrapBox2Fill = []
BootstrapBox2Heart = []
BootstrapBox2HeartFill = []
BootstrapBoxArrowDown = []
BootstrapBoxArrowDownLeft = []
BootstrapBoxArrowDownRight = []
BootstrapBoxArrowInDown = []
BootstrapBoxArrowInDownLeft = []
BootstrapBoxArrowInDownRight = []
BootstrapBoxArrowInLeft = []
BootstrapBoxArrowInRight = []
BootstrapBoxArrowInUp = []
BootstrapBoxArrowInUpLeft = []
BootstrapBoxArrowInUpRight = []
BootstrapBoxArrowLeft = []
BootstrapBoxArrowRight = []
BootstrapBoxArrowUp = []
BootstrapBoxArrowUpLeft = []
BootstrapBoxArrowUpRight = []
BootstrapBoxSeam = []
BootstrapBoxes = []
BootstrapBraces = []
BootstrapBracesAsterisk = []
BootstrapBricks = []
BootstrapBriefcase = []
BootstrapBriefcaseFill = []
BootstrapBrightnessAltHigh = []
BootstrapBrightnessAltHighFill = []
BootstrapBrightnessAltLow = []
BootstrapBrightnessAltLowFill = []
BootstrapBrightnessHigh = []
BootstrapBrightnessHighFill = []
BootstrapBrightnessLow = []
BootstrapBrightnessLowFill = []
BootstrapBroadcast = []
BootstrapBroadcastPin = []
BootstrapBrush = []
BootstrapBrushFill = []
BootstrapBucket = []
BootstrapBucketFill = []
BootstrapBug = []
BootstrapBugFill = []
BootstrapBuilding = []
BootstrapBullseye = []
BootstrapCalculator = []
BootstrapCalculatorFill = []
BootstrapCalendar = []
BootstrapCalendar2 = []
BootstrapCalendar2Check = []
BootstrapCalendar2CheckFill = []
BootstrapCalendar2Date = []
BootstrapCalendar2DateFill = []
BootstrapCalendar2Day = []
BootstrapCalendar2DayFill = []
BootstrapCalendar2Event = []
BootstrapCalendar2EventFill = []
BootstrapCalendar2Fill = []
BootstrapCalendar2Heart = []
BootstrapCalendar2HeartFill = []
BootstrapCalendar2Minus = []
BootstrapCalendar2MinusFill = []
BootstrapCalendar2Month = []
BootstrapCalendar2MonthFill = []
BootstrapCalendar2Plus = []
BootstrapCalendar2PlusFill = []
BootstrapCalendar2Range = []
BootstrapCalendar2RangeFill = []
BootstrapCalendar2Week = []
BootstrapCalendar2WeekFill = []
BootstrapCalendar2X = []
BootstrapCalendar2XFill = []
BootstrapCalendar3 = []
BootstrapCalendar3Event = []
BootstrapCalendar3EventFill = []
BootstrapCalendar3Fill = []
BootstrapCalendar3Range = []
BootstrapCalendar3RangeFill = []
BootstrapCalendar3Week = []
BootstrapCalendar3WeekFill = []
BootstrapCalendar4 = []
BootstrapCalendar4Event = []
BootstrapCalendar4Range = []
BootstrapCalendar4Week = []
BootstrapCalendarCheck = []
BootstrapCalendarCheckFill = []
BootstrapCalendarDate = []
BootstrapCalendarDateFill = []
BootstrapCalendarDay = []
BootstrapCalendarDayFill = []
BootstrapCalendarEvent = []
BootstrapCalendarEventFill = []
BootstrapCalendarFill = []
BootstrapCalendarHeart = []
BootstrapCalendarHeartFill = []
BootstrapCalendarMinus = []
BootstrapCalendarMinusFill = []
BootstrapCalendarMonth = []
BootstrapCalendarMonthFill = []
BootstrapCalendarPlus = []
BootstrapCalendarPlusFill = []
BootstrapCalendarRange = []
BootstrapCalendarRangeFill = []
BootstrapCalendarWeek = []
BootstrapCalendarWeekFill = []
BootstrapCalendarX = []
BootstrapCalendarXFill = []
BootstrapCamera = []
BootstrapCamera2 = []
BootstrapCameraFill = []
BootstrapCameraReels = []
BootstrapCameraReelsFill = []
BootstrapCameraVideo = []
BootstrapCameraVideoFill = []
BootstrapCameraVideoOff = []
BootstrapCameraVideoOffFill = []
BootstrapCapslock = []
BootstrapCapslockFill = []
BootstrapCardChecklist = []
BootstrapCardHeading = []
BootstrapCardImage = []
BootstrapCardList = []
BootstrapCardText = []
BootstrapCaretDown = []
BootstrapCaretDownFill = []
BootstrapCaretDownSquare = []
BootstrapCaretDownSquareFill = []
BootstrapCaretLeft = []
BootstrapCaretLeftFill = []
BootstrapCaretLeftSquare = []
BootstrapCaretLeftSquareFill = []
BootstrapCaretRight = []
BootstrapCaretRightFill = []
BootstrapCaretRightSquare = []
BootstrapCaretRightSquareFill = []
BootstrapCaretUp = []
BootstrapCaretUpFill = []
BootstrapCaretUpSquare = []
BootstrapCaretUpSquareFill = []
BootstrapCart = []
BootstrapCart2 = []
BootstrapCart3 = []
BootstrapCart4 = []
BootstrapCartCheck = []
BootstrapCartCheckFill = []
BootstrapCartDash = []
BootstrapCartDashFill = []
BootstrapCartFill = []
BootstrapCartPlus = []
BootstrapCartPlusFill = []
BootstrapCartX = []
BootstrapCartXFill = []
BootstrapCash = []
BootstrapCashCoin = []
BootstrapCashStack = []
BootstrapCast = []
BootstrapChat = []
BootstrapChatDots = []
BootstrapChatDotsFill = []
BootstrapChatFill = []
BootstrapChatHeart = []
BootstrapChatHeartFill = []
BootstrapChatLeft = []
BootstrapChatLeftDots = []
BootstrapChatLeftDotsFill = []
BootstrapChatLeftFill = []
BootstrapChatLeftHeart = []
BootstrapChatLeftHeartFill = []
BootstrapChatLeftQuote = []
BootstrapChatLeftQuoteFill = []
BootstrapChatLeftText = []
BootstrapChatLeftTextFill = []
BootstrapChatQuote = []
BootstrapChatQuoteFill = []
BootstrapChatRight = []
BootstrapChatRightDots = []
BootstrapChatRightDotsFill = []
BootstrapChatRightFill = []
BootstrapChatRightHeart = []
BootstrapChatRightHeartFill = []
BootstrapChatRightQuote = []
BootstrapChatRightQuoteFill = []
BootstrapChatRightText = []
BootstrapChatRightTextFill = []
BootstrapChatSquare = []
BootstrapChatSquareDots = []
BootstrapChatSquareDotsFill = []
BootstrapChatSquareFill = []
BootstrapChatSquareHeart = []
BootstrapChatSquareHeartFill = []
BootstrapChatSquareQuote = []
BootstrapChatSquareQuoteFill = []
BootstrapChatSquareText = []
BootstrapChatSquareTextFill = []
BootstrapChatText = []
BootstrapChatTextFill = []
BootstrapCheck = []
BootstrapCheck2 = []
BootstrapCheck2All = []
BootstrapCheck2Circle = []
BootstrapCheck2Square = []
BootstrapCheckAll = []
BootstrapCheckCircle = []
BootstrapCheckCircleFill = []
BootstrapCheckLg = []
BootstrapCheckSquare = []
BootstrapCheckSquareFill = []
BootstrapChevronBarContract = []
BootstrapChevronBarDown = []
BootstrapChevronBarExpand = []
BootstrapChevronBarLeft = []
BootstrapChevronBarRight = []
BootstrapChevronBarUp = []
BootstrapChevronCompactDown = []
BootstrapChevronCompactLeft = []
BootstrapChevronCompactRight = []
BootstrapChevronCompactUp = []
BootstrapChevronContract = []
BootstrapChevronDoubleDown = []
BootstrapChevronDoubleLeft = []
BootstrapChevronDoubleRight = []
BootstrapChevronDoubleUp = []
BootstrapChevronDown = []
BootstrapChevronExpand = []
BootstrapChevronLeft = []
BootstrapChevronRight = []
BootstrapChevronUp = []
BootstrapCircle = []
BootstrapCircleFill = []
BootstrapCircleHalf = []
BootstrapCircleSquare = []
BootstrapClipboard = []
BootstrapClipboard2 = []
BootstrapClipboard2Check = []
BootstrapClipboard2CheckFill = []
BootstrapClipboard2Data = []
BootstrapClipboard2DataFill = []
BootstrapClipboard2Fill = []
BootstrapClipboard2Heart = []
BootstrapClipboard2HeartFill = []
BootstrapClipboard2Minus = []
BootstrapClipboard2MinusFill = []
BootstrapClipboard2Plus = []
BootstrapClipboard2PlusFill = []
BootstrapClipboard2Pulse = []
BootstrapClipboard2PulseFill = []
BootstrapClipboard2X = []
BootstrapClipboard2XFill = []
BootstrapClipboardCheck = []
BootstrapClipboardCheckFill = []
BootstrapClipboardData = []
BootstrapClipboardDataFill = []
BootstrapClipboardFill = []
BootstrapClipboardHeart = []
BootstrapClipboardHeartFill = []
BootstrapClipboardMinus = []
BootstrapClipboardMinusFill = []
BootstrapClipboardPlus = []
BootstrapClipboardPlusFill = []
BootstrapClipboardPulse = []
BootstrapClipboardX = []
BootstrapClipboardXFill = []
BootstrapClock = []
BootstrapClockFill = []
BootstrapClockHistory = []
BootstrapCloud = []
BootstrapCloudArrowDown = []
BootstrapCloudArrowDownFill = []
BootstrapCloudArrowUp = []
BootstrapCloudArrowUpFill = []
BootstrapCloudCheck = []
BootstrapCloudCheckFill = []
BootstrapCloudDownload = []
BootstrapCloudDownloadFill = []
BootstrapCloudDrizzle = []
BootstrapCloudDrizzleFill = []
BootstrapCloudFill = []
BootstrapCloudFog = []
BootstrapCloudFog2 = []
BootstrapCloudFog2Fill = []
BootstrapCloudFogFill = []
BootstrapCloudHail = []
BootstrapCloudHailFill = []
BootstrapCloudHaze = []
BootstrapCloudHaze2 = []
BootstrapCloudHaze2Fill = []
BootstrapCloudHazeFill = []
BootstrapCloudLightning = []
BootstrapCloudLightningFill = []
BootstrapCloudLightningRain = []
BootstrapCloudLightningRainFill = []
BootstrapCloudMinus = []
BootstrapCloudMinusFill = []
BootstrapCloudMoon = []
BootstrapCloudMoonFill = []
BootstrapCloudPlus = []
BootstrapCloudPlusFill = []
BootstrapCloudRain = []
BootstrapCloudRainFill = []
BootstrapCloudRainHeavy = []
BootstrapCloudRainHeavyFill = []
BootstrapCloudSlash = []
BootstrapCloudSlashFill = []
BootstrapCloudSleet = []
BootstrapCloudSleetFill = []
BootstrapCloudSnow = []
BootstrapCloudSnowFill = []
BootstrapCloudSun = []
BootstrapCloudSunFill = []
BootstrapCloudUpload = []
BootstrapCloudUploadFill = []
BootstrapClouds = []
BootstrapCloudsFill = []
BootstrapCloudy = []
BootstrapCloudyFill = []
BootstrapCode = []
BootstrapCodeSlash = []
BootstrapCodeSquare = []
BootstrapCoin = []
BootstrapCollection = []
BootstrapCollectionFill = []
BootstrapCollectionPlay = []
BootstrapCollectionPlayFill = []
BootstrapColumns = []
BootstrapColumnsGap = []
BootstrapCommand = []
BootstrapCompass = []
BootstrapCompassFill = []
BootstrapCone = []
BootstrapConeStriped = []
BootstrapController = []
BootstrapCpu = []
BootstrapCpuFill = []
BootstrapCreditCard = []
BootstrapCreditCard2Back = []
BootstrapCreditCard2BackFill = []
BootstrapCreditCard2Front = []
BootstrapCreditCard2FrontFill = []
BootstrapCreditCardFill = []
BootstrapCrop = []
BootstrapCup = []
BootstrapCupFill = []
BootstrapCupStraw = []
BootstrapCurrencyBitcoin = []
BootstrapCurrencyDollar = []
BootstrapCurrencyEuro = []
BootstrapCurrencyExchange = []
BootstrapCurrencyPound = []
BootstrapCurrencyYen = []
BootstrapCursor = []
BootstrapCursorFill = []
BootstrapCursorText = []
BootstrapDash = []
BootstrapDashCircle = []
BootstrapDashCircleDotted = []
BootstrapDashCircleFill = []
BootstrapDashLg = []
BootstrapDashSquare = []
BootstrapDashSquareDotted = []
BootstrapDashSquareFill = []
BootstrapDeviceHdd = []
BootstrapDeviceHddFill = []
BootstrapDeviceSsd = []
BootstrapDeviceSsdFill = []
BootstrapDiagram2 = []
BootstrapDiagram2Fill = []
BootstrapDiagram3 = []
BootstrapDiagram3Fill = []
BootstrapDiamond = []
BootstrapDiamondFill = []
BootstrapDiamondHalf = []
BootstrapDice1 = []
BootstrapDice1Fill = []
BootstrapDice2 = []
BootstrapDice2Fill = []
BootstrapDice3 = []
BootstrapDice3Fill = []
BootstrapDice4 = []
BootstrapDice4Fill = []
BootstrapDice5 = []
BootstrapDice5Fill = []
BootstrapDice6 = []
BootstrapDice6Fill = []
BootstrapDisc = []
BootstrapDiscFill = []
BootstrapDiscord = []
BootstrapDisplay = []
BootstrapDisplayFill = []
BootstrapDisplayport = []
BootstrapDisplayportFill = []
BootstrapDistributeHorizontal = []
BootstrapDistributeVertical = []
BootstrapDoorClosed = []
BootstrapDoorClosedFill = []
BootstrapDoorOpen = []
BootstrapDoorOpenFill = []
BootstrapDot = []
BootstrapDownload = []
BootstrapDpad = []
BootstrapDpadFill = []
BootstrapDribbble = []
BootstrapDroplet = []
BootstrapDropletFill = []
BootstrapDropletHalf = []
BootstrapEar = []
BootstrapEarFill = []
BootstrapEarbuds = []
BootstrapEasel = []
BootstrapEasel2 = []
BootstrapEasel2Fill = []
BootstrapEasel3 = []
BootstrapEasel3Fill = []
BootstrapEaselFill = []
BootstrapEgg = []
BootstrapEggFill = []
BootstrapEggFried = []
BootstrapEject = []
BootstrapEjectFill = []
BootstrapEmojiAngry = []
BootstrapEmojiAngryFill = []
BootstrapEmojiDizzy = []
BootstrapEmojiDizzyFill = []
BootstrapEmojiExpressionless = []
BootstrapEmojiExpressionlessFill = []
BootstrapEmojiFrown = []
BootstrapEmojiFrownFill = []
BootstrapEmojiHeartEyes = []
BootstrapEmojiHeartEyesFill = []
BootstrapEmojiKiss = []
BootstrapEmojiKissFill = []
BootstrapEmojiLaughing = []
BootstrapEmojiLaughingFill = []
BootstrapEmojiNeutral = []
BootstrapEmojiNeutralFill = []
BootstrapEmojiSmile = []
BootstrapEmojiSmileFill = []
BootstrapEmojiSmileUpsideDown = []
BootstrapEmojiSmileUpsideDownFill = []
BootstrapEmojiSunglasses = []
BootstrapEmojiSunglassesFill = []
BootstrapEmojiWink = []
BootstrapEmojiWinkFill = []
BootstrapEnvelope = []
BootstrapEnvelopeCheck = []
BootstrapEnvelopeCheckFill = []
BootstrapEnvelopeDash = []
BootstrapEnvelopeDashFill = []
BootstrapEnvelopeExclamation = []
BootstrapEnvelopeExclamationFill = []
BootstrapEnvelopeFill = []
BootstrapEnvelopeHeart = []
BootstrapEnvelopeHeartFill = []
BootstrapEnvelopeOpen = []
BootstrapEnvelopeOpenFill = []
BootstrapEnvelopeOpenHeart = []
BootstrapEnvelopeOpenHeartFill = []
BootstrapEnvelopePaper = []
BootstrapEnvelopePaperFill = []
BootstrapEnvelopePaperHeart = []
BootstrapEnvelopePaperHeartFill = []
BootstrapEnvelopePlus = []
BootstrapEnvelopePlusFill = []
BootstrapEnvelopeSlash = []
BootstrapEnvelopeSlashFill = []
BootstrapEnvelopeX = []
BootstrapEnvelopeXFill = []
BootstrapEraser = []
BootstrapEraserFill = []
BootstrapEthernet = []
BootstrapExclamation = []
BootstrapExclamationCircle = []
BootstrapExclamationCircleFill = []
BootstrapExclamationDiamond = []
BootstrapExclamationDiamondFill = []
BootstrapExclamationLg = []
BootstrapExclamationOctagon = []
BootstrapExclamationOctagonFill = []
BootstrapExclamationSquare = []
BootstrapExclamationSquareFill = []
BootstrapExclamationTriangle = []
BootstrapExclamationTriangleFill = []
BootstrapExclude = []
BootstrapExplicit = []
BootstrapExplicitFill = []
BootstrapEye = []
BootstrapEyeFill = []
BootstrapEyeSlash = []
BootstrapEyeSlashFill = []
BootstrapEyedropper = []
BootstrapEyeglasses = []
BootstrapFacebook = []
BootstrapFan = []
BootstrapFile = []
BootstrapFileArrowDown = []
BootstrapFileArrowDownFill = []
BootstrapFileArrowUp = []
BootstrapFileArrowUpFill = []
BootstrapFileBarGraph = []
BootstrapFileBarGraphFill = []
BootstrapFileBinary = []
BootstrapFileBinaryFill = []
BootstrapFileBreak = []
BootstrapFileBreakFill = []
BootstrapFileCheck = []
BootstrapFileCheckFill = []
BootstrapFileCode = []
BootstrapFileCodeFill = []
BootstrapFileDiff = []
BootstrapFileDiffFill = []
BootstrapFileEarmark = []
BootstrapFileEarmarkArrowDown = []
BootstrapFileEarmarkArrowDownFill = []
BootstrapFileEarmarkArrowUp = []
BootstrapFileEarmarkArrowUpFill = []
BootstrapFileEarmarkBarGraph = []
BootstrapFileEarmarkBarGraphFill = []
BootstrapFileEarmarkBinary = []
BootstrapFileEarmarkBinaryFill = []
BootstrapFileEarmarkBreak = []
BootstrapFileEarmarkBreakFill = []
BootstrapFileEarmarkCheck = []
BootstrapFileEarmarkCheckFill = []
BootstrapFileEarmarkCode = []
BootstrapFileEarmarkCodeFill = []
BootstrapFileEarmarkDiff = []
BootstrapFileEarmarkDiffFill = []
BootstrapFileEarmarkEasel = []
BootstrapFileEarmarkEaselFill = []
BootstrapFileEarmarkExcel = []
BootstrapFileEarmarkExcelFill = []
BootstrapFileEarmarkFill = []
BootstrapFileEarmarkFont = []
BootstrapFileEarmarkFontFill = []
BootstrapFileEarmarkImage = []
BootstrapFileEarmarkImageFill = []
BootstrapFileEarmarkLock = []
BootstrapFileEarmarkLock2 = []
BootstrapFileEarmarkLock2Fill = []
BootstrapFileEarmarkLockFill = []
BootstrapFileEarmarkMedical = []
BootstrapFileEarmarkMedicalFill = []
BootstrapFileEarmarkMinus = []
BootstrapFileEarmarkMinusFill = []
BootstrapFileEarmarkMusic = []
BootstrapFileEarmarkMusicFill = []
BootstrapFileEarmarkPdf = []
BootstrapFileEarmarkPdfFill = []
BootstrapFileEarmarkPerson = []
BootstrapFileEarmarkPersonFill = []
BootstrapFileEarmarkPlay = []
BootstrapFileEarmarkPlayFill = []
BootstrapFileEarmarkPlus = []
BootstrapFileEarmarkPlusFill = []
BootstrapFileEarmarkPost = []
BootstrapFileEarmarkPostFill = []
BootstrapFileEarmarkPpt = []
BootstrapFileEarmarkPptFill = []
BootstrapFileEarmarkRichtext = []
BootstrapFileEarmarkRichtextFill = []
BootstrapFileEarmarkRuled = []
BootstrapFileEarmarkRuledFill = []
BootstrapFileEarmarkSlides = []
BootstrapFileEarmarkSlidesFill = []
BootstrapFileEarmarkSpreadsheet = []
BootstrapFileEarmarkSpreadsheetFill = []
BootstrapFileEarmarkText = []
BootstrapFileEarmarkTextFill = []
BootstrapFileEarmarkWord = []
BootstrapFileEarmarkWordFill = []
BootstrapFileEarmarkX = []
BootstrapFileEarmarkXFill = []
BootstrapFileEarmarkZip = []
BootstrapFileEarmarkZipFill = []
BootstrapFileEasel = []
BootstrapFileEaselFill = []
BootstrapFileExcel = []
BootstrapFileExcelFill = []
BootstrapFileFill = []
BootstrapFileFont = []
BootstrapFileFontFill = []
BootstrapFileImage = []
BootstrapFileImageFill = []
BootstrapFileLock = []
BootstrapFileLock2 = []
BootstrapFileLock2Fill = []
BootstrapFileLockFill = []
BootstrapFileMedical = []
BootstrapFileMedicalFill = []
BootstrapFileMinus = []
BootstrapFileMinusFill = []
BootstrapFileMusic = []
BootstrapFileMusicFill = []
BootstrapFilePdf = []
BootstrapFilePdfFill = []
BootstrapFilePerson = []
BootstrapFilePersonFill = []
BootstrapFilePlay = []
BootstrapFilePlayFill = []
BootstrapFilePlus = []
BootstrapFilePlusFill = []
BootstrapFilePost = []
BootstrapFilePostFill = []
BootstrapFilePpt = []
BootstrapFilePptFill = []
BootstrapFileRichtext = []
BootstrapFileRichtextFill = []
BootstrapFileRuled = []
BootstrapFileRuledFill = []
BootstrapFileSlides = []
BootstrapFileSlidesFill = []
BootstrapFileSpreadsheet = []
BootstrapFileSpreadsheetFill = []
BootstrapFileText = []
BootstrapFileTextFill = []
BootstrapFileWord = []
BootstrapFileWordFill = []
BootstrapFileX = []
BootstrapFileXFill = []
BootstrapFileZip = []
BootstrapFileZipFill = []
BootstrapFiles = []
BootstrapFilesAlt = []
BootstrapFiletypeAac = []
BootstrapFiletypeAi = []
BootstrapFiletypeBmp = []
BootstrapFiletypeCs = []
BootstrapFiletypeCss = []
BootstrapFiletypeCsv = []
BootstrapFiletypeDoc = []
BootstrapFiletypeDocx = []
BootstrapFiletypeExe = []
BootstrapFiletypeGif = []
BootstrapFiletypeHeic = []
BootstrapFiletypeHtml = []
BootstrapFiletypeJava = []
BootstrapFiletypeJpg = []
BootstrapFiletypeJs = []
BootstrapFiletypeJson = []
BootstrapFiletypeJsx = []
BootstrapFiletypeKey = []
BootstrapFiletypeM4P = []
BootstrapFiletypeMd = []
BootstrapFiletypeMdx = []
BootstrapFiletypeMov = []
BootstrapFiletypeMp3 = []
BootstrapFiletypeMp4 = []
BootstrapFiletypeOtf = []
BootstrapFiletypePdf = []
BootstrapFiletypePhp = []
BootstrapFiletypePng = []
BootstrapFiletypePpt = []
BootstrapFiletypePptx = []
BootstrapFiletypePsd = []
BootstrapFiletypePy = []
BootstrapFiletypeRaw = []
BootstrapFiletypeRb = []
BootstrapFiletypeSass = []
BootstrapFiletypeScss = []
BootstrapFiletypeSh = []
BootstrapFiletypeSvg = []
BootstrapFiletypeTiff = []
BootstrapFiletypeTsx = []
BootstrapFiletypeTtf = []
BootstrapFiletypeTxt = []
BootstrapFiletypeWav = []
BootstrapFiletypeWoff = []
BootstrapFiletypeXls = []
BootstrapFiletypeXlsx = []
BootstrapFiletypeXml = []
BootstrapFiletypeYml = []
BootstrapFilm = []
BootstrapFilter = []
BootstrapFilterCircle = []
BootstrapFilterCircleFill = []
BootstrapFilterLeft = []
BootstrapFilterRight = []
BootstrapFilterSquare = []
BootstrapFilterSquareFill = []
BootstrapFingerprint = []
BootstrapFlag = []
BootstrapFlagFill = []
BootstrapFlower1 = []
BootstrapFlower2 = []
BootstrapFlower3 = []
BootstrapFolder = []
BootstrapFolder2 = []
BootstrapFolder2Open = []
BootstrapFolderCheck = []
BootstrapFolderFill = []
BootstrapFolderMinus = []
BootstrapFolderPlus = []
BootstrapFolderSymlink = []
BootstrapFolderSymlinkFill = []
BootstrapFolderX = []
BootstrapFonts = []
BootstrapForward = []
BootstrapForwardFill = []
BootstrapFront = []
BootstrapFullscreen = []
BootstrapFullscreenExit = []
BootstrapFunnel = []
BootstrapFunnelFill = []
BootstrapGear = []
BootstrapGearFill = []
BootstrapGearWide = []
BootstrapGearWideConnected = []
BootstrapGem = []
BootstrapGenderAmbiguous = []
BootstrapGenderFemale = []
BootstrapGenderMale = []
BootstrapGenderTrans = []
BootstrapGeo = []
BootstrapGeoAlt = []
BootstrapGeoAltFill = []
BootstrapGeoFill = []
BootstrapGift = []
BootstrapGiftFill = []
BootstrapGit = []
BootstrapGithub = []
BootstrapGlobe = []
BootstrapGlobe2 = []
BootstrapGoogle = []
BootstrapGpuCard = []
BootstrapGraphDown = []
BootstrapGraphDownArrow = []
BootstrapGraphUp = []
BootstrapGraphUpArrow = []
BootstrapGrid = []
BootstrapGrid1X2 = []
BootstrapGrid1X2Fill = []
BootstrapGrid3X2 = []
BootstrapGrid3X2Gap = []
BootstrapGrid3X2GapFill = []
BootstrapGrid3X3 = []
BootstrapGrid3X3Gap = []
BootstrapGrid3X3GapFill = []
BootstrapGridFill = []
BootstrapGripHorizontal = []
BootstrapGripVertical = []
BootstrapHammer = []
BootstrapHandIndex = []
BootstrapHandIndexFill = []
BootstrapHandIndexThumb = []
BootstrapHandIndexThumbFill = []
BootstrapHandThumbsDown = []
BootstrapHandThumbsDownFill = []
BootstrapHandThumbsUp = []
BootstrapHandThumbsUpFill = []
BootstrapHandbag = []
BootstrapHandbagFill = []
BootstrapHash = []
BootstrapHdd = []
BootstrapHddFill = []
BootstrapHddNetwork = []
BootstrapHddNetworkFill = []
BootstrapHddRack = []
BootstrapHddRackFill = []
BootstrapHddStack = []
BootstrapHddStackFill = []
BootstrapHdmi = []
BootstrapHdmiFill = []
BootstrapHeadphones = []
BootstrapHeadset = []
BootstrapHeadsetVr = []
BootstrapHeart = []
BootstrapHeartArrow = []
BootstrapHeartFill = []
BootstrapHeartHalf = []
BootstrapHeartPulse = []
BootstrapHeartPulseFill = []
BootstrapHeartbreak = []
BootstrapHeartbreakFill = []
BootstrapHearts = []
BootstrapHeptagon = []
BootstrapHeptagonFill = []
BootstrapHeptagonHalf = []
BootstrapHexagon = []
BootstrapHexagonFill = []
BootstrapHexagonHalf = []
BootstrapHospital = []
BootstrapHospitalFill = []
BootstrapHourglass = []
BootstrapHourglassBottom = []
BootstrapHourglassSplit = []
BootstrapHourglassTop = []
BootstrapHouse = []
BootstrapHouseDoor = []
BootstrapHouseDoorFill = []
BootstrapHouseFill = []
BootstrapHouseHeart = []
BootstrapHouseHeartFill = []
BootstrapHr = []
BootstrapHurricane = []
BootstrapHypnotize = []
BootstrapImage = []
BootstrapImageAlt = []
BootstrapImageFill = []
BootstrapImages = []
BootstrapInbox = []
BootstrapInboxFill = []
BootstrapInboxes = []
BootstrapInboxesFill = []
BootstrapIncognito = []
BootstrapInfinity = []
BootstrapInfo = []
BootstrapInfoCircle = []
BootstrapInfoCircleFill = []
BootstrapInfoLg = []
BootstrapInfoSquare = []
BootstrapInfoSquareFill = []
BootstrapInputCursor = []
BootstrapInputCursorText = []
BootstrapInstagram = []
BootstrapIntersect = []
BootstrapJournal = []
BootstrapJournalAlbum = []
BootstrapJournalArrowDown = []
BootstrapJournalArrowUp = []
BootstrapJournalBookmark = []
BootstrapJournalBookmarkFill = []
BootstrapJournalCheck = []
BootstrapJournalCode = []
BootstrapJournalMedical = []
BootstrapJournalMinus = []
BootstrapJournalPlus = []
BootstrapJournalRichtext = []
BootstrapJournalText = []
BootstrapJournalX = []
BootstrapJournals = []
BootstrapJoystick = []
BootstrapJustify = []
BootstrapJustifyLeft = []
BootstrapJustifyRight = []
BootstrapKanban = []
BootstrapKanbanFill = []
BootstrapKey = []
BootstrapKeyFill = []
BootstrapKeyboard = []
BootstrapKeyboardFill = []
BootstrapLadder = []
BootstrapLamp = []
BootstrapLampFill = []
BootstrapLaptop = []
BootstrapLaptopFill = []
BootstrapLayerBackward = []
BootstrapLayerForward = []
BootstrapLayers = []
BootstrapLayersFill = []
BootstrapLayersHalf = []
BootstrapLayoutSidebar = []
BootstrapLayoutSidebarInset = []
BootstrapLayoutSidebarInsetReverse = []
BootstrapLayoutSidebarReverse = []
BootstrapLayoutSplit = []
BootstrapLayoutTextSidebar = []
BootstrapLayoutTextSidebarReverse = []
BootstrapLayoutTextWindow = []
BootstrapLayoutTextWindowReverse = []
BootstrapLayoutThreeColumns = []
BootstrapLayoutWtf = []
BootstrapLifePreserver = []
BootstrapLightbulb = []
BootstrapLightbulbFill = []
BootstrapLightbulbOff = []
BootstrapLightbulbOffFill = []
BootstrapLightning = []
BootstrapLightningCharge = []
BootstrapLightningChargeFill = []
BootstrapLightningFill = []
BootstrapLine = []
BootstrapLink = []
BootstrapLink45Deg = []
BootstrapLinkedin = []
BootstrapList = []
BootstrapListCheck = []
BootstrapListColumns = []
BootstrapListColumnsReverse = []
BootstrapListNested = []
BootstrapListOl = []
BootstrapListStars = []
BootstrapListTask = []
BootstrapListUl = []
BootstrapLock = []
BootstrapLockFill = []
BootstrapMagic = []
BootstrapMagnet = []
BootstrapMagnetFill = []
BootstrapMailbox = []
BootstrapMailbox2 = []
BootstrapMap = []
BootstrapMapFill = []
BootstrapMarkdown = []
BootstrapMarkdownFill = []
BootstrapMask = []
BootstrapMastodon = []
BootstrapMedium = []
BootstrapMegaphone = []
BootstrapMegaphoneFill = []
BootstrapMemory = []
BootstrapMenuApp = []
BootstrapMenuAppFill = []
BootstrapMenuButton = []
BootstrapMenuButtonFill = []
BootstrapMenuButtonWide = []
BootstrapMenuButtonWideFill = []
BootstrapMenuDown = []
BootstrapMenuUp = []
BootstrapMessenger = []
BootstrapMeta = []
BootstrapMic = []
BootstrapMicFill = []
BootstrapMicMute = []
BootstrapMicMuteFill = []
BootstrapMicrosoft = []
BootstrapMinecart = []
BootstrapMinecartLoaded = []
BootstrapModem = []
BootstrapModemFill = []
BootstrapMoisture = []
BootstrapMoon = []
BootstrapMoonFill = []
BootstrapMoonStars = []
BootstrapMoonStarsFill = []
BootstrapMortarboard = []
BootstrapMortarboardFill = []
BootstrapMotherboard = []
BootstrapMotherboardFill = []
BootstrapMouse = []
BootstrapMouse2 = []
BootstrapMouse2Fill = []
BootstrapMouse3 = []
BootstrapMouse3Fill = []
BootstrapMouseFill = []
BootstrapMusicNote = []
BootstrapMusicNoteBeamed = []
BootstrapMusicNoteList = []
BootstrapMusicPlayer = []
BootstrapMusicPlayerFill = []
BootstrapNewspaper = []
BootstrapNintendoSwitch = []
BootstrapNodeMinus = []
BootstrapNodeMinusFill = []
BootstrapNodePlus = []
BootstrapNodePlusFill = []
BootstrapNut = []
BootstrapNutFill = []
BootstrapOctagon = []
BootstrapOctagonFill = []
BootstrapOctagonHalf = []
BootstrapOpticalAudio = []
BootstrapOpticalAudioFill = []
BootstrapOption = []
BootstrapOutlet = []
BootstrapPaintBucket = []
BootstrapPalette = []
BootstrapPalette2 = []
BootstrapPaletteFill = []
BootstrapPaperclip = []
BootstrapParagraph = []
BootstrapPatchCheck = []
BootstrapPatchCheckFill = []
BootstrapPatchExclamation = []
BootstrapPatchExclamationFill = []
BootstrapPatchMinus = []
BootstrapPatchMinusFill = []
BootstrapPatchPlus = []
BootstrapPatchPlusFill = []
BootstrapPatchQuestion = []
BootstrapPatchQuestionFill = []
BootstrapPause = []
BootstrapPauseBtn = []
BootstrapPauseBtnFill = []
BootstrapPauseCircle = []
BootstrapPauseCircleFill = []
BootstrapPauseFill = []
BootstrapPaypal = []
BootstrapPc = []
BootstrapPcDisplay = []
BootstrapPcDisplayHorizontal = []
BootstrapPcHorizontal = []
BootstrapPciCard = []
BootstrapPeace = []
BootstrapPeaceFill = []
BootstrapPen = []
BootstrapPenFill = []
BootstrapPencil = []
BootstrapPencilFill = []
BootstrapPencilSquare = []
BootstrapPentagon = []
BootstrapPentagonFill = []
BootstrapPentagonHalf = []
BootstrapPeople = []
BootstrapPeopleFill = []
BootstrapPercent = []
BootstrapPerson = []
BootstrapPersonBadge = []
BootstrapPersonBadgeFill = []
BootstrapPersonBoundingBox = []
BootstrapPersonCheck = []
BootstrapPersonCheckFill = []
BootstrapPersonCircle = []
BootstrapPersonDash = []
BootstrapPersonDashFill = []
BootstrapPersonFill = []
BootstrapPersonHeart = []
BootstrapPersonHearts = []
BootstrapPersonLinesFill = []
BootstrapPersonPlus = []
BootstrapPersonPlusFill = []
BootstrapPersonRolodex = []
BootstrapPersonSquare = []
BootstrapPersonVideo = []
BootstrapPersonVideo2 = []
BootstrapPersonVideo3 = []
BootstrapPersonWorkspace = []
BootstrapPersonX = []
BootstrapPersonXFill = []
BootstrapPhone = []
BootstrapPhoneFill = []
BootstrapPhoneFlip = []
BootstrapPhoneLandscape = []
BootstrapPhoneLandscapeFill = []
BootstrapPhoneVibrate = []
BootstrapPhoneVibrateFill = []
BootstrapPieChart = []
BootstrapPieChartFill = []
BootstrapPiggyBank = []
BootstrapPiggyBankFill = []
BootstrapPin = []
BootstrapPinAngle = []
BootstrapPinAngleFill = []
BootstrapPinFill = []
BootstrapPinMap = []
BootstrapPinMapFill = []
BootstrapPinterest = []
BootstrapPip = []
BootstrapPipFill = []
BootstrapPlay = []
BootstrapPlayBtn = []
BootstrapPlayBtnFill = []
BootstrapPlayCircle = []
BootstrapPlayCircleFill = []
BootstrapPlayFill = []
BootstrapPlaystation = []
BootstrapPlug = []
BootstrapPlugFill = []
BootstrapPlugin = []
BootstrapPlus = []
BootstrapPlusCircle = []
BootstrapPlusCircleDotted = []
BootstrapPlusCircleFill = []
BootstrapPlusLg = []
BootstrapPlusSlashMinus = []
BootstrapPlusSquare = []
BootstrapPlusSquareDotted = []
BootstrapPlusSquareFill = []
BootstrapPostage = []
BootstrapPostageFill = []
BootstrapPostageHeart = []
BootstrapPostageHeartFill = []
BootstrapPostcard = []
BootstrapPostcardFill = []
BootstrapPostcardHeart = []
BootstrapPostcardHeartFill = []
BootstrapPower = []
BootstrapPrinter = []
BootstrapPrinterFill = []
BootstrapProjector = []
BootstrapProjectorFill = []
BootstrapPuzzle = []
BootstrapPuzzleFill = []
BootstrapQrCode = []
BootstrapQrCodeScan = []
BootstrapQuestion = []
BootstrapQuestionCircle = []
BootstrapQuestionCircleFill = []
BootstrapQuestionDiamond = []
BootstrapQuestionDiamondFill = []
BootstrapQuestionLg = []
BootstrapQuestionOctagon = []
BootstrapQuestionOctagonFill = []
BootstrapQuestionSquare = []
BootstrapQuestionSquareFill = []
BootstrapQuora = []
BootstrapQuote = []
BootstrapRadioactive = []
BootstrapRainbow = []
BootstrapReceipt = []
BootstrapReceiptCutoff = []
BootstrapReception0 = []
BootstrapReception1 = []
BootstrapReception2 = []
BootstrapReception3 = []
BootstrapReception4 = []
BootstrapRecord = []
BootstrapRecord2 = []
BootstrapRecord2Fill = []
BootstrapRecordBtn = []
BootstrapRecordBtnFill = []
BootstrapRecordCircle = []
BootstrapRecordCircleFill = []
BootstrapRecordFill = []
BootstrapRecycle = []
BootstrapReddit = []
BootstrapReply = []
BootstrapReplyAll = []
BootstrapReplyAllFill = []
BootstrapReplyFill = []
BootstrapRobot = []
BootstrapRouter = []
BootstrapRouterFill = []
BootstrapRss = []
BootstrapRssFill = []
BootstrapRulers = []
BootstrapSafe = []
BootstrapSafe2 = []
BootstrapSafe2Fill = []
BootstrapSafeFill = []
BootstrapSave = []
BootstrapSave2 = []
BootstrapSave2Fill = []
BootstrapSaveFill = []
BootstrapScissors = []
BootstrapScrewdriver = []
BootstrapSdCard = []
BootstrapSdCardFill = []
BootstrapSearch = []
BootstrapSearchHeart = []
BootstrapSearchHeartFill = []
BootstrapSegmentedNav = []
BootstrapSend = []
BootstrapSendCheck = []
BootstrapSendCheckFill = []
BootstrapSendDash = []
BootstrapSendDashFill = []
BootstrapSendExclamation = []
BootstrapSendExclamationFill = []
BootstrapSendFill = []
BootstrapSendPlus = []
BootstrapSendPlusFill = []
BootstrapSendSlash = []
BootstrapSendSlashFill = []
BootstrapSendX = []
BootstrapSendXFill = []
BootstrapServer = []
BootstrapShare = []
BootstrapShareFill = []
BootstrapShield = []
BootstrapShieldCheck = []
BootstrapShieldExclamation = []
BootstrapShieldFill = []
BootstrapShieldFillCheck = []
BootstrapShieldFillExclamation = []
BootstrapShieldFillMinus = []
BootstrapShieldFillPlus = []
BootstrapShieldFillX = []
BootstrapShieldLock = []
BootstrapShieldLockFill = []
BootstrapShieldMinus = []
BootstrapShieldPlus = []
BootstrapShieldShaded = []
BootstrapShieldSlash = []
BootstrapShieldSlashFill = []
BootstrapShieldX = []
BootstrapShift = []
BootstrapShiftFill = []
BootstrapShop = []
BootstrapShopWindow = []
BootstrapShuffle = []
BootstrapSignal = []
BootstrapSignpost = []
BootstrapSignpost2 = []
BootstrapSignpost2Fill = []
BootstrapSignpostFill = []
BootstrapSignpostSplit = []
BootstrapSignpostSplitFill = []
BootstrapSim = []
BootstrapSimFill = []
BootstrapSkipBackward = []
BootstrapSkipBackwardBtn = []
BootstrapSkipBackwardBtnFill = []
BootstrapSkipBackwardCircle = []
BootstrapSkipBackwardCircleFill = []
BootstrapSkipBackwardFill = []
BootstrapSkipEnd = []
BootstrapSkipEndBtn = []
BootstrapSkipEndBtnFill = []
BootstrapSkipEndCircle = []
BootstrapSkipEndCircleFill = []
BootstrapSkipEndFill = []
BootstrapSkipForward = []
BootstrapSkipForwardBtn = []
BootstrapSkipForwardBtnFill = []
BootstrapSkipForwardCircle = []
BootstrapSkipForwardCircleFill = []
BootstrapSkipForwardFill = []
BootstrapSkipStart = []
BootstrapSkipStartBtn = []
BootstrapSkipStartBtnFill = []
BootstrapSkipStartCircle = []
BootstrapSkipStartCircleFill = []
BootstrapSkipStartFill = []
BootstrapSkype = []
BootstrapSlack = []
BootstrapSlash = []
BootstrapSlashCircle = []
BootstrapSlashCircleFill = []
BootstrapSlashLg = []
BootstrapSlashSquare = []
BootstrapSlashSquareFill = []
BootstrapSliders = []
BootstrapSliders2 = []
BootstrapSliders2Vertical = []
BootstrapSmartwatch = []
BootstrapSnapchat = []
BootstrapSnow = []
BootstrapSnow2 = []
BootstrapSnow3 = []
BootstrapSortAlphaDown = []
BootstrapSortAlphaDownAlt = []
BootstrapSortAlphaUp = []
BootstrapSortAlphaUpAlt = []
BootstrapSortDown = []
BootstrapSortDownAlt = []
BootstrapSortNumericDown = []
BootstrapSortNumericDownAlt = []
BootstrapSortNumericUp = []
BootstrapSortNumericUpAlt = []
BootstrapSortUp = []
BootstrapSortUpAlt = []
BootstrapSoundwave = []
BootstrapSpeaker = []
BootstrapSpeakerFill = []
BootstrapSpeedometer = []
BootstrapSpeedometer2 = []
BootstrapSpellcheck = []
BootstrapSpotify = []
BootstrapSquare = []
BootstrapSquareFill = []
BootstrapSquareHalf = []
BootstrapStack = []
BootstrapStackOverflow = []
BootstrapStar = []
BootstrapStarFill = []
BootstrapStarHalf = []
BootstrapStars = []
BootstrapSteam = []
BootstrapStickies = []
BootstrapStickiesFill = []
BootstrapSticky = []
BootstrapStickyFill = []
BootstrapStop = []
BootstrapStopBtn = []
BootstrapStopBtnFill = []
BootstrapStopCircle = []
BootstrapStopCircleFill = []
BootstrapStopFill = []
BootstrapStoplights = []
BootstrapStoplightsFill = []
BootstrapStopwatch = []
BootstrapStopwatchFill = []
BootstrapStrava = []
BootstrapSubtract = []
BootstrapSuitClub = []
BootstrapSuitClubFill = []
BootstrapSuitDiamond = []
BootstrapSuitDiamondFill = []
BootstrapSuitHeart = []
BootstrapSuitHeartFill = []
BootstrapSuitSpade = []
BootstrapSuitSpadeFill = []
BootstrapSun = []
BootstrapSunFill = []
BootstrapSunglasses = []
BootstrapSunrise = []
BootstrapSunriseFill = []
BootstrapSunset = []
BootstrapSunsetFill = []
BootstrapSymmetryHorizontal = []
BootstrapSymmetryVertical = []
BootstrapTable = []
BootstrapTablet = []
BootstrapTabletFill = []
BootstrapTabletLandscape = []
BootstrapTabletLandscapeFill = []
BootstrapTag = []
BootstrapTagFill = []
BootstrapTags = []
BootstrapTagsFill = []
BootstrapTelegram = []
BootstrapTelephone = []
BootstrapTelephoneFill = []
BootstrapTelephoneForward = []
BootstrapTelephoneForwardFill = []
BootstrapTelephoneInbound = []
BootstrapTelephoneInboundFill = []
BootstrapTelephoneMinus = []
BootstrapTelephoneMinusFill = []
BootstrapTelephoneOutbound = []
BootstrapTelephoneOutboundFill = []
BootstrapTelephonePlus = []
BootstrapTelephonePlusFill = []
BootstrapTelephoneX = []
BootstrapTelephoneXFill = []
BootstrapTerminal = []
BootstrapTerminalDash = []
BootstrapTerminalFill = []
BootstrapTerminalPlus = []
BootstrapTerminalSplit = []
BootstrapTerminalX = []
BootstrapTextCenter = []
BootstrapTextIndentLeft = []
BootstrapTextIndentRight = []
BootstrapTextLeft = []
BootstrapTextParagraph = []
BootstrapTextRight = []
BootstrapTextarea = []
BootstrapTextareaResize = []
BootstrapTextareaT = []
BootstrapThermometer = []
BootstrapThermometerHalf = []
BootstrapThermometerHigh = []
BootstrapThermometerLow = []
BootstrapThermometerSnow = []
BootstrapThermometerSun = []
BootstrapThreeDots = []
BootstrapThreeDotsVertical = []
BootstrapThunderbolt = []
BootstrapThunderboltFill = []
BootstrapTicket = []
BootstrapTicketDetailed = []
BootstrapTicketDetailedFill = []
BootstrapTicketFill = []
BootstrapTicketPerforated = []
BootstrapTicketPerforatedFill = []
BootstrapTiktok = []
BootstrapToggle2Off = []
BootstrapToggle2On = []
BootstrapToggleOff = []
BootstrapToggleOn = []
BootstrapToggles = []
BootstrapToggles2 = []
BootstrapTools = []
BootstrapTornado = []
BootstrapTranslate = []
BootstrapTrash = []
BootstrapTrash2 = []
BootstrapTrash2Fill = []
BootstrapTrash3 = []
BootstrapTrash3Fill = []
BootstrapTrashFill = []
BootstrapTree = []
BootstrapTreeFill = []
BootstrapTriangle = []
BootstrapTriangleFill = []
BootstrapTriangleHalf = []
BootstrapTrophy = []
BootstrapTrophyFill = []
BootstrapTropicalStorm = []
BootstrapTruck = []
BootstrapTruckFlatbed = []
BootstrapTsunami = []
BootstrapTv = []
BootstrapTvFill = []
BootstrapTwitch = []
BootstrapTwitter = []
BootstrapType = []
BootstrapTypeBold = []
BootstrapTypeH1 = []
BootstrapTypeH2 = []
BootstrapTypeH3 = []
BootstrapTypeItalic = []
BootstrapTypeStrikethrough = []
BootstrapTypeUnderline = []
BootstrapUiChecks = []
BootstrapUiChecksGrid = []
BootstrapUiRadios = []
BootstrapUiRadiosGrid = []
BootstrapUmbrella = []
BootstrapUmbrellaFill = []
BootstrapUnion = []
BootstrapUnlock = []
BootstrapUnlockFill = []
BootstrapUpc = []
BootstrapUpcScan = []
BootstrapUpload = []
BootstrapUsb = []
BootstrapUsbC = []
BootstrapUsbCFill = []
BootstrapUsbDrive = []
BootstrapUsbDriveFill = []
BootstrapUsbFill = []
BootstrapUsbMicro = []
BootstrapUsbMicroFill = []
BootstrapUsbMini = []
BootstrapUsbMiniFill = []
BootstrapUsbPlug = []
BootstrapUsbPlugFill = []
BootstrapUsbSymbol = []
BootstrapValentine = []
BootstrapValentine2 = []
BootstrapVectorPen = []
BootstrapViewList = []
BootstrapViewStacked = []
BootstrapVimeo = []
BootstrapVinyl = []
BootstrapVinylFill = []
BootstrapVoicemail = []
BootstrapVolumeDown = []
BootstrapVolumeDownFill = []
BootstrapVolumeMute = []
BootstrapVolumeMuteFill = []
BootstrapVolumeOff = []
BootstrapVolumeOffFill = []
BootstrapVolumeUp = []
BootstrapVolumeUpFill = []
BootstrapVr = []
BootstrapWallet = []
BootstrapWallet2 = []
BootstrapWalletFill = []
BootstrapWatch = []
BootstrapWater = []
BootstrapWebcam = []
BootstrapWebcamFill = []
BootstrapWhatsapp = []
BootstrapWifi = []
BootstrapWifi1 = []
BootstrapWifi2 = []
BootstrapWifiOff = []
BootstrapWind = []
BootstrapWindow = []
BootstrapWindowDash = []
BootstrapWindowDesktop = []
BootstrapWindowDock = []
BootstrapWindowFullscreen = []
BootstrapWindowPlus = []
BootstrapWindowSidebar = []
BootstrapWindowSplit = []
BootstrapWindowStack = []
BootstrapWindowX = []
BootstrapWindows = []
BootstrapWordpress = []
BootstrapWrench = []
BootstrapWrenchAdjustable = []
BootstrapWrenchAdjustableCircle = []
BootstrapWrenchAdjustableCircleFill = []
BootstrapX = []
BootstrapXCircle = []
BootstrapXCircleFill = []
BootstrapXDiamond = []
BootstrapXDiamondFill = []
BootstrapXLg = []
BootstrapXOctagon = []
BootstrapXOctagonFill = []
BootstrapXSquare = []
BootstrapXSquareFill = []
BootstrapXbox = []
BootstrapYinYang = []
BootstrapYoutube = []
BootstrapZoomIn = []
BootstrapZoomOut = []
FeatherActivity = []
FeatherAirplay = []
FeatherAlertCircle = []
FeatherAlertOctagon = []
FeatherAlertTriangle = []
FeatherAlignCenter = []
FeatherAlignJustify = []
FeatherAlignLeft = []
FeatherAlignRight = []
FeatherAnchor = []
FeatherAperture = []
FeatherArchive = []
FeatherArrowDown = []
FeatherArrowDownCircle = []
FeatherArrowDownLeft = []
FeatherArrowDownRight = []
FeatherArrowLeft = []
FeatherArrowLeftCircle = []
FeatherArrowRight = []
FeatherArrowRightCircle = []
FeatherArrowUp = []
FeatherArrowUpCircle = []
FeatherArrowUpLeft = []
FeatherArrowUpRight = []
FeatherAtSign = []
FeatherAward = []
FeatherBarChart = []
FeatherBarChart2 = []
FeatherBattery = []
FeatherBatteryCharging = []
FeatherBell = []
FeatherBellOff = []
FeatherBluetooth = []
FeatherBold = []
FeatherBook = []
FeatherBookOpen = []
FeatherBookmark = []
FeatherBox = []
FeatherBriefcase = []
FeatherCalendar = []
FeatherCamera = []
FeatherCameraOff = []
FeatherCast = []
FeatherCheck = []
FeatherCheckCircle = []
FeatherCheckSquare = []
FeatherChevronDown = []
FeatherChevronLeft = []
FeatherChevronRight = []
FeatherChevronUp = []
FeatherChevronsDown = []
FeatherChevronsLeft = []
FeatherChevronsRight = []
FeatherChevronsUp = []
FeatherChrome = []
FeatherCircle = []
FeatherClipboard = []
FeatherClock = []
FeatherCloud = []
FeatherCloudDrizzle = []
FeatherCloudLightning = []
FeatherCloudOff = []
FeatherCloudRain = []
FeatherCloudSnow = []
FeatherCode = []
FeatherCodepen = []
FeatherCodesandbox = []
FeatherCoffee = []
FeatherColumns = []
FeatherCommand = []
FeatherCompass = []
FeatherCopy = []
FeatherCornerDownLeft = []
FeatherCornerDownRight = []
FeatherCornerLeftDown = []
FeatherCornerLeftUp = []
FeatherCornerRightDown = []
FeatherCornerRightUp = []
FeatherCornerUpLeft = []
FeatherCornerUpRight = []
FeatherCpu = []
FeatherCreditCard = []
FeatherCrop = []
FeatherCrosshair = []
FeatherDatabase = []
FeatherDelete = []
FeatherDisc = []
FeatherDivide = []
FeatherDivideCircle = []
FeatherDivideSquare = []
FeatherDollarSign = []
FeatherDownload = []
FeatherDownloadCloud = []
FeatherDribbble = []
FeatherDroplet = []
FeatherEdit = []
FeatherEdit2 = []
FeatherEdit3 = []
FeatherExternalLink = []
FeatherEye = []
FeatherEyeOff = []
FeatherFacebook = []
FeatherFastForward = []
FeatherFeather = []
FeatherFigma = []
FeatherFile = []
FeatherFileMinus = []
FeatherFilePlus = []
FeatherFileText = []
FeatherFilm = []
FeatherFilter = []
FeatherFlag = []
FeatherFolder = []
FeatherFolderMinus = []
FeatherFolderPlus = []
FeatherFramer = []
FeatherFrown = []
FeatherGift = []
FeatherGitBranch = []
FeatherGitCommit = []
FeatherGitMerge = []
FeatherGitPullRequest = []
FeatherGithub = []
FeatherGitlab = []
FeatherGlobe = []
FeatherGrid = []
FeatherHardDrive = []
FeatherHash = []
FeatherHeadphones = []
FeatherHeart = []
FeatherHelpCircle = []
FeatherHexagon = []
FeatherHome = []
FeatherImage = []
FeatherInbox = []
FeatherInfo = []
FeatherInstagram = []
FeatherItalic = []
FeatherKey = []
FeatherLayers = []
FeatherLayout = []
FeatherLifeBuoy = []
FeatherLink = []
FeatherLink2 = []
FeatherLinkedin = []
FeatherList = []
FeatherLoader = []
FeatherLock = []
FeatherLogIn = []
FeatherLogOut = []
FeatherMail = []
FeatherMap = []
FeatherMapPin = []
FeatherMaximize = []
FeatherMaximize2 = []
FeatherMeh = []
FeatherMenu = []
FeatherMessageCircle = []
FeatherMessageSquare = []
FeatherMic = []
FeatherMicOff = []
FeatherMinimize = []
FeatherMinimize2 = []
FeatherMinus = []
FeatherMinusCircle = []
FeatherMinusSquare = []
FeatherMonitor = []
FeatherMoon = []
FeatherMoreHorizontal = []
FeatherMoreVertical = []
FeatherMousePointer = []
FeatherMove = []
FeatherMusic = []
FeatherNavigation = []
FeatherNavigation2 = []
FeatherOctagon = []
FeatherPackage = []
FeatherPaperclip = []
FeatherPause = []
FeatherPauseCircle = []
FeatherPenTool = []
FeatherPercent = []
FeatherPhone = []
FeatherPhoneCall = []
FeatherPhoneForwarded = []
FeatherPhoneIncoming = []
FeatherPhoneMissed = []
FeatherPhoneOff = []
FeatherPhoneOutgoing = []
FeatherPieChart = []
FeatherPlay = []
FeatherPlayCircle = []
FeatherPlus = []
FeatherPlusCircle = []
FeatherPlusSquare = []
FeatherPocket = []
FeatherPower = []
FeatherPrinter = []
FeatherRadio = []
FeatherRefreshCcw = []
FeatherRefreshCw = []
FeatherRepeat = []
FeatherRewind = []
FeatherRotateCcw = []
FeatherRotateCw = []
FeatherRss = []
FeatherSave = []
FeatherScissors = []
FeatherSearch = []
FeatherSend = []
FeatherServer = []
FeatherSettings = []
FeatherShare = []
FeatherShare2 = []
FeatherShield = []
FeatherShieldOff = []
FeatherShoppingBag = []
FeatherShoppingCart = []
FeatherShuffle = []
FeatherSidebar = []
FeatherSkipBack = []
FeatherSkipForward = []
FeatherSlack = []
FeatherSlash = []
FeatherSliders = []
FeatherSmartphone = []
FeatherSmile = []
FeatherSpeaker = []
FeatherSquare = []
FeatherStar = []
FeatherStopCircle = []
FeatherSun = []
FeatherSunrise = []
FeatherSunset = []
FeatherTable = []
FeatherTablet = []
FeatherTag = []
FeatherTarget = []
FeatherTerminal = []
FeatherThermometer = []
FeatherThumbsDown = []
FeatherThumbsUp = []
FeatherToggleLeft = []
FeatherToggleRight = []
FeatherTool = []
FeatherTrash = []
FeatherTrash2 = []
FeatherTrello = []
FeatherTrendingDown = []
FeatherTrendingUp = []
FeatherTriangle = []
FeatherTruck = []
FeatherTv = []
FeatherTwitch = []
FeatherTwitter = []
FeatherType = []
FeatherUmbrella = []
FeatherUnderline = []
FeatherUnlock = []
FeatherUpload = []
FeatherUploadCloud = []
FeatherUser = []
FeatherUserCheck = []
FeatherUserMinus = []
FeatherUserPlus = []
FeatherUserX = []
FeatherUsers = []
FeatherVideo = []
FeatherVideoOff = []
FeatherVoicemail = []
FeatherVolume = []
FeatherVolume1 = []
FeatherVolume2 = []
FeatherVolumeX = []
FeatherWatch = []
FeatherWifi = []
FeatherWifiOff = []
FeatherWind = []
FeatherX = []
FeatherXCircle = []
FeatherXOctagon = []
FeatherXSquare = []
FeatherYoutube = []
FeatherZap = []
FeatherZapOff = []
FeatherZoomIn = []
FeatherZoomOut = []
FontAwesomeRegularAddressBook = []
FontAwesomeRegularAddressCard = []
FontAwesomeRegularBell = []
FontAwesomeRegularBellSlash = []
FontAwesomeRegularBookmark = []
FontAwesomeRegularBuilding = []
FontAwesomeRegularCalendar = []
FontAwesomeRegularCalendarCheck = []
FontAwesomeRegularCalendarDays = []
FontAwesomeRegularCalendarMinus = []
FontAwesomeRegularCalendarPlus = []
FontAwesomeRegularCalendarXmark = []
FontAwesomeRegularChartBar = []
FontAwesomeRegularChessBishop = []
FontAwesomeRegularChessKing = []
FontAwesomeRegularChessKnight = []
FontAwesomeRegularChessPawn = []
FontAwesomeRegularChessQueen = []
FontAwesomeRegularChessRook = []
FontAwesomeRegularCircle = []
FontAwesomeRegularCircleCheck = []
FontAwesomeRegularCircleDot = []
FontAwesomeRegularCircleDown = []
FontAwesomeRegularCircleLeft = []
FontAwesomeRegularCirclePause = []
FontAwesomeRegularCirclePlay = []
FontAwesomeRegularCircleQuestion = []
FontAwesomeRegularCircleRight = []
FontAwesomeRegularCircleStop = []
FontAwesomeRegularCircleUp = []
FontAwesomeRegularCircleUser = []
FontAwesomeRegularCircleXmark = []
FontAwesomeRegularClipboard = []
FontAwesomeRegularClock = []
FontAwesomeRegularClone = []
FontAwesomeRegularClosedCaptioning = []
FontAwesomeRegularComment = []
FontAwesomeRegularCommentDots = []
FontAwesomeRegularComments = []
FontAwesomeRegularCompass = []
FontAwesomeRegularCopy = []
FontAwesomeRegularCopyright = []
FontAwesomeRegularCreditCard = []
FontAwesomeRegularEnvelope = []
FontAwesomeRegularEnvelopeOpen = []
FontAwesomeRegularEye = []
FontAwesomeRegularEyeSlash = []
FontAwesomeRegularFaceAngry = []
FontAwesomeRegularFaceDizzy = []
FontAwesomeRegularFaceFlushed = []
FontAwesomeRegularFaceFrown = []
FontAwesomeRegularFaceFrownOpen = []
FontAwesomeRegularFaceGrimace = []
FontAwesomeRegularFaceGrin = []
FontAwesomeRegularFaceGrinBeam = []
FontAwesomeRegularFaceGrinBeamSweat = []
FontAwesomeRegularFaceGrinHearts = []
FontAwesomeRegularFaceGrinSquint = []
FontAwesomeRegularFaceGrinSquintTears = []
FontAwesomeRegularFaceGrinStars = []
FontAwesomeRegularFaceGrinTears = []
FontAwesomeRegularFaceGrinTongue = []
FontAwesomeRegularFaceGrinTongueSquint = []
FontAwesomeRegularFaceGrinTongueWink = []
FontAwesomeRegularFaceGrinWide = []
FontAwesomeRegularFaceGrinWink = []
FontAwesomeRegularFaceKiss = []
FontAwesomeRegularFaceKissBeam = []
FontAwesomeRegularFaceKissWinkHeart = []
FontAwesomeRegularFaceLaugh = []
FontAwesomeRegularFaceLaughBeam = []
FontAwesomeRegularFaceLaughSquint = []
FontAwesomeRegularFaceLaughWink = []
FontAwesomeRegularFaceMeh = []
FontAwesomeRegularFaceMehBlank = []
FontAwesomeRegularFaceRollingEyes = []
FontAwesomeRegularFaceSadCry = []
FontAwesomeRegularFaceSadTear = []
FontAwesomeRegularFaceSmile = []
FontAwesomeRegularFaceSmileBeam = []
FontAwesomeRegularFaceSmileWink = []
FontAwesomeRegularFaceSurprise = []
FontAwesomeRegularFaceTired = []
FontAwesomeRegularFile = []
FontAwesomeRegularFileAudio = []
FontAwesomeRegularFileCode = []
FontAwesomeRegularFileExcel = []
FontAwesomeRegularFileImage = []
FontAwesomeRegularFileLines = []
FontAwesomeRegularFilePdf = []
FontAwesomeRegularFilePowerpoint = []
FontAwesomeRegularFileVideo = []
FontAwesomeRegularFileWord = []
FontAwesomeRegularFileZipper = []
FontAwesomeRegularFlag = []
FontAwesomeRegularFloppyDisk = []
FontAwesomeRegularFolder = []
FontAwesomeRegularFolderClosed = []
FontAwesomeRegularFolderOpen = []
FontAwesomeRegularFontAwesome = []
FontAwesomeRegularFutbol = []
FontAwesomeRegularGem = []
FontAwesomeRegularHand = []
FontAwesomeRegularHandBackFist = []
FontAwesomeRegularHandLizard = []
FontAwesomeRegularHandPeace = []
FontAwesomeRegularHandPointDown = []
FontAwesomeRegularHandPointLeft = []
FontAwesomeRegularHandPointRight = []
FontAwesomeRegularHandPointUp = []
FontAwesomeRegularHandPointer = []
FontAwesomeRegularHandScissors = []
FontAwesomeRegularHandSpock = []
FontAwesomeRegularHandshake = []
FontAwesomeRegularHardDrive = []
FontAwesomeRegularHeart = []
FontAwesomeRegularHospital = []
FontAwesomeRegularHourglass = []
FontAwesomeRegularIdBadge = []
FontAwesomeRegularIdCard = []
FontAwesomeRegularImage = []
FontAwesomeRegularImages = []
FontAwesomeRegularKeyboard = []
FontAwesomeRegularLemon = []
FontAwesomeRegularLifeRing = []
FontAwesomeRegularLightbulb = []
FontAwesomeRegularMap = []
FontAwesomeRegularMessage = []
FontAwesomeRegularMoneyBill1 = []
FontAwesomeRegularMoon = []
FontAwesomeRegularNewspaper = []
FontAwesomeRegularNoteSticky = []
FontAwesomeRegularObjectGroup = []
FontAwesomeRegularObjectUngroup = []
FontAwesomeRegularPaperPlane = []
FontAwesomeRegularPaste = []
FontAwesomeRegularPenToSquare = []
FontAwesomeRegularRectangleList = []
FontAwesomeRegularRectangleXmark = []
FontAwesomeRegularRegistered = []
FontAwesomeRegularShareFromSquare = []
FontAwesomeRegularSnowflake = []
FontAwesomeRegularSquare = []
FontAwesomeRegularSquareCaretDown = []
FontAwesomeRegularSquareCaretLeft = []
FontAwesomeRegularSquareCaretRight = []
FontAwesomeRegularSquareCaretUp = []
FontAwesomeRegularSquareCheck = []
FontAwesomeRegularSquareFull = []
FontAwesomeRegularSquareMinus = []
FontAwesomeRegularSquarePlus = []
FontAwesomeRegularStar = []
FontAwesomeRegularStarHalf = []
FontAwesomeRegularStarHalfStroke = []
FontAwesomeRegularSun = []
FontAwesomeRegularThumbsDown = []
FontAwesomeRegularThumbsUp = []
FontAwesomeRegularTrashCan = []
FontAwesomeRegularUser = []
FontAwesomeRegularWindowMaximize = []
FontAwesomeRegularWindowMinimize = []
FontAwesomeRegularWindowRestore = []
FontAwesomeSolid0 = []
FontAwesomeSolid1 = []
FontAwesomeSolid2 = []
FontAwesomeSolid3 = []
FontAwesomeSolid4 = []
FontAwesomeSolid5 = []
FontAwesomeSolid6 = []
FontAwesomeSolid7 = []
FontAwesomeSolid8 = []
FontAwesomeSolid9 = []
FontAwesomeSolidA = []
FontAwesomeSolidAddressBook = []
FontAwesomeSolidAddressCard = []
FontAwesomeSolidAlignCenter = []
FontAwesomeSolidAlignJustify = []
FontAwesomeSolidAlignLeft = []
FontAwesomeSolidAlignRight = []
FontAwesomeSolidAnchor = []
FontAwesomeSolidAnchorCircleCheck = []
FontAwesomeSolidAnchorCircleExclamation = []
FontAwesomeSolidAnchorCircleXmark = []
FontAwesomeSolidAnchorLock = []
FontAwesomeSolidAngleDown = []
FontAwesomeSolidAngleLeft = []
FontAwesomeSolidAngleRight = []
FontAwesomeSolidAngleUp = []
FontAwesomeSolidAnglesDown = []
FontAwesomeSolidAnglesLeft = []
FontAwesomeSolidAnglesRight = []
FontAwesomeSolidAnglesUp = []
FontAwesomeSolidAnkh = []
FontAwesomeSolidAppleWhole = []
FontAwesomeSolidArchway = []
FontAwesomeSolidArrowDown = []
FontAwesomeSolidArrowDown19 = []
FontAwesomeSolidArrowDown91 = []
FontAwesomeSolidArrowDownAZ = []
FontAwesomeSolidArrowDownLong = []
FontAwesomeSolidArrowDownShortWide = []
FontAwesomeSolidArrowDownUpAcrossLine = []
FontAwesomeSolidArrowDownUpLock = []
FontAwesomeSolidArrowDownWideShort = []
FontAwesomeSolidArrowDownZA = []
FontAwesomeSolidArrowLeft = []
FontAwesomeSolidArrowLeftLong = []
FontAwesomeSolidArrowPointer = []
FontAwesomeSolidArrowRight = []
FontAwesomeSolidArrowRightArrowLeft = []
FontAwesomeSolidArrowRightFromBracket = []
FontAwesomeSolidArrowRightLong = []
FontAwesomeSolidArrowRightToBracket = []
FontAwesomeSolidArrowRightToCity = []
FontAwesomeSolidArrowRotateLeft = []
FontAwesomeSolidArrowRotateRight = []
FontAwesomeSolidArrowTrendDown = []
FontAwesomeSolidArrowTrendUp = []
FontAwesomeSolidArrowTurnDown = []
FontAwesomeSolidArrowTurnUp = []
FontAwesomeSolidArrowUp = []
FontAwesomeSolidArrowUp19 = []
FontAwesomeSolidArrowUp91 = []
FontAwesomeSolidArrowUpAZ = []
FontAwesomeSolidArrowUpFromBracket = []
FontAwesomeSolidArrowUpFromGroundWater = []
FontAwesomeSolidArrowUpFromWaterPump = []
FontAwesomeSolidArrowUpLong = []
FontAwesomeSolidArrowUpRightDots = []
FontAwesomeSolidArrowUpRightFromSquare = []
FontAwesomeSolidArrowUpShortWide = []
FontAwesomeSolidArrowUpWideShort = []
FontAwesomeSolidArrowUpZA = []
FontAwesomeSolidArrowsDownToLine = []
FontAwesomeSolidArrowsDownToPeople = []
FontAwesomeSolidArrowsLeftRight = []
FontAwesomeSolidArrowsLeftRightToLine = []
FontAwesomeSolidArrowsRotate = []
FontAwesomeSolidArrowsSpin = []
FontAwesomeSolidArrowsSplitUpAndLeft = []
FontAwesomeSolidArrowsToCircle = []
FontAwesomeSolidArrowsToDot = []
FontAwesomeSolidArrowsToEye = []
FontAwesomeSolidArrowsTurnRight = []
FontAwesomeSolidArrowsTurnToDots = []
FontAwesomeSolidArrowsUpDown = []
FontAwesomeSolidArrowsUpDownLeftRight = []
FontAwesomeSolidArrowsUpToLine = []
FontAwesomeSolidAsterisk = []
FontAwesomeSolidAt = []
FontAwesomeSolidAtom = []
FontAwesomeSolidAudioDescription = []
FontAwesomeSolidAustralSign = []
FontAwesomeSolidAward = []
FontAwesomeSolidB = []
FontAwesomeSolidBaby = []
FontAwesomeSolidBabyCarriage = []
FontAwesomeSolidBackward = []
FontAwesomeSolidBackwardFast = []
FontAwesomeSolidBackwardStep = []
FontAwesomeSolidBacon = []
FontAwesomeSolidBacteria = []
FontAwesomeSolidBacterium = []
FontAwesomeSolidBagShopping = []
FontAwesomeSolidBahai = []
FontAwesomeSolidBahtSign = []
FontAwesomeSolidBan = []
FontAwesomeSolidBanSmoking = []
FontAwesomeSolidBandage = []
FontAwesomeSolidBarcode = []
FontAwesomeSolidBars = []
FontAwesomeSolidBarsProgress = []
FontAwesomeSolidBarsStaggered = []
FontAwesomeSolidBaseball = []
FontAwesomeSolidBaseballBatBall = []
FontAwesomeSolidBasketShopping = []
FontAwesomeSolidBasketball = []
FontAwesomeSolidBath = []
FontAwesomeSolidBatteryEmpty = []
FontAwesomeSolidBatteryFull = []
FontAwesomeSolidBatteryHalf = []
FontAwesomeSolidBatteryQuarter = []
FontAwesomeSolidBatteryThreeQuarters = []
FontAwesomeSolidBed = []
FontAwesomeSolidBedPulse = []
FontAwesomeSolidBeerMugEmpty = []
FontAwesomeSolidBell = []
FontAwesomeSolidBellConcierge = []
FontAwesomeSolidBellSlash = []
FontAwesomeSolidBezierCurve = []
FontAwesomeSolidBicycle = []
FontAwesomeSolidBinoculars = []
FontAwesomeSolidBiohazard = []
FontAwesomeSolidBitcoinSign = []
FontAwesomeSolidBlender = []
FontAwesomeSolidBlenderPhone = []
FontAwesomeSolidBlog = []
FontAwesomeSolidBold = []
FontAwesomeSolidBolt = []
FontAwesomeSolidBoltLightning = []
FontAwesomeSolidBomb = []
FontAwesomeSolidBone = []
FontAwesomeSolidBong = []
FontAwesomeSolidBook = []
FontAwesomeSolidBookAtlas = []
FontAwesomeSolidBookBible = []
FontAwesomeSolidBookBookmark = []
FontAwesomeSolidBookJournalWhills = []
FontAwesomeSolidBookMedical = []
FontAwesomeSolidBookOpen = []
FontAwesomeSolidBookOpenReader = []
FontAwesomeSolidBookQuran = []
FontAwesomeSolidBookSkull = []
FontAwesomeSolidBookmark = []
FontAwesomeSolidBorderAll = []
FontAwesomeSolidBorderNone = []
FontAwesomeSolidBorderTopLeft = []
FontAwesomeSolidBoreHole = []
FontAwesomeSolidBottleDroplet = []
FontAwesomeSolidBottleWater = []
FontAwesomeSolidBowlFood = []
FontAwesomeSolidBowlRice = []
FontAwesomeSolidBowlingBall = []
FontAwesomeSolidBox = []
FontAwesomeSolidBoxArchive = []
FontAwesomeSolidBoxOpen = []
FontAwesomeSolidBoxTissue = []
FontAwesomeSolidBoxesPacking = []
FontAwesomeSolidBoxesStacked = []
FontAwesomeSolidBraille = []
FontAwesomeSolidBrain = []
FontAwesomeSolidBrazilianRealSign = []
FontAwesomeSolidBreadSlice = []
FontAwesomeSolidBridge = []
FontAwesomeSolidBridgeCircleCheck = []
FontAwesomeSolidBridgeCircleExclamation = []
FontAwesomeSolidBridgeCircleXmark = []
FontAwesomeSolidBridgeLock = []
FontAwesomeSolidBridgeWater = []
FontAwesomeSolidBriefcase = []
FontAwesomeSolidBriefcaseMedical = []
FontAwesomeSolidBroom = []
FontAwesomeSolidBroomBall = []
FontAwesomeSolidBrush = []
FontAwesomeSolidBucket = []
FontAwesomeSolidBug = []
FontAwesomeSolidBugSlash = []
FontAwesomeSolidBugs = []
FontAwesomeSolidBuilding = []
FontAwesomeSolidBuildingCircleArrowRight = []
FontAwesomeSolidBuildingCircleCheck = []
FontAwesomeSolidBuildingCircleExclamation = []
FontAwesomeSolidBuildingCircleXmark = []
FontAwesomeSolidBuildingColumns = []
FontAwesomeSolidBuildingFlag = []
FontAwesomeSolidBuildingLock = []
FontAwesomeSolidBuildingNgo = []
FontAwesomeSolidBuildingShield = []
FontAwesomeSolidBuildingUn = []
FontAwesomeSolidBuildingUser = []
FontAwesomeSolidBuildingWheat = []
FontAwesomeSolidBullhorn = []
FontAwesomeSolidBullseye = []
FontAwesomeSolidBurger = []
FontAwesomeSolidBurst = []
FontAwesomeSolidBus = []
FontAwesomeSolidBusSimple = []
FontAwesomeSolidBusinessTime = []
FontAwesomeSolidC = []
FontAwesomeSolidCakeCandles = []
FontAwesomeSolidCalculator = []
FontAwesomeSolidCalendar = []
FontAwesomeSolidCalendarCheck = []
FontAwesomeSolidCalendarDay = []
FontAwesomeSolidCalendarDays = []
FontAwesomeSolidCalendarMinus = []
FontAwesomeSolidCalendarPlus = []
FontAwesomeSolidCalendarWeek = []
FontAwesomeSolidCalendarXmark = []
FontAwesomeSolidCamera = []
FontAwesomeSolidCameraRetro = []
FontAwesomeSolidCameraRotate = []
FontAwesomeSolidCampground = []
FontAwesomeSolidCandyCane = []
FontAwesomeSolidCannabis = []
FontAwesomeSolidCapsules = []
FontAwesomeSolidCar = []
FontAwesomeSolidCarBattery = []
FontAwesomeSolidCarBurst = []
FontAwesomeSolidCarCrash = []
FontAwesomeSolidCarOn = []
FontAwesomeSolidCarRear = []
FontAwesomeSolidCarSide = []
FontAwesomeSolidCarTunnel = []
FontAwesomeSolidCaravan = []
FontAwesomeSolidCaretDown = []
FontAwesomeSolidCaretLeft = []
FontAwesomeSolidCaretRight = []
FontAwesomeSolidCaretUp = []
FontAwesomeSolidCarrot = []
FontAwesomeSolidCartArrowDown = []
FontAwesomeSolidCartFlatbed = []
FontAwesomeSolidCartFlatbedSuitcase = []
FontAwesomeSolidCartPlus = []
FontAwesomeSolidCartShopping = []
FontAwesomeSolidCashRegister = []
FontAwesomeSolidCat = []
FontAwesomeSolidCediSign = []
FontAwesomeSolidCentSign = []
FontAwesomeSolidCertificate = []
FontAwesomeSolidChair = []
FontAwesomeSolidChalkboard = []
FontAwesomeSolidChalkboardUser = []
FontAwesomeSolidChampagneGlasses = []
FontAwesomeSolidChargingStation = []
FontAwesomeSolidChartArea = []
FontAwesomeSolidChartBar = []
FontAwesomeSolidChartColumn = []
FontAwesomeSolidChartGantt = []
FontAwesomeSolidChartLine = []
FontAwesomeSolidChartPie = []
FontAwesomeSolidChartSimple = []
FontAwesomeSolidCheck = []
FontAwesomeSolidCheckDouble = []
FontAwesomeSolidCheckToSlot = []
FontAwesomeSolidCheese = []
FontAwesomeSolidChess = []
FontAwesomeSolidChessBishop = []
FontAwesomeSolidChessBoard = []
FontAwesomeSolidChessKing = []
FontAwesomeSolidChessKnight = []
FontAwesomeSolidChessPawn = []
FontAwesomeSolidChessQueen = []
FontAwesomeSolidChessRook = []
FontAwesomeSolidChevronDown = []
FontAwesomeSolidChevronLeft = []
FontAwesomeSolidChevronRight = []
FontAwesomeSolidChevronUp = []
FontAwesomeSolidChild = []
FontAwesomeSolidChildDress = []
FontAwesomeSolidChildReaching = []
FontAwesomeSolidChildRifle = []
FontAwesomeSolidChildren = []
FontAwesomeSolidChurch = []
FontAwesomeSolidCircle = []
FontAwesomeSolidCircleArrowDown = []
FontAwesomeSolidCircleArrowLeft = []
FontAwesomeSolidCircleArrowRight = []
FontAwesomeSolidCircleArrowUp = []
FontAwesomeSolidCircleCheck = []
FontAwesomeSolidCircleChevronDown = []
FontAwesomeSolidCircleChevronLeft = []
FontAwesomeSolidCircleChevronRight = []
FontAwesomeSolidCircleChevronUp = []
FontAwesomeSolidCircleDollarToSlot = []
FontAwesomeSolidCircleDot = []
FontAwesomeSolidCircleDown = []
FontAwesomeSolidCircleExclamation = []
FontAwesomeSolidCircleH = []
FontAwesomeSolidCircleHalfStroke = []
FontAwesomeSolidCircleInfo = []
FontAwesomeSolidCircleLeft = []
FontAwesomeSolidCircleMinus = []
FontAwesomeSolidCircleNodes = []
FontAwesomeSolidCircleNotch = []
FontAwesomeSolidCirclePause = []
FontAwesomeSolidCirclePlay = []
FontAwesomeSolidCirclePlus = []
FontAwesomeSolidCircleQuestion = []
FontAwesomeSolidCircleRadiation = []
FontAwesomeSolidCircleRight = []
FontAwesomeSolidCircleStop = []
FontAwesomeSolidCircleUp = []
FontAwesomeSolidCircleUser = []
FontAwesomeSolidCircleXmark = []
FontAwesomeSolidCity = []
FontAwesomeSolidClapperboard = []
FontAwesomeSolidClipboard = []
FontAwesomeSolidClipboardCheck = []
FontAwesomeSolidClipboardList = []
FontAwesomeSolidClipboardQuestion = []
FontAwesomeSolidClipboardUser = []
FontAwesomeSolidClock = []
FontAwesomeSolidClockRotateLeft = []
FontAwesomeSolidClone = []
FontAwesomeSolidClosedCaptioning = []
FontAwesomeSolidCloud = []
FontAwesomeSolidCloudArrowDown = []
FontAwesomeSolidCloudArrowUp = []
FontAwesomeSolidCloudBolt = []
FontAwesomeSolidCloudMeatball = []
FontAwesomeSolidCloudMoon = []
FontAwesomeSolidCloudMoonRain = []
FontAwesomeSolidCloudRain = []
FontAwesomeSolidCloudShowersHeavy = []
FontAwesomeSolidCloudShowersWater = []
FontAwesomeSolidCloudSun = []
FontAwesomeSolidCloudSunRain = []
FontAwesomeSolidClover = []
FontAwesomeSolidCode = []
FontAwesomeSolidCodeBranch = []
FontAwesomeSolidCodeCommit = []
FontAwesomeSolidCodeCompare = []
FontAwesomeSolidCodeFork = []
FontAwesomeSolidCodeMerge = []
FontAwesomeSolidCodePullRequest = []
FontAwesomeSolidCoins = []
FontAwesomeSolidColonSign = []
FontAwesomeSolidComment = []
FontAwesomeSolidCommentDollar = []
FontAwesomeSolidCommentDots = []
FontAwesomeSolidCommentMedical = []
FontAwesomeSolidCommentSlash = []
FontAwesomeSolidCommentSms = []
FontAwesomeSolidComments = []
FontAwesomeSolidCommentsDollar = []
FontAwesomeSolidCompactDisc = []
FontAwesomeSolidCompass = []
FontAwesomeSolidCompassDrafting = []
FontAwesomeSolidCompress = []
FontAwesomeSolidComputer = []
FontAwesomeSolidComputerMouse = []
FontAwesomeSolidCookie = []
FontAwesomeSolidCookieBite = []
FontAwesomeSolidCopy = []
FontAwesomeSolidCopyright = []
FontAwesomeSolidCouch = []
FontAwesomeSolidCow = []
FontAwesomeSolidCreditCard = []
FontAwesomeSolidCrop = []
FontAwesomeSolidCropSimple = []
FontAwesomeSolidCross = []
FontAwesomeSolidCrosshairs = []
FontAwesomeSolidCrow = []
FontAwesomeSolidCrown = []
FontAwesomeSolidCrutch = []
FontAwesomeSolidCruzeiroSign = []
FontAwesomeSolidCube = []
FontAwesomeSolidCubes = []
FontAwesomeSolidCubesStacked = []
FontAwesomeSolidD = []
FontAwesomeSolidDatabase = []
FontAwesomeSolidDeleteLeft = []
FontAwesomeSolidDemocrat = []
FontAwesomeSolidDesktop = []
FontAwesomeSolidDharmachakra = []
FontAwesomeSolidDiagramNext = []
FontAwesomeSolidDiagramPredecessor = []
FontAwesomeSolidDiagramProject = []
FontAwesomeSolidDiagramSuccessor = []
FontAwesomeSolidDiamond = []
FontAwesomeSolidDiamondTurnRight = []
FontAwesomeSolidDice = []
FontAwesomeSolidDiceD20 = []
FontAwesomeSolidDiceD6 = []
FontAwesomeSolidDiceFive = []
FontAwesomeSolidDiceFour = []
FontAwesomeSolidDiceOne = []
FontAwesomeSolidDiceSix = []
FontAwesomeSolidDiceThree = []
FontAwesomeSolidDiceTwo = []
FontAwesomeSolidDisease = []
FontAwesomeSolidDisplay = []
FontAwesomeSolidDivide = []
FontAwesomeSolidDna = []
FontAwesomeSolidDog = []
FontAwesomeSolidDollarSign = []
FontAwesomeSolidDolly = []
FontAwesomeSolidDongSign = []
FontAwesomeSolidDoorClosed = []
FontAwesomeSolidDoorOpen = []
FontAwesomeSolidDove = []
FontAwesomeSolidDownLeftAndUpRightToCenter = []
FontAwesomeSolidDownLong = []
FontAwesomeSolidDownload = []
FontAwesomeSolidDragon = []
FontAwesomeSolidDrawPolygon = []
FontAwesomeSolidDroplet = []
FontAwesomeSolidDropletSlash = []
FontAwesomeSolidDrum = []
FontAwesomeSolidDrumSteelpan = []
FontAwesomeSolidDrumstickBite = []
FontAwesomeSolidDumbbell = []
FontAwesomeSolidDumpster = []
FontAwesomeSolidDumpsterFire = []
FontAwesomeSolidDungeon = []
FontAwesomeSolidE = []
FontAwesomeSolidEarDeaf = []
FontAwesomeSolidEarListen = []
FontAwesomeSolidEarthAfrica = []
FontAwesomeSolidEarthAmericas = []
FontAwesomeSolidEarthAsia = []
FontAwesomeSolidEarthEurope = []
FontAwesomeSolidEarthOceania = []
FontAwesomeSolidEgg = []
FontAwesomeSolidEject = []
FontAwesomeSolidElevator = []
FontAwesomeSolidEllipsis = []
FontAwesomeSolidEllipsisVertical = []
FontAwesomeSolidEnvelope = []
FontAwesomeSolidEnvelopeCircleCheck = []
FontAwesomeSolidEnvelopeOpen = []
FontAwesomeSolidEnvelopeOpenText = []
FontAwesomeSolidEnvelopesBulk = []
FontAwesomeSolidEquals = []
FontAwesomeSolidEraser = []
FontAwesomeSolidEthernet = []
FontAwesomeSolidEuroSign = []
FontAwesomeSolidExclamation = []
FontAwesomeSolidExpand = []
FontAwesomeSolidExplosion = []
FontAwesomeSolidEye = []
FontAwesomeSolidEyeDropper = []
FontAwesomeSolidEyeLowVision = []
FontAwesomeSolidEyeSlash = []
FontAwesomeSolidF = []
FontAwesomeSolidFaceAngry = []
FontAwesomeSolidFaceDizzy = []
FontAwesomeSolidFaceFlushed = []
FontAwesomeSolidFaceFrown = []
FontAwesomeSolidFaceFrownOpen = []
FontAwesomeSolidFaceGrimace = []
FontAwesomeSolidFaceGrin = []
FontAwesomeSolidFaceGrinBeam = []
FontAwesomeSolidFaceGrinBeamSweat = []
FontAwesomeSolidFaceGrinHearts = []
FontAwesomeSolidFaceGrinSquint = []
FontAwesomeSolidFaceGrinSquintTears = []
FontAwesomeSolidFaceGrinStars = []
FontAwesomeSolidFaceGrinTears = []
FontAwesomeSolidFaceGrinTongue = []
FontAwesomeSolidFaceGrinTongueSquint = []
FontAwesomeSolidFaceGrinTongueWink = []
FontAwesomeSolidFaceGrinWide = []
FontAwesomeSolidFaceGrinWink = []
FontAwesomeSolidFaceKiss = []
FontAwesomeSolidFaceKissBeam = []
FontAwesomeSolidFaceKissWinkHeart = []
FontAwesomeSolidFaceLaugh = []
FontAwesomeSolidFaceLaughBeam = []
FontAwesomeSolidFaceLaughSquint = []
FontAwesomeSolidFaceLaughWink = []
FontAwesomeSolidFaceMeh = []
FontAwesomeSolidFaceMehBlank = []
FontAwesomeSolidFaceRollingEyes = []
FontAwesomeSolidFaceSadCry = []
FontAwesomeSolidFaceSadTear = []
FontAwesomeSolidFaceSmile = []
FontAwesomeSolidFaceSmileBeam = []
FontAwesomeSolidFaceSmileWink = []
FontAwesomeSolidFaceSurprise = []
FontAwesomeSolidFaceTired = []
FontAwesomeSolidFan = []
FontAwesomeSolidFaucet = []
FontAwesomeSolidFaucetDrip = []
FontAwesomeSolidFax = []
FontAwesomeSolidFeather = []
FontAwesomeSolidFeatherPointed = []
FontAwesomeSolidFerry = []
FontAwesomeSolidFile = []
FontAwesomeSolidFileArrowDown = []
FontAwesomeSolidFileArrowUp = []
FontAwesomeSolidFileAudio = []
FontAwesomeSolidFileCircleCheck = []
FontAwesomeSolidFileCircleExclamation = []
FontAwesomeSolidFileCircleMinus = []
FontAwesomeSolidFileCirclePlus = []
FontAwesomeSolidFileCircleQuestion = []
FontAwesomeSolidFileCircleXmark = []
FontAwesomeSolidFileCode = []
FontAwesomeSolidFileContract = []
FontAwesomeSolidFileCsv = []
FontAwesomeSolidFileExcel = []
FontAwesomeSolidFileExport = []
FontAwesomeSolidFileImage = []
FontAwesomeSolidFileImport = []
FontAwesomeSolidFileInvoice = []
FontAwesomeSolidFileInvoiceDollar = []
FontAwesomeSolidFileLines = []
FontAwesomeSolidFileMedical = []
FontAwesomeSolidFilePdf = []
FontAwesomeSolidFilePen = []
FontAwesomeSolidFilePowerpoint = []
FontAwesomeSolidFilePrescription = []
FontAwesomeSolidFileShield = []
FontAwesomeSolidFileSignature = []
FontAwesomeSolidFileVideo = []
FontAwesomeSolidFileWaveform = []
FontAwesomeSolidFileWord = []
FontAwesomeSolidFileZipper = []
FontAwesomeSolidFill = []
FontAwesomeSolidFillDrip = []
FontAwesomeSolidFilm = []
FontAwesomeSolidFilter = []
FontAwesomeSolidFilterCircleDollar = []
FontAwesomeSolidFilterCircleXmark = []
FontAwesomeSolidFingerprint = []
FontAwesomeSolidFire = []
FontAwesomeSolidFireBurner = []
FontAwesomeSolidFireExtinguisher = []
FontAwesomeSolidFireFlameCurved = []
FontAwesomeSolidFireFlameSimple = []
FontAwesomeSolidFish = []
FontAwesomeSolidFishFins = []
FontAwesomeSolidFlag = []
FontAwesomeSolidFlagCheckered = []
FontAwesomeSolidFlagUsa = []
FontAwesomeSolidFlask = []
FontAwesomeSolidFlaskVial = []
FontAwesomeSolidFloppyDisk = []
FontAwesomeSolidFlorinSign = []
FontAwesomeSolidFolder = []
FontAwesomeSolidFolderClosed = []
FontAwesomeSolidFolderMinus = []
FontAwesomeSolidFolderOpen = []
FontAwesomeSolidFolderPlus = []
FontAwesomeSolidFolderTree = []
FontAwesomeSolidFont = []
FontAwesomeSolidFontAwesome = []
FontAwesomeSolidFootball = []
FontAwesomeSolidForward = []
FontAwesomeSolidForwardFast = []
FontAwesomeSolidForwardStep = []
FontAwesomeSolidFrancSign = []
FontAwesomeSolidFrog = []
FontAwesomeSolidFutbol = []
FontAwesomeSolidG = []
FontAwesomeSolidGamepad = []
FontAwesomeSolidGasPump = []
FontAwesomeSolidGauge = []
FontAwesomeSolidGaugeHigh = []
FontAwesomeSolidGaugeSimple = []
FontAwesomeSolidGaugeSimpleHigh = []
FontAwesomeSolidGavel = []
FontAwesomeSolidGear = []
FontAwesomeSolidGears = []
FontAwesomeSolidGem = []
FontAwesomeSolidGenderless = []
FontAwesomeSolidGhost = []
FontAwesomeSolidGift = []
FontAwesomeSolidGifts = []
FontAwesomeSolidGlassWater = []
FontAwesomeSolidGlassWaterDroplet = []
FontAwesomeSolidGlasses = []
FontAwesomeSolidGlobe = []
FontAwesomeSolidGolfBallTee = []
FontAwesomeSolidGopuram = []
FontAwesomeSolidGraduationCap = []
FontAwesomeSolidGreaterThan = []
FontAwesomeSolidGreaterThanEqual = []
FontAwesomeSolidGrip = []
FontAwesomeSolidGripLines = []
FontAwesomeSolidGripLinesVertical = []
FontAwesomeSolidGripVertical = []
FontAwesomeSolidGroupArrowsRotate = []
FontAwesomeSolidGuaraniSign = []
FontAwesomeSolidGuitar = []
FontAwesomeSolidGun = []
FontAwesomeSolidH = []
FontAwesomeSolidHammer = []
FontAwesomeSolidHamsa = []
FontAwesomeSolidHand = []
FontAwesomeSolidHandBackFist = []
FontAwesomeSolidHandDots = []
FontAwesomeSolidHandFist = []
FontAwesomeSolidHandHolding = []
FontAwesomeSolidHandHoldingDollar = []
FontAwesomeSolidHandHoldingDroplet = []
FontAwesomeSolidHandHoldingHand = []
FontAwesomeSolidHandHoldingHeart = []
FontAwesomeSolidHandHoldingMedical = []
FontAwesomeSolidHandLizard = []
FontAwesomeSolidHandMiddleFinger = []
FontAwesomeSolidHandPeace = []
FontAwesomeSolidHandPointDown = []
FontAwesomeSolidHandPointLeft = []
FontAwesomeSolidHandPointRight = []
FontAwesomeSolidHandPointUp = []
FontAwesomeSolidHandPointer = []
FontAwesomeSolidHandScissors = []
FontAwesomeSolidHandSparkles = []
FontAwesomeSolidHandSpock = []
FontAwesomeSolidHandcuffs = []
FontAwesomeSolidHands = []
FontAwesomeSolidHandsAslInterpreting = []
FontAwesomeSolidHandsBound = []
FontAwesomeSolidHandsBubbles = []
FontAwesomeSolidHandsClapping = []
FontAwesomeSolidHandsHolding = []
FontAwesomeSolidHandsHoldingChild = []
FontAwesomeSolidHandsHoldingCircle = []
FontAwesomeSolidHandsPraying = []
FontAwesomeSolidHandshake = []
FontAwesomeSolidHandshakeAngle = []
FontAwesomeSolidHandshakeSimple = []
FontAwesomeSolidHandshakeSimpleSlash = []
FontAwesomeSolidHandshakeSlash = []
FontAwesomeSolidHanukiah = []
FontAwesomeSolidHardDrive = []
FontAwesomeSolidHashtag = []
FontAwesomeSolidHatCowboy = []
FontAwesomeSolidHatCowboySide = []
FontAwesomeSolidHatWizard = []
FontAwesomeSolidHeadSideCough = []
FontAwesomeSolidHeadSideCoughSlash = []
FontAwesomeSolidHeadSideMask = []
FontAwesomeSolidHeadSideVirus = []
FontAwesomeSolidHeading = []
FontAwesomeSolidHeadphones = []
FontAwesomeSolidHeadphonesSimple = []
FontAwesomeSolidHeadset = []
FontAwesomeSolidHeart = []
FontAwesomeSolidHeartCircleBolt = []
FontAwesomeSolidHeartCircleCheck = []
FontAwesomeSolidHeartCircleExclamation = []
FontAwesomeSolidHeartCircleMinus = []
FontAwesomeSolidHeartCirclePlus = []
FontAwesomeSolidHeartCircleXmark = []
FontAwesomeSolidHeartCrack = []
FontAwesomeSolidHeartPulse = []
FontAwesomeSolidHelicopter = []
FontAwesomeSolidHelicopterSymbol = []
FontAwesomeSolidHelmetSafety = []
FontAwesomeSolidHelmetUn = []
FontAwesomeSolidHighlighter = []
FontAwesomeSolidHillAvalanche = []
FontAwesomeSolidHillRockslide = []
FontAwesomeSolidHippo = []
FontAwesomeSolidHockeyPuck = []
FontAwesomeSolidHollyBerry = []
FontAwesomeSolidHorse = []
FontAwesomeSolidHorseHead = []
FontAwesomeSolidHospital = []
FontAwesomeSolidHospitalUser = []
FontAwesomeSolidHotTubPerson = []
FontAwesomeSolidHotdog = []
FontAwesomeSolidHotel = []
FontAwesomeSolidHourglass = []
FontAwesomeSolidHourglassEmpty = []
FontAwesomeSolidHourglassEnd = []
FontAwesomeSolidHourglassStart = []
FontAwesomeSolidHouse = []
FontAwesomeSolidHouseChimney = []
FontAwesomeSolidHouseChimneyCrack = []
FontAwesomeSolidHouseChimneyMedical = []
FontAwesomeSolidHouseChimneyUser = []
FontAwesomeSolidHouseChimneyWindow = []
FontAwesomeSolidHouseCircleCheck = []
FontAwesomeSolidHouseCircleExclamation = []
FontAwesomeSolidHouseCircleXmark = []
FontAwesomeSolidHouseCrack = []
FontAwesomeSolidHouseFire = []
FontAwesomeSolidHouseFlag = []
FontAwesomeSolidHouseFloodWater = []
FontAwesomeSolidHouseFloodWaterCircleArrowRight = []
FontAwesomeSolidHouseLaptop = []
FontAwesomeSolidHouseLock = []
FontAwesomeSolidHouseMedical = []
FontAwesomeSolidHouseMedicalCircleCheck = []
FontAwesomeSolidHouseMedicalCircleExclamation = []
FontAwesomeSolidHouseMedicalCircleXmark = []
FontAwesomeSolidHouseMedicalFlag = []
FontAwesomeSolidHouseSignal = []
FontAwesomeSolidHouseTsunami = []
FontAwesomeSolidHouseUser = []
FontAwesomeSolidHryvniaSign = []
FontAwesomeSolidHurricane = []
FontAwesomeSolidI = []
FontAwesomeSolidICursor = []
FontAwesomeSolidIceCream = []
FontAwesomeSolidIcicles = []
FontAwesomeSolidIcons = []
FontAwesomeSolidIdBadge = []
FontAwesomeSolidIdCard = []
FontAwesomeSolidIdCardClip = []
FontAwesomeSolidIgloo = []
FontAwesomeSolidImage = []
FontAwesomeSolidImagePortrait = []
FontAwesomeSolidImages = []
FontAwesomeSolidInbox = []
FontAwesomeSolidIndent = []
FontAwesomeSolidIndianRupeeSign = []
FontAwesomeSolidIndustry = []
FontAwesomeSolidInfinity = []
FontAwesomeSolidInfo = []
FontAwesomeSolidItalic = []
FontAwesomeSolidJ = []
FontAwesomeSolidJar = []
FontAwesomeSolidJarWheat = []
FontAwesomeSolidJedi = []
FontAwesomeSolidJetFighter = []
FontAwesomeSolidJetFighterUp = []
FontAwesomeSolidJoint = []
FontAwesomeSolidJugDetergent = []
FontAwesomeSolidK = []
FontAwesomeSolidKaaba = []
FontAwesomeSolidKey = []
FontAwesomeSolidKeyboard = []
FontAwesomeSolidKhanda = []
FontAwesomeSolidKipSign = []
FontAwesomeSolidKitMedical = []
FontAwesomeSolidKitchenSet = []
FontAwesomeSolidKiwiBird = []
FontAwesomeSolidL = []
FontAwesomeSolidLandMineOn = []
FontAwesomeSolidLandmark = []
FontAwesomeSolidLandmarkDome = []
FontAwesomeSolidLandmarkFlag = []
FontAwesomeSolidLanguage = []
FontAwesomeSolidLaptop = []
FontAwesomeSolidLaptopCode = []
FontAwesomeSolidLaptopFile = []
FontAwesomeSolidLaptopMedical = []
FontAwesomeSolidLariSign = []
FontAwesomeSolidLayerGroup = []
FontAwesomeSolidLeaf = []
FontAwesomeSolidLeftLong = []
FontAwesomeSolidLeftRight = []
FontAwesomeSolidLemon = []
FontAwesomeSolidLessThan = []
FontAwesomeSolidLessThanEqual = []
FontAwesomeSolidLifeRing = []
FontAwesomeSolidLightbulb = []
FontAwesomeSolidLinesLeaning = []
FontAwesomeSolidLink = []
FontAwesomeSolidLinkSlash = []
FontAwesomeSolidLiraSign = []
FontAwesomeSolidList = []
FontAwesomeSolidListCheck = []
FontAwesomeSolidListOl = []
FontAwesomeSolidListUl = []
FontAwesomeSolidLitecoinSign = []
FontAwesomeSolidLocationArrow = []
FontAwesomeSolidLocationCrosshairs = []
FontAwesomeSolidLocationDot = []
FontAwesomeSolidLocationPin = []
FontAwesomeSolidLocationPinLock = []
FontAwesomeSolidLock = []
FontAwesomeSolidLockOpen = []
FontAwesomeSolidLocust = []
FontAwesomeSolidLungs = []
FontAwesomeSolidLungsVirus = []
FontAwesomeSolidM = []
FontAwesomeSolidMagnet = []
FontAwesomeSolidMagnifyingGlass = []
FontAwesomeSolidMagnifyingGlassArrowRight = []
FontAwesomeSolidMagnifyingGlassChart = []
FontAwesomeSolidMagnifyingGlassDollar = []
FontAwesomeSolidMagnifyingGlassLocation = []
FontAwesomeSolidMagnifyingGlassMinus = []
FontAwesomeSolidMagnifyingGlassPlus = []
FontAwesomeSolidManatSign = []
FontAwesomeSolidMap = []
FontAwesomeSolidMapLocation = []
FontAwesomeSolidMapLocationDot = []
FontAwesomeSolidMapPin = []
FontAwesomeSolidMarker = []
FontAwesomeSolidMars = []
FontAwesomeSolidMarsAndVenus = []
FontAwesomeSolidMarsAndVenusBurst = []
FontAwesomeSolidMarsDouble = []
FontAwesomeSolidMarsStroke = []
FontAwesomeSolidMarsStrokeRight = []
FontAwesomeSolidMarsStrokeUp = []
FontAwesomeSolidMartiniGlass = []
FontAwesomeSolidMartiniGlassCitrus = []
FontAwesomeSolidMartiniGlassEmpty = []
FontAwesomeSolidMask = []
FontAwesomeSolidMaskFace = []
FontAwesomeSolidMaskVentilator = []
FontAwesomeSolidMasksTheater = []
FontAwesomeSolidMattressPillow = []
FontAwesomeSolidMaximize = []
FontAwesomeSolidMedal = []
FontAwesomeSolidMemory = []
FontAwesomeSolidMenorah = []
FontAwesomeSolidMercury = []
FontAwesomeSolidMessage = []
FontAwesomeSolidMeteor = []
FontAwesomeSolidMicrochip = []
FontAwesomeSolidMicrophone = []
FontAwesomeSolidMicrophoneLines = []
FontAwesomeSolidMicrophoneLinesSlash = []
FontAwesomeSolidMicrophoneSlash = []
FontAwesomeSolidMicroscope = []
FontAwesomeSolidMillSign = []
FontAwesomeSolidMinimize = []
FontAwesomeSolidMinus = []
FontAwesomeSolidMitten = []
FontAwesomeSolidMobile = []
FontAwesomeSolidMobileButton = []
FontAwesomeSolidMobileRetro = []
FontAwesomeSolidMobileScreen = []
FontAwesomeSolidMobileScreenButton = []
FontAwesomeSolidMoneyBill = []
FontAwesomeSolidMoneyBill1 = []
FontAwesomeSolidMoneyBill1Wave = []
FontAwesomeSolidMoneyBillTransfer = []
FontAwesomeSolidMoneyBillTrendUp = []
FontAwesomeSolidMoneyBillWave = []
FontAwesomeSolidMoneyBillWheat = []
FontAwesomeSolidMoneyBills = []
FontAwesomeSolidMoneyCheck = []
FontAwesomeSolidMoneyCheckDollar = []
FontAwesomeSolidMonument = []
FontAwesomeSolidMoon = []
FontAwesomeSolidMortarPestle = []
FontAwesomeSolidMosque = []
FontAwesomeSolidMosquito = []
FontAwesomeSolidMosquitoNet = []
FontAwesomeSolidMotorcycle = []
FontAwesomeSolidMound = []
FontAwesomeSolidMountain = []
FontAwesomeSolidMountainCity = []
FontAwesomeSolidMountainSun = []
FontAwesomeSolidMugHot = []
FontAwesomeSolidMugSaucer = []
FontAwesomeSolidMusic = []
FontAwesomeSolidN = []
FontAwesomeSolidNairaSign = []
FontAwesomeSolidNetworkWired = []
FontAwesomeSolidNeuter = []
FontAwesomeSolidNewspaper = []
FontAwesomeSolidNotEqual = []
FontAwesomeSolidNoteSticky = []
FontAwesomeSolidNotesMedical = []
FontAwesomeSolidO = []
FontAwesomeSolidObjectGroup = []
FontAwesomeSolidObjectUngroup = []
FontAwesomeSolidOilCan = []
FontAwesomeSolidOilWell = []
FontAwesomeSolidOm = []
FontAwesomeSolidOtter = []
FontAwesomeSolidOutdent = []
FontAwesomeSolidP = []
FontAwesomeSolidPager = []
FontAwesomeSolidPaintRoller = []
FontAwesomeSolidPaintbrush = []
FontAwesomeSolidPalette = []
FontAwesomeSolidPallet = []
FontAwesomeSolidPanorama = []
FontAwesomeSolidPaperPlane = []
FontAwesomeSolidPaperclip = []
FontAwesomeSolidParachuteBox = []
FontAwesomeSolidParagraph = []
FontAwesomeSolidPassport = []
FontAwesomeSolidPaste = []
FontAwesomeSolidPause = []
FontAwesomeSolidPaw = []
FontAwesomeSolidPeace = []
FontAwesomeSolidPen = []
FontAwesomeSolidPenClip = []
FontAwesomeSolidPenFancy = []
FontAwesomeSolidPenNib = []
FontAwesomeSolidPenRuler = []
FontAwesomeSolidPenToSquare = []
FontAwesomeSolidPencil = []
FontAwesomeSolidPeopleArrowsLeftRight = []
FontAwesomeSolidPeopleCarryBox = []
FontAwesomeSolidPeopleGroup = []
FontAwesomeSolidPeopleLine = []
FontAwesomeSolidPeoplePulling = []
FontAwesomeSolidPeopleRobbery = []
FontAwesomeSolidPeopleRoof = []
FontAwesomeSolidPepperHot = []
FontAwesomeSolidPercent = []
FontAwesomeSolidPerson = []
FontAwesomeSolidPersonArrowDownToLine = []
FontAwesomeSolidPersonArrowUpFromLine = []
FontAwesomeSolidPersonBiking = []
FontAwesomeSolidPersonBooth = []
FontAwesomeSolidPersonBreastfeeding = []
FontAwesomeSolidPersonBurst = []
FontAwesomeSolidPersonCane = []
FontAwesomeSolidPersonChalkboard = []
FontAwesomeSolidPersonCircleCheck = []
FontAwesomeSolidPersonCircleExclamation = []
FontAwesomeSolidPersonCircleMinus = []
FontAwesomeSolidPersonCirclePlus = []
FontAwesomeSolidPersonCircleQuestion = []
FontAwesomeSolidPersonCircleXmark = []
FontAwesomeSolidPersonDigging = []
FontAwesomeSolidPersonDotsFromLine = []
FontAwesomeSolidPersonDress = []
FontAwesomeSolidPersonDressBurst = []
FontAwesomeSolidPersonDrowning = []
FontAwesomeSolidPersonFalling = []
FontAwesomeSolidPersonFallingBurst = []
FontAwesomeSolidPersonHalfDress = []
FontAwesomeSolidPersonHarassing = []
FontAwesomeSolidPersonHiking = []
FontAwesomeSolidPersonMilitaryPointing = []
FontAwesomeSolidPersonMilitaryRifle = []
FontAwesomeSolidPersonMilitaryToPerson = []
FontAwesomeSolidPersonPraying = []
FontAwesomeSolidPersonPregnant = []
FontAwesomeSolidPersonRays = []
FontAwesomeSolidPersonRifle = []
FontAwesomeSolidPersonRunning = []
FontAwesomeSolidPersonShelter = []
FontAwesomeSolidPersonSkating = []
FontAwesomeSolidPersonSkiing = []
FontAwesomeSolidPersonSkiingNordic = []
FontAwesomeSolidPersonSnowboarding = []
FontAwesomeSolidPersonSwimming = []
FontAwesomeSolidPersonThroughWindow = []
FontAwesomeSolidPersonWalking = []
FontAwesomeSolidPersonWalkingArrowLoopLeft = []
FontAwesomeSolidPersonWalkingArrowRight = []
FontAwesomeSolidPersonWalkingDashedLineArrowRight = []
FontAwesomeSolidPersonWalkingLuggage = []
FontAwesomeSolidPersonWalkingWithCane = []
FontAwesomeSolidPesetaSign = []
FontAwesomeSolidPesoSign = []
FontAwesomeSolidPhone = []
FontAwesomeSolidPhoneFlip = []
FontAwesomeSolidPhoneSlash = []
FontAwesomeSolidPhoneVolume = []
FontAwesomeSolidPhotoFilm = []
FontAwesomeSolidPiggyBank = []
FontAwesomeSolidPills = []
FontAwesomeSolidPizzaSlice = []
FontAwesomeSolidPlaceOfWorship = []
FontAwesomeSolidPlane = []
FontAwesomeSolidPlaneArrival = []
FontAwesomeSolidPlaneCircleCheck = []
FontAwesomeSolidPlaneCircleExclamation = []
FontAwesomeSolidPlaneCircleXmark = []
FontAwesomeSolidPlaneDeparture = []
FontAwesomeSolidPlaneLock = []
FontAwesomeSolidPlaneSlash = []
FontAwesomeSolidPlaneUp = []
FontAwesomeSolidPlantWilt = []
FontAwesomeSolidPlateWheat = []
FontAwesomeSolidPlay = []
FontAwesomeSolidPlug = []
FontAwesomeSolidPlugCircleBolt = []
FontAwesomeSolidPlugCircleCheck = []
FontAwesomeSolidPlugCircleExclamation = []
FontAwesomeSolidPlugCircleMinus = []
FontAwesomeSolidPlugCirclePlus = []
FontAwesomeSolidPlugCircleXmark = []
FontAwesomeSolidPlus = []
FontAwesomeSolidPlusMinus = []
FontAwesomeSolidPodcast = []
FontAwesomeSolidPoo = []
FontAwesomeSolidPooStorm = []
FontAwesomeSolidPoop = []
FontAwesomeSolidPowerOff = []
FontAwesomeSolidPrescription = []
FontAwesomeSolidPrescriptionBottle = []
FontAwesomeSolidPrescriptionBottleMedical = []
FontAwesomeSolidPrint = []
FontAwesomeSolidPumpMedical = []
FontAwesomeSolidPumpSoap = []
FontAwesomeSolidPuzzlePiece = []
FontAwesomeSolidQ = []
FontAwesomeSolidQrcode = []
FontAwesomeSolidQuestion = []
FontAwesomeSolidQuoteLeft = []
FontAwesomeSolidQuoteRight = []
FontAwesomeSolidR = []
FontAwesomeSolidRadiation = []
FontAwesomeSolidRadio = []
FontAwesomeSolidRainbow = []
FontAwesomeSolidRankingStar = []
FontAwesomeSolidReceipt = []
FontAwesomeSolidRecordVinyl = []
FontAwesomeSolidRectangleAd = []
FontAwesomeSolidRectangleList = []
FontAwesomeSolidRectangleXmark = []
FontAwesomeSolidRecycle = []
FontAwesomeSolidRegistered = []
FontAwesomeSolidRepeat = []
FontAwesomeSolidReply = []
FontAwesomeSolidReplyAll = []
FontAwesomeSolidRepublican = []
FontAwesomeSolidRestroom = []
FontAwesomeSolidRetweet = []
FontAwesomeSolidRibbon = []
FontAwesomeSolidRightFromBracket = []
FontAwesomeSolidRightLeft = []
FontAwesomeSolidRightLong = []
FontAwesomeSolidRightToBracket = []
FontAwesomeSolidRing = []
FontAwesomeSolidRoad = []
FontAwesomeSolidRoadBarrier = []
FontAwesomeSolidRoadBridge = []
FontAwesomeSolidRoadCircleCheck = []
FontAwesomeSolidRoadCircleExclamation = []
FontAwesomeSolidRoadCircleXmark = []
FontAwesomeSolidRoadLock = []
FontAwesomeSolidRoadSpikes = []
FontAwesomeSolidRobot = []
FontAwesomeSolidRocket = []
FontAwesomeSolidRotate = []
FontAwesomeSolidRotateLeft = []
FontAwesomeSolidRotateRight = []
FontAwesomeSolidRoute = []
FontAwesomeSolidRss = []
FontAwesomeSolidRubleSign = []
FontAwesomeSolidRug = []
FontAwesomeSolidRuler = []
FontAwesomeSolidRulerCombined = []
FontAwesomeSolidRulerHorizontal = []
FontAwesomeSolidRulerVertical = []
FontAwesomeSolidRupeeSign = []
FontAwesomeSolidRupiahSign = []
FontAwesomeSolidS = []
FontAwesomeSolidSackDollar = []
FontAwesomeSolidSackXmark = []
FontAwesomeSolidSailboat = []
FontAwesomeSolidSatellite = []
FontAwesomeSolidSatelliteDish = []
FontAwesomeSolidScaleBalanced = []
FontAwesomeSolidScaleUnbalanced = []
FontAwesomeSolidScaleUnbalancedFlip = []
FontAwesomeSolidSchool = []
FontAwesomeSolidSchoolCircleCheck = []
FontAwesomeSolidSchoolCircleExclamation = []
FontAwesomeSolidSchoolCircleXmark = []
FontAwesomeSolidSchoolFlag = []
FontAwesomeSolidSchoolLock = []
FontAwesomeSolidScissors = []
FontAwesomeSolidScrewdriver = []
FontAwesomeSolidScrewdriverWrench = []
FontAwesomeSolidScroll = []
FontAwesomeSolidScrollTorah = []
FontAwesomeSolidSdCard = []
FontAwesomeSolidSection = []
FontAwesomeSolidSeedling = []
FontAwesomeSolidServer = []
FontAwesomeSolidShapes = []
FontAwesomeSolidShare = []
FontAwesomeSolidShareFromSquare = []
FontAwesomeSolidShareNodes = []
FontAwesomeSolidSheetPlastic = []
FontAwesomeSolidShekelSign = []
FontAwesomeSolidShield = []
FontAwesomeSolidShieldBlank = []
FontAwesomeSolidShieldCat = []
FontAwesomeSolidShieldDog = []
FontAwesomeSolidShieldHalved = []
FontAwesomeSolidShieldHeart = []
FontAwesomeSolidShieldVirus = []
FontAwesomeSolidShip = []
FontAwesomeSolidShirt = []
FontAwesomeSolidShoePrints = []
FontAwesomeSolidShop = []
FontAwesomeSolidShopLock = []
FontAwesomeSolidShopSlash = []
FontAwesomeSolidShower = []
FontAwesomeSolidShrimp = []
FontAwesomeSolidShuffle = []
FontAwesomeSolidShuttleSpace = []
FontAwesomeSolidSignHanging = []
FontAwesomeSolidSignal = []
FontAwesomeSolidSignature = []
FontAwesomeSolidSignsPost = []
FontAwesomeSolidSimCard = []
FontAwesomeSolidSink = []
FontAwesomeSolidSitemap = []
FontAwesomeSolidSkull = []
FontAwesomeSolidSkullCrossbones = []
FontAwesomeSolidSlash = []
FontAwesomeSolidSleigh = []
FontAwesomeSolidSliders = []
FontAwesomeSolidSmog = []
FontAwesomeSolidSmoking = []
FontAwesomeSolidSnowflake = []
FontAwesomeSolidSnowman = []
FontAwesomeSolidSnowplow = []
FontAwesomeSolidSoap = []
FontAwesomeSolidSocks = []
FontAwesomeSolidSolarPanel = []
FontAwesomeSolidSort = []
FontAwesomeSolidSortDown = []
FontAwesomeSolidSortUp = []
FontAwesomeSolidSpa = []
FontAwesomeSolidSpaghettiMonsterFlying = []
FontAwesomeSolidSpellCheck = []
FontAwesomeSolidSpider = []
FontAwesomeSolidSpinner = []
FontAwesomeSolidSplotch = []
FontAwesomeSolidSpoon = []
FontAwesomeSolidSprayCan = []
FontAwesomeSolidSprayCanSparkles = []
FontAwesomeSolidSquare = []
FontAwesomeSolidSquareArrowUpRight = []
FontAwesomeSolidSquareCaretDown = []
FontAwesomeSolidSquareCaretLeft = []
FontAwesomeSolidSquareCaretRight = []
FontAwesomeSolidSquareCaretUp = []
FontAwesomeSolidSquareCheck = []
FontAwesomeSolidSquareEnvelope = []
FontAwesomeSolidSquareFull = []
FontAwesomeSolidSquareH = []
FontAwesomeSolidSquareMinus = []
FontAwesomeSolidSquareNfi = []
FontAwesomeSolidSquareParking = []
FontAwesomeSolidSquarePen = []
FontAwesomeSolidSquarePersonConfined = []
FontAwesomeSolidSquarePhone = []
FontAwesomeSolidSquarePhoneFlip = []
FontAwesomeSolidSquarePlus = []
FontAwesomeSolidSquarePollHorizontal = []
FontAwesomeSolidSquarePollVertical = []
FontAwesomeSolidSquareRootVariable = []
FontAwesomeSolidSquareRss = []
FontAwesomeSolidSquareShareNodes = []
FontAwesomeSolidSquareUpRight = []
FontAwesomeSolidSquareVirus = []
FontAwesomeSolidSquareXmark = []
FontAwesomeSolidStaffAesculapius = []
FontAwesomeSolidStairs = []
FontAwesomeSolidStamp = []
FontAwesomeSolidStar = []
FontAwesomeSolidStarAndCrescent = []
FontAwesomeSolidStarHalf = []
FontAwesomeSolidStarHalfStroke = []
FontAwesomeSolidStarOfDavid = []
FontAwesomeSolidStarOfLife = []
FontAwesomeSolidSterlingSign = []
FontAwesomeSolidStethoscope = []
FontAwesomeSolidStop = []
FontAwesomeSolidStopwatch = []
FontAwesomeSolidStopwatch20 = []
FontAwesomeSolidStore = []
FontAwesomeSolidStoreSlash = []
FontAwesomeSolidStreetView = []
FontAwesomeSolidStrikethrough = []
FontAwesomeSolidStroopwafel = []
FontAwesomeSolidSubscript = []
FontAwesomeSolidSuitcase = []
FontAwesomeSolidSuitcaseMedical = []
FontAwesomeSolidSuitcaseRolling = []
FontAwesomeSolidSun = []
FontAwesomeSolidSunPlantWilt = []
FontAwesomeSolidSuperscript = []
FontAwesomeSolidSwatchbook = []
FontAwesomeSolidSynagogue = []
FontAwesomeSolidSyringe = []
FontAwesomeSolidT = []
FontAwesomeSolidTable = []
FontAwesomeSolidTableCells = []
FontAwesomeSolidTableCellsLarge = []
FontAwesomeSolidTableColumns = []
FontAwesomeSolidTableList = []
FontAwesomeSolidTableTennisPaddleBall = []
FontAwesomeSolidTablet = []
FontAwesomeSolidTabletButton = []
FontAwesomeSolidTabletScreenButton = []
FontAwesomeSolidTablets = []
FontAwesomeSolidTachographDigital = []
FontAwesomeSolidTag = []
FontAwesomeSolidTags = []
FontAwesomeSolidTape = []
FontAwesomeSolidTarp = []
FontAwesomeSolidTarpDroplet = []
FontAwesomeSolidTaxi = []
FontAwesomeSolidTeeth = []
FontAwesomeSolidTeethOpen = []
FontAwesomeSolidTemperatureArrowDown = []
FontAwesomeSolidTemperatureArrowUp = []
FontAwesomeSolidTemperatureEmpty = []
FontAwesomeSolidTemperatureFull = []
FontAwesomeSolidTemperatureHalf = []
FontAwesomeSolidTemperatureHigh = []
FontAwesomeSolidTemperatureLow = []
FontAwesomeSolidTemperatureQuarter = []
FontAwesomeSolidTemperatureThreeQuarters = []
FontAwesomeSolidTengeSign = []
FontAwesomeSolidTent = []
FontAwesomeSolidTentArrowDownToLine = []
FontAwesomeSolidTentArrowLeftRight = []
FontAwesomeSolidTentArrowTurnLeft = []
FontAwesomeSolidTentArrowsDown = []
FontAwesomeSolidTents = []
FontAwesomeSolidTerminal = []
FontAwesomeSolidTextHeight = []
FontAwesomeSolidTextSlash = []
FontAwesomeSolidTextWidth = []
FontAwesomeSolidThermometer = []
FontAwesomeSolidThumbsDown = []
FontAwesomeSolidThumbsUp = []
FontAwesomeSolidThumbtack = []
FontAwesomeSolidTicket = []
FontAwesomeSolidTicketSimple = []
FontAwesomeSolidTimeline = []
FontAwesomeSolidToggleOff = []
FontAwesomeSolidToggleOn = []
FontAwesomeSolidToilet = []
FontAwesomeSolidToiletPaper = []
FontAwesomeSolidToiletPaperSlash = []
FontAwesomeSolidToiletPortable = []
FontAwesomeSolidToiletsPortable = []
FontAwesomeSolidToolbox = []
FontAwesomeSolidTooth = []
FontAwesomeSolidToriiGate = []
FontAwesomeSolidTornado = []
FontAwesomeSolidTowerBroadcast = []
FontAwesomeSolidTowerCell = []
FontAwesomeSolidTowerObservation = []
FontAwesomeSolidTractor = []
FontAwesomeSolidTrademark = []
FontAwesomeSolidTrafficLight = []
FontAwesomeSolidTrailer = []
FontAwesomeSolidTrain = []
FontAwesomeSolidTrainSubway = []
FontAwesomeSolidTrainTram = []
FontAwesomeSolidTransgender = []
FontAwesomeSolidTrash = []
FontAwesomeSolidTrashArrowUp = []
FontAwesomeSolidTrashCan = []
FontAwesomeSolidTrashCanArrowUp = []
FontAwesomeSolidTree = []
FontAwesomeSolidTreeCity = []
FontAwesomeSolidTriangleExclamation = []
FontAwesomeSolidTrophy = []
FontAwesomeSolidTrowel = []
FontAwesomeSolidTrowelBricks = []
FontAwesomeSolidTruck = []
FontAwesomeSolidTruckArrowRight = []
FontAwesomeSolidTruckDroplet = []
FontAwesomeSolidTruckFast = []
FontAwesomeSolidTruckField = []
FontAwesomeSolidTruckFieldUn = []
FontAwesomeSolidTruckFront = []
FontAwesomeSolidTruckMedical = []
FontAwesomeSolidTruckMonster = []
FontAwesomeSolidTruckMoving = []
FontAwesomeSolidTruckPickup = []
FontAwesomeSolidTruckPlane = []
FontAwesomeSolidTruckRampBox = []
FontAwesomeSolidTty = []
FontAwesomeSolidTurkishLiraSign = []
FontAwesomeSolidTurnDown = []
FontAwesomeSolidTurnUp = []
FontAwesomeSolidTv = []
FontAwesomeSolidU = []
FontAwesomeSolidUmbrella = []
FontAwesomeSolidUmbrellaBeach = []
FontAwesomeSolidUnderline = []
FontAwesomeSolidUniversalAccess = []
FontAwesomeSolidUnlock = []
FontAwesomeSolidUnlockKeyhole = []
FontAwesomeSolidUpDown = []
FontAwesomeSolidUpDownLeftRight = []
FontAwesomeSolidUpLong = []
FontAwesomeSolidUpRightAndDownLeftFromCenter = []
FontAwesomeSolidUpRightFromSquare = []
FontAwesomeSolidUpload = []
FontAwesomeSolidUser = []
FontAwesomeSolidUserAstronaut = []
FontAwesomeSolidUserCheck = []
FontAwesomeSolidUserClock = []
FontAwesomeSolidUserDoctor = []
FontAwesomeSolidUserGear = []
FontAwesomeSolidUserGraduate = []
FontAwesomeSolidUserGroup = []
FontAwesomeSolidUserInjured = []
FontAwesomeSolidUserLarge = []
FontAwesomeSolidUserLargeSlash = []
FontAwesomeSolidUserLock = []
FontAwesomeSolidUserMinus = []
FontAwesomeSolidUserNinja = []
FontAwesomeSolidUserNurse = []
FontAwesomeSolidUserPen = []
FontAwesomeSolidUserPlus = []
FontAwesomeSolidUserSecret = []
FontAwesomeSolidUserShield = []
FontAwesomeSolidUserSlash = []
FontAwesomeSolidUserTag = []
FontAwesomeSolidUserTie = []
FontAwesomeSolidUserXmark = []
FontAwesomeSolidUsers = []
FontAwesomeSolidUsersBetweenLines = []
FontAwesomeSolidUsersGear = []
FontAwesomeSolidUsersLine = []
FontAwesomeSolidUsersRays = []
FontAwesomeSolidUsersRectangle = []
FontAwesomeSolidUsersSlash = []
FontAwesomeSolidUsersViewfinder = []
FontAwesomeSolidUtensils = []
FontAwesomeSolidV = []
FontAwesomeSolidVanShuttle = []
FontAwesomeSolidVault = []
FontAwesomeSolidVectorSquare = []
FontAwesomeSolidVenus = []
FontAwesomeSolidVenusDouble = []
FontAwesomeSolidVenusMars = []
FontAwesomeSolidVest = []
FontAwesomeSolidVestPatches = []
FontAwesomeSolidVial = []
FontAwesomeSolidVialCircleCheck = []
FontAwesomeSolidVialVirus = []
FontAwesomeSolidVials = []
FontAwesomeSolidVideo = []
FontAwesomeSolidVideoSlash = []
FontAwesomeSolidVihara = []
FontAwesomeSolidVirus = []
FontAwesomeSolidVirusCovid = []
FontAwesomeSolidVirusCovidSlash = []
FontAwesomeSolidVirusSlash = []
FontAwesomeSolidViruses = []
FontAwesomeSolidVoicemail = []
FontAwesomeSolidVolcano = []
FontAwesomeSolidVolleyball = []
FontAwesomeSolidVolumeHigh = []
FontAwesomeSolidVolumeLow = []
FontAwesomeSolidVolumeOff = []
FontAwesomeSolidVolumeXmark = []
FontAwesomeSolidVrCardboard = []
FontAwesomeSolidW = []
FontAwesomeSolidWalkieTalkie = []
FontAwesomeSolidWallet = []
FontAwesomeSolidWandMagic = []
FontAwesomeSolidWandMagicSparkles = []
FontAwesomeSolidWandSparkles = []
FontAwesomeSolidWarehouse = []
FontAwesomeSolidWater = []
FontAwesomeSolidWaterLadder = []
FontAwesomeSolidWaveSquare = []
FontAwesomeSolidWeightHanging = []
FontAwesomeSolidWeightScale = []
FontAwesomeSolidWheatAwn = []
FontAwesomeSolidWheatAwnCircleExclamation = []
FontAwesomeSolidWheelchair = []
FontAwesomeSolidWheelchairMove = []
FontAwesomeSolidWhiskeyGlass = []
FontAwesomeSolidWifi = []
FontAwesomeSolidWind = []
FontAwesomeSolidWindowMaximize = []
FontAwesomeSolidWindowMinimize = []
FontAwesomeSolidWindowRestore = []
FontAwesomeSolidWineBottle = []
FontAwesomeSolidWineGlass = []
FontAwesomeSolidWineGlassEmpty = []
FontAwesomeSolidWonSign = []
FontAwesomeSolidWorm = []
FontAwesomeSolidWrench = []
FontAwesomeSolidX = []
FontAwesomeSolidXRay = []
FontAwesomeSolidXmark = []
FontAwesomeSolidXmarksLines = []
FontAwesomeSolidY = []
FontAwesomeSolidYenSign = []
FontAwesomeSolidYinYang = []
FontAwesomeSolidZ = []
LipisFlagIcons1X1Ac = []
LipisFlagIcons1X1Ad = []
LipisFlagIcons1X1Ae = []
LipisFlagIcons1X1Af = []
LipisFlagIcons1X1Ag = []
LipisFlagIcons1X1Ai = []
LipisFlagIcons1X1Al = []
LipisFlagIcons1X1Am = []
LipisFlagIcons1X1Ao = []
LipisFlagIcons1X1Aq = []
LipisFlagIcons1X1Ar = []
LipisFlagIcons1X1As = []
LipisFlagIcons1X1At = []
LipisFlagIcons1X1Au = []
LipisFlagIcons1X1Aw = []
LipisFlagIcons1X1Ax = []
LipisFlagIcons1X1Az = []
LipisFlagIcons1X1Ba = []
LipisFlagIcons1X1Bb = []
LipisFlagIcons1X1Bd = []
LipisFlagIcons1X1Be = []
LipisFlagIcons1X1Bf = []
LipisFlagIcons1X1Bg = []
LipisFlagIcons1X1Bh = []
LipisFlagIcons1X1Bi = []
LipisFlagIcons1X1Bj = []
LipisFlagIcons1X1Bl = []
LipisFlagIcons1X1Bm = []
LipisFlagIcons1X1Bn = []
LipisFlagIcons1X1Bo = []
LipisFlagIcons1X1Bq = []
LipisFlagIcons1X1Br = []
LipisFlagIcons1X1Bs = []
LipisFlagIcons1X1Bt = []
LipisFlagIcons1X1Bv = []
LipisFlagIcons1X1Bw = []
LipisFlagIcons1X1By = []
LipisFlagIcons1X1Bz = []
LipisFlagIcons1X1Ca = []
LipisFlagIcons1X1Cc = []
LipisFlagIcons1X1Cd = []
LipisFlagIcons1X1Cefta = []
LipisFlagIcons1X1Cf = []
LipisFlagIcons1X1Cg = []
LipisFlagIcons1X1Ch = []
LipisFlagIcons1X1Ci = []
LipisFlagIcons1X1Ck = []
LipisFlagIcons1X1Cl = []
LipisFlagIcons1X1Cm = []
LipisFlagIcons1X1Cn = []
LipisFlagIcons1X1Co = []
LipisFlagIcons1X1Cp = []
LipisFlagIcons1X1Cr = []
LipisFlagIcons1X1Cu = []
LipisFlagIcons1X1Cv = []
LipisFlagIcons1X1Cw = []
LipisFlagIcons1X1Cx = []
LipisFlagIcons1X1Cy = []
LipisFlagIcons1X1Cz = []
LipisFlagIcons1X1De = []
LipisFlagIcons1X1Dg = []
LipisFlagIcons1X1Dj = []
LipisFlagIcons1X1Dk = []
LipisFlagIcons1X1Dm = []
LipisFlagIcons1X1Do = []
LipisFlagIcons1X1Dz = []
LipisFlagIcons1X1Ea = []
LipisFlagIcons1X1Ec = []
LipisFlagIcons1X1Ee = []
LipisFlagIcons1X1Eg = []
LipisFlagIcons1X1Eh = []
LipisFlagIcons1X1Er = []
LipisFlagIcons1X1Es = []
LipisFlagIcons1X1EsCt = []
LipisFlagIcons1X1EsGa = []
LipisFlagIcons1X1Et = []
LipisFlagIcons1X1Eu = []
LipisFlagIcons1X1Fi = []
LipisFlagIcons1X1Fj = []
LipisFlagIcons1X1Fk = []
LipisFlagIcons1X1Fm = []
LipisFlagIcons1X1Fo = []
LipisFlagIcons1X1Fr = []
LipisFlagIcons1X1Ga = []
LipisFlagIcons1X1Gb = []
LipisFlagIcons1X1GbEng = []
LipisFlagIcons1X1GbNir = []
LipisFlagIcons1X1GbSct = []
LipisFlagIcons1X1GbWls = []
LipisFlagIcons1X1Gd = []
LipisFlagIcons1X1Ge = []
LipisFlagIcons1X1Gf = []
LipisFlagIcons1X1Gg = []
LipisFlagIcons1X1Gh = []
LipisFlagIcons1X1Gi = []
LipisFlagIcons1X1Gl = []
LipisFlagIcons1X1Gm = []
LipisFlagIcons1X1Gn = []
LipisFlagIcons1X1Gp = []
LipisFlagIcons1X1Gq = []
LipisFlagIcons1X1Gr = []
LipisFlagIcons1X1Gs = []
LipisFlagIcons1X1Gt = []
LipisFlagIcons1X1Gu = []
LipisFlagIcons1X1Gw = []
LipisFlagIcons1X1Gy = []
LipisFlagIcons1X1Hk = []
LipisFlagIcons1X1Hm = []
LipisFlagIcons1X1Hn = []
LipisFlagIcons1X1Hr = []
LipisFlagIcons1X1Ht = []
LipisFlagIcons1X1Hu = []
LipisFlagIcons1X1Ic = []
LipisFlagIcons1X1Id = []
LipisFlagIcons1X1Ie = []
LipisFlagIcons1X1Il = []
LipisFlagIcons1X1Im = []
LipisFlagIcons1X1In = []
LipisFlagIcons1X1Io = []
LipisFlagIcons1X1Iq = []
LipisFlagIcons1X1Ir = []
LipisFlagIcons1X1Is = []
LipisFlagIcons1X1It = []
LipisFlagIcons1X1Je = []
LipisFlagIcons1X1Jm = []
LipisFlagIcons1X1Jo = []
LipisFlagIcons1X1Jp = []
LipisFlagIcons1X1Ke = []
LipisFlagIcons1X1Kg = []
LipisFlagIcons1X1Kh = []
LipisFlagIcons1X1Ki = []
LipisFlagIcons1X1Km = []
LipisFlagIcons1X1Kn = []
LipisFlagIcons1X1Kp = []
LipisFlagIcons1X1Kr = []
LipisFlagIcons1X1Kw = []
LipisFlagIcons1X1Ky = []
LipisFlagIcons1X1Kz = []
LipisFlagIcons1X1La = []
LipisFlagIcons1X1Lb = []
LipisFlagIcons1X1Lc = []
LipisFlagIcons1X1Li = []
LipisFlagIcons1X1Lk = []
LipisFlagIcons1X1Lr = []
LipisFlagIcons1X1Ls = []
LipisFlagIcons1X1Lt = []
LipisFlagIcons1X1Lu = []
LipisFlagIcons1X1Lv = []
LipisFlagIcons1X1Ly = []
LipisFlagIcons1X1Ma = []
LipisFlagIcons1X1Mc = []
LipisFlagIcons1X1Md = []
LipisFlagIcons1X1Me = []
LipisFlagIcons1X1Mf = []
LipisFlagIcons1X1Mg = []
LipisFlagIcons1X1Mh = []
LipisFlagIcons1X1Mk = []
LipisFlagIcons1X1Ml = []
LipisFlagIcons1X1Mm = []
LipisFlagIcons1X1Mn = []
LipisFlagIcons1X1Mo = []
LipisFlagIcons1X1Mp = []
LipisFlagIcons1X1Mq = []
LipisFlagIcons1X1Mr = []
LipisFlagIcons1X1Ms = []
LipisFlagIcons1X1Mt = []
LipisFlagIcons1X1Mu = []
LipisFlagIcons1X1Mv = []
LipisFlagIcons1X1Mw = []
LipisFlagIcons1X1Mx = []
LipisFlagIcons1X1My = []
LipisFlagIcons1X1Mz = []
LipisFlagIcons1X1Na = []
LipisFlagIcons1X1Nc = []
LipisFlagIcons1X1Ne = []
LipisFlagIcons1X1Nf = []
LipisFlagIcons1X1Ng = []
LipisFlagIcons1X1Ni = []
LipisFlagIcons1X1Nl = []
LipisFlagIcons1X1No = []
LipisFlagIcons1X1Np = []
LipisFlagIcons1X1Nr = []
LipisFlagIcons1X1Nu = []
LipisFlagIcons1X1Nz = []
LipisFlagIcons1X1Om = []
LipisFlagIcons1X1Pa = []
LipisFlagIcons1X1Pe = []
LipisFlagIcons1X1Pf = []
LipisFlagIcons1X1Pg = []
LipisFlagIcons1X1Ph = []
LipisFlagIcons1X1Pk = []
LipisFlagIcons1X1Pl = []
LipisFlagIcons1X1Pm = []
LipisFlagIcons1X1Pn = []
LipisFlagIcons1X1Pr = []
LipisFlagIcons1X1Ps = []
LipisFlagIcons1X1Pt = []
LipisFlagIcons1X1Pw = []
LipisFlagIcons1X1Py = []
LipisFlagIcons1X1Qa = []
LipisFlagIcons1X1Re = []
LipisFlagIcons1X1Ro = []
LipisFlagIcons1X1Rs = []
LipisFlagIcons1X1Ru = []
LipisFlagIcons1X1Rw = []
LipisFlagIcons1X1Sa = []
LipisFlagIcons1X1Sb = []
LipisFlagIcons1X1Sc = []
LipisFlagIcons1X1Sd = []
LipisFlagIcons1X1Se = []
LipisFlagIcons1X1Sg = []
LipisFlagIcons1X1Sh = []
LipisFlagIcons1X1Si = []
LipisFlagIcons1X1Sj = []
LipisFlagIcons1X1Sk = []
LipisFlagIcons1X1Sl = []
LipisFlagIcons1X1Sm = []
LipisFlagIcons1X1Sn = []
LipisFlagIcons1X1So = []
LipisFlagIcons1X1Sr = []
LipisFlagIcons1X1Ss = []
LipisFlagIcons1X1St = []
LipisFlagIcons1X1Sv = []
LipisFlagIcons1X1Sx = []
LipisFlagIcons1X1Sy = []
LipisFlagIcons1X1Sz = []
LipisFlagIcons1X1Ta = []
LipisFlagIcons1X1Tc = []
LipisFlagIcons1X1Td = []
LipisFlagIcons1X1Tf = []
LipisFlagIcons1X1Tg = []
LipisFlagIcons1X1Th = []
LipisFlagIcons1X1Tj = []
LipisFlagIcons1X1Tk = []
LipisFlagIcons1X1Tl = []
LipisFlagIcons1X1Tm = []
LipisFlagIcons1X1Tn = []
LipisFlagIcons1X1To = []
LipisFlagIcons1X1Tr = []
LipisFlagIcons1X1Tt = []
LipisFlagIcons1X1Tv = []
LipisFlagIcons1X1Tw = []
LipisFlagIcons1X1Tz = []
LipisFlagIcons1X1Ua = []
LipisFlagIcons1X1Ug = []
LipisFlagIcons1X1Um = []
LipisFlagIcons1X1Un = []
LipisFlagIcons1X1Us = []
LipisFlagIcons1X1Uy = []
LipisFlagIcons1X1Uz = []
LipisFlagIcons1X1Va = []
LipisFlagIcons1X1Vc = []
LipisFlagIcons1X1Ve = []
LipisFlagIcons1X1Vg = []
LipisFlagIcons1X1Vi = []
LipisFlagIcons1X1Vn = []
LipisFlagIcons1X1Vu = []
LipisFlagIcons1X1Wf = []
LipisFlagIcons1X1Ws = []
LipisFlagIcons1X1Xk = []
LipisFlagIcons1X1Xx = []
LipisFlagIcons1X1Ye = []
LipisFlagIcons1X1Yt = []
LipisFlagIcons1X1Za = []
LipisFlagIcons1X1Zm = []
LipisFlagIcons1X1Zw = []
LipisFlagIcons4X3Ac = []
LipisFlagIcons4X3Ad = []
LipisFlagIcons4X3Ae = []
LipisFlagIcons4X3Af = []
LipisFlagIcons4X3Ag = []
LipisFlagIcons4X3Ai = []
LipisFlagIcons4X3Al = []
LipisFlagIcons4X3Am = []
LipisFlagIcons4X3Ao = []
LipisFlagIcons4X3Aq = []
LipisFlagIcons4X3Ar = []
LipisFlagIcons4X3As = []
LipisFlagIcons4X3At = []
LipisFlagIcons4X3Au = []
LipisFlagIcons4X3Aw = []
LipisFlagIcons4X3Ax = []
LipisFlagIcons4X3Az = []
LipisFlagIcons4X3Ba = []
LipisFlagIcons4X3Bb = []
LipisFlagIcons4X3Bd = []
LipisFlagIcons4X3Be = []
LipisFlagIcons4X3Bf = []
LipisFlagIcons4X3Bg = []
LipisFlagIcons4X3Bh = []
LipisFlagIcons4X3Bi = []
LipisFlagIcons4X3Bj = []
LipisFlagIcons4X3Bl = []
LipisFlagIcons4X3Bm = []
LipisFlagIcons4X3Bn = []
LipisFlagIcons4X3Bo = []
LipisFlagIcons4X3Bq = []
LipisFlagIcons4X3Br = []
LipisFlagIcons4X3Bs = []
LipisFlagIcons4X3Bt = []
LipisFlagIcons4X3Bv = []
LipisFlagIcons4X3Bw = []
LipisFlagIcons4X3By = []
LipisFlagIcons4X3Bz = []
LipisFlagIcons4X3Ca = []
LipisFlagIcons4X3Cc = []
LipisFlagIcons4X3Cd = []
LipisFlagIcons4X3Cefta = []
LipisFlagIcons4X3Cf = []
LipisFlagIcons4X3Cg = []
LipisFlagIcons4X3Ch = []
LipisFlagIcons4X3Ci = []
LipisFlagIcons4X3Ck = []
LipisFlagIcons4X3Cl = []
LipisFlagIcons4X3Cm = []
LipisFlagIcons4X3Cn = []
LipisFlagIcons4X3Co = []
LipisFlagIcons4X3Cp = []
LipisFlagIcons4X3Cr = []
LipisFlagIcons4X3Cu = []
LipisFlagIcons4X3Cv = []
LipisFlagIcons4X3Cw = []
LipisFlagIcons4X3Cx = []
LipisFlagIcons4X3Cy = []
LipisFlagIcons4X3Cz = []
LipisFlagIcons4X3De = []
LipisFlagIcons4X3Dg = []
LipisFlagIcons4X3Dj = []
LipisFlagIcons4X3Dk = []
LipisFlagIcons4X3Dm = []
LipisFlagIcons4X3Do = []
LipisFlagIcons4X3Dz = []
LipisFlagIcons4X3Ea = []
LipisFlagIcons4X3Ec = []
LipisFlagIcons4X3Ee = []
LipisFlagIcons4X3Eg = []
LipisFlagIcons4X3Eh = []
LipisFlagIcons4X3Er = []
LipisFlagIcons4X3Es = []
LipisFlagIcons4X3EsCt = []
LipisFlagIcons4X3EsGa = []
LipisFlagIcons4X3Et = []
LipisFlagIcons4X3Eu = []
LipisFlagIcons4X3Fi = []
LipisFlagIcons4X3Fj = []
LipisFlagIcons4X3Fk = []
LipisFlagIcons4X3Fm = []
LipisFlagIcons4X3Fo = []
LipisFlagIcons4X3Fr = []
LipisFlagIcons4X3Ga = []
LipisFlagIcons4X3Gb = []
LipisFlagIcons4X3GbEng = []
LipisFlagIcons4X3GbNir = []
LipisFlagIcons4X3GbSct = []
LipisFlagIcons4X3GbWls = []
LipisFlagIcons4X3Gd = []
LipisFlagIcons4X3Ge = []
LipisFlagIcons4X3Gf = []
LipisFlagIcons4X3Gg = []
LipisFlagIcons4X3Gh = []
LipisFlagIcons4X3Gi = []
LipisFlagIcons4X3Gl = []
LipisFlagIcons4X3Gm = []
LipisFlagIcons4X3Gn = []
LipisFlagIcons4X3Gp = []
LipisFlagIcons4X3Gq = []
LipisFlagIcons4X3Gr = []
LipisFlagIcons4X3Gs = []
LipisFlagIcons4X3Gt = []
LipisFlagIcons4X3Gu = []
LipisFlagIcons4X3Gw = []
LipisFlagIcons4X3Gy = []
LipisFlagIcons4X3Hk = []
LipisFlagIcons4X3Hm = []
LipisFlagIcons4X3Hn = []
LipisFlagIcons4X3Hr = []
LipisFlagIcons4X3Ht = []
LipisFlagIcons4X3Hu = []
LipisFlagIcons4X3Ic = []
LipisFlagIcons4X3Id = []
LipisFlagIcons4X3Ie = []
LipisFlagIcons4X3Il = []
LipisFlagIcons4X3Im = []
LipisFlagIcons4X3In = []
LipisFlagIcons4X3Io = []
LipisFlagIcons4X3Iq = []
LipisFlagIcons4X3Ir = []
LipisFlagIcons4X3Is = []
LipisFlagIcons4X3It = []
LipisFlagIcons4X3Je = []
LipisFlagIcons4X3Jm = []
LipisFlagIcons4X3Jo = []
LipisFlagIcons4X3Jp = []
LipisFlagIcons4X3Ke = []
LipisFlagIcons4X3Kg = []
LipisFlagIcons4X3Kh = []
LipisFlagIcons4X3Ki = []
LipisFlagIcons4X3Km = []
LipisFlagIcons4X3Kn = []
LipisFlagIcons4X3Kp = []
LipisFlagIcons4X3Kr = []
LipisFlagIcons4X3Kw = []
LipisFlagIcons4X3Ky = []
LipisFlagIcons4X3Kz = []
LipisFlagIcons4X3La = []
LipisFlagIcons4X3Lb = []
LipisFlagIcons4X3Lc = []
LipisFlagIcons4X3Li = []
LipisFlagIcons4X3Lk = []
LipisFlagIcons4X3Lr = []
LipisFlagIcons4X3Ls = []
LipisFlagIcons4X3Lt = []
LipisFlagIcons4X3Lu = []
LipisFlagIcons4X3Lv = []
LipisFlagIcons4X3Ly = []
LipisFlagIcons4X3Ma = []
LipisFlagIcons4X3Mc = []
LipisFlagIcons4X3Md = []
LipisFlagIcons4X3Me = []
LipisFlagIcons4X3Mf = []
LipisFlagIcons4X3Mg = []
LipisFlagIcons4X3Mh = []
LipisFlagIcons4X3Mk = []
LipisFlagIcons4X3Ml = []
LipisFlagIcons4X3Mm = []
LipisFlagIcons4X3Mn = []
LipisFlagIcons4X3Mo = []
LipisFlagIcons4X3Mp = []
LipisFlagIcons4X3Mq = []
LipisFlagIcons4X3Mr = []
LipisFlagIcons4X3Ms = []
LipisFlagIcons4X3Mt = []
LipisFlagIcons4X3Mu = []
LipisFlagIcons4X3Mv = []
LipisFlagIcons4X3Mw = []
LipisFlagIcons4X3Mx = []
LipisFlagIcons4X3My = []
LipisFlagIcons4X3Mz = []
LipisFlagIcons4X3Na = []
LipisFlagIcons4X3Nc = []
LipisFlagIcons4X3Ne = []
LipisFlagIcons4X3Nf = []
LipisFlagIcons4X3Ng = []
LipisFlagIcons4X3Ni = []
LipisFlagIcons4X3Nl = []
LipisFlagIcons4X3No = []
LipisFlagIcons4X3Np = []
LipisFlagIcons4X3Nr = []
LipisFlagIcons4X3Nu = []
LipisFlagIcons4X3Nz = []
LipisFlagIcons4X3Om = []
LipisFlagIcons4X3Pa = []
LipisFlagIcons4X3Pe = []
LipisFlagIcons4X3Pf = []
LipisFlagIcons4X3Pg = []
LipisFlagIcons4X3Ph = []
LipisFlagIcons4X3Pk = []
LipisFlagIcons4X3Pl = []
LipisFlagIcons4X3Pm = []
LipisFlagIcons4X3Pn = []
LipisFlagIcons4X3Pr = []
LipisFlagIcons4X3Ps = []
LipisFlagIcons4X3Pt = []
LipisFlagIcons4X3Pw = []
LipisFlagIcons4X3Py = []
LipisFlagIcons4X3Qa = []
LipisFlagIcons4X3Re = []
LipisFlagIcons4X3Ro = []
LipisFlagIcons4X3Rs = []
LipisFlagIcons4X3Ru = []
LipisFlagIcons4X3Rw = []
LipisFlagIcons4X3Sa = []
LipisFlagIcons4X3Sb = []
LipisFlagIcons4X3Sc = []
LipisFlagIcons4X3Sd = []
LipisFlagIcons4X3Se = []
LipisFlagIcons4X3Sg = []
LipisFlagIcons4X3Sh = []
LipisFlagIcons4X3Si = []
LipisFlagIcons4X3Sj = []
LipisFlagIcons4X3Sk = []
LipisFlagIcons4X3Sl = []
LipisFlagIcons4X3Sm = []
LipisFlagIcons4X3Sn = []
LipisFlagIcons4X3So = []
LipisFlagIcons4X3Sr = []
LipisFlagIcons4X3Ss = []
LipisFlagIcons4X3St = []
LipisFlagIcons4X3Sv = []
LipisFlagIcons4X3Sx = []
LipisFlagIcons4X3Sy = []
LipisFlagIcons4X3Sz = []
LipisFlagIcons4X3Ta = []
LipisFlagIcons4X3Tc = []
LipisFlagIcons4X3Td = []
LipisFlagIcons4X3Tf = []
LipisFlagIcons4X3Tg = []
LipisFlagIcons4X3Th = []
LipisFlagIcons4X3Tj = []
LipisFlagIcons4X3Tk = []
LipisFlagIcons4X3Tl = []
LipisFlagIcons4X3Tm = []
LipisFlagIcons4X3Tn = []
LipisFlagIcons4X3To = []
LipisFlagIcons4X3Tr = []
LipisFlagIcons4X3Tt = []
LipisFlagIcons4X3Tv = []
LipisFlagIcons4X3Tw = []
LipisFlagIcons4X3Tz = []
LipisFlagIcons4X3Ua = []
LipisFlagIcons4X3Ug = []
LipisFlagIcons4X3Um = []
LipisFlagIcons4X3Un = []
LipisFlagIcons4X3Us = []
LipisFlagIcons4X3Uy = []
LipisFlagIcons4X3Uz = []
LipisFlagIcons4X3Va = []
LipisFlagIcons4X3Vc = []
LipisFlagIcons4X3Ve = []
LipisFlagIcons4X3Vg = []
LipisFlagIcons4X3Vi = []
LipisFlagIcons4X3Vn = []
LipisFlagIcons4X3Vu = []
LipisFlagIcons4X3Wf = []
LipisFlagIcons4X3Ws = []
LipisFlagIcons4X3Xk = []
LipisFlagIcons4X3Xx = []
LipisFlagIcons4X3Ye = []
LipisFlagIcons4X3Yt = []
LipisFlagIcons4X3Za = []
LipisFlagIcons4X3Zm = []
LipisFlagIcons4X3Zw = []
OcticonsAccessibility16 = []
OcticonsAlert16 = []
OcticonsAlert24 = []
OcticonsAlertFill12 = []
OcticonsApps16 = []
OcticonsArchive16 = []
OcticonsArchive24 = []
OcticonsArrowBoth16 = []
OcticonsArrowBoth24 = []
OcticonsArrowDown16 = []
OcticonsArrowDown24 = []
OcticonsArrowDownLeft24 = []
OcticonsArrowDownRight24 = []
OcticonsArrowLeft16 = []
OcticonsArrowLeft24 = []
OcticonsArrowRight16 = []
OcticonsArrowRight24 = []
OcticonsArrowSwitch16 = []
OcticonsArrowSwitch24 = []
OcticonsArrowUp16 = []
OcticonsArrowUp24 = []
OcticonsArrowUpLeft24 = []
OcticonsArrowUpRight24 = []
OcticonsBeaker16 = []
OcticonsBeaker24 = []
OcticonsBell16 = []
OcticonsBell24 = []
OcticonsBellFill16 = []
OcticonsBellFill24 = []
OcticonsBellSlash16 = []
OcticonsBellSlash24 = []
OcticonsBlocked16 = []
OcticonsBlocked24 = []
OcticonsBold16 = []
OcticonsBold24 = []
OcticonsBook16 = []
OcticonsBook24 = []
OcticonsBookmark16 = []
OcticonsBookmark24 = []
OcticonsBookmarkFill24 = []
OcticonsBookmarkSlash16 = []
OcticonsBookmarkSlash24 = []
OcticonsBookmarkSlashFill24 = []
OcticonsBriefcase16 = []
OcticonsBriefcase24 = []
OcticonsBroadcast16 = []
OcticonsBroadcast24 = []
OcticonsBrowser16 = []
OcticonsBrowser24 = []
OcticonsBug16 = []
OcticonsBug24 = []
OcticonsCalendar16 = []
OcticonsCalendar24 = []
OcticonsCheck16 = []
OcticonsCheck24 = []
OcticonsCheckCircle16 = []
OcticonsCheckCircle24 = []
OcticonsCheckCircleFill12 = []
OcticonsCheckCircleFill16 = []
OcticonsCheckCircleFill24 = []
OcticonsChecklist16 = []
OcticonsChecklist24 = []
OcticonsChevronDown16 = []
OcticonsChevronDown24 = []
OcticonsChevronLeft16 = []
OcticonsChevronLeft24 = []
OcticonsChevronRight16 = []
OcticonsChevronRight24 = []
OcticonsChevronUp16 = []
OcticonsChevronUp24 = []
OcticonsCircle16 = []
OcticonsCircle24 = []
OcticonsCircleSlash16 = []
OcticonsCircleSlash24 = []
OcticonsClock16 = []
OcticonsClock24 = []
OcticonsCloud16 = []
OcticonsCloud24 = []
OcticonsCloudOffline16 = []
OcticonsCloudOffline24 = []
OcticonsCode16 = []
OcticonsCode24 = []
OcticonsCodeOfConduct16 = []
OcticonsCodeOfConduct24 = []
OcticonsCodeReview16 = []
OcticonsCodeReview24 = []
OcticonsCodeSquare16 = []
OcticonsCodeSquare24 = []
OcticonsCodescan16 = []
OcticonsCodescan24 = []
OcticonsCodescanCheckmark16 = []
OcticonsCodescanCheckmark24 = []
OcticonsCodespaces16 = []
OcticonsCodespaces24 = []
OcticonsColumns16 = []
OcticonsColumns24 = []
OcticonsComment16 = []
OcticonsComment24 = []
OcticonsCommentDiscussion16 = []
OcticonsCommentDiscussion24 = []
OcticonsCommit24 = []
OcticonsContainer16 = []
OcticonsContainer24 = []
OcticonsCopy16 = []
OcticonsCopy24 = []
OcticonsCpu16 = []
OcticonsCpu24 = []
OcticonsCreditCard16 = []
OcticonsCreditCard24 = []
OcticonsCrossReference16 = []
OcticonsCrossReference24 = []
OcticonsDash16 = []
OcticonsDash24 = []
OcticonsDatabase16 = []
OcticonsDatabase24 = []
OcticonsDependabot16 = []
OcticonsDependabot24 = []
OcticonsDesktopDownload16 = []
OcticonsDesktopDownload24 = []
OcticonsDeviceCamera16 = []
OcticonsDeviceCameraVideo16 = []
OcticonsDeviceCameraVideo24 = []
OcticonsDeviceDesktop16 = []
OcticonsDeviceDesktop24 = []
OcticonsDeviceMobile16 = []
OcticonsDeviceMobile24 = []
OcticonsDiamond16 = []
OcticonsDiamond24 = []
OcticonsDiff16 = []
OcticonsDiff24 = []
OcticonsDiffAdded16 = []
OcticonsDiffIgnored16 = []
OcticonsDiffModified16 = []
OcticonsDiffRemoved16 = []
OcticonsDiffRenamed16 = []
OcticonsDot16 = []
OcticonsDot24 = []
OcticonsDotFill16 = []
OcticonsDotFill24 = []
OcticonsDownload16 = []
OcticonsDownload24 = []
OcticonsDuplicate16 = []
OcticonsDuplicate24 = []
OcticonsEllipsis16 = []
OcticonsEye16 = []
OcticonsEye24 = []
OcticonsEyeClosed16 = []
OcticonsEyeClosed24 = []
OcticonsFeedDiscussion16 = []
OcticonsFeedForked16 = []
OcticonsFeedHeart16 = []
OcticonsFeedMerged16 = []
OcticonsFeedPerson16 = []
OcticonsFeedRepo16 = []
OcticonsFeedRocket16 = []
OcticonsFeedStar16 = []
OcticonsFeedTag16 = []
OcticonsFeedTrophy16 = []
OcticonsFile16 = []
OcticonsFile24 = []
OcticonsFileBadge16 = []
OcticonsFileBinary16 = []
OcticonsFileBinary24 = []
OcticonsFileCode16 = []
OcticonsFileCode24 = []
OcticonsFileDiff16 = []
OcticonsFileDiff24 = []
OcticonsFileDirectory16 = []
OcticonsFileDirectory24 = []
OcticonsFileDirectoryFill16 = []
OcticonsFileDirectoryFill24 = []
OcticonsFileDirectoryOpenFill16 = []
OcticonsFileMedia24 = []
OcticonsFileSubmodule16 = []
OcticonsFileSubmodule24 = []
OcticonsFileSymlinkFile16 = []
OcticonsFileSymlinkFile24 = []
OcticonsFileZip16 = []
OcticonsFileZip24 = []
OcticonsFilter16 = []
OcticonsFilter24 = []
OcticonsFlame16 = []
OcticonsFlame24 = []
OcticonsFold16 = []
OcticonsFold24 = []
OcticonsFoldDown16 = []
OcticonsFoldDown24 = []
OcticonsFoldUp16 = []
OcticonsFoldUp24 = []
OcticonsGear16 = []
OcticonsGear24 = []
OcticonsGift16 = []
OcticonsGift24 = []
OcticonsGitBranch16 = []
OcticonsGitBranch24 = []
OcticonsGitCommit16 = []
OcticonsGitCommit24 = []
OcticonsGitCompare16 = []
OcticonsGitCompare24 = []
OcticonsGitMerge16 = []
OcticonsGitMerge24 = []
OcticonsGitPullRequest16 = []
OcticonsGitPullRequest24 = []
OcticonsGitPullRequestClosed16 = []
OcticonsGitPullRequestClosed24 = []
OcticonsGitPullRequestDraft16 = []
OcticonsGitPullRequestDraft24 = []
OcticonsGlobe16 = []
OcticonsGlobe24 = []
OcticonsGrabber16 = []
OcticonsGrabber24 = []
OcticonsGraph16 = []
OcticonsGraph24 = []
OcticonsHash16 = []
OcticonsHash24 = []
OcticonsHeading16 = []
OcticonsHeading24 = []
OcticonsHeart16 = []
OcticonsHeart24 = []
OcticonsHeartFill16 = []
OcticonsHeartFill24 = []
OcticonsHistory16 = []
OcticonsHistory24 = []
OcticonsHome16 = []
OcticonsHome24 = []
OcticonsHomeFill24 = []
OcticonsHorizontalRule16 = []
OcticonsHorizontalRule24 = []
OcticonsHourglass16 = []
OcticonsHourglass24 = []
OcticonsHubot16 = []
OcticonsHubot24 = []
OcticonsIdBadge16 = []
OcticonsImage16 = []
OcticonsImage24 = []
OcticonsInbox16 = []
OcticonsInbox24 = []
OcticonsInfinity16 = []
OcticonsInfinity24 = []
OcticonsInfo16 = []
OcticonsInfo24 = []
OcticonsIssueClosed16 = []
OcticonsIssueClosed24 = []
OcticonsIssueDraft16 = []
OcticonsIssueDraft24 = []
OcticonsIssueOpened16 = []
OcticonsIssueOpened24 = []
OcticonsIssueReopened16 = []
OcticonsIssueReopened24 = []
OcticonsItalic16 = []
OcticonsItalic24 = []
OcticonsIterations16 = []
OcticonsIterations24 = []
OcticonsKebabHorizontal16 = []
OcticonsKebabHorizontal24 = []
OcticonsKey16 = []
OcticonsKey24 = []
OcticonsKeyAsterisk16 = []
OcticonsLaw16 = []
OcticonsLaw24 = []
OcticonsLightBulb16 = []
OcticonsLightBulb24 = []
OcticonsLink16 = []
OcticonsLink24 = []
OcticonsLinkExternal16 = []
OcticonsLinkExternal24 = []
OcticonsListOrdered16 = []
OcticonsListOrdered24 = []
OcticonsListUnordered16 = []
OcticonsListUnordered24 = []
OcticonsLocation16 = []
OcticonsLocation24 = []
OcticonsLock16 = []
OcticonsLock24 = []
OcticonsLog16 = []
OcticonsLogoGist16 = []
OcticonsLogoGithub16 = []
OcticonsMail16 = []
OcticonsMail24 = []
OcticonsMarkGithub16 = []
OcticonsMarkdown16 = []
OcticonsMegaphone16 = []
OcticonsMegaphone24 = []
OcticonsMention16 = []
OcticonsMention24 = []
OcticonsMeter16 = []
OcticonsMilestone16 = []
OcticonsMilestone24 = []
OcticonsMirror16 = []
OcticonsMirror24 = []
OcticonsMoon16 = []
OcticonsMoon24 = []
OcticonsMortarBoard16 = []
OcticonsMortarBoard24 = []
OcticonsMultiSelect16 = []
OcticonsMultiSelect24 = []
OcticonsMute16 = []
OcticonsMute24 = []
OcticonsNoEntry16 = []
OcticonsNoEntry24 = []
OcticonsNoEntryFill12 = []
OcticonsNorthStar16 = []
OcticonsNorthStar24 = []
OcticonsNote16 = []
OcticonsNote24 = []
OcticonsNumber16 = []
OcticonsNumber24 = []
OcticonsOrganization16 = []
OcticonsOrganization24 = []
OcticonsPackage16 = []
OcticonsPackage24 = []
OcticonsPackageDependencies16 = []
OcticonsPackageDependencies24 = []
OcticonsPackageDependents16 = []
OcticonsPackageDependents24 = []
OcticonsPaintbrush16 = []
OcticonsPaperAirplane16 = []
OcticonsPaperAirplane24 = []
OcticonsPaste16 = []
OcticonsPaste24 = []
OcticonsPencil16 = []
OcticonsPencil24 = []
OcticonsPeople16 = []
OcticonsPeople24 = []
OcticonsPerson16 = []
OcticonsPerson24 = []
OcticonsPersonAdd16 = []
OcticonsPersonAdd24 = []
OcticonsPersonFill16 = []
OcticonsPersonFill24 = []
OcticonsPin16 = []
OcticonsPin24 = []
OcticonsPlay16 = []
OcticonsPlay24 = []
OcticonsPlug16 = []
OcticonsPlug24 = []
OcticonsPlus16 = []
OcticonsPlus24 = []
OcticonsPlusCircle16 = []
OcticonsPlusCircle24 = []
OcticonsProject16 = []
OcticonsProject24 = []
OcticonsPulse16 = []
OcticonsPulse24 = []
OcticonsQuestion16 = []
OcticonsQuestion24 = []
OcticonsQuote16 = []
OcticonsQuote24 = []
OcticonsReply16 = []
OcticonsReply24 = []
OcticonsRepo16 = []
OcticonsRepo24 = []
OcticonsRepoClone16 = []
OcticonsRepoDeleted16 = []
OcticonsRepoForked16 = []
OcticonsRepoForked24 = []
OcticonsRepoLocked16 = []
OcticonsRepoPull16 = []
OcticonsRepoPush16 = []
OcticonsRepoPush24 = []
OcticonsRepoTemplate16 = []
OcticonsRepoTemplate24 = []
OcticonsReport16 = []
OcticonsReport24 = []
OcticonsRocket16 = []
OcticonsRocket24 = []
OcticonsRows16 = []
OcticonsRows24 = []
OcticonsRss16 = []
OcticonsRss24 = []
OcticonsRuby16 = []
OcticonsRuby24 = []
OcticonsScreenFull16 = []
OcticonsScreenFull24 = []
OcticonsScreenNormal16 = []
OcticonsScreenNormal24 = []
OcticonsSearch16 = []
OcticonsSearch24 = []
OcticonsServer16 = []
OcticonsServer24 = []
OcticonsShare16 = []
OcticonsShare24 = []
OcticonsShareAndroid16 = []
OcticonsShareAndroid24 = []
OcticonsShield16 = []
OcticonsShield24 = []
OcticonsShieldCheck16 = []
OcticonsShieldCheck24 = []
OcticonsShieldLock16 = []
OcticonsShieldLock24 = []
OcticonsShieldX16 = []
OcticonsShieldX24 = []
OcticonsSidebarCollapse16 = []
OcticonsSidebarCollapse24 = []
OcticonsSidebarExpand16 = []
OcticonsSidebarExpand24 = []
OcticonsSignIn16 = []
OcticonsSignIn24 = []
OcticonsSignOut16 = []
OcticonsSignOut24 = []
OcticonsSingleSelect16 = []
OcticonsSingleSelect24 = []
OcticonsSkip16 = []
OcticonsSkip24 = []
OcticonsSmiley16 = []
OcticonsSmiley24 = []
OcticonsSortAsc16 = []
OcticonsSortAsc24 = []
OcticonsSortDesc16 = []
OcticonsSortDesc24 = []
OcticonsSquare16 = []
OcticonsSquare24 = []
OcticonsSquareFill16 = []
OcticonsSquareFill24 = []
OcticonsSquirrel16 = []
OcticonsSquirrel24 = []
OcticonsStack16 = []
OcticonsStack24 = []
OcticonsStar16 = []
OcticonsStar24 = []
OcticonsStarFill16 = []
OcticonsStarFill24 = []
OcticonsStop16 = []
OcticonsStop24 = []
OcticonsStopwatch16 = []
OcticonsStopwatch24 = []
OcticonsStrikethrough16 = []
OcticonsStrikethrough24 = []
OcticonsSun16 = []
OcticonsSun24 = []
OcticonsSync16 = []
OcticonsSync24 = []
OcticonsTab24 = []
OcticonsTabExternal16 = []
OcticonsTable16 = []
OcticonsTable24 = []
OcticonsTag16 = []
OcticonsTag24 = []
OcticonsTasklist16 = []
OcticonsTasklist24 = []
OcticonsTelescope16 = []
OcticonsTelescope24 = []
OcticonsTelescopeFill16 = []
OcticonsTelescopeFill24 = []
OcticonsTerminal16 = []
OcticonsTerminal24 = []
OcticonsThreeBars16 = []
OcticonsThumbsdown16 = []
OcticonsThumbsdown24 = []
OcticonsThumbsup16 = []
OcticonsThumbsup24 = []
OcticonsTools16 = []
OcticonsTools24 = []
OcticonsTrash16 = []
OcticonsTrash24 = []
OcticonsTriangleDown16 = []
OcticonsTriangleDown24 = []
OcticonsTriangleLeft16 = []
OcticonsTriangleLeft24 = []
OcticonsTriangleRight16 = []
OcticonsTriangleRight24 = []
OcticonsTriangleUp16 = []
OcticonsTriangleUp24 = []
OcticonsTrophy16 = []
OcticonsTrophy24 = []
OcticonsTypography16 = []
OcticonsTypography24 = []
OcticonsUnfold16 = []
OcticonsUnfold24 = []
OcticonsUnlock16 = []
OcticonsUnlock24 = []
OcticonsUnmute16 = []
OcticonsUnmute24 = []
OcticonsUnverified16 = []
OcticonsUnverified24 = []
OcticonsUpload16 = []
OcticonsUpload24 = []
OcticonsVerified16 = []
OcticonsVerified24 = []
OcticonsVersions16 = []
OcticonsVersions24 = []
OcticonsVideo16 = []
OcticonsVideo24 = []
OcticonsWebhook16 = []
OcticonsWorkflow16 = []
OcticonsWorkflow24 = []
OcticonsX16 = []
OcticonsX24 = []
OcticonsXCircle16 = []
OcticonsXCircle24 = []
OcticonsXCircleFill12 = []
OcticonsXCircleFill16 = []
OcticonsXCircleFill24 = []
OcticonsZap16 = []
OcticonsZap24 = []
bootstrap = ["Bootstrap123", "BootstrapActivity", "BootstrapAlarmFill", "BootstrapAlarm", "BootstrapAlignBottom", "BootstrapAlignCenter", "BootstrapAlignEnd", "BootstrapAlignMiddle", "BootstrapAlignStart", "BootstrapAlignTop", "BootstrapAlt", "BootstrapAppIndicator", "BootstrapApp", "BootstrapApple", "BootstrapArchiveFill", "BootstrapArchive", "BootstrapArrow90DegDown", "BootstrapArrow90DegLeft", "BootstrapArrow90DegRight", "BootstrapArrow90DegUp", "BootstrapArrowBarDown", "BootstrapArrowBarLeft", "BootstrapArrowBarRight", "BootstrapArrowBarUp", "BootstrapArrowClockwise", "BootstrapArrowCounterclockwise", "BootstrapArrowDownCircleFill", "BootstrapArrowDownCircle", "BootstrapArrowDownLeftCircleFill", "BootstrapArrowDownLeftCircle", "BootstrapArrowDownLeftSquareFill", "BootstrapArrowDownLeftSquare", "BootstrapArrowDownLeft", "BootstrapArrowDownRightCircleFill", "BootstrapArrowDownRightCircle", "BootstrapArrowDownRightSquareFill", "BootstrapArrowDownRightSquare", "BootstrapArrowDownRight", "BootstrapArrowDownShort", "BootstrapArrowDownSquareFill", "BootstrapArrowDownSquare", "BootstrapArrowDownUp", "BootstrapArrowDown", "BootstrapArrowLeftCircleFill", "BootstrapArrowLeftCircle", "BootstrapArrowLeftRight", "BootstrapArrowLeftShort", "BootstrapArrowLeftSquareFill", "BootstrapArrowLeftSquare", "BootstrapArrowLeft", "BootstrapArrowRepeat", "BootstrapArrowReturnLeft", "BootstrapArrowReturnRight", "BootstrapArrowRightCircleFill", "BootstrapArrowRightCircle", "BootstrapArrowRightShort", "BootstrapArrowRightSquareFill", "BootstrapArrowRightSquare", "BootstrapArrowRight", "BootstrapArrowThroughHeartFill", "BootstrapArrowThroughHeart", "BootstrapArrowUpCircleFill", "BootstrapArrowUpCircle", "BootstrapArrowUpLeftCircleFill", "BootstrapArrowUpLeftCircle", "BootstrapArrowUpLeftSquareFill", "BootstrapArrowUpLeftSquare", "BootstrapArrowUpLeft", "BootstrapArrowUpRightCircleFill", "BootstrapArrowUpRightCircle", "BootstrapArrowUpRightSquareFill", "BootstrapArrowUpRightSquare", "BootstrapArrowUpRight", "BootstrapArrowUpShort", "BootstrapArrowUpSquareFill", "BootstrapArrowUpSquare", "BootstrapArrowUp", "BootstrapArrowsAngleContract", "BootstrapArrowsAngleExpand", "BootstrapArrowsCollapse", "BootstrapArrowsExpand", "BootstrapArrowsFullscreen", "BootstrapArrowsMove", "BootstrapAspectRatioFill", "BootstrapAspectRatio", "BootstrapAsterisk", "BootstrapAt", "BootstrapAwardFill", "BootstrapAward", "BootstrapBack", "BootstrapBackspaceFill", "BootstrapBackspaceReverseFill", "BootstrapBackspaceReverse", "BootstrapBackspace", "BootstrapBadge3DFill", "BootstrapBadge3D", "BootstrapBadge4KFill", "BootstrapBadge4K", "BootstrapBadge8KFill", "BootstrapBadge8K", "BootstrapBadgeAdFill", "BootstrapBadgeAd", "BootstrapBadgeArFill", "BootstrapBadgeAr", "BootstrapBadgeCcFill", "BootstrapBadgeCc", "BootstrapBadgeHdFill", "BootstrapBadgeHd", "BootstrapBadgeSdFill", "BootstrapBadgeSd", "BootstrapBadgeTmFill", "BootstrapBadgeTm", "BootstrapBadgeVoFill", "BootstrapBadgeVo", "BootstrapBadgeVrFill", "BootstrapBadgeVr", "BootstrapBadgeWcFill", "BootstrapBadgeWc", "BootstrapBagCheckFill", "BootstrapBagCheck", "BootstrapBagDashFill", "BootstrapBagDash", "BootstrapBagFill", "BootstrapBagHeartFill", "BootstrapBagHeart", "BootstrapBagPlusFill", "BootstrapBagPlus", "BootstrapBagXFill", "BootstrapBagX", "BootstrapBag", "BootstrapBalloonFill", "BootstrapBalloonHeartFill", "BootstrapBalloonHeart", "BootstrapBalloon", "BootstrapBandaidFill", "BootstrapBandaid", "BootstrapBank", "BootstrapBank2", "BootstrapBarChartFill", "BootstrapBarChartLineFill", "BootstrapBarChartLine", "BootstrapBarChartSteps", "BootstrapBarChart", "BootstrapBasketFill", "BootstrapBasket", "BootstrapBasket2Fill", "BootstrapBasket2", "BootstrapBasket3Fill", "BootstrapBasket3", "BootstrapBatteryCharging", "BootstrapBatteryFull", "BootstrapBatteryHalf", "BootstrapBattery", "BootstrapBehance", "BootstrapBellFill", "BootstrapBellSlashFill", "BootstrapBellSlash", "BootstrapBell", "BootstrapBezier", "BootstrapBezier2", "BootstrapBicycle", "BootstrapBinocularsFill", "BootstrapBinoculars", "BootstrapBlockquoteLeft", "BootstrapBlockquoteRight", "BootstrapBluetooth", "BootstrapBodyText", "BootstrapBookFill", "BootstrapBookHalf", "BootstrapBook", "BootstrapBookmarkCheckFill", "BootstrapBookmarkCheck", "BootstrapBookmarkDashFill", "BootstrapBookmarkDash", "BootstrapBookmarkFill", "BootstrapBookmarkHeartFill", "BootstrapBookmarkHeart", "BootstrapBookmarkPlusFill", "BootstrapBookmarkPlus", "BootstrapBookmarkStarFill", "BootstrapBookmarkStar", "BootstrapBookmarkXFill", "BootstrapBookmarkX", "BootstrapBookmark", "BootstrapBookmarksFill", "BootstrapBookmarks", "BootstrapBookshelf", "BootstrapBoomboxFill", "BootstrapBoombox", "BootstrapBootstrapFill", "BootstrapBootstrapReboot", "BootstrapBootstrap", "BootstrapBorderAll", "BootstrapBorderBottom", "BootstrapBorderCenter", "BootstrapBorderInner", "BootstrapBorderLeft", "BootstrapBorderMiddle", "BootstrapBorderOuter", "BootstrapBorderRight", "BootstrapBorderStyle", "BootstrapBorderTop", "BootstrapBorderWidth", "BootstrapBorder", "BootstrapBoundingBoxCircles", "BootstrapBoundingBox", "BootstrapBoxArrowDownLeft", "BootstrapBoxArrowDownRight", "BootstrapBoxArrowDown", "BootstrapBoxArrowInDownLeft", "BootstrapBoxArrowInDownRight", "BootstrapBoxArrowInDown", "BootstrapBoxArrowInLeft", "BootstrapBoxArrowInRight", "BootstrapBoxArrowInUpLeft", "BootstrapBoxArrowInUpRight", "BootstrapBoxArrowInUp", "BootstrapBoxArrowLeft", "BootstrapBoxArrowRight", "BootstrapBoxArrowUpLeft", "BootstrapBoxArrowUpRight", "BootstrapBoxArrowUp", "BootstrapBoxSeam", "BootstrapBox", "BootstrapBox2Fill", "BootstrapBox2HeartFill", "BootstrapBox2Heart", "BootstrapBox2", "BootstrapBoxes", "BootstrapBracesAsterisk", "BootstrapBraces", "BootstrapBricks", "BootstrapBriefcaseFill", "BootstrapBriefcase", "BootstrapBrightnessAltHighFill", "BootstrapBrightnessAltHigh", "BootstrapBrightnessAltLowFill", "BootstrapBrightnessAltLow", "BootstrapBrightnessHighFill", "BootstrapBrightnessHigh", "BootstrapBrightnessLowFill", "BootstrapBrightnessLow", "BootstrapBroadcastPin", "BootstrapBroadcast", "BootstrapBrushFill", "BootstrapBrush", "BootstrapBucketFill", "BootstrapBucket", "BootstrapBugFill", "BootstrapBug", "BootstrapBuilding", "BootstrapBullseye", "BootstrapCalculatorFill", "BootstrapCalculator", "BootstrapCalendarCheckFill", "BootstrapCalendarCheck", "BootstrapCalendarDateFill", "BootstrapCalendarDate", "BootstrapCalendarDayFill", "BootstrapCalendarDay", "BootstrapCalendarEventFill", "BootstrapCalendarEvent", "BootstrapCalendarFill", "BootstrapCalendarHeartFill", "BootstrapCalendarHeart", "BootstrapCalendarMinusFill", "BootstrapCalendarMinus", "BootstrapCalendarMonthFill", "BootstrapCalendarMonth", "BootstrapCalendarPlusFill", "BootstrapCalendarPlus", "BootstrapCalendarRangeFill", "BootstrapCalendarRange", "BootstrapCalendarWeekFill", "BootstrapCalendarWeek", "BootstrapCalendarXFill", "BootstrapCalendarX", "BootstrapCalendar", "BootstrapCalendar2CheckFill", "BootstrapCalendar2Check", "BootstrapCalendar2DateFill", "BootstrapCalendar2Date", "BootstrapCalendar2DayFill", "BootstrapCalendar2Day", "BootstrapCalendar2EventFill", "BootstrapCalendar2Event", "BootstrapCalendar2Fill", "BootstrapCalendar2HeartFill", "BootstrapCalendar2Heart", "BootstrapCalendar2MinusFill", "BootstrapCalendar2Minus", "BootstrapCalendar2MonthFill", "BootstrapCalendar2Month", "BootstrapCalendar2PlusFill", "BootstrapCalendar2Plus", "BootstrapCalendar2RangeFill", "BootstrapCalendar2Range", "BootstrapCalendar2WeekFill", "BootstrapCalendar2Week", "BootstrapCalendar2XFill", "BootstrapCalendar2X", "BootstrapCalendar2", "BootstrapCalendar3EventFill", "BootstrapCalendar3Event", "BootstrapCalendar3Fill", "BootstrapCalendar3RangeFill", "BootstrapCalendar3Range", "BootstrapCalendar3WeekFill", "BootstrapCalendar3Week", "BootstrapCalendar3", "BootstrapCalendar4Event", "BootstrapCalendar4Range", "BootstrapCalendar4Week", "BootstrapCalendar4", "BootstrapCameraFill", "BootstrapCameraReelsFill", "BootstrapCameraReels", "BootstrapCameraVideoFill", "BootstrapCameraVideoOffFill", "BootstrapCameraVideoOff", "BootstrapCameraVideo", "BootstrapCamera", "BootstrapCamera2", "BootstrapCapslockFill", "BootstrapCapslock", "BootstrapCardChecklist", "BootstrapCardHeading", "BootstrapCardImage", "BootstrapCardList", "BootstrapCardText", "BootstrapCaretDownFill", "BootstrapCaretDownSquareFill", "BootstrapCaretDownSquare", "BootstrapCaretDown", "BootstrapCaretLeftFill", "BootstrapCaretLeftSquareFill", "BootstrapCaretLeftSquare", "BootstrapCaretLeft", "BootstrapCaretRightFill", "BootstrapCaretRightSquareFill", "BootstrapCaretRightSquare", "BootstrapCaretRight", "BootstrapCaretUpFill", "BootstrapCaretUpSquareFill", "BootstrapCaretUpSquare", "BootstrapCaretUp", "BootstrapCartCheckFill", "BootstrapCartCheck", "BootstrapCartDashFill", "BootstrapCartDash", "BootstrapCartFill", "BootstrapCartPlusFill", "BootstrapCartPlus", "BootstrapCartXFill", "BootstrapCartX", "BootstrapCart", "BootstrapCart2", "BootstrapCart3", "BootstrapCart4", "BootstrapCashCoin", "BootstrapCashStack", "BootstrapCash", "BootstrapCast", "BootstrapChatDotsFill", "BootstrapChatDots", "BootstrapChatFill", "BootstrapChatHeartFill", "BootstrapChatHeart", "BootstrapChatLeftDotsFill", "BootstrapChatLeftDots", "BootstrapChatLeftFill", "BootstrapChatLeftHeartFill", "BootstrapChatLeftHeart", "BootstrapChatLeftQuoteFill", "BootstrapChatLeftQuote", "BootstrapChatLeftTextFill", "BootstrapChatLeftText", "BootstrapChatLeft", "BootstrapChatQuoteFill", "BootstrapChatQuote", "BootstrapChatRightDotsFill", "BootstrapChatRightDots", "BootstrapChatRightFill", "BootstrapChatRightHeartFill", "BootstrapChatRightHeart", "BootstrapChatRightQuoteFill", "BootstrapChatRightQuote", "BootstrapChatRightTextFill", "BootstrapChatRightText", "BootstrapChatRight", "BootstrapChatSquareDotsFill", "BootstrapChatSquareDots", "BootstrapChatSquareFill", "BootstrapChatSquareHeartFill", "BootstrapChatSquareHeart", "BootstrapChatSquareQuoteFill", "BootstrapChatSquareQuote", "BootstrapChatSquareTextFill", "BootstrapChatSquareText", "BootstrapChatSquare", "BootstrapChatTextFill", "BootstrapChatText", "BootstrapChat", "BootstrapCheckAll", "BootstrapCheckCircleFill", "BootstrapCheckCircle", "BootstrapCheckLg", "BootstrapCheckSquareFill", "BootstrapCheckSquare", "BootstrapCheck", "BootstrapCheck2All", "BootstrapCheck2Circle", "BootstrapCheck2Square", "BootstrapCheck2", "BootstrapChevronBarContract", "BootstrapChevronBarDown", "BootstrapChevronBarExpand", "BootstrapChevronBarLeft", "BootstrapChevronBarRight", "BootstrapChevronBarUp", "BootstrapChevronCompactDown", "BootstrapChevronCompactLeft", "BootstrapChevronCompactRight", "BootstrapChevronCompactUp", "BootstrapChevronContract", "BootstrapChevronDoubleDown", "BootstrapChevronDoubleLeft", "BootstrapChevronDoubleRight", "BootstrapChevronDoubleUp", "BootstrapChevronDown", "BootstrapChevronExpand", "BootstrapChevronLeft", "BootstrapChevronRight", "BootstrapChevronUp", "BootstrapCircleFill", "BootstrapCircleHalf", "BootstrapCircleSquare", "BootstrapCircle", "BootstrapClipboardCheckFill", "BootstrapClipboardCheck", "BootstrapClipboardDataFill", "BootstrapClipboardData", "BootstrapClipboardFill", "BootstrapClipboardHeartFill", "BootstrapClipboardHeart", "BootstrapClipboardMinusFill", "BootstrapClipboardMinus", "BootstrapClipboardPlusFill", "BootstrapClipboardPlus", "BootstrapClipboardPulse", "BootstrapClipboardXFill", "BootstrapClipboardX", "BootstrapClipboard", "BootstrapClipboard2CheckFill", "BootstrapClipboard2Check", "BootstrapClipboard2DataFill", "BootstrapClipboard2Data", "BootstrapClipboard2Fill", "BootstrapClipboard2HeartFill", "BootstrapClipboard2Heart", "BootstrapClipboard2MinusFill", "BootstrapClipboard2Minus", "BootstrapClipboard2PlusFill", "BootstrapClipboard2Plus", "BootstrapClipboard2PulseFill", "BootstrapClipboard2Pulse", "BootstrapClipboard2XFill", "BootstrapClipboard2X", "BootstrapClipboard2", "BootstrapClockFill", "BootstrapClockHistory", "BootstrapClock", "BootstrapCloudArrowDownFill", "BootstrapCloudArrowDown", "BootstrapCloudArrowUpFill", "BootstrapCloudArrowUp", "BootstrapCloudCheckFill", "BootstrapCloudCheck", "BootstrapCloudDownloadFill", "BootstrapCloudDownload", "BootstrapCloudDrizzleFill", "BootstrapCloudDrizzle", "BootstrapCloudFill", "BootstrapCloudFogFill", "BootstrapCloudFog", "BootstrapCloudFog2Fill", "BootstrapCloudFog2", "BootstrapCloudHailFill", "BootstrapCloudHail", "BootstrapCloudHazeFill", "BootstrapCloudHaze", "BootstrapCloudHaze2Fill", "BootstrapCloudHaze2", "BootstrapCloudLightningFill", "BootstrapCloudLightningRainFill", "BootstrapCloudLightningRain", "BootstrapCloudLightning", "BootstrapCloudMinusFill", "BootstrapCloudMinus", "BootstrapCloudMoonFill", "BootstrapCloudMoon", "BootstrapCloudPlusFill", "BootstrapCloudPlus", "BootstrapCloudRainFill", "BootstrapCloudRainHeavyFill", "BootstrapCloudRainHeavy", "BootstrapCloudRain", "BootstrapCloudSlashFill", "BootstrapCloudSlash", "BootstrapCloudSleetFill", "BootstrapCloudSleet", "BootstrapCloudSnowFill", "BootstrapCloudSnow", "BootstrapCloudSunFill", "BootstrapCloudSun", "BootstrapCloudUploadFill", "BootstrapCloudUpload", "BootstrapCloud", "BootstrapCloudsFill", "BootstrapClouds", "BootstrapCloudyFill", "BootstrapCloudy", "BootstrapCodeSlash", "BootstrapCodeSquare", "BootstrapCode", "BootstrapCoin", "BootstrapCollectionFill", "BootstrapCollectionPlayFill", "BootstrapCollectionPlay", "BootstrapCollection", "BootstrapColumnsGap", "BootstrapColumns", "BootstrapCommand", "BootstrapCompassFill", "BootstrapCompass", "BootstrapConeStriped", "BootstrapCone", "BootstrapController", "BootstrapCpuFill", "BootstrapCpu", "BootstrapCreditCard2BackFill", "BootstrapCreditCard2Back", "BootstrapCreditCard2FrontFill", "BootstrapCreditCard2Front", "BootstrapCreditCardFill", "BootstrapCreditCard", "BootstrapCrop", "BootstrapCupFill", "BootstrapCupStraw", "BootstrapCup", "BootstrapCurrencyBitcoin", "BootstrapCurrencyDollar", "BootstrapCurrencyEuro", "BootstrapCurrencyExchange", "BootstrapCurrencyPound", "BootstrapCurrencyYen", "BootstrapCursorFill", "BootstrapCursorText", "BootstrapCursor", "BootstrapDashCircleDotted", "BootstrapDashCircleFill", "BootstrapDashCircle", "BootstrapDashLg", "BootstrapDashSquareDotted", "BootstrapDashSquareFill", "BootstrapDashSquare", "BootstrapDash", "BootstrapDeviceHddFill", "BootstrapDeviceHdd", "BootstrapDeviceSsdFill", "BootstrapDeviceSsd", "BootstrapDiagram2Fill", "BootstrapDiagram2", "BootstrapDiagram3Fill", "BootstrapDiagram3", "BootstrapDiamondFill", "BootstrapDiamondHalf", "BootstrapDiamond", "BootstrapDice1Fill", "BootstrapDice1", "BootstrapDice2Fill", "BootstrapDice2", "BootstrapDice3Fill", "BootstrapDice3", "BootstrapDice4Fill", "BootstrapDice4", "BootstrapDice5Fill", "BootstrapDice5", "BootstrapDice6Fill", "BootstrapDice6", "BootstrapDiscFill", "BootstrapDisc", "BootstrapDiscord", "BootstrapDisplayFill", "BootstrapDisplay", "BootstrapDisplayportFill", "BootstrapDisplayport", "BootstrapDistributeHorizontal", "BootstrapDistributeVertical", "BootstrapDoorClosedFill", "BootstrapDoorClosed", "BootstrapDoorOpenFill", "BootstrapDoorOpen", "BootstrapDot", "BootstrapDownload", "BootstrapDpadFill", "BootstrapDpad", "BootstrapDribbble", "BootstrapDropletFill", "BootstrapDropletHalf", "BootstrapDroplet", "BootstrapEarFill", "BootstrapEar", "BootstrapEarbuds", "BootstrapEaselFill", "BootstrapEasel", "BootstrapEasel2Fill", "BootstrapEasel2", "BootstrapEasel3Fill", "BootstrapEasel3", "BootstrapEggFill", "BootstrapEggFried", "BootstrapEgg", "BootstrapEjectFill", "BootstrapEject", "BootstrapEmojiAngryFill", "BootstrapEmojiAngry", "BootstrapEmojiDizzyFill", "BootstrapEmojiDizzy", "BootstrapEmojiExpressionlessFill", "BootstrapEmojiExpressionless", "BootstrapEmojiFrownFill", "BootstrapEmojiFrown", "BootstrapEmojiHeartEyesFill", "BootstrapEmojiHeartEyes", "BootstrapEmojiKissFill", "BootstrapEmojiKiss", "BootstrapEmojiLaughingFill", "BootstrapEmojiLaughing", "BootstrapEmojiNeutralFill", "BootstrapEmojiNeutral", "BootstrapEmojiSmileFill", "BootstrapEmojiSmileUpsideDownFill", "BootstrapEmojiSmileUpsideDown", "BootstrapEmojiSmile", "BootstrapEmojiSunglassesFill", "BootstrapEmojiSunglasses", "BootstrapEmojiWinkFill", "BootstrapEmojiWink", "BootstrapEnvelopeCheckFill", "BootstrapEnvelopeCheck", "BootstrapEnvelopeDashFill", "BootstrapEnvelopeDash", "BootstrapEnvelopeExclamationFill", "BootstrapEnvelopeExclamation", "BootstrapEnvelopeFill", "BootstrapEnvelopeHeartFill", "BootstrapEnvelopeHeart", "BootstrapEnvelopeOpenFill", "BootstrapEnvelopeOpenHeartFill", "BootstrapEnvelopeOpenHeart", "BootstrapEnvelopeOpen", "BootstrapEnvelopePaperFill", "BootstrapEnvelopePaperHeartFill", "BootstrapEnvelopePaperHeart", "BootstrapEnvelopePaper", "BootstrapEnvelopePlusFill", "BootstrapEnvelopePlus", "BootstrapEnvelopeSlashFill", "BootstrapEnvelopeSlash", "BootstrapEnvelopeXFill", "BootstrapEnvelopeX", "BootstrapEnvelope", "BootstrapEraserFill", "BootstrapEraser", "BootstrapEthernet", "BootstrapExclamationCircleFill", "BootstrapExclamationCircle", "BootstrapExclamationDiamondFill", "BootstrapExclamationDiamond", "BootstrapExclamationLg", "BootstrapExclamationOctagonFill", "BootstrapExclamationOctagon", "BootstrapExclamationSquareFill", "BootstrapExclamationSquare", "BootstrapExclamationTriangleFill", "BootstrapExclamationTriangle", "BootstrapExclamation", "BootstrapExclude", "BootstrapExplicitFill", "BootstrapExplicit", "BootstrapEyeFill", "BootstrapEyeSlashFill", "BootstrapEyeSlash", "BootstrapEye", "BootstrapEyedropper", "BootstrapEyeglasses", "BootstrapFacebook", "BootstrapFan", "BootstrapFileArrowDownFill", "BootstrapFileArrowDown", "BootstrapFileArrowUpFill", "BootstrapFileArrowUp", "BootstrapFileBarGraphFill", "BootstrapFileBarGraph", "BootstrapFileBinaryFill", "BootstrapFileBinary", "BootstrapFileBreakFill", "BootstrapFileBreak", "BootstrapFileCheckFill", "BootstrapFileCheck", "BootstrapFileCodeFill", "BootstrapFileCode", "BootstrapFileDiffFill", "BootstrapFileDiff", "BootstrapFileEarmarkArrowDownFill", "BootstrapFileEarmarkArrowDown", "BootstrapFileEarmarkArrowUpFill", "BootstrapFileEarmarkArrowUp", "BootstrapFileEarmarkBarGraphFill", "BootstrapFileEarmarkBarGraph", "BootstrapFileEarmarkBinaryFill", "BootstrapFileEarmarkBinary", "BootstrapFileEarmarkBreakFill", "BootstrapFileEarmarkBreak", "BootstrapFileEarmarkCheckFill", "BootstrapFileEarmarkCheck", "BootstrapFileEarmarkCodeFill", "BootstrapFileEarmarkCode", "BootstrapFileEarmarkDiffFill", "BootstrapFileEarmarkDiff", "BootstrapFileEarmarkEaselFill", "BootstrapFileEarmarkEasel", "BootstrapFileEarmarkExcelFill", "BootstrapFileEarmarkExcel", "BootstrapFileEarmarkFill", "BootstrapFileEarmarkFontFill", "BootstrapFileEarmarkFont", "BootstrapFileEarmarkImageFill", "BootstrapFileEarmarkImage", "BootstrapFileEarmarkLockFill", "BootstrapFileEarmarkLock", "BootstrapFileEarmarkLock2Fill", "BootstrapFileEarmarkLock2", "BootstrapFileEarmarkMedicalFill", "BootstrapFileEarmarkMedical", "BootstrapFileEarmarkMinusFill", "BootstrapFileEarmarkMinus", "BootstrapFileEarmarkMusicFill", "BootstrapFileEarmarkMusic", "BootstrapFileEarmarkPdfFill", "BootstrapFileEarmarkPdf", "BootstrapFileEarmarkPersonFill", "BootstrapFileEarmarkPerson", "BootstrapFileEarmarkPlayFill", "BootstrapFileEarmarkPlay", "BootstrapFileEarmarkPlusFill", "BootstrapFileEarmarkPlus", "BootstrapFileEarmarkPostFill", "BootstrapFileEarmarkPost", "BootstrapFileEarmarkPptFill", "BootstrapFileEarmarkPpt", "BootstrapFileEarmarkRichtextFill", "BootstrapFileEarmarkRichtext", "BootstrapFileEarmarkRuledFill", "BootstrapFileEarmarkRuled", "BootstrapFileEarmarkSlidesFill", "BootstrapFileEarmarkSlides", "BootstrapFileEarmarkSpreadsheetFill", "BootstrapFileEarmarkSpreadsheet", "BootstrapFileEarmarkTextFill", "BootstrapFileEarmarkText", "BootstrapFileEarmarkWordFill", "BootstrapFileEarmarkWord", "BootstrapFileEarmarkXFill", "BootstrapFileEarmarkX", "BootstrapFileEarmarkZipFill", "BootstrapFileEarmarkZip", "BootstrapFileEarmark", "BootstrapFileEaselFill", "BootstrapFileEasel", "BootstrapFileExcelFill", "BootstrapFileExcel", "BootstrapFileFill", "BootstrapFileFontFill", "BootstrapFileFont", "BootstrapFileImageFill", "BootstrapFileImage", "BootstrapFileLockFill", "BootstrapFileLock", "BootstrapFileLock2Fill", "BootstrapFileLock2", "BootstrapFileMedicalFill", "BootstrapFileMedical", "BootstrapFileMinusFill", "BootstrapFileMinus", "BootstrapFileMusicFill", "BootstrapFileMusic", "BootstrapFilePdfFill", "BootstrapFilePdf", "BootstrapFilePersonFill", "BootstrapFilePerson", "BootstrapFilePlayFill", "BootstrapFilePlay", "BootstrapFilePlusFill", "BootstrapFilePlus", "BootstrapFilePostFill", "BootstrapFilePost", "BootstrapFilePptFill", "BootstrapFilePpt", "BootstrapFileRichtextFill", "BootstrapFileRichtext", "BootstrapFileRuledFill", "BootstrapFileRuled", "BootstrapFileSlidesFill", "BootstrapFileSlides", "BootstrapFileSpreadsheetFill", "BootstrapFileSpreadsheet", "BootstrapFileTextFill", "BootstrapFileText", "BootstrapFileWordFill", "BootstrapFileWord", "BootstrapFileXFill", "BootstrapFileX", "BootstrapFileZipFill", "BootstrapFileZip", "BootstrapFile", "BootstrapFilesAlt", "BootstrapFiles", "BootstrapFiletypeAac", "BootstrapFiletypeAi", "BootstrapFiletypeBmp", "BootstrapFiletypeCs", "BootstrapFiletypeCss", "BootstrapFiletypeCsv", "BootstrapFiletypeDoc", "BootstrapFiletypeDocx", "BootstrapFiletypeExe", "BootstrapFiletypeGif", "BootstrapFiletypeHeic", "BootstrapFiletypeHtml", "BootstrapFiletypeJava", "BootstrapFiletypeJpg", "BootstrapFiletypeJs", "BootstrapFiletypeJson", "BootstrapFiletypeJsx", "BootstrapFiletypeKey", "BootstrapFiletypeM4P", "BootstrapFiletypeMd", "BootstrapFiletypeMdx", "BootstrapFiletypeMov", "BootstrapFiletypeMp3", "BootstrapFiletypeMp4", "BootstrapFiletypeOtf", "BootstrapFiletypePdf", "BootstrapFiletypePhp", "BootstrapFiletypePng", "BootstrapFiletypePpt", "BootstrapFiletypePptx", "BootstrapFiletypePsd", "BootstrapFiletypePy", "BootstrapFiletypeRaw", "BootstrapFiletypeRb", "BootstrapFiletypeSass", "BootstrapFiletypeScss", "BootstrapFiletypeSh", "BootstrapFiletypeSvg", "BootstrapFiletypeTiff", "BootstrapFiletypeTsx", "BootstrapFiletypeTtf", "BootstrapFiletypeTxt", "BootstrapFiletypeWav", "BootstrapFiletypeWoff", "BootstrapFiletypeXls", "BootstrapFiletypeXlsx", "BootstrapFiletypeXml", "BootstrapFiletypeYml", "BootstrapFilm", "BootstrapFilterCircleFill", "BootstrapFilterCircle", "BootstrapFilterLeft", "BootstrapFilterRight", "BootstrapFilterSquareFill", "BootstrapFilterSquare", "BootstrapFilter", "BootstrapFingerprint", "BootstrapFlagFill", "BootstrapFlag", "BootstrapFlower1", "BootstrapFlower2", "BootstrapFlower3", "BootstrapFolderCheck", "BootstrapFolderFill", "BootstrapFolderMinus", "BootstrapFolderPlus", "BootstrapFolderSymlinkFill", "BootstrapFolderSymlink", "BootstrapFolderX", "BootstrapFolder", "BootstrapFolder2Open", "BootstrapFolder2", "BootstrapFonts", "BootstrapForwardFill", "BootstrapForward", "BootstrapFront", "BootstrapFullscreenExit", "BootstrapFullscreen", "BootstrapFunnelFill", "BootstrapFunnel", "BootstrapGearFill", "BootstrapGearWideConnected", "BootstrapGearWide", "BootstrapGear", "BootstrapGem", "BootstrapGenderAmbiguous", "BootstrapGenderFemale", "BootstrapGenderMale", "BootstrapGenderTrans", "BootstrapGeoAltFill", "BootstrapGeoAlt", "BootstrapGeoFill", "BootstrapGeo", "BootstrapGiftFill", "BootstrapGift", "BootstrapGit", "BootstrapGithub", "BootstrapGlobe", "BootstrapGlobe2", "BootstrapGoogle", "BootstrapGpuCard", "BootstrapGraphDownArrow", "BootstrapGraphDown", "BootstrapGraphUpArrow", "BootstrapGraphUp", "BootstrapGrid1X2Fill", "BootstrapGrid1X2", "BootstrapGrid3X2GapFill", "BootstrapGrid3X2Gap", "BootstrapGrid3X2", "BootstrapGrid3X3GapFill", "BootstrapGrid3X3Gap", "BootstrapGrid3X3", "BootstrapGridFill", "BootstrapGrid", "BootstrapGripHorizontal", "BootstrapGripVertical", "BootstrapHammer", "BootstrapHandIndexFill", "BootstrapHandIndexThumbFill", "BootstrapHandIndexThumb", "BootstrapHandIndex", "BootstrapHandThumbsDownFill", "BootstrapHandThumbsDown", "BootstrapHandThumbsUpFill", "BootstrapHandThumbsUp", "BootstrapHandbagFill", "BootstrapHandbag", "BootstrapHash", "BootstrapHddFill", "BootstrapHddNetworkFill", "BootstrapHddNetwork", "BootstrapHddRackFill", "BootstrapHddRack", "BootstrapHddStackFill", "BootstrapHddStack", "BootstrapHdd", "BootstrapHdmiFill", "BootstrapHdmi", "BootstrapHeadphones", "BootstrapHeadsetVr", "BootstrapHeadset", "BootstrapHeartArrow", "BootstrapHeartFill", "BootstrapHeartHalf", "BootstrapHeartPulseFill", "BootstrapHeartPulse", "BootstrapHeart", "BootstrapHeartbreakFill", "BootstrapHeartbreak", "BootstrapHearts", "BootstrapHeptagonFill", "BootstrapHeptagonHalf", "BootstrapHeptagon", "BootstrapHexagonFill", "BootstrapHexagonHalf", "BootstrapHexagon", "BootstrapHospitalFill", "BootstrapHospital", "BootstrapHourglassBottom", "BootstrapHourglassSplit", "BootstrapHourglassTop", "BootstrapHourglass", "BootstrapHouseDoorFill", "BootstrapHouseDoor", "BootstrapHouseFill", "BootstrapHouseHeartFill", "BootstrapHouseHeart", "BootstrapHouse", "BootstrapHr", "BootstrapHurricane", "BootstrapHypnotize", "BootstrapImageAlt", "BootstrapImageFill", "BootstrapImage", "BootstrapImages", "BootstrapInboxFill", "BootstrapInbox", "BootstrapInboxesFill", "BootstrapInboxes", "BootstrapIncognito", "BootstrapInfinity", "BootstrapInfoCircleFill", "BootstrapInfoCircle", "BootstrapInfoLg", "BootstrapInfoSquareFill", "BootstrapInfoSquare", "BootstrapInfo", "BootstrapInputCursorText", "BootstrapInputCursor", "BootstrapInstagram", "BootstrapIntersect", "BootstrapJournalAlbum", "BootstrapJournalArrowDown", "BootstrapJournalArrowUp", "BootstrapJournalBookmarkFill", "BootstrapJournalBookmark", "BootstrapJournalCheck", "BootstrapJournalCode", "BootstrapJournalMedical", "BootstrapJournalMinus", "BootstrapJournalPlus", "BootstrapJournalRichtext", "BootstrapJournalText", "BootstrapJournalX", "BootstrapJournal", "BootstrapJournals", "BootstrapJoystick", "BootstrapJustifyLeft", "BootstrapJustifyRight", "BootstrapJustify", "BootstrapKanbanFill", "BootstrapKanban", "BootstrapKeyFill", "BootstrapKey", "BootstrapKeyboardFill", "BootstrapKeyboard", "BootstrapLadder", "BootstrapLampFill", "BootstrapLamp", "BootstrapLaptopFill", "BootstrapLaptop", "BootstrapLayerBackward", "BootstrapLayerForward", "BootstrapLayersFill", "BootstrapLayersHalf", "BootstrapLayers", "BootstrapLayoutSidebarInsetReverse", "BootstrapLayoutSidebarInset", "BootstrapLayoutSidebarReverse", "BootstrapLayoutSidebar", "BootstrapLayoutSplit", "BootstrapLayoutTextSidebarReverse", "BootstrapLayoutTextSidebar", "BootstrapLayoutTextWindowReverse", "BootstrapLayoutTextWindow", "BootstrapLayoutThreeColumns", "BootstrapLayoutWtf", "BootstrapLifePreserver", "BootstrapLightbulbFill", "BootstrapLightbulbOffFill", "BootstrapLightbulbOff", "BootstrapLightbulb", "BootstrapLightningChargeFill", "BootstrapLightningCharge", "BootstrapLightningFill", "BootstrapLightning", "BootstrapLine", "BootstrapLink45Deg", "BootstrapLink", "BootstrapLinkedin", "BootstrapListCheck", "BootstrapListColumnsReverse", "BootstrapListColumns", "BootstrapListNested", "BootstrapListOl", "BootstrapListStars", "BootstrapListTask", "BootstrapListUl", "BootstrapList", "BootstrapLockFill", "BootstrapLock", "BootstrapMagic", "BootstrapMagnetFill", "BootstrapMagnet", "BootstrapMailbox", "BootstrapMailbox2", "BootstrapMapFill", "BootstrapMap", "BootstrapMarkdownFill", "BootstrapMarkdown", "BootstrapMask", "BootstrapMastodon", "BootstrapMedium", "BootstrapMegaphoneFill", "BootstrapMegaphone", "BootstrapMemory", "BootstrapMenuAppFill", "BootstrapMenuApp", "BootstrapMenuButtonFill", "BootstrapMenuButtonWideFill", "BootstrapMenuButtonWide", "BootstrapMenuButton", "BootstrapMenuDown", "BootstrapMenuUp", "BootstrapMessenger", "BootstrapMeta", "BootstrapMicFill", "BootstrapMicMuteFill", "BootstrapMicMute", "BootstrapMic", "BootstrapMicrosoft", "BootstrapMinecartLoaded", "BootstrapMinecart", "BootstrapModemFill", "BootstrapModem", "BootstrapMoisture", "BootstrapMoonFill", "BootstrapMoonStarsFill", "BootstrapMoonStars", "BootstrapMoon", "BootstrapMortarboardFill", "BootstrapMortarboard", "BootstrapMotherboardFill", "BootstrapMotherboard", "BootstrapMouseFill", "BootstrapMouse", "BootstrapMouse2Fill", "BootstrapMouse2", "BootstrapMouse3Fill", "BootstrapMouse3", "BootstrapMusicNoteBeamed", "BootstrapMusicNoteList", "BootstrapMusicNote", "BootstrapMusicPlayerFill", "BootstrapMusicPlayer", "BootstrapNewspaper", "BootstrapNintendoSwitch", "BootstrapNodeMinusFill", "BootstrapNodeMinus", "BootstrapNodePlusFill", "BootstrapNodePlus", "BootstrapNutFill", "BootstrapNut", "BootstrapOctagonFill", "BootstrapOctagonHalf", "BootstrapOctagon", "BootstrapOpticalAudioFill", "BootstrapOpticalAudio", "BootstrapOption", "BootstrapOutlet", "BootstrapPaintBucket", "BootstrapPaletteFill", "BootstrapPalette", "BootstrapPalette2", "BootstrapPaperclip", "BootstrapParagraph", "BootstrapPatchCheckFill", "BootstrapPatchCheck", "BootstrapPatchExclamationFill", "BootstrapPatchExclamation", "BootstrapPatchMinusFill", "BootstrapPatchMinus", "BootstrapPatchPlusFill", "BootstrapPatchPlus", "BootstrapPatchQuestionFill", "BootstrapPatchQuestion", "BootstrapPauseBtnFill", "BootstrapPauseBtn", "BootstrapPauseCircleFill", "BootstrapPauseCircle", "BootstrapPauseFill", "BootstrapPause", "BootstrapPaypal", "BootstrapPcDisplayHorizontal", "BootstrapPcDisplay", "BootstrapPcHorizontal", "BootstrapPc", "BootstrapPciCard", "BootstrapPeaceFill", "BootstrapPeace", "BootstrapPenFill", "BootstrapPen", "BootstrapPencilFill", "BootstrapPencilSquare", "BootstrapPencil", "BootstrapPentagonFill", "BootstrapPentagonHalf", "BootstrapPentagon", "BootstrapPeopleFill", "BootstrapPeople", "BootstrapPercent", "BootstrapPersonBadgeFill", "BootstrapPersonBadge", "BootstrapPersonBoundingBox", "BootstrapPersonCheckFill", "BootstrapPersonCheck", "BootstrapPersonCircle", "BootstrapPersonDashFill", "BootstrapPersonDash", "BootstrapPersonFill", "BootstrapPersonHeart", "BootstrapPersonHearts", "BootstrapPersonLinesFill", "BootstrapPersonPlusFill", "BootstrapPersonPlus", "BootstrapPersonRolodex", "BootstrapPersonSquare", "BootstrapPersonVideo", "BootstrapPersonVideo2", "BootstrapPersonVideo3", "BootstrapPersonWorkspace", "BootstrapPersonXFill", "BootstrapPersonX", "BootstrapPerson", "BootstrapPhoneFill", "BootstrapPhoneFlip", "BootstrapPhoneLandscapeFill", "BootstrapPhoneLandscape", "BootstrapPhoneVibrateFill", "BootstrapPhoneVibrate", "BootstrapPhone", "BootstrapPieChartFill", "BootstrapPieChart", "BootstrapPiggyBankFill", "BootstrapPiggyBank", "BootstrapPinAngleFill", "BootstrapPinAngle", "BootstrapPinFill", "BootstrapPinMapFill", "BootstrapPinMap", "BootstrapPin", "BootstrapPinterest", "BootstrapPipFill", "BootstrapPip", "BootstrapPlayBtnFill", "BootstrapPlayBtn", "BootstrapPlayCircleFill", "BootstrapPlayCircle", "BootstrapPlayFill", "BootstrapPlay", "BootstrapPlaystation", "BootstrapPlugFill", "BootstrapPlug", "BootstrapPlugin", "BootstrapPlusCircleDotted", "BootstrapPlusCircleFill", "BootstrapPlusCircle", "BootstrapPlusLg", "BootstrapPlusSlashMinus", "BootstrapPlusSquareDotted", "BootstrapPlusSquareFill", "BootstrapPlusSquare", "BootstrapPlus", "BootstrapPostageFill", "BootstrapPostageHeartFill", "BootstrapPostageHeart", "BootstrapPostage", "BootstrapPostcardFill", "BootstrapPostcardHeartFill", "BootstrapPostcardHeart", "BootstrapPostcard", "BootstrapPower", "BootstrapPrinterFill", "BootstrapPrinter", "BootstrapProjectorFill", "BootstrapProjector", "BootstrapPuzzleFill", "BootstrapPuzzle", "BootstrapQrCodeScan", "BootstrapQrCode", "BootstrapQuestionCircleFill", "BootstrapQuestionCircle", "BootstrapQuestionDiamondFill", "BootstrapQuestionDiamond", "BootstrapQuestionLg", "BootstrapQuestionOctagonFill", "BootstrapQuestionOctagon", "BootstrapQuestionSquareFill", "BootstrapQuestionSquare", "BootstrapQuestion", "BootstrapQuora", "BootstrapQuote", "BootstrapRadioactive", "BootstrapRainbow", "BootstrapReceiptCutoff", "BootstrapReceipt", "BootstrapReception0", "BootstrapReception1", "BootstrapReception2", "BootstrapReception3", "BootstrapReception4", "BootstrapRecordBtnFill", "BootstrapRecordBtn", "BootstrapRecordCircleFill", "BootstrapRecordCircle", "BootstrapRecordFill", "BootstrapRecord", "BootstrapRecord2Fill", "BootstrapRecord2", "BootstrapRecycle", "BootstrapReddit", "BootstrapReplyAllFill", "BootstrapReplyAll", "BootstrapReplyFill", "BootstrapReply", "BootstrapRobot", "BootstrapRouterFill", "BootstrapRouter", "BootstrapRssFill", "BootstrapRss", "BootstrapRulers", "BootstrapSafeFill", "BootstrapSafe", "BootstrapSafe2Fill", "BootstrapSafe2", "BootstrapSaveFill", "BootstrapSave", "BootstrapSave2Fill", "BootstrapSave2", "BootstrapScissors", "BootstrapScrewdriver", "BootstrapSdCardFill", "BootstrapSdCard", "BootstrapSearchHeartFill", "BootstrapSearchHeart", "BootstrapSearch", "BootstrapSegmentedNav", "BootstrapSendCheckFill", "BootstrapSendCheck", "BootstrapSendDashFill", "BootstrapSendDash", "BootstrapSendExclamationFill", "BootstrapSendExclamation", "BootstrapSendFill", "BootstrapSendPlusFill", "BootstrapSendPlus", "BootstrapSendSlashFill", "BootstrapSendSlash", "BootstrapSendXFill", "BootstrapSendX", "BootstrapSend", "BootstrapServer", "BootstrapShareFill", "BootstrapShare", "BootstrapShieldCheck", "BootstrapShieldExclamation", "BootstrapShieldFillCheck", "BootstrapShieldFillExclamation", "BootstrapShieldFillMinus", "BootstrapShieldFillPlus", "BootstrapShieldFillX", "BootstrapShieldFill", "BootstrapShieldLockFill", "BootstrapShieldLock", "BootstrapShieldMinus", "BootstrapShieldPlus", "BootstrapShieldShaded", "BootstrapShieldSlashFill", "BootstrapShieldSlash", "BootstrapShieldX", "BootstrapShield", "BootstrapShiftFill", "BootstrapShift", "BootstrapShopWindow", "BootstrapShop", "BootstrapShuffle", "BootstrapSignal", "BootstrapSignpost2Fill", "BootstrapSignpost2", "BootstrapSignpostFill", "BootstrapSignpostSplitFill", "BootstrapSignpostSplit", "BootstrapSignpost", "BootstrapSimFill", "BootstrapSim", "BootstrapSkipBackwardBtnFill", "BootstrapSkipBackwardBtn", "BootstrapSkipBackwardCircleFill", "BootstrapSkipBackwardCircle", "BootstrapSkipBackwardFill", "BootstrapSkipBackward", "BootstrapSkipEndBtnFill", "BootstrapSkipEndBtn", "BootstrapSkipEndCircleFill", "BootstrapSkipEndCircle", "BootstrapSkipEndFill", "BootstrapSkipEnd", "BootstrapSkipForwardBtnFill", "BootstrapSkipForwardBtn", "BootstrapSkipForwardCircleFill", "BootstrapSkipForwardCircle", "BootstrapSkipForwardFill", "BootstrapSkipForward", "BootstrapSkipStartBtnFill", "BootstrapSkipStartBtn", "BootstrapSkipStartCircleFill", "BootstrapSkipStartCircle", "BootstrapSkipStartFill", "BootstrapSkipStart", "BootstrapSkype", "BootstrapSlack", "BootstrapSlashCircleFill", "BootstrapSlashCircle", "BootstrapSlashLg", "BootstrapSlashSquareFill", "BootstrapSlashSquare", "BootstrapSlash", "BootstrapSliders", "BootstrapSliders2Vertical", "BootstrapSliders2", "BootstrapSmartwatch", "BootstrapSnapchat", "BootstrapSnow", "BootstrapSnow2", "BootstrapSnow3", "BootstrapSortAlphaDownAlt", "BootstrapSortAlphaDown", "BootstrapSortAlphaUpAlt", "BootstrapSortAlphaUp", "BootstrapSortDownAlt", "BootstrapSortDown", "BootstrapSortNumericDownAlt", "BootstrapSortNumericDown", "BootstrapSortNumericUpAlt", "BootstrapSortNumericUp", "BootstrapSortUpAlt", "BootstrapSortUp", "BootstrapSoundwave", "BootstrapSpeakerFill", "BootstrapSpeaker", "BootstrapSpeedometer", "BootstrapSpeedometer2", "BootstrapSpellcheck", "BootstrapSpotify", "BootstrapSquareFill", "BootstrapSquareHalf", "BootstrapSquare", "BootstrapStackOverflow", "BootstrapStack", "BootstrapStarFill", "BootstrapStarHalf", "BootstrapStar", "BootstrapStars", "BootstrapSteam", "BootstrapStickiesFill", "BootstrapStickies", "BootstrapStickyFill", "BootstrapSticky", "BootstrapStopBtnFill", "BootstrapStopBtn", "BootstrapStopCircleFill", "BootstrapStopCircle", "BootstrapStopFill", "BootstrapStop", "BootstrapStoplightsFill", "BootstrapStoplights", "BootstrapStopwatchFill", "BootstrapStopwatch", "BootstrapStrava", "BootstrapSubtract", "BootstrapSuitClubFill", "BootstrapSuitClub", "BootstrapSuitDiamondFill", "BootstrapSuitDiamond", "BootstrapSuitHeartFill", "BootstrapSuitHeart", "BootstrapSuitSpadeFill", "BootstrapSuitSpade", "BootstrapSunFill", "BootstrapSun", "BootstrapSunglasses", "BootstrapSunriseFill", "BootstrapSunrise", "BootstrapSunsetFill", "BootstrapSunset", "BootstrapSymmetryHorizontal", "BootstrapSymmetryVertical", "BootstrapTable", "BootstrapTabletFill", "BootstrapTabletLandscapeFill", "BootstrapTabletLandscape", "BootstrapTablet", "BootstrapTagFill", "BootstrapTag", "BootstrapTagsFill", "BootstrapTags", "BootstrapTelegram", "BootstrapTelephoneFill", "BootstrapTelephoneForwardFill", "BootstrapTelephoneForward", "BootstrapTelephoneInboundFill", "BootstrapTelephoneInbound", "BootstrapTelephoneMinusFill", "BootstrapTelephoneMinus", "BootstrapTelephoneOutboundFill", "BootstrapTelephoneOutbound", "BootstrapTelephonePlusFill", "BootstrapTelephonePlus", "BootstrapTelephoneXFill", "BootstrapTelephoneX", "BootstrapTelephone", "BootstrapTerminalDash", "BootstrapTerminalFill", "BootstrapTerminalPlus", "BootstrapTerminalSplit", "BootstrapTerminalX", "BootstrapTerminal", "BootstrapTextCenter", "BootstrapTextIndentLeft", "BootstrapTextIndentRight", "BootstrapTextLeft", "BootstrapTextParagraph", "BootstrapTextRight", "BootstrapTextareaResize", "BootstrapTextareaT", "BootstrapTextarea", "BootstrapThermometerHalf", "BootstrapThermometerHigh", "BootstrapThermometerLow", "BootstrapThermometerSnow", "BootstrapThermometerSun", "BootstrapThermometer", "BootstrapThreeDotsVertical", "BootstrapThreeDots", "BootstrapThunderboltFill", "BootstrapThunderbolt", "BootstrapTicketDetailedFill", "BootstrapTicketDetailed", "BootstrapTicketFill", "BootstrapTicketPerforatedFill", "BootstrapTicketPerforated", "BootstrapTicket", "BootstrapTiktok", "BootstrapToggleOff", "BootstrapToggleOn", "BootstrapToggle2Off", "BootstrapToggle2On", "BootstrapToggles", "BootstrapToggles2", "BootstrapTools", "BootstrapTornado", "BootstrapTranslate", "BootstrapTrashFill", "BootstrapTrash", "BootstrapTrash2Fill", "BootstrapTrash2", "BootstrapTrash3Fill", "BootstrapTrash3", "BootstrapTreeFill", "BootstrapTree", "BootstrapTriangleFill", "BootstrapTriangleHalf", "BootstrapTriangle", "BootstrapTrophyFill", "BootstrapTrophy", "BootstrapTropicalStorm", "BootstrapTruckFlatbed", "BootstrapTruck", "BootstrapTsunami", "BootstrapTvFill", "BootstrapTv", "BootstrapTwitch", "BootstrapTwitter", "BootstrapTypeBold", "BootstrapTypeH1", "BootstrapTypeH2", "BootstrapTypeH3", "BootstrapTypeItalic", "BootstrapTypeStrikethrough", "BootstrapTypeUnderline", "BootstrapType", "BootstrapUiChecksGrid", "BootstrapUiChecks", "BootstrapUiRadiosGrid", "BootstrapUiRadios", "BootstrapUmbrellaFill", "BootstrapUmbrella", "BootstrapUnion", "BootstrapUnlockFill", "BootstrapUnlock", "BootstrapUpcScan", "BootstrapUpc", "BootstrapUpload", "BootstrapUsbCFill", "BootstrapUsbC", "BootstrapUsbDriveFill", "BootstrapUsbDrive", "BootstrapUsbFill", "BootstrapUsbMicroFill", "BootstrapUsbMicro", "BootstrapUsbMiniFill", "BootstrapUsbMini", "BootstrapUsbPlugFill", "BootstrapUsbPlug", "BootstrapUsbSymbol", "BootstrapUsb", "BootstrapValentine", "BootstrapValentine2", "BootstrapVectorPen", "BootstrapViewList", "BootstrapViewStacked", "BootstrapVimeo", "BootstrapVinylFill", "BootstrapVinyl", "BootstrapVoicemail", "BootstrapVolumeDownFill", "BootstrapVolumeDown", "BootstrapVolumeMuteFill", "BootstrapVolumeMute", "BootstrapVolumeOffFill", "BootstrapVolumeOff", "BootstrapVolumeUpFill", "BootstrapVolumeUp", "BootstrapVr", "BootstrapWalletFill", "BootstrapWallet", "BootstrapWallet2", "BootstrapWatch", "BootstrapWater", "BootstrapWebcamFill", "BootstrapWebcam", "BootstrapWhatsapp", "BootstrapWifi1", "BootstrapWifi2", "BootstrapWifiOff", "BootstrapWifi", "BootstrapWind", "BootstrapWindowDash", "BootstrapWindowDesktop", "BootstrapWindowDock", "BootstrapWindowFullscreen", "BootstrapWindowPlus", "BootstrapWindowSidebar", "BootstrapWindowSplit", "BootstrapWindowStack", "BootstrapWindowX", "BootstrapWindow", "BootstrapWindows", "BootstrapWordpress", "BootstrapWrenchAdjustableCircleFill", "BootstrapWrenchAdjustableCircle", "BootstrapWrenchAdjustable", "BootstrapWrench", "BootstrapXCircleFill", "BootstrapXCircle", "BootstrapXDiamondFill", "BootstrapXDiamond", "BootstrapXLg", "BootstrapXOctagonFill", "BootstrapXOctagon", "BootstrapXSquareFill", "BootstrapXSquare", "BootstrapX", "BootstrapXbox", "BootstrapYinYang", "BootstrapYoutube", "BootstrapZoomIn", "BootstrapZoomOut"]
feather = ["FeatherActivity", "FeatherAirplay", "FeatherAlertCircle", "FeatherAlertOctagon", "FeatherAlertTriangle", "FeatherAlignCenter", "FeatherAlignJustify", "FeatherAlignLeft", "FeatherAlignRight", "FeatherAnchor", "FeatherAperture", "FeatherArchive", "FeatherArrowDownCircle", "FeatherArrowDownLeft", "FeatherArrowDownRight", "FeatherArrowDown", "FeatherArrowLeftCircle", "FeatherArrowLeft", "FeatherArrowRightCircle", "FeatherArrowRight", "FeatherArrowUpCircle", "FeatherArrowUpLeft", "FeatherArrowUpRight", "FeatherArrowUp", "FeatherAtSign", "FeatherAward", "FeatherBarChart2", "FeatherBarChart", "FeatherBatteryCharging", "FeatherBattery", "FeatherBellOff", "FeatherBell", "FeatherBluetooth", "FeatherBold", "FeatherBookOpen", "FeatherBook", "FeatherBookmark", "FeatherBox", "FeatherBriefcase", "FeatherCalendar", "FeatherCameraOff", "FeatherCamera", "FeatherCast", "FeatherCheckCircle", "FeatherCheckSquare", "FeatherCheck", "FeatherChevronDown", "FeatherChevronLeft", "FeatherChevronRight", "FeatherChevronUp", "FeatherChevronsDown", "FeatherChevronsLeft", "FeatherChevronsRight", "FeatherChevronsUp", "FeatherChrome", "FeatherCircle", "FeatherClipboard", "FeatherClock", "FeatherCloudDrizzle", "FeatherCloudLightning", "FeatherCloudOff", "FeatherCloudRain", "FeatherCloudSnow", "FeatherCloud", "FeatherCode", "FeatherCodepen", "FeatherCodesandbox", "FeatherCoffee", "FeatherColumns", "FeatherCommand", "FeatherCompass", "FeatherCopy", "FeatherCornerDownLeft", "FeatherCornerDownRight", "FeatherCornerLeftDown", "FeatherCornerLeftUp", "FeatherCornerRightDown", "FeatherCornerRightUp", "FeatherCornerUpLeft", "FeatherCornerUpRight", "FeatherCpu", "FeatherCreditCard", "FeatherCrop", "FeatherCrosshair", "FeatherDatabase", "FeatherDelete", "FeatherDisc", "FeatherDivideCircle", "FeatherDivideSquare", "FeatherDivide", "FeatherDollarSign", "FeatherDownloadCloud", "FeatherDownload", "FeatherDribbble", "FeatherDroplet", "FeatherEdit2", "FeatherEdit3", "FeatherEdit", "FeatherExternalLink", "FeatherEyeOff", "FeatherEye", "FeatherFacebook", "FeatherFastForward", "FeatherFeather", "FeatherFigma", "FeatherFileMinus", "FeatherFilePlus", "FeatherFileText", "FeatherFile", "FeatherFilm", "FeatherFilter", "FeatherFlag", "FeatherFolderMinus", "FeatherFolderPlus", "FeatherFolder", "FeatherFramer", "FeatherFrown", "FeatherGift", "FeatherGitBranch", "FeatherGitCommit", "FeatherGitMerge", "FeatherGitPullRequest", "FeatherGithub", "FeatherGitlab", "FeatherGlobe", "FeatherGrid", "FeatherHardDrive", "FeatherHash", "FeatherHeadphones", "FeatherHeart", "FeatherHelpCircle", "FeatherHexagon", "FeatherHome", "FeatherImage", "FeatherInbox", "FeatherInfo", "FeatherInstagram", "FeatherItalic", "FeatherKey", "FeatherLayers", "FeatherLayout", "FeatherLifeBuoy", "FeatherLink2", "FeatherLink", "FeatherLinkedin", "FeatherList", "FeatherLoader", "FeatherLock", "FeatherLogIn", "FeatherLogOut", "FeatherMail", "FeatherMapPin", "FeatherMap", "FeatherMaximize2", "FeatherMaximize", "FeatherMeh", "FeatherMenu", "FeatherMessageCircle", "FeatherMessageSquare", "FeatherMicOff", "FeatherMic", "FeatherMinimize2", "FeatherMinimize", "FeatherMinusCircle", "FeatherMinusSquare", "FeatherMinus", "FeatherMonitor", "FeatherMoon", "FeatherMoreHorizontal", "FeatherMoreVertical", "FeatherMousePointer", "FeatherMove", "FeatherMusic", "FeatherNavigation2", "FeatherNavigation", "FeatherOctagon", "FeatherPackage", "FeatherPaperclip", "FeatherPauseCircle", "FeatherPause", "FeatherPenTool", "FeatherPercent", "FeatherPhoneCall", "FeatherPhoneForwarded", "FeatherPhoneIncoming", "FeatherPhoneMissed", "FeatherPhoneOff", "FeatherPhoneOutgoing", "FeatherPhone", "FeatherPieChart", "FeatherPlayCircle", "FeatherPlay", "FeatherPlusCircle", "FeatherPlusSquare", "FeatherPlus", "FeatherPocket", "FeatherPower", "FeatherPrinter", "FeatherRadio", "FeatherRefreshCcw", "FeatherRefreshCw", "FeatherRepeat", "FeatherRewind", "FeatherRotateCcw", "FeatherRotateCw", "FeatherRss", "FeatherSave", "FeatherScissors", "FeatherSearch", "FeatherSend", "FeatherServer", "FeatherSettings", "FeatherShare2", "FeatherShare", "FeatherShieldOff", "FeatherShield", "FeatherShoppingBag", "FeatherShoppingCart", "FeatherShuffle", "FeatherSidebar", "FeatherSkipBack", "FeatherSkipForward", "FeatherSlack", "FeatherSlash", "FeatherSliders", "FeatherSmartphone", "FeatherSmile", "FeatherSpeaker", "FeatherSquare", "FeatherStar", "FeatherStopCircle", "FeatherSun", "FeatherSunrise", "FeatherSunset", "FeatherTable", "FeatherTablet", "FeatherTag", "FeatherTarget", "FeatherTerminal", "FeatherThermometer", "FeatherThumbsDown", "FeatherThumbsUp", "FeatherToggleLeft", "FeatherToggleRight", "FeatherTool", "FeatherTrash2", "FeatherTrash", "FeatherTrello", "FeatherTrendingDown", "FeatherTrendingUp", "FeatherTriangle", "FeatherTruck", "FeatherTv", "FeatherTwitch", "FeatherTwitter", "FeatherType", "FeatherUmbrella", "FeatherUnderline", "FeatherUnlock", "FeatherUploadCloud", "FeatherUpload", "FeatherUserCheck", "FeatherUserMinus", "FeatherUserPlus", "FeatherUserX", "FeatherUser", "FeatherUsers", "FeatherVideoOff", "FeatherVideo", "FeatherVoicemail", "FeatherVolume1", "FeatherVolume2", "FeatherVolumeX", "FeatherVolume", "FeatherWatch", "FeatherWifiOff", "FeatherWifi", "FeatherWind", "FeatherXCircle", "FeatherXOctagon", "FeatherXSquare", "FeatherX", "FeatherYoutube", "FeatherZapOff", "FeatherZap", "FeatherZoomIn", "FeatherZoomOut"]
font_awesome_regular = ["FontAwesomeRegularAddressBook", "FontAwesomeRegularAddressCard", "FontAwesomeRegularBellSlash", "FontAwesomeRegularBell", "FontAwesomeRegularBookmark", "FontAwesomeRegularBuilding", "FontAwesomeRegularCalendarCheck", "FontAwesomeRegularCalendarDays", "FontAwesomeRegularCalendarMinus", "FontAwesomeRegularCalendarPlus", "FontAwesomeRegularCalendarXmark", "FontAwesomeRegularCalendar", "FontAwesomeRegularChartBar", "FontAwesomeRegularChessBishop", "FontAwesomeRegularChessKing", "FontAwesomeRegularChessKnight", "FontAwesomeRegularChessPawn", "FontAwesomeRegularChessQueen", "FontAwesomeRegularChessRook", "FontAwesomeRegularCircleCheck", "FontAwesomeRegularCircleDot", "FontAwesomeRegularCircleDown", "FontAwesomeRegularCircleLeft", "FontAwesomeRegularCirclePause", "FontAwesomeRegularCirclePlay", "FontAwesomeRegularCircleQuestion", "FontAwesomeRegularCircleRight", "FontAwesomeRegularCircleStop", "FontAwesomeRegularCircleUp", "FontAwesomeRegularCircleUser", "FontAwesomeRegularCircleXmark", "FontAwesomeRegularCircle", "FontAwesomeRegularClipboard", "FontAwesomeRegularClock", "FontAwesomeRegularClone", "FontAwesomeRegularClosedCaptioning", "FontAwesomeRegularCommentDots", "FontAwesomeRegularComment", "FontAwesomeRegularComments", "FontAwesomeRegularCompass", "FontAwesomeRegularCopy", "FontAwesomeRegularCopyright", "FontAwesomeRegularCreditCard", "FontAwesomeRegularEnvelopeOpen", "FontAwesomeRegularEnvelope", "FontAwesomeRegularEyeSlash", "FontAwesomeRegularEye", "FontAwesomeRegularFaceAngry", "FontAwesomeRegularFaceDizzy", "FontAwesomeRegularFaceFlushed", "FontAwesomeRegularFaceFrownOpen", "FontAwesomeRegularFaceFrown", "FontAwesomeRegularFaceGrimace", "FontAwesomeRegularFaceGrinBeamSweat", "FontAwesomeRegularFaceGrinBeam", "FontAwesomeRegularFaceGrinHearts", "FontAwesomeRegularFaceGrinSquintTears", "FontAwesomeRegularFaceGrinSquint", "FontAwesomeRegularFaceGrinStars", "FontAwesomeRegularFaceGrinTears", "FontAwesomeRegularFaceGrinTongueSquint", "FontAwesomeRegularFaceGrinTongueWink", "FontAwesomeRegularFaceGrinTongue", "FontAwesomeRegularFaceGrinWide", "FontAwesomeRegularFaceGrinWink", "FontAwesomeRegularFaceGrin", "FontAwesomeRegularFaceKissBeam", "FontAwesomeRegularFaceKissWinkHeart", "FontAwesomeRegularFaceKiss", "FontAwesomeRegularFaceLaughBeam", "FontAwesomeRegularFaceLaughSquint", "FontAwesomeRegularFaceLaughWink", "FontAwesomeRegularFaceLaugh", "FontAwesomeRegularFaceMehBlank", "FontAwesomeRegularFaceMeh", "FontAwesomeRegularFaceRollingEyes", "FontAwesomeRegularFaceSadCry", "FontAwesomeRegularFaceSadTear", "FontAwesomeRegularFaceSmileBeam", "FontAwesomeRegularFaceSmileWink", "FontAwesomeRegularFaceSmile", "FontAwesomeRegularFaceSurprise", "FontAwesomeRegularFaceTired", "FontAwesomeRegularFileAudio", "FontAwesomeRegularFileCode", "FontAwesomeRegularFileExcel", "FontAwesomeRegularFileImage", "FontAwesomeRegularFileLines", "FontAwesomeRegularFilePdf", "FontAwesomeRegularFilePowerpoint", "FontAwesomeRegularFileVideo", "FontAwesomeRegularFileWord", "FontAwesomeRegularFileZipper", "FontAwesomeRegularFile", "FontAwesomeRegularFlag", "FontAwesomeRegularFloppyDisk", "FontAwesomeRegularFolderClosed", "FontAwesomeRegularFolderOpen", "FontAwesomeRegularFolder", "FontAwesomeRegularFontAwesome", "FontAwesomeRegularFutbol", "FontAwesomeRegularGem", "FontAwesomeRegularHandBackFist", "FontAwesomeRegularHandLizard", "FontAwesomeRegularHandPeace", "FontAwesomeRegularHandPointDown", "FontAwesomeRegularHandPointLeft", "FontAwesomeRegularHandPointRight", "FontAwesomeRegularHandPointUp", "FontAwesomeRegularHandPointer", "FontAwesomeRegularHandScissors", "FontAwesomeRegularHandSpock", "FontAwesomeRegularHand", "FontAwesomeRegularHandshake", "FontAwesomeRegularHardDrive", "FontAwesomeRegularHeart", "FontAwesomeRegularHospital", "FontAwesomeRegularHourglass", "FontAwesomeRegularIdBadge", "FontAwesomeRegularIdCard", "FontAwesomeRegularImage", "FontAwesomeRegularImages", "FontAwesomeRegularKeyboard", "FontAwesomeRegularLemon", "FontAwesomeRegularLifeRing", "FontAwesomeRegularLightbulb", "FontAwesomeRegularMap", "FontAwesomeRegularMessage", "FontAwesomeRegularMoneyBill1", "FontAwesomeRegularMoon", "FontAwesomeRegularNewspaper", "FontAwesomeRegularNoteSticky", "FontAwesomeRegularObjectGroup", "FontAwesomeRegularObjectUngroup", "FontAwesomeRegularPaperPlane", "FontAwesomeRegularPaste", "FontAwesomeRegularPenToSquare", "FontAwesomeRegularRectangleList", "FontAwesomeRegularRectangleXmark", "FontAwesomeRegularRegistered", "FontAwesomeRegularShareFromSquare", "FontAwesomeRegularSnowflake", "FontAwesomeRegularSquareCaretDown", "FontAwesomeRegularSquareCaretLeft", "FontAwesomeRegularSquareCaretRight", "FontAwesomeRegularSquareCaretUp", "FontAwesomeRegularSquareCheck", "FontAwesomeRegularSquareFull", "FontAwesomeRegularSquareMinus", "FontAwesomeRegularSquarePlus", "FontAwesomeRegularSquare", "FontAwesomeRegularStarHalfStroke", "FontAwesomeRegularStarHalf", "FontAwesomeRegularStar", "FontAwesomeRegularSun", "FontAwesomeRegularThumbsDown", "FontAwesomeRegularThumbsUp", "FontAwesomeRegularTrashCan", "FontAwesomeRegularUser", "FontAwesomeRegularWindowMaximize", "FontAwesomeRegularWindowMinimize", "FontAwesomeRegularWindowRestore"]
font_awesome_solid = ["FontAwesomeSolid0", "FontAwesomeSolid1", "FontAwesomeSolid2", "FontAwesomeSolid3", "FontAwesomeSolid4", "FontAwesomeSolid5", "FontAwesomeSolid6", "FontAwesomeSolid7", "FontAwesomeSolid8", "FontAwesomeSolid9", "FontAwesomeSolidA", "FontAwesomeSolidAddressBook", "FontAwesomeSolidAddressCard", "FontAwesomeSolidAlignCenter", "FontAwesomeSolidAlignJustify", "FontAwesomeSolidAlignLeft", "FontAwesomeSolidAlignRight", "FontAwesomeSolidAnchorCircleCheck", "FontAwesomeSolidAnchorCircleExclamation", "FontAwesomeSolidAnchorCircleXmark", "FontAwesomeSolidAnchorLock", "FontAwesomeSolidAnchor", "FontAwesomeSolidAngleDown", "FontAwesomeSolidAngleLeft", "FontAwesomeSolidAngleRight", "FontAwesomeSolidAngleUp", "FontAwesomeSolidAnglesDown", "FontAwesomeSolidAnglesLeft", "FontAwesomeSolidAnglesRight", "FontAwesomeSolidAnglesUp", "FontAwesomeSolidAnkh", "FontAwesomeSolidAppleWhole", "FontAwesomeSolidArchway", "FontAwesomeSolidArrowDown19", "FontAwesomeSolidArrowDown91", "FontAwesomeSolidArrowDownAZ", "FontAwesomeSolidArrowDownLong", "FontAwesomeSolidArrowDownShortWide", "FontAwesomeSolidArrowDownUpAcrossLine", "FontAwesomeSolidArrowDownUpLock", "FontAwesomeSolidArrowDownWideShort", "FontAwesomeSolidArrowDownZA", "FontAwesomeSolidArrowDown", "FontAwesomeSolidArrowLeftLong", "FontAwesomeSolidArrowLeft", "FontAwesomeSolidArrowPointer", "FontAwesomeSolidArrowRightArrowLeft", "FontAwesomeSolidArrowRightFromBracket", "FontAwesomeSolidArrowRightLong", "FontAwesomeSolidArrowRightToBracket", "FontAwesomeSolidArrowRightToCity", "FontAwesomeSolidArrowRight", "FontAwesomeSolidArrowRotateLeft", "FontAwesomeSolidArrowRotateRight", "FontAwesomeSolidArrowTrendDown", "FontAwesomeSolidArrowTrendUp", "FontAwesomeSolidArrowTurnDown", "FontAwesomeSolidArrowTurnUp", "FontAwesomeSolidArrowUp19", "FontAwesomeSolidArrowUp91", "FontAwesomeSolidArrowUpAZ", "FontAwesomeSolidArrowUpFromBracket", "FontAwesomeSolidArrowUpFromGroundWater", "FontAwesomeSolidArrowUpFromWaterPump", "FontAwesomeSolidArrowUpLong", "FontAwesomeSolidArrowUpRightDots", "FontAwesomeSolidArrowUpRightFromSquare", "FontAwesomeSolidArrowUpShortWide", "FontAwesomeSolidArrowUpWideShort", "FontAwesomeSolidArrowUpZA", "FontAwesomeSolidArrowUp", "FontAwesomeSolidArrowsDownToLine", "FontAwesomeSolidArrowsDownToPeople", "FontAwesomeSolidArrowsLeftRightToLine", "FontAwesomeSolidArrowsLeftRight", "FontAwesomeSolidArrowsRotate", "FontAwesomeSolidArrowsSpin", "FontAwesomeSolidArrowsSplitUpAndLeft", "FontAwesomeSolidArrowsToCircle", "FontAwesomeSolidArrowsToDot", "FontAwesomeSolidArrowsToEye", "FontAwesomeSolidArrowsTurnRight", "FontAwesomeSolidArrowsTurnToDots", "FontAwesomeSolidArrowsUpDownLeftRight", "FontAwesomeSolidArrowsUpDown", "FontAwesomeSolidArrowsUpToLine", "FontAwesomeSolidAsterisk", "FontAwesomeSolidAt", "FontAwesomeSolidAtom", "FontAwesomeSolidAudioDescription", "FontAwesomeSolidAustralSign", "FontAwesomeSolidAward", "FontAwesomeSolidB", "FontAwesomeSolidBabyCarriage", "FontAwesomeSolidBaby", "FontAwesomeSolidBackwardFast", "FontAwesomeSolidBackwardStep", "FontAwesomeSolidBackward", "FontAwesomeSolidBacon", "FontAwesomeSolidBacteria", "FontAwesomeSolidBacterium", "FontAwesomeSolidBagShopping", "FontAwesomeSolidBahai", "FontAwesomeSolidBahtSign", "FontAwesomeSolidBanSmoking", "FontAwesomeSolidBan", "FontAwesomeSolidBandage", "FontAwesomeSolidBarcode", "FontAwesomeSolidBarsProgress", "FontAwesomeSolidBarsStaggered", "FontAwesomeSolidBars", "FontAwesomeSolidBaseballBatBall", "FontAwesomeSolidBaseball", "FontAwesomeSolidBasketShopping", "FontAwesomeSolidBasketball", "FontAwesomeSolidBath", "FontAwesomeSolidBatteryEmpty", "FontAwesomeSolidBatteryFull", "FontAwesomeSolidBatteryHalf", "FontAwesomeSolidBatteryQuarter", "FontAwesomeSolidBatteryThreeQuarters", "FontAwesomeSolidBedPulse", "FontAwesomeSolidBed", "FontAwesomeSolidBeerMugEmpty", "FontAwesomeSolidBellConcierge", "FontAwesomeSolidBellSlash", "FontAwesomeSolidBell", "FontAwesomeSolidBezierCurve", "FontAwesomeSolidBicycle", "FontAwesomeSolidBinoculars", "FontAwesomeSolidBiohazard", "FontAwesomeSolidBitcoinSign", "FontAwesomeSolidBlenderPhone", "FontAwesomeSolidBlender", "FontAwesomeSolidBlog", "FontAwesomeSolidBold", "FontAwesomeSolidBoltLightning", "FontAwesomeSolidBolt", "FontAwesomeSolidBomb", "FontAwesomeSolidBone", "FontAwesomeSolidBong", "FontAwesomeSolidBookAtlas", "FontAwesomeSolidBookBible", "FontAwesomeSolidBookBookmark", "FontAwesomeSolidBookJournalWhills", "FontAwesomeSolidBookMedical", "FontAwesomeSolidBookOpenReader", "FontAwesomeSolidBookOpen", "FontAwesomeSolidBookQuran", "FontAwesomeSolidBookSkull", "FontAwesomeSolidBook", "FontAwesomeSolidBookmark", "FontAwesomeSolidBorderAll", "FontAwesomeSolidBorderNone", "FontAwesomeSolidBorderTopLeft", "FontAwesomeSolidBoreHole", "FontAwesomeSolidBottleDroplet", "FontAwesomeSolidBottleWater", "FontAwesomeSolidBowlFood", "FontAwesomeSolidBowlRice", "FontAwesomeSolidBowlingBall", "FontAwesomeSolidBoxArchive", "FontAwesomeSolidBoxOpen", "FontAwesomeSolidBoxTissue", "FontAwesomeSolidBox", "FontAwesomeSolidBoxesPacking", "FontAwesomeSolidBoxesStacked", "FontAwesomeSolidBraille", "FontAwesomeSolidBrain", "FontAwesomeSolidBrazilianRealSign", "FontAwesomeSolidBreadSlice", "FontAwesomeSolidBridgeCircleCheck", "FontAwesomeSolidBridgeCircleExclamation", "FontAwesomeSolidBridgeCircleXmark", "FontAwesomeSolidBridgeLock", "FontAwesomeSolidBridgeWater", "FontAwesomeSolidBridge", "FontAwesomeSolidBriefcaseMedical", "FontAwesomeSolidBriefcase", "FontAwesomeSolidBroomBall", "FontAwesomeSolidBroom", "FontAwesomeSolidBrush", "FontAwesomeSolidBucket", "FontAwesomeSolidBugSlash", "FontAwesomeSolidBug", "FontAwesomeSolidBugs", "FontAwesomeSolidBuildingCircleArrowRight", "FontAwesomeSolidBuildingCircleCheck", "FontAwesomeSolidBuildingCircleExclamation", "FontAwesomeSolidBuildingCircleXmark", "FontAwesomeSolidBuildingColumns", "FontAwesomeSolidBuildingFlag", "FontAwesomeSolidBuildingLock", "FontAwesomeSolidBuildingNgo", "FontAwesomeSolidBuildingShield", "FontAwesomeSolidBuildingUn", "FontAwesomeSolidBuildingUser", "FontAwesomeSolidBuildingWheat", "FontAwesomeSolidBuilding", "FontAwesomeSolidBullhorn", "FontAwesomeSolidBullseye", "FontAwesomeSolidBurger", "FontAwesomeSolidBurst", "FontAwesomeSolidBusSimple", "FontAwesomeSolidBus", "FontAwesomeSolidBusinessTime", "FontAwesomeSolidC", "FontAwesomeSolidCakeCandles", "FontAwesomeSolidCalculator", "FontAwesomeSolidCalendarCheck", "FontAwesomeSolidCalendarDay", "FontAwesomeSolidCalendarDays", "FontAwesomeSolidCalendarMinus", "FontAwesomeSolidCalendarPlus", "FontAwesomeSolidCalendarWeek", "FontAwesomeSolidCalendarXmark", "FontAwesomeSolidCalendar", "FontAwesomeSolidCameraRetro", "FontAwesomeSolidCameraRotate", "FontAwesomeSolidCamera", "FontAwesomeSolidCampground", "FontAwesomeSolidCandyCane", "FontAwesomeSolidCannabis", "FontAwesomeSolidCapsules", "FontAwesomeSolidCarBattery", "FontAwesomeSolidCarBurst", "FontAwesomeSolidCarCrash", "FontAwesomeSolidCarOn", "FontAwesomeSolidCarRear", "FontAwesomeSolidCarSide", "FontAwesomeSolidCarTunnel", "FontAwesomeSolidCar", "FontAwesomeSolidCaravan", "FontAwesomeSolidCaretDown", "FontAwesomeSolidCaretLeft", "FontAwesomeSolidCaretRight", "FontAwesomeSolidCaretUp", "FontAwesomeSolidCarrot", "FontAwesomeSolidCartArrowDown", "FontAwesomeSolidCartFlatbedSuitcase", "FontAwesomeSolidCartFlatbed", "FontAwesomeSolidCartPlus", "FontAwesomeSolidCartShopping", "FontAwesomeSolidCashRegister", "FontAwesomeSolidCat", "FontAwesomeSolidCediSign", "FontAwesomeSolidCentSign", "FontAwesomeSolidCertificate", "FontAwesomeSolidChair", "FontAwesomeSolidChalkboardUser", "FontAwesomeSolidChalkboard", "FontAwesomeSolidChampagneGlasses", "FontAwesomeSolidChargingStation", "FontAwesomeSolidChartArea", "FontAwesomeSolidChartBar", "FontAwesomeSolidChartColumn", "FontAwesomeSolidChartGantt", "FontAwesomeSolidChartLine", "FontAwesomeSolidChartPie", "FontAwesomeSolidChartSimple", "FontAwesomeSolidCheckDouble", "FontAwesomeSolidCheckToSlot", "FontAwesomeSolidCheck", "FontAwesomeSolidCheese", "FontAwesomeSolidChessBishop", "FontAwesomeSolidChessBoard", "FontAwesomeSolidChessKing", "FontAwesomeSolidChessKnight", "FontAwesomeSolidChessPawn", "FontAwesomeSolidChessQueen", "FontAwesomeSolidChessRook", "FontAwesomeSolidChess", "FontAwesomeSolidChevronDown", "FontAwesomeSolidChevronLeft", "FontAwesomeSolidChevronRight", "FontAwesomeSolidChevronUp", "FontAwesomeSolidChildDress", "FontAwesomeSolidChildReaching", "FontAwesomeSolidChildRifle", "FontAwesomeSolidChild", "FontAwesomeSolidChildren", "FontAwesomeSolidChurch", "FontAwesomeSolidCircleArrowDown", "FontAwesomeSolidCircleArrowLeft", "FontAwesomeSolidCircleArrowRight", "FontAwesomeSolidCircleArrowUp", "FontAwesomeSolidCircleCheck", "FontAwesomeSolidCircleChevronDown", "FontAwesomeSolidCircleChevronLeft", "FontAwesomeSolidCircleChevronRight", "FontAwesomeSolidCircleChevronUp", "FontAwesomeSolidCircleDollarToSlot", "FontAwesomeSolidCircleDot", "FontAwesomeSolidCircleDown", "FontAwesomeSolidCircleExclamation", "FontAwesomeSolidCircleH", "FontAwesomeSolidCircleHalfStroke", "FontAwesomeSolidCircleInfo", "FontAwesomeSolidCircleLeft", "FontAwesomeSolidCircleMinus", "FontAwesomeSolidCircleNodes", "FontAwesomeSolidCircleNotch", "FontAwesomeSolidCirclePause", "FontAwesomeSolidCirclePlay", "FontAwesomeSolidCirclePlus", "FontAwesomeSolidCircleQuestion", "FontAwesomeSolidCircleRadiation", "FontAwesomeSolidCircleRight", "FontAwesomeSolidCircleStop", "FontAwesomeSolidCircleUp", "FontAwesomeSolidCircleUser", "FontAwesomeSolidCircleXmark", "FontAwesomeSolidCircle", "FontAwesomeSolidCity", "FontAwesomeSolidClapperboard", "FontAwesomeSolidClipboardCheck", "FontAwesomeSolidClipboardList", "FontAwesomeSolidClipboardQuestion", "FontAwesomeSolidClipboardUser", "FontAwesomeSolidClipboard", "FontAwesomeSolidClockRotateLeft", "FontAwesomeSolidClock", "FontAwesomeSolidClone", "FontAwesomeSolidClosedCaptioning", "FontAwesomeSolidCloudArrowDown", "FontAwesomeSolidCloudArrowUp", "FontAwesomeSolidCloudBolt", "FontAwesomeSolidCloudMeatball", "FontAwesomeSolidCloudMoonRain", "FontAwesomeSolidCloudMoon", "FontAwesomeSolidCloudRain", "FontAwesomeSolidCloudShowersHeavy", "FontAwesomeSolidCloudShowersWater", "FontAwesomeSolidCloudSunRain", "FontAwesomeSolidCloudSun", "FontAwesomeSolidCloud", "FontAwesomeSolidClover", "FontAwesomeSolidCodeBranch", "FontAwesomeSolidCodeCommit", "FontAwesomeSolidCodeCompare", "FontAwesomeSolidCodeFork", "FontAwesomeSolidCodeMerge", "FontAwesomeSolidCodePullRequest", "FontAwesomeSolidCode", "FontAwesomeSolidCoins", "FontAwesomeSolidColonSign", "FontAwesomeSolidCommentDollar", "FontAwesomeSolidCommentDots", "FontAwesomeSolidCommentMedical", "FontAwesomeSolidCommentSlash", "FontAwesomeSolidCommentSms", "FontAwesomeSolidComment", "FontAwesomeSolidCommentsDollar", "FontAwesomeSolidComments", "FontAwesomeSolidCompactDisc", "FontAwesomeSolidCompassDrafting", "FontAwesomeSolidCompass", "FontAwesomeSolidCompress", "FontAwesomeSolidComputerMouse", "FontAwesomeSolidComputer", "FontAwesomeSolidCookieBite", "FontAwesomeSolidCookie", "FontAwesomeSolidCopy", "FontAwesomeSolidCopyright", "FontAwesomeSolidCouch", "FontAwesomeSolidCow", "FontAwesomeSolidCreditCard", "FontAwesomeSolidCropSimple", "FontAwesomeSolidCrop", "FontAwesomeSolidCross", "FontAwesomeSolidCrosshairs", "FontAwesomeSolidCrow", "FontAwesomeSolidCrown", "FontAwesomeSolidCrutch", "FontAwesomeSolidCruzeiroSign", "FontAwesomeSolidCube", "FontAwesomeSolidCubesStacked", "FontAwesomeSolidCubes", "FontAwesomeSolidD", "FontAwesomeSolidDatabase", "FontAwesomeSolidDeleteLeft", "FontAwesomeSolidDemocrat", "FontAwesomeSolidDesktop", "FontAwesomeSolidDharmachakra", "FontAwesomeSolidDiagramNext", "FontAwesomeSolidDiagramPredecessor", "FontAwesomeSolidDiagramProject", "FontAwesomeSolidDiagramSuccessor", "FontAwesomeSolidDiamondTurnRight", "FontAwesomeSolidDiamond", "FontAwesomeSolidDiceD20", "FontAwesomeSolidDiceD6", "FontAwesomeSolidDiceFive", "FontAwesomeSolidDiceFour", "FontAwesomeSolidDiceOne", "FontAwesomeSolidDiceSix", "FontAwesomeSolidDiceThree", "FontAwesomeSolidDiceTwo", "FontAwesomeSolidDice", "FontAwesomeSolidDisease", "FontAwesomeSolidDisplay", "FontAwesomeSolidDivide", "FontAwesomeSolidDna", "FontAwesomeSolidDog", "FontAwesomeSolidDollarSign", "FontAwesomeSolidDolly", "FontAwesomeSolidDongSign", "FontAwesomeSolidDoorClosed", "FontAwesomeSolidDoorOpen", "FontAwesomeSolidDove", "FontAwesomeSolidDownLeftAndUpRightToCenter", "FontAwesomeSolidDownLong", "FontAwesomeSolidDownload", "FontAwesomeSolidDragon", "FontAwesomeSolidDrawPolygon", "FontAwesomeSolidDropletSlash", "FontAwesomeSolidDroplet", "FontAwesomeSolidDrumSteelpan", "FontAwesomeSolidDrum", "FontAwesomeSolidDrumstickBite", "FontAwesomeSolidDumbbell", "FontAwesomeSolidDumpsterFire", "FontAwesomeSolidDumpster", "FontAwesomeSolidDungeon", "FontAwesomeSolidE", "FontAwesomeSolidEarDeaf", "FontAwesomeSolidEarListen", "FontAwesomeSolidEarthAfrica", "FontAwesomeSolidEarthAmericas", "FontAwesomeSolidEarthAsia", "FontAwesomeSolidEarthEurope", "FontAwesomeSolidEarthOceania", "FontAwesomeSolidEgg", "FontAwesomeSolidEject", "FontAwesomeSolidElevator", "FontAwesomeSolidEllipsisVertical", "FontAwesomeSolidEllipsis", "FontAwesomeSolidEnvelopeCircleCheck", "FontAwesomeSolidEnvelopeOpenText", "FontAwesomeSolidEnvelopeOpen", "FontAwesomeSolidEnvelope", "FontAwesomeSolidEnvelopesBulk", "FontAwesomeSolidEquals", "FontAwesomeSolidEraser", "FontAwesomeSolidEthernet", "FontAwesomeSolidEuroSign", "FontAwesomeSolidExclamation", "FontAwesomeSolidExpand", "FontAwesomeSolidExplosion", "FontAwesomeSolidEyeDropper", "FontAwesomeSolidEyeLowVision", "FontAwesomeSolidEyeSlash", "FontAwesomeSolidEye", "FontAwesomeSolidF", "FontAwesomeSolidFaceAngry", "FontAwesomeSolidFaceDizzy", "FontAwesomeSolidFaceFlushed", "FontAwesomeSolidFaceFrownOpen", "FontAwesomeSolidFaceFrown", "FontAwesomeSolidFaceGrimace", "FontAwesomeSolidFaceGrinBeamSweat", "FontAwesomeSolidFaceGrinBeam", "FontAwesomeSolidFaceGrinHearts", "FontAwesomeSolidFaceGrinSquintTears", "FontAwesomeSolidFaceGrinSquint", "FontAwesomeSolidFaceGrinStars", "FontAwesomeSolidFaceGrinTears", "FontAwesomeSolidFaceGrinTongueSquint", "FontAwesomeSolidFaceGrinTongueWink", "FontAwesomeSolidFaceGrinTongue", "FontAwesomeSolidFaceGrinWide", "FontAwesomeSolidFaceGrinWink", "FontAwesomeSolidFaceGrin", "FontAwesomeSolidFaceKissBeam", "FontAwesomeSolidFaceKissWinkHeart", "FontAwesomeSolidFaceKiss", "FontAwesomeSolidFaceLaughBeam", "FontAwesomeSolidFaceLaughSquint", "FontAwesomeSolidFaceLaughWink", "FontAwesomeSolidFaceLaugh", "FontAwesomeSolidFaceMehBlank", "FontAwesomeSolidFaceMeh", "FontAwesomeSolidFaceRollingEyes", "FontAwesomeSolidFaceSadCry", "FontAwesomeSolidFaceSadTear", "FontAwesomeSolidFaceSmileBeam", "FontAwesomeSolidFaceSmileWink", "FontAwesomeSolidFaceSmile", "FontAwesomeSolidFaceSurprise", "FontAwesomeSolidFaceTired", "FontAwesomeSolidFan", "FontAwesomeSolidFaucetDrip", "FontAwesomeSolidFaucet", "FontAwesomeSolidFax", "FontAwesomeSolidFeatherPointed", "FontAwesomeSolidFeather", "FontAwesomeSolidFerry", "FontAwesomeSolidFileArrowDown", "FontAwesomeSolidFileArrowUp", "FontAwesomeSolidFileAudio", "FontAwesomeSolidFileCircleCheck", "FontAwesomeSolidFileCircleExclamation", "FontAwesomeSolidFileCircleMinus", "FontAwesomeSolidFileCirclePlus", "FontAwesomeSolidFileCircleQuestion", "FontAwesomeSolidFileCircleXmark", "FontAwesomeSolidFileCode", "FontAwesomeSolidFileContract", "FontAwesomeSolidFileCsv", "FontAwesomeSolidFileExcel", "FontAwesomeSolidFileExport", "FontAwesomeSolidFileImage", "FontAwesomeSolidFileImport", "FontAwesomeSolidFileInvoiceDollar", "FontAwesomeSolidFileInvoice", "FontAwesomeSolidFileLines", "FontAwesomeSolidFileMedical", "FontAwesomeSolidFilePdf", "FontAwesomeSolidFilePen", "FontAwesomeSolidFilePowerpoint", "FontAwesomeSolidFilePrescription", "FontAwesomeSolidFileShield", "FontAwesomeSolidFileSignature", "FontAwesomeSolidFileVideo", "FontAwesomeSolidFileWaveform", "FontAwesomeSolidFileWord", "FontAwesomeSolidFileZipper", "FontAwesomeSolidFile", "FontAwesomeSolidFillDrip", "FontAwesomeSolidFill", "FontAwesomeSolidFilm", "FontAwesomeSolidFilterCircleDollar", "FontAwesomeSolidFilterCircleXmark", "FontAwesomeSolidFilter", "FontAwesomeSolidFingerprint", "FontAwesomeSolidFireBurner", "FontAwesomeSolidFireExtinguisher", "FontAwesomeSolidFireFlameCurved", "FontAwesomeSolidFireFlameSimple", "FontAwesomeSolidFire", "FontAwesomeSolidFishFins", "FontAwesomeSolidFish", "FontAwesomeSolidFlagCheckered", "FontAwesomeSolidFlagUsa", "FontAwesomeSolidFlag", "FontAwesomeSolidFlaskVial", "FontAwesomeSolidFlask", "FontAwesomeSolidFloppyDisk", "FontAwesomeSolidFlorinSign", "FontAwesomeSolidFolderClosed", "FontAwesomeSolidFolderMinus", "FontAwesomeSolidFolderOpen", "FontAwesomeSolidFolderPlus", "FontAwesomeSolidFolderTree", "FontAwesomeSolidFolder", "FontAwesomeSolidFontAwesome", "FontAwesomeSolidFont", "FontAwesomeSolidFootball", "FontAwesomeSolidForwardFast", "FontAwesomeSolidForwardStep", "FontAwesomeSolidForward", "FontAwesomeSolidFrancSign", "FontAwesomeSolidFrog", "FontAwesomeSolidFutbol", "FontAwesomeSolidG", "FontAwesomeSolidGamepad", "FontAwesomeSolidGasPump", "FontAwesomeSolidGaugeHigh", "FontAwesomeSolidGaugeSimpleHigh", "FontAwesomeSolidGaugeSimple", "FontAwesomeSolidGauge", "FontAwesomeSolidGavel", "FontAwesomeSolidGear", "FontAwesomeSolidGears", "FontAwesomeSolidGem", "FontAwesomeSolidGenderless", "FontAwesomeSolidGhost", "FontAwesomeSolidGift", "FontAwesomeSolidGifts", "FontAwesomeSolidGlassWaterDroplet", "FontAwesomeSolidGlassWater", "FontAwesomeSolidGlasses", "FontAwesomeSolidGlobe", "FontAwesomeSolidGolfBallTee", "FontAwesomeSolidGopuram", "FontAwesomeSolidGraduationCap", "FontAwesomeSolidGreaterThanEqual", "FontAwesomeSolidGreaterThan", "FontAwesomeSolidGripLinesVertical", "FontAwesomeSolidGripLines", "FontAwesomeSolidGripVertical", "FontAwesomeSolidGrip", "FontAwesomeSolidGroupArrowsRotate", "FontAwesomeSolidGuaraniSign", "FontAwesomeSolidGuitar", "FontAwesomeSolidGun", "FontAwesomeSolidH", "FontAwesomeSolidHammer", "FontAwesomeSolidHamsa", "FontAwesomeSolidHandBackFist", "FontAwesomeSolidHandDots", "FontAwesomeSolidHandFist", "FontAwesomeSolidHandHoldingDollar", "FontAwesomeSolidHandHoldingDroplet", "FontAwesomeSolidHandHoldingHand", "FontAwesomeSolidHandHoldingHeart", "FontAwesomeSolidHandHoldingMedical", "FontAwesomeSolidHandHolding", "FontAwesomeSolidHandLizard", "FontAwesomeSolidHandMiddleFinger", "FontAwesomeSolidHandPeace", "FontAwesomeSolidHandPointDown", "FontAwesomeSolidHandPointLeft", "FontAwesomeSolidHandPointRight", "FontAwesomeSolidHandPointUp", "FontAwesomeSolidHandPointer", "FontAwesomeSolidHandScissors", "FontAwesomeSolidHandSparkles", "FontAwesomeSolidHandSpock", "FontAwesomeSolidHand", "FontAwesomeSolidHandcuffs", "FontAwesomeSolidHandsAslInterpreting", "FontAwesomeSolidHandsBound", "FontAwesomeSolidHandsBubbles", "FontAwesomeSolidHandsClapping", "FontAwesomeSolidHandsHoldingChild", "FontAwesomeSolidHandsHoldingCircle", "FontAwesomeSolidHandsHolding", "FontAwesomeSolidHandsPraying", "FontAwesomeSolidHands", "FontAwesomeSolidHandshakeAngle", "FontAwesomeSolidHandshakeSimpleSlash", "FontAwesomeSolidHandshakeSimple", "FontAwesomeSolidHandshakeSlash", "FontAwesomeSolidHandshake", "FontAwesomeSolidHanukiah", "FontAwesomeSolidHardDrive", "FontAwesomeSolidHashtag", "FontAwesomeSolidHatCowboySide", "FontAwesomeSolidHatCowboy", "FontAwesomeSolidHatWizard", "FontAwesomeSolidHeadSideCoughSlash", "FontAwesomeSolidHeadSideCough", "FontAwesomeSolidHeadSideMask", "FontAwesomeSolidHeadSideVirus", "FontAwesomeSolidHeading", "FontAwesomeSolidHeadphonesSimple", "FontAwesomeSolidHeadphones", "FontAwesomeSolidHeadset", "FontAwesomeSolidHeartCircleBolt", "FontAwesomeSolidHeartCircleCheck", "FontAwesomeSolidHeartCircleExclamation", "FontAwesomeSolidHeartCircleMinus", "FontAwesomeSolidHeartCirclePlus", "FontAwesomeSolidHeartCircleXmark", "FontAwesomeSolidHeartCrack", "FontAwesomeSolidHeartPulse", "FontAwesomeSolidHeart", "FontAwesomeSolidHelicopterSymbol", "FontAwesomeSolidHelicopter", "FontAwesomeSolidHelmetSafety", "FontAwesomeSolidHelmetUn", "FontAwesomeSolidHighlighter", "FontAwesomeSolidHillAvalanche", "FontAwesomeSolidHillRockslide", "FontAwesomeSolidHippo", "FontAwesomeSolidHockeyPuck", "FontAwesomeSolidHollyBerry", "FontAwesomeSolidHorseHead", "FontAwesomeSolidHorse", "FontAwesomeSolidHospitalUser", "FontAwesomeSolidHospital", "FontAwesomeSolidHotTubPerson", "FontAwesomeSolidHotdog", "FontAwesomeSolidHotel", "FontAwesomeSolidHourglassEmpty", "FontAwesomeSolidHourglassEnd", "FontAwesomeSolidHourglassStart", "FontAwesomeSolidHourglass", "FontAwesomeSolidHouseChimneyCrack", "FontAwesomeSolidHouseChimneyMedical", "FontAwesomeSolidHouseChimneyUser", "FontAwesomeSolidHouseChimneyWindow", "FontAwesomeSolidHouseChimney", "FontAwesomeSolidHouseCircleCheck", "FontAwesomeSolidHouseCircleExclamation", "FontAwesomeSolidHouseCircleXmark", "FontAwesomeSolidHouseCrack", "FontAwesomeSolidHouseFire", "FontAwesomeSolidHouseFlag", "FontAwesomeSolidHouseFloodWaterCircleArrowRight", "FontAwesomeSolidHouseFloodWater", "FontAwesomeSolidHouseLaptop", "FontAwesomeSolidHouseLock", "FontAwesomeSolidHouseMedicalCircleCheck", "FontAwesomeSolidHouseMedicalCircleExclamation", "FontAwesomeSolidHouseMedicalCircleXmark", "FontAwesomeSolidHouseMedicalFlag", "FontAwesomeSolidHouseMedical", "FontAwesomeSolidHouseSignal", "FontAwesomeSolidHouseTsunami", "FontAwesomeSolidHouseUser", "FontAwesomeSolidHouse", "FontAwesomeSolidHryvniaSign", "FontAwesomeSolidHurricane", "FontAwesomeSolidICursor", "FontAwesomeSolidI", "FontAwesomeSolidIceCream", "FontAwesomeSolidIcicles", "FontAwesomeSolidIcons", "FontAwesomeSolidIdBadge", "FontAwesomeSolidIdCardClip", "FontAwesomeSolidIdCard", "FontAwesomeSolidIgloo", "FontAwesomeSolidImagePortrait", "FontAwesomeSolidImage", "FontAwesomeSolidImages", "FontAwesomeSolidInbox", "FontAwesomeSolidIndent", "FontAwesomeSolidIndianRupeeSign", "FontAwesomeSolidIndustry", "FontAwesomeSolidInfinity", "FontAwesomeSolidInfo", "FontAwesomeSolidItalic", "FontAwesomeSolidJ", "FontAwesomeSolidJarWheat", "FontAwesomeSolidJar", "FontAwesomeSolidJedi", "FontAwesomeSolidJetFighterUp", "FontAwesomeSolidJetFighter", "FontAwesomeSolidJoint", "FontAwesomeSolidJugDetergent", "FontAwesomeSolidK", "FontAwesomeSolidKaaba", "FontAwesomeSolidKey", "FontAwesomeSolidKeyboard", "FontAwesomeSolidKhanda", "FontAwesomeSolidKipSign", "FontAwesomeSolidKitMedical", "FontAwesomeSolidKitchenSet", "FontAwesomeSolidKiwiBird", "FontAwesomeSolidL", "FontAwesomeSolidLandMineOn", "FontAwesomeSolidLandmarkDome", "FontAwesomeSolidLandmarkFlag", "FontAwesomeSolidLandmark", "FontAwesomeSolidLanguage", "FontAwesomeSolidLaptopCode", "FontAwesomeSolidLaptopFile", "FontAwesomeSolidLaptopMedical", "FontAwesomeSolidLaptop", "FontAwesomeSolidLariSign", "FontAwesomeSolidLayerGroup", "FontAwesomeSolidLeaf", "FontAwesomeSolidLeftLong", "FontAwesomeSolidLeftRight", "FontAwesomeSolidLemon", "FontAwesomeSolidLessThanEqual", "FontAwesomeSolidLessThan", "FontAwesomeSolidLifeRing", "FontAwesomeSolidLightbulb", "FontAwesomeSolidLinesLeaning", "FontAwesomeSolidLinkSlash", "FontAwesomeSolidLink", "FontAwesomeSolidLiraSign", "FontAwesomeSolidListCheck", "FontAwesomeSolidListOl", "FontAwesomeSolidListUl", "FontAwesomeSolidList", "FontAwesomeSolidLitecoinSign", "FontAwesomeSolidLocationArrow", "FontAwesomeSolidLocationCrosshairs", "FontAwesomeSolidLocationDot", "FontAwesomeSolidLocationPinLock", "FontAwesomeSolidLocationPin", "FontAwesomeSolidLockOpen", "FontAwesomeSolidLock", "FontAwesomeSolidLocust", "FontAwesomeSolidLungsVirus", "FontAwesomeSolidLungs", "FontAwesomeSolidM", "FontAwesomeSolidMagnet", "FontAwesomeSolidMagnifyingGlassArrowRight", "FontAwesomeSolidMagnifyingGlassChart", "FontAwesomeSolidMagnifyingGlassDollar", "FontAwesomeSolidMagnifyingGlassLocation", "FontAwesomeSolidMagnifyingGlassMinus", "FontAwesomeSolidMagnifyingGlassPlus", "FontAwesomeSolidMagnifyingGlass", "FontAwesomeSolidManatSign", "FontAwesomeSolidMapLocationDot", "FontAwesomeSolidMapLocation", "FontAwesomeSolidMapPin", "FontAwesomeSolidMap", "FontAwesomeSolidMarker", "FontAwesomeSolidMarsAndVenusBurst", "FontAwesomeSolidMarsAndVenus", "FontAwesomeSolidMarsDouble", "FontAwesomeSolidMarsStrokeRight", "FontAwesomeSolidMarsStrokeUp", "FontAwesomeSolidMarsStroke", "FontAwesomeSolidMars", "FontAwesomeSolidMartiniGlassCitrus", "FontAwesomeSolidMartiniGlassEmpty", "FontAwesomeSolidMartiniGlass", "FontAwesomeSolidMaskFace", "FontAwesomeSolidMaskVentilator", "FontAwesomeSolidMask", "FontAwesomeSolidMasksTheater", "FontAwesomeSolidMattressPillow", "FontAwesomeSolidMaximize", "FontAwesomeSolidMedal", "FontAwesomeSolidMemory", "FontAwesomeSolidMenorah", "FontAwesomeSolidMercury", "FontAwesomeSolidMessage", "FontAwesomeSolidMeteor", "FontAwesomeSolidMicrochip", "FontAwesomeSolidMicrophoneLinesSlash", "FontAwesomeSolidMicrophoneLines", "FontAwesomeSolidMicrophoneSlash", "FontAwesomeSolidMicrophone", "FontAwesomeSolidMicroscope", "FontAwesomeSolidMillSign", "FontAwesomeSolidMinimize", "FontAwesomeSolidMinus", "FontAwesomeSolidMitten", "FontAwesomeSolidMobileButton", "FontAwesomeSolidMobileRetro", "FontAwesomeSolidMobileScreenButton", "FontAwesomeSolidMobileScreen", "FontAwesomeSolidMobile", "FontAwesomeSolidMoneyBill1Wave", "FontAwesomeSolidMoneyBill1", "FontAwesomeSolidMoneyBillTransfer", "FontAwesomeSolidMoneyBillTrendUp", "FontAwesomeSolidMoneyBillWave", "FontAwesomeSolidMoneyBillWheat", "FontAwesomeSolidMoneyBill", "FontAwesomeSolidMoneyBills", "FontAwesomeSolidMoneyCheckDollar", "FontAwesomeSolidMoneyCheck", "FontAwesomeSolidMonument", "FontAwesomeSolidMoon", "FontAwesomeSolidMortarPestle", "FontAwesomeSolidMosque", "FontAwesomeSolidMosquitoNet", "FontAwesomeSolidMosquito", "FontAwesomeSolidMotorcycle", "FontAwesomeSolidMound", "FontAwesomeSolidMountainCity", "FontAwesomeSolidMountainSun", "FontAwesomeSolidMountain", "FontAwesomeSolidMugHot", "FontAwesomeSolidMugSaucer", "FontAwesomeSolidMusic", "FontAwesomeSolidN", "FontAwesomeSolidNairaSign", "FontAwesomeSolidNetworkWired", "FontAwesomeSolidNeuter", "FontAwesomeSolidNewspaper", "FontAwesomeSolidNotEqual", "FontAwesomeSolidNoteSticky", "FontAwesomeSolidNotesMedical", "FontAwesomeSolidO", "FontAwesomeSolidObjectGroup", "FontAwesomeSolidObjectUngroup", "FontAwesomeSolidOilCan", "FontAwesomeSolidOilWell", "FontAwesomeSolidOm", "FontAwesomeSolidOtter", "FontAwesomeSolidOutdent", "FontAwesomeSolidP", "FontAwesomeSolidPager", "FontAwesomeSolidPaintRoller", "FontAwesomeSolidPaintbrush", "FontAwesomeSolidPalette", "FontAwesomeSolidPallet", "FontAwesomeSolidPanorama", "FontAwesomeSolidPaperPlane", "FontAwesomeSolidPaperclip", "FontAwesomeSolidParachuteBox", "FontAwesomeSolidParagraph", "FontAwesomeSolidPassport", "FontAwesomeSolidPaste", "FontAwesomeSolidPause", "FontAwesomeSolidPaw", "FontAwesomeSolidPeace", "FontAwesomeSolidPenClip", "FontAwesomeSolidPenFancy", "FontAwesomeSolidPenNib", "FontAwesomeSolidPenRuler", "FontAwesomeSolidPenToSquare", "FontAwesomeSolidPen", "FontAwesomeSolidPencil", "FontAwesomeSolidPeopleArrowsLeftRight", "FontAwesomeSolidPeopleCarryBox", "FontAwesomeSolidPeopleGroup", "FontAwesomeSolidPeopleLine", "FontAwesomeSolidPeoplePulling", "FontAwesomeSolidPeopleRobbery", "FontAwesomeSolidPeopleRoof", "FontAwesomeSolidPepperHot", "FontAwesomeSolidPercent", "FontAwesomeSolidPersonArrowDownToLine", "FontAwesomeSolidPersonArrowUpFromLine", "FontAwesomeSolidPersonBiking", "FontAwesomeSolidPersonBooth", "FontAwesomeSolidPersonBreastfeeding", "FontAwesomeSolidPersonBurst", "FontAwesomeSolidPersonCane", "FontAwesomeSolidPersonChalkboard", "FontAwesomeSolidPersonCircleCheck", "FontAwesomeSolidPersonCircleExclamation", "FontAwesomeSolidPersonCircleMinus", "FontAwesomeSolidPersonCirclePlus", "FontAwesomeSolidPersonCircleQuestion", "FontAwesomeSolidPersonCircleXmark", "FontAwesomeSolidPersonDigging", "FontAwesomeSolidPersonDotsFromLine", "FontAwesomeSolidPersonDressBurst", "FontAwesomeSolidPersonDress", "FontAwesomeSolidPersonDrowning", "FontAwesomeSolidPersonFallingBurst", "FontAwesomeSolidPersonFalling", "FontAwesomeSolidPersonHalfDress", "FontAwesomeSolidPersonHarassing", "FontAwesomeSolidPersonHiking", "FontAwesomeSolidPersonMilitaryPointing", "FontAwesomeSolidPersonMilitaryRifle", "FontAwesomeSolidPersonMilitaryToPerson", "FontAwesomeSolidPersonPraying", "FontAwesomeSolidPersonPregnant", "FontAwesomeSolidPersonRays", "FontAwesomeSolidPersonRifle", "FontAwesomeSolidPersonRunning", "FontAwesomeSolidPersonShelter", "FontAwesomeSolidPersonSkating", "FontAwesomeSolidPersonSkiingNordic", "FontAwesomeSolidPersonSkiing", "FontAwesomeSolidPersonSnowboarding", "FontAwesomeSolidPersonSwimming", "FontAwesomeSolidPersonThroughWindow", "FontAwesomeSolidPersonWalkingArrowLoopLeft", "FontAwesomeSolidPersonWalkingArrowRight", "FontAwesomeSolidPersonWalkingDashedLineArrowRight", "FontAwesomeSolidPersonWalkingLuggage", "FontAwesomeSolidPersonWalkingWithCane", "FontAwesomeSolidPersonWalking", "FontAwesomeSolidPerson", "FontAwesomeSolidPesetaSign", "FontAwesomeSolidPesoSign", "FontAwesomeSolidPhoneFlip", "FontAwesomeSolidPhoneSlash", "FontAwesomeSolidPhoneVolume", "FontAwesomeSolidPhone", "FontAwesomeSolidPhotoFilm", "FontAwesomeSolidPiggyBank", "FontAwesomeSolidPills", "FontAwesomeSolidPizzaSlice", "FontAwesomeSolidPlaceOfWorship", "FontAwesomeSolidPlaneArrival", "FontAwesomeSolidPlaneCircleCheck", "FontAwesomeSolidPlaneCircleExclamation", "FontAwesomeSolidPlaneCircleXmark", "FontAwesomeSolidPlaneDeparture", "FontAwesomeSolidPlaneLock", "FontAwesomeSolidPlaneSlash", "FontAwesomeSolidPlaneUp", "FontAwesomeSolidPlane", "FontAwesomeSolidPlantWilt", "FontAwesomeSolidPlateWheat", "FontAwesomeSolidPlay", "FontAwesomeSolidPlugCircleBolt", "FontAwesomeSolidPlugCircleCheck", "FontAwesomeSolidPlugCircleExclamation", "FontAwesomeSolidPlugCircleMinus", "FontAwesomeSolidPlugCirclePlus", "FontAwesomeSolidPlugCircleXmark", "FontAwesomeSolidPlug", "FontAwesomeSolidPlusMinus", "FontAwesomeSolidPlus", "FontAwesomeSolidPodcast", "FontAwesomeSolidPooStorm", "FontAwesomeSolidPoo", "FontAwesomeSolidPoop", "FontAwesomeSolidPowerOff", "FontAwesomeSolidPrescriptionBottleMedical", "FontAwesomeSolidPrescriptionBottle", "FontAwesomeSolidPrescription", "FontAwesomeSolidPrint", "FontAwesomeSolidPumpMedical", "FontAwesomeSolidPumpSoap", "FontAwesomeSolidPuzzlePiece", "FontAwesomeSolidQ", "FontAwesomeSolidQrcode", "FontAwesomeSolidQuestion", "FontAwesomeSolidQuoteLeft", "FontAwesomeSolidQuoteRight", "FontAwesomeSolidR", "FontAwesomeSolidRadiation", "FontAwesomeSolidRadio", "FontAwesomeSolidRainbow", "FontAwesomeSolidRankingStar", "FontAwesomeSolidReceipt", "FontAwesomeSolidRecordVinyl", "FontAwesomeSolidRectangleAd", "FontAwesomeSolidRectangleList", "FontAwesomeSolidRectangleXmark", "FontAwesomeSolidRecycle", "FontAwesomeSolidRegistered", "FontAwesomeSolidRepeat", "FontAwesomeSolidReplyAll", "FontAwesomeSolidReply", "FontAwesomeSolidRepublican", "FontAwesomeSolidRestroom", "FontAwesomeSolidRetweet", "FontAwesomeSolidRibbon", "FontAwesomeSolidRightFromBracket", "FontAwesomeSolidRightLeft", "FontAwesomeSolidRightLong", "FontAwesomeSolidRightToBracket", "FontAwesomeSolidRing", "FontAwesomeSolidRoadBarrier", "FontAwesomeSolidRoadBridge", "FontAwesomeSolidRoadCircleCheck", "FontAwesomeSolidRoadCircleExclamation", "FontAwesomeSolidRoadCircleXmark", "FontAwesomeSolidRoadLock", "FontAwesomeSolidRoadSpikes", "FontAwesomeSolidRoad", "FontAwesomeSolidRobot", "FontAwesomeSolidRocket", "FontAwesomeSolidRotateLeft", "FontAwesomeSolidRotateRight", "FontAwesomeSolidRotate", "FontAwesomeSolidRoute", "FontAwesomeSolidRss", "FontAwesomeSolidRubleSign", "FontAwesomeSolidRug", "FontAwesomeSolidRulerCombined", "FontAwesomeSolidRulerHorizontal", "FontAwesomeSolidRulerVertical", "FontAwesomeSolidRuler", "FontAwesomeSolidRupeeSign", "FontAwesomeSolidRupiahSign", "FontAwesomeSolidS", "FontAwesomeSolidSackDollar", "FontAwesomeSolidSackXmark", "FontAwesomeSolidSailboat", "FontAwesomeSolidSatelliteDish", "FontAwesomeSolidSatellite", "FontAwesomeSolidScaleBalanced", "FontAwesomeSolidScaleUnbalancedFlip", "FontAwesomeSolidScaleUnbalanced", "FontAwesomeSolidSchoolCircleCheck", "FontAwesomeSolidSchoolCircleExclamation", "FontAwesomeSolidSchoolCircleXmark", "FontAwesomeSolidSchoolFlag", "FontAwesomeSolidSchoolLock", "FontAwesomeSolidSchool", "FontAwesomeSolidScissors", "FontAwesomeSolidScrewdriverWrench", "FontAwesomeSolidScrewdriver", "FontAwesomeSolidScrollTorah", "FontAwesomeSolidScroll", "FontAwesomeSolidSdCard", "FontAwesomeSolidSection", "FontAwesomeSolidSeedling", "FontAwesomeSolidServer", "FontAwesomeSolidShapes", "FontAwesomeSolidShareFromSquare", "FontAwesomeSolidShareNodes", "FontAwesomeSolidShare", "FontAwesomeSolidSheetPlastic", "FontAwesomeSolidShekelSign", "FontAwesomeSolidShieldBlank", "FontAwesomeSolidShieldCat", "FontAwesomeSolidShieldDog", "FontAwesomeSolidShieldHalved", "FontAwesomeSolidShieldHeart", "FontAwesomeSolidShieldVirus", "FontAwesomeSolidShield", "FontAwesomeSolidShip", "FontAwesomeSolidShirt", "FontAwesomeSolidShoePrints", "FontAwesomeSolidShopLock", "FontAwesomeSolidShopSlash", "FontAwesomeSolidShop", "FontAwesomeSolidShower", "FontAwesomeSolidShrimp", "FontAwesomeSolidShuffle", "FontAwesomeSolidShuttleSpace", "FontAwesomeSolidSignHanging", "FontAwesomeSolidSignal", "FontAwesomeSolidSignature", "FontAwesomeSolidSignsPost", "FontAwesomeSolidSimCard", "FontAwesomeSolidSink", "FontAwesomeSolidSitemap", "FontAwesomeSolidSkullCrossbones", "FontAwesomeSolidSkull", "FontAwesomeSolidSlash", "FontAwesomeSolidSleigh", "FontAwesomeSolidSliders", "FontAwesomeSolidSmog", "FontAwesomeSolidSmoking", "FontAwesomeSolidSnowflake", "FontAwesomeSolidSnowman", "FontAwesomeSolidSnowplow", "FontAwesomeSolidSoap", "FontAwesomeSolidSocks", "FontAwesomeSolidSolarPanel", "FontAwesomeSolidSortDown", "FontAwesomeSolidSortUp", "FontAwesomeSolidSort", "FontAwesomeSolidSpa", "FontAwesomeSolidSpaghettiMonsterFlying", "FontAwesomeSolidSpellCheck", "FontAwesomeSolidSpider", "FontAwesomeSolidSpinner", "FontAwesomeSolidSplotch", "FontAwesomeSolidSpoon", "FontAwesomeSolidSprayCanSparkles", "FontAwesomeSolidSprayCan", "FontAwesomeSolidSquareArrowUpRight", "FontAwesomeSolidSquareCaretDown", "FontAwesomeSolidSquareCaretLeft", "FontAwesomeSolidSquareCaretRight", "FontAwesomeSolidSquareCaretUp", "FontAwesomeSolidSquareCheck", "FontAwesomeSolidSquareEnvelope", "FontAwesomeSolidSquareFull", "FontAwesomeSolidSquareH", "FontAwesomeSolidSquareMinus", "FontAwesomeSolidSquareNfi", "FontAwesomeSolidSquareParking", "FontAwesomeSolidSquarePen", "FontAwesomeSolidSquarePersonConfined", "FontAwesomeSolidSquarePhoneFlip", "FontAwesomeSolidSquarePhone", "FontAwesomeSolidSquarePlus", "FontAwesomeSolidSquarePollHorizontal", "FontAwesomeSolidSquarePollVertical", "FontAwesomeSolidSquareRootVariable", "FontAwesomeSolidSquareRss", "FontAwesomeSolidSquareShareNodes", "FontAwesomeSolidSquareUpRight", "FontAwesomeSolidSquareVirus", "FontAwesomeSolidSquareXmark", "FontAwesomeSolidSquare", "FontAwesomeSolidStaffAesculapius", "FontAwesomeSolidStairs", "FontAwesomeSolidStamp", "FontAwesomeSolidStarAndCrescent", "FontAwesomeSolidStarHalfStroke", "FontAwesomeSolidStarHalf", "FontAwesomeSolidStarOfDavid", "FontAwesomeSolidStarOfLife", "FontAwesomeSolidStar", "FontAwesomeSolidSterlingSign", "FontAwesomeSolidStethoscope", "FontAwesomeSolidStop", "FontAwesomeSolidStopwatch20", "FontAwesomeSolidStopwatch", "FontAwesomeSolidStoreSlash", "FontAwesomeSolidStore", "FontAwesomeSolidStreetView", "FontAwesomeSolidStrikethrough", "FontAwesomeSolidStroopwafel", "FontAwesomeSolidSubscript", "FontAwesomeSolidSuitcaseMedical", "FontAwesomeSolidSuitcaseRolling", "FontAwesomeSolidSuitcase", "FontAwesomeSolidSunPlantWilt", "FontAwesomeSolidSun", "FontAwesomeSolidSuperscript", "FontAwesomeSolidSwatchbook", "FontAwesomeSolidSynagogue", "FontAwesomeSolidSyringe", "FontAwesomeSolidT", "FontAwesomeSolidTableCellsLarge", "FontAwesomeSolidTableCells", "FontAwesomeSolidTableColumns", "FontAwesomeSolidTableList", "FontAwesomeSolidTableTennisPaddleBall", "FontAwesomeSolidTable", "FontAwesomeSolidTabletButton", "FontAwesomeSolidTabletScreenButton", "FontAwesomeSolidTablet", "FontAwesomeSolidTablets", "FontAwesomeSolidTachographDigital", "FontAwesomeSolidTag", "FontAwesomeSolidTags", "FontAwesomeSolidTape", "FontAwesomeSolidTarpDroplet", "FontAwesomeSolidTarp", "FontAwesomeSolidTaxi", "FontAwesomeSolidTeethOpen", "FontAwesomeSolidTeeth", "FontAwesomeSolidTemperatureArrowDown", "FontAwesomeSolidTemperatureArrowUp", "FontAwesomeSolidTemperatureEmpty", "FontAwesomeSolidTemperatureFull", "FontAwesomeSolidTemperatureHalf", "FontAwesomeSolidTemperatureHigh", "FontAwesomeSolidTemperatureLow", "FontAwesomeSolidTemperatureQuarter", "FontAwesomeSolidTemperatureThreeQuarters", "FontAwesomeSolidTengeSign", "FontAwesomeSolidTentArrowDownToLine", "FontAwesomeSolidTentArrowLeftRight", "FontAwesomeSolidTentArrowTurnLeft", "FontAwesomeSolidTentArrowsDown", "FontAwesomeSolidTent", "FontAwesomeSolidTents", "FontAwesomeSolidTerminal", "FontAwesomeSolidTextHeight", "FontAwesomeSolidTextSlash", "FontAwesomeSolidTextWidth", "FontAwesomeSolidThermometer", "FontAwesomeSolidThumbsDown", "FontAwesomeSolidThumbsUp", "FontAwesomeSolidThumbtack", "FontAwesomeSolidTicketSimple", "FontAwesomeSolidTicket", "FontAwesomeSolidTimeline", "FontAwesomeSolidToggleOff", "FontAwesomeSolidToggleOn", "FontAwesomeSolidToiletPaperSlash", "FontAwesomeSolidToiletPaper", "FontAwesomeSolidToiletPortable", "FontAwesomeSolidToilet", "FontAwesomeSolidToiletsPortable", "FontAwesomeSolidToolbox", "FontAwesomeSolidTooth", "FontAwesomeSolidToriiGate", "FontAwesomeSolidTornado", "FontAwesomeSolidTowerBroadcast", "FontAwesomeSolidTowerCell", "FontAwesomeSolidTowerObservation", "FontAwesomeSolidTractor", "FontAwesomeSolidTrademark", "FontAwesomeSolidTrafficLight", "FontAwesomeSolidTrailer", "FontAwesomeSolidTrainSubway", "FontAwesomeSolidTrainTram", "FontAwesomeSolidTrain", "FontAwesomeSolidTransgender", "FontAwesomeSolidTrashArrowUp", "FontAwesomeSolidTrashCanArrowUp", "FontAwesomeSolidTrashCan", "FontAwesomeSolidTrash", "FontAwesomeSolidTreeCity", "FontAwesomeSolidTree", "FontAwesomeSolidTriangleExclamation", "FontAwesomeSolidTrophy", "FontAwesomeSolidTrowelBricks", "FontAwesomeSolidTrowel", "FontAwesomeSolidTruckArrowRight", "FontAwesomeSolidTruckDroplet", "FontAwesomeSolidTruckFast", "FontAwesomeSolidTruckFieldUn", "FontAwesomeSolidTruckField", "FontAwesomeSolidTruckFront", "FontAwesomeSolidTruckMedical", "FontAwesomeSolidTruckMonster", "FontAwesomeSolidTruckMoving", "FontAwesomeSolidTruckPickup", "FontAwesomeSolidTruckPlane", "FontAwesomeSolidTruckRampBox", "FontAwesomeSolidTruck", "FontAwesomeSolidTty", "FontAwesomeSolidTurkishLiraSign", "FontAwesomeSolidTurnDown", "FontAwesomeSolidTurnUp", "FontAwesomeSolidTv", "FontAwesomeSolidU", "FontAwesomeSolidUmbrellaBeach", "FontAwesomeSolidUmbrella", "FontAwesomeSolidUnderline", "FontAwesomeSolidUniversalAccess", "FontAwesomeSolidUnlockKeyhole", "FontAwesomeSolidUnlock", "FontAwesomeSolidUpDownLeftRight", "FontAwesomeSolidUpDown", "FontAwesomeSolidUpLong", "FontAwesomeSolidUpRightAndDownLeftFromCenter", "FontAwesomeSolidUpRightFromSquare", "FontAwesomeSolidUpload", "FontAwesomeSolidUserAstronaut", "FontAwesomeSolidUserCheck", "FontAwesomeSolidUserClock", "FontAwesomeSolidUserDoctor", "FontAwesomeSolidUserGear", "FontAwesomeSolidUserGraduate", "FontAwesomeSolidUserGroup", "FontAwesomeSolidUserInjured", "FontAwesomeSolidUserLargeSlash", "FontAwesomeSolidUserLarge", "FontAwesomeSolidUserLock", "FontAwesomeSolidUserMinus", "FontAwesomeSolidUserNinja", "FontAwesomeSolidUserNurse", "FontAwesomeSolidUserPen", "FontAwesomeSolidUserPlus", "FontAwesomeSolidUserSecret", "FontAwesomeSolidUserShield", "FontAwesomeSolidUserSlash", "FontAwesomeSolidUserTag", "FontAwesomeSolidUserTie", "FontAwesomeSolidUserXmark", "FontAwesomeSolidUser", "FontAwesomeSolidUsersBetweenLines", "FontAwesomeSolidUsersGear", "FontAwesomeSolidUsersLine", "FontAwesomeSolidUsersRays", "FontAwesomeSolidUsersRectangle", "FontAwesomeSolidUsersSlash", "FontAwesomeSolidUsersViewfinder", "FontAwesomeSolidUsers", "FontAwesomeSolidUtensils", "FontAwesomeSolidV", "FontAwesomeSolidVanShuttle", "FontAwesomeSolidVault", "FontAwesomeSolidVectorSquare", "FontAwesomeSolidVenusDouble", "FontAwesomeSolidVenusMars", "FontAwesomeSolidVenus", "FontAwesomeSolidVestPatches", "FontAwesomeSolidVest", "FontAwesomeSolidVialCircleCheck", "FontAwesomeSolidVialVirus", "FontAwesomeSolidVial", "FontAwesomeSolidVials", "FontAwesomeSolidVideoSlash", "FontAwesomeSolidVideo", "FontAwesomeSolidVihara", "FontAwesomeSolidVirusCovidSlash", "FontAwesomeSolidVirusCovid", "FontAwesomeSolidVirusSlash", "FontAwesomeSolidVirus", "FontAwesomeSolidViruses", "FontAwesomeSolidVoicemail", "FontAwesomeSolidVolcano", "FontAwesomeSolidVolleyball", "FontAwesomeSolidVolumeHigh", "FontAwesomeSolidVolumeLow", "FontAwesomeSolidVolumeOff", "FontAwesomeSolidVolumeXmark", "FontAwesomeSolidVrCardboard", "FontAwesomeSolidW", "FontAwesomeSolidWalkieTalkie", "FontAwesomeSolidWallet", "FontAwesomeSolidWandMagicSparkles", "FontAwesomeSolidWandMagic", "FontAwesomeSolidWandSparkles", "FontAwesomeSolidWarehouse", "FontAwesomeSolidWaterLadder", "FontAwesomeSolidWater", "FontAwesomeSolidWaveSquare", "FontAwesomeSolidWeightHanging", "FontAwesomeSolidWeightScale", "FontAwesomeSolidWheatAwnCircleExclamation", "FontAwesomeSolidWheatAwn", "FontAwesomeSolidWheelchairMove", "FontAwesomeSolidWheelchair", "FontAwesomeSolidWhiskeyGlass", "FontAwesomeSolidWifi", "FontAwesomeSolidWind", "FontAwesomeSolidWindowMaximize", "FontAwesomeSolidWindowMinimize", "FontAwesomeSolidWindowRestore", "FontAwesomeSolidWineBottle", "FontAwesomeSolidWineGlassEmpty", "FontAwesomeSolidWineGlass", "FontAwesomeSolidWonSign", "FontAwesomeSolidWorm", "FontAwesomeSolidWrench", "FontAwesomeSolidXRay", "FontAwesomeSolidX", "FontAwesomeSolidXmark", "FontAwesomeSolidXmarksLines", "FontAwesomeSolidY", "FontAwesomeSolidYenSign", "FontAwesomeSolidYinYang", "FontAwesomeSolidZ"]
generator = ["quote", "convert_case", "proc-macro2", "regex"]
iterate_icon_id = ["enum-iterator"]
lipis_flag_icons_1_x_1 = ["LipisFlagIcons1X1Ac", "LipisFlagIcons1X1Ad", "LipisFlagIcons1X1Ae", "LipisFlagIcons1X1Af", "LipisFlagIcons1X1Ag", "LipisFlagIcons1X1Ai", "LipisFlagIcons1X1Al", "LipisFlagIcons1X1Am", "LipisFlagIcons1X1Ao", "LipisFlagIcons1X1Aq", "LipisFlagIcons1X1Ar", "LipisFlagIcons1X1As", "LipisFlagIcons1X1At", "LipisFlagIcons1X1Au", "LipisFlagIcons1X1Aw", "LipisFlagIcons1X1Ax", "LipisFlagIcons1X1Az", "LipisFlagIcons1X1Ba", "LipisFlagIcons1X1Bb", "LipisFlagIcons1X1Bd", "LipisFlagIcons1X1Be", "LipisFlagIcons1X1Bf", "LipisFlagIcons1X1Bg", "LipisFlagIcons1X1Bh", "LipisFlagIcons1X1Bi", "LipisFlagIcons1X1Bj", "LipisFlagIcons1X1Bl", "LipisFlagIcons1X1Bm", "LipisFlagIcons1X1Bn", "LipisFlagIcons1X1Bo", "LipisFlagIcons1X1Bq", "LipisFlagIcons1X1Br", "LipisFlagIcons1X1Bs", "LipisFlagIcons1X1Bt", "LipisFlagIcons1X1Bv", "LipisFlagIcons1X1Bw", "LipisFlagIcons1X1By", "LipisFlagIcons1X1Bz", "LipisFlagIcons1X1Ca", "LipisFlagIcons1X1Cc", "LipisFlagIcons1X1Cd", "LipisFlagIcons1X1Cefta", "LipisFlagIcons1X1Cf", "LipisFlagIcons1X1Cg", "LipisFlagIcons1X1Ch", "LipisFlagIcons1X1Ci", "LipisFlagIcons1X1Ck", "LipisFlagIcons1X1Cl", "LipisFlagIcons1X1Cm", "LipisFlagIcons1X1Cn", "LipisFlagIcons1X1Co", "LipisFlagIcons1X1Cp", "LipisFlagIcons1X1Cr", "LipisFlagIcons1X1Cu", "LipisFlagIcons1X1Cv", "LipisFlagIcons1X1Cw", "LipisFlagIcons1X1Cx", "LipisFlagIcons1X1Cy", "LipisFlagIcons1X1Cz", "LipisFlagIcons1X1De", "LipisFlagIcons1X1Dg", "LipisFlagIcons1X1Dj", "LipisFlagIcons1X1Dk", "LipisFlagIcons1X1Dm", "LipisFlagIcons1X1Do", "LipisFlagIcons1X1Dz", "LipisFlagIcons1X1Ea", "LipisFlagIcons1X1Ec", "LipisFlagIcons1X1Ee", "LipisFlagIcons1X1Eg", "LipisFlagIcons1X1Eh", "LipisFlagIcons1X1Er", "LipisFlagIcons1X1EsCt", "LipisFlagIcons1X1EsGa", "LipisFlagIcons1X1Es", "LipisFlagIcons1X1Et", "LipisFlagIcons1X1Eu", "LipisFlagIcons1X1Fi", "LipisFlagIcons1X1Fj", "LipisFlagIcons1X1Fk", "LipisFlagIcons1X1Fm", "LipisFlagIcons1X1Fo", "LipisFlagIcons1X1Fr", "LipisFlagIcons1X1Ga", "LipisFlagIcons1X1GbEng", "LipisFlagIcons1X1GbNir", "LipisFlagIcons1X1GbSct", "LipisFlagIcons1X1GbWls", "LipisFlagIcons1X1Gb", "LipisFlagIcons1X1Gd", "LipisFlagIcons1X1Ge", "LipisFlagIcons1X1Gf", "LipisFlagIcons1X1Gg", "LipisFlagIcons1X1Gh", "LipisFlagIcons1X1Gi", "LipisFlagIcons1X1Gl", "LipisFlagIcons1X1Gm", "LipisFlagIcons1X1Gn", "LipisFlagIcons1X1Gp", "LipisFlagIcons1X1Gq", "LipisFlagIcons1X1Gr", "LipisFlagIcons1X1Gs", "LipisFlagIcons1X1Gt", "LipisFlagIcons1X1Gu", "LipisFlagIcons1X1Gw", "LipisFlagIcons1X1Gy", "LipisFlagIcons1X1Hk", "LipisFlagIcons1X1Hm", "LipisFlagIcons1X1Hn", "LipisFlagIcons1X1Hr", "LipisFlagIcons1X1Ht", "LipisFlagIcons1X1Hu", "LipisFlagIcons1X1Ic", "LipisFlagIcons1X1Id", "LipisFlagIcons1X1Ie", "LipisFlagIcons1X1Il", "LipisFlagIcons1X1Im", "LipisFlagIcons1X1In", "LipisFlagIcons1X1Io", "LipisFlagIcons1X1Iq", "LipisFlagIcons1X1Ir", "LipisFlagIcons1X1Is", "LipisFlagIcons1X1It", "LipisFlagIcons1X1Je", "LipisFlagIcons1X1Jm", "LipisFlagIcons1X1Jo", "LipisFlagIcons1X1Jp", "LipisFlagIcons1X1Ke", "LipisFlagIcons1X1Kg", "LipisFlagIcons1X1Kh", "LipisFlagIcons1X1Ki", "LipisFlagIcons1X1Km", "LipisFlagIcons1X1Kn", "LipisFlagIcons1X1Kp", "LipisFlagIcons1X1Kr", "LipisFlagIcons1X1Kw", "LipisFlagIcons1X1Ky", "LipisFlagIcons1X1Kz", "LipisFlagIcons1X1La", "LipisFlagIcons1X1Lb", "LipisFlagIcons1X1Lc", "LipisFlagIcons1X1Li", "LipisFlagIcons1X1Lk", "LipisFlagIcons1X1Lr", "LipisFlagIcons1X1Ls", "LipisFlagIcons1X1Lt", "LipisFlagIcons1X1Lu", "LipisFlagIcons1X1Lv", "LipisFlagIcons1X1Ly", "LipisFlagIcons1X1Ma", "LipisFlagIcons1X1Mc", "LipisFlagIcons1X1Md", "LipisFlagIcons1X1Me", "LipisFlagIcons1X1Mf", "LipisFlagIcons1X1Mg", "LipisFlagIcons1X1Mh", "LipisFlagIcons1X1Mk", "LipisFlagIcons1X1Ml", "LipisFlagIcons1X1Mm", "LipisFlagIcons1X1Mn", "LipisFlagIcons1X1Mo", "LipisFlagIcons1X1Mp", "LipisFlagIcons1X1Mq", "LipisFlagIcons1X1Mr", "LipisFlagIcons1X1Ms", "LipisFlagIcons1X1Mt", "LipisFlagIcons1X1Mu", "LipisFlagIcons1X1Mv", "LipisFlagIcons1X1Mw", "LipisFlagIcons1X1Mx", "LipisFlagIcons1X1My", "LipisFlagIcons1X1Mz", "LipisFlagIcons1X1Na", "LipisFlagIcons1X1Nc", "LipisFlagIcons1X1Ne", "LipisFlagIcons1X1Nf", "LipisFlagIcons1X1Ng", "LipisFlagIcons1X1Ni", "LipisFlagIcons1X1Nl", "LipisFlagIcons1X1No", "LipisFlagIcons1X1Np", "LipisFlagIcons1X1Nr", "LipisFlagIcons1X1Nu", "LipisFlagIcons1X1Nz", "LipisFlagIcons1X1Om", "LipisFlagIcons1X1Pa", "LipisFlagIcons1X1Pe", "LipisFlagIcons1X1Pf", "LipisFlagIcons1X1Pg", "LipisFlagIcons1X1Ph", "LipisFlagIcons1X1Pk", "LipisFlagIcons1X1Pl", "LipisFlagIcons1X1Pm", "LipisFlagIcons1X1Pn", "LipisFlagIcons1X1Pr", "LipisFlagIcons1X1Ps", "LipisFlagIcons1X1Pt", "LipisFlagIcons1X1Pw", "LipisFlagIcons1X1Py", "LipisFlagIcons1X1Qa", "LipisFlagIcons1X1Re", "LipisFlagIcons1X1Ro", "LipisFlagIcons1X1Rs", "LipisFlagIcons1X1Ru", "LipisFlagIcons1X1Rw", "LipisFlagIcons1X1Sa", "LipisFlagIcons1X1Sb", "LipisFlagIcons1X1Sc", "LipisFlagIcons1X1Sd", "LipisFlagIcons1X1Se", "LipisFlagIcons1X1Sg", "LipisFlagIcons1X1Sh", "LipisFlagIcons1X1Si", "LipisFlagIcons1X1Sj", "LipisFlagIcons1X1Sk", "LipisFlagIcons1X1Sl", "LipisFlagIcons1X1Sm", "LipisFlagIcons1X1Sn", "LipisFlagIcons1X1So", "LipisFlagIcons1X1Sr", "LipisFlagIcons1X1Ss", "LipisFlagIcons1X1St", "LipisFlagIcons1X1Sv", "LipisFlagIcons1X1Sx", "LipisFlagIcons1X1Sy", "LipisFlagIcons1X1Sz", "LipisFlagIcons1X1Ta", "LipisFlagIcons1X1Tc", "LipisFlagIcons1X1Td", "LipisFlagIcons1X1Tf", "LipisFlagIcons1X1Tg", "LipisFlagIcons1X1Th", "LipisFlagIcons1X1Tj", "LipisFlagIcons1X1Tk", "LipisFlagIcons1X1Tl", "LipisFlagIcons1X1Tm", "LipisFlagIcons1X1Tn", "LipisFlagIcons1X1To", "LipisFlagIcons1X1Tr", "LipisFlagIcons1X1Tt", "LipisFlagIcons1X1Tv", "LipisFlagIcons1X1Tw", "LipisFlagIcons1X1Tz", "LipisFlagIcons1X1Ua", "LipisFlagIcons1X1Ug", "LipisFlagIcons1X1Um", "LipisFlagIcons1X1Un", "LipisFlagIcons1X1Us", "LipisFlagIcons1X1Uy", "LipisFlagIcons1X1Uz", "LipisFlagIcons1X1Va", "LipisFlagIcons1X1Vc", "LipisFlagIcons1X1Ve", "LipisFlagIcons1X1Vg", "LipisFlagIcons1X1Vi", "LipisFlagIcons1X1Vn", "LipisFlagIcons1X1Vu", "LipisFlagIcons1X1Wf", "LipisFlagIcons1X1Ws", "LipisFlagIcons1X1Xk", "LipisFlagIcons1X1Xx", "LipisFlagIcons1X1Ye", "LipisFlagIcons1X1Yt", "LipisFlagIcons1X1Za", "LipisFlagIcons1X1Zm", "LipisFlagIcons1X1Zw"]
lipis_flag_icons_4_x_3 = ["LipisFlagIcons4X3Ac", "LipisFlagIcons4X3Ad", "LipisFlagIcons4X3Ae", "LipisFlagIcons4X3Af", "LipisFlagIcons4X3Ag", "LipisFlagIcons4X3Ai", "LipisFlagIcons4X3Al", "LipisFlagIcons4X3Am", "LipisFlagIcons4X3Ao", "LipisFlagIcons4X3Aq", "LipisFlagIcons4X3Ar", "LipisFlagIcons4X3As", "LipisFlagIcons4X3At", "LipisFlagIcons4X3Au", "LipisFlagIcons4X3Aw", "LipisFlagIcons4X3Ax", "LipisFlagIcons4X3Az", "LipisFlagIcons4X3Ba", "LipisFlagIcons4X3Bb", "LipisFlagIcons4X3Bd", "LipisFlagIcons4X3Be", "LipisFlagIcons4X3Bf", "LipisFlagIcons4X3Bg", "LipisFlagIcons4X3Bh", "LipisFlagIcons4X3Bi", "LipisFlagIcons4X3Bj", "LipisFlagIcons4X3Bl", "LipisFlagIcons4X3Bm", "LipisFlagIcons4X3Bn", "LipisFlagIcons4X3Bo", "LipisFlagIcons4X3Bq", "LipisFlagIcons4X3Br", "LipisFlagIcons4X3Bs", "LipisFlagIcons4X3Bt", "LipisFlagIcons4X3Bv", "LipisFlagIcons4X3Bw", "LipisFlagIcons4X3By", "LipisFlagIcons4X3Bz", "LipisFlagIcons4X3Ca", "LipisFlagIcons4X3Cc", "LipisFlagIcons4X3Cd", "LipisFlagIcons4X3Cefta", "LipisFlagIcons4X3Cf", "LipisFlagIcons4X3Cg", "LipisFlagIcons4X3Ch", "LipisFlagIcons4X3Ci", "LipisFlagIcons4X3Ck", "LipisFlagIcons4X3Cl", "LipisFlagIcons4X3Cm", "LipisFlagIcons4X3Cn", "LipisFlagIcons4X3Co", "LipisFlagIcons4X3Cp", "LipisFlagIcons4X3Cr", "LipisFlagIcons4X3Cu", "LipisFlagIcons4X3Cv", "LipisFlagIcons4X3Cw", "LipisFlagIcons4X3Cx", "LipisFlagIcons4X3Cy", "LipisFlagIcons4X3Cz", "LipisFlagIcons4X3De", "LipisFlagIcons4X3Dg", "LipisFlagIcons4X3Dj", "LipisFlagIcons4X3Dk", "LipisFlagIcons4X3Dm", "LipisFlagIcons4X3Do", "LipisFlagIcons4X3Dz", "LipisFlagIcons4X3Ea", "LipisFlagIcons4X3Ec", "LipisFlagIcons4X3Ee", "LipisFlagIcons4X3Eg", "LipisFlagIcons4X3Eh", "LipisFlagIcons4X3Er", "LipisFlagIcons4X3EsCt", "LipisFlagIcons4X3EsGa", "LipisFlagIcons4X3Es", "LipisFlagIcons4X3Et", "LipisFlagIcons4X3Eu", "LipisFlagIcons4X3Fi", "LipisFlagIcons4X3Fj", "LipisFlagIcons4X3Fk", "LipisFlagIcons4X3Fm", "LipisFlagIcons4X3Fo", "LipisFlagIcons4X3Fr", "LipisFlagIcons4X3Ga", "LipisFlagIcons4X3GbEng", "LipisFlagIcons4X3GbNir", "LipisFlagIcons4X3GbSct", "LipisFlagIcons4X3GbWls", "LipisFlagIcons4X3Gb", "LipisFlagIcons4X3Gd", "LipisFlagIcons4X3Ge", "LipisFlagIcons4X3Gf", "LipisFlagIcons4X3Gg", "LipisFlagIcons4X3Gh", "LipisFlagIcons4X3Gi", "LipisFlagIcons4X3Gl", "LipisFlagIcons4X3Gm", "LipisFlagIcons4X3Gn", "LipisFlagIcons4X3Gp", "LipisFlagIcons4X3Gq", "LipisFlagIcons4X3Gr", "LipisFlagIcons4X3Gs", "LipisFlagIcons4X3Gt", "LipisFlagIcons4X3Gu", "LipisFlagIcons4X3Gw", "LipisFlagIcons4X3Gy", "LipisFlagIcons4X3Hk", "LipisFlagIcons4X3Hm", "LipisFlagIcons4X3Hn", "LipisFlagIcons4X3Hr", "LipisFlagIcons4X3Ht", "LipisFlagIcons4X3Hu", "LipisFlagIcons4X3Ic", "LipisFlagIcons4X3Id", "LipisFlagIcons4X3Ie", "LipisFlagIcons4X3Il", "LipisFlagIcons4X3Im", "LipisFlagIcons4X3In", "LipisFlagIcons4X3Io", "LipisFlagIcons4X3Iq", "LipisFlagIcons4X3Ir", "LipisFlagIcons4X3Is", "LipisFlagIcons4X3It", "LipisFlagIcons4X3Je", "LipisFlagIcons4X3Jm", "LipisFlagIcons4X3Jo", "LipisFlagIcons4X3Jp", "LipisFlagIcons4X3Ke", "LipisFlagIcons4X3Kg", "LipisFlagIcons4X3Kh", "LipisFlagIcons4X3Ki", "LipisFlagIcons4X3Km", "LipisFlagIcons4X3Kn", "LipisFlagIcons4X3Kp", "LipisFlagIcons4X3Kr", "LipisFlagIcons4X3Kw", "LipisFlagIcons4X3Ky", "LipisFlagIcons4X3Kz", "LipisFlagIcons4X3La", "LipisFlagIcons4X3Lb", "LipisFlagIcons4X3Lc", "LipisFlagIcons4X3Li", "LipisFlagIcons4X3Lk", "LipisFlagIcons4X3Lr", "LipisFlagIcons4X3Ls", "LipisFlagIcons4X3Lt", "LipisFlagIcons4X3Lu", "LipisFlagIcons4X3Lv", "LipisFlagIcons4X3Ly", "LipisFlagIcons4X3Ma", "LipisFlagIcons4X3Mc", "LipisFlagIcons4X3Md", "LipisFlagIcons4X3Me", "LipisFlagIcons4X3Mf", "LipisFlagIcons4X3Mg", "LipisFlagIcons4X3Mh", "LipisFlagIcons4X3Mk", "LipisFlagIcons4X3Ml", "LipisFlagIcons4X3Mm", "LipisFlagIcons4X3Mn", "LipisFlagIcons4X3Mo", "LipisFlagIcons4X3Mp", "LipisFlagIcons4X3Mq", "LipisFlagIcons4X3Mr", "LipisFlagIcons4X3Ms", "LipisFlagIcons4X3Mt", "LipisFlagIcons4X3Mu", "LipisFlagIcons4X3Mv", "LipisFlagIcons4X3Mw", "LipisFlagIcons4X3Mx", "LipisFlagIcons4X3My", "LipisFlagIcons4X3Mz", "LipisFlagIcons4X3Na", "LipisFlagIcons4X3Nc", "LipisFlagIcons4X3Ne", "LipisFlagIcons4X3Nf", "LipisFlagIcons4X3Ng", "LipisFlagIcons4X3Ni", "LipisFlagIcons4X3Nl", "LipisFlagIcons4X3No", "LipisFlagIcons4X3Np", "LipisFlagIcons4X3Nr", "LipisFlagIcons4X3Nu", "LipisFlagIcons4X3Nz", "LipisFlagIcons4X3Om", "LipisFlagIcons4X3Pa", "LipisFlagIcons4X3Pe", "LipisFlagIcons4X3Pf", "LipisFlagIcons4X3Pg", "LipisFlagIcons4X3Ph", "LipisFlagIcons4X3Pk", "LipisFlagIcons4X3Pl", "LipisFlagIcons4X3Pm", "LipisFlagIcons4X3Pn", "LipisFlagIcons4X3Pr", "LipisFlagIcons4X3Ps", "LipisFlagIcons4X3Pt", "LipisFlagIcons4X3Pw", "LipisFlagIcons4X3Py", "LipisFlagIcons4X3Qa", "LipisFlagIcons4X3Re", "LipisFlagIcons4X3Ro", "LipisFlagIcons4X3Rs", "LipisFlagIcons4X3Ru", "LipisFlagIcons4X3Rw", "LipisFlagIcons4X3Sa", "LipisFlagIcons4X3Sb", "LipisFlagIcons4X3Sc", "LipisFlagIcons4X3Sd", "LipisFlagIcons4X3Se", "LipisFlagIcons4X3Sg", "LipisFlagIcons4X3Sh", "LipisFlagIcons4X3Si", "LipisFlagIcons4X3Sj", "LipisFlagIcons4X3Sk", "LipisFlagIcons4X3Sl", "LipisFlagIcons4X3Sm", "LipisFlagIcons4X3Sn", "LipisFlagIcons4X3So", "LipisFlagIcons4X3Sr", "LipisFlagIcons4X3Ss", "LipisFlagIcons4X3St", "LipisFlagIcons4X3Sv", "LipisFlagIcons4X3Sx", "LipisFlagIcons4X3Sy", "LipisFlagIcons4X3Sz", "LipisFlagIcons4X3Ta", "LipisFlagIcons4X3Tc", "LipisFlagIcons4X3Td", "LipisFlagIcons4X3Tf", "LipisFlagIcons4X3Tg", "LipisFlagIcons4X3Th", "LipisFlagIcons4X3Tj", "LipisFlagIcons4X3Tk", "LipisFlagIcons4X3Tl", "LipisFlagIcons4X3Tm", "LipisFlagIcons4X3Tn", "LipisFlagIcons4X3To", "LipisFlagIcons4X3Tr", "LipisFlagIcons4X3Tt", "LipisFlagIcons4X3Tv", "LipisFlagIcons4X3Tw", "LipisFlagIcons4X3Tz", "LipisFlagIcons4X3Ua", "LipisFlagIcons4X3Ug", "LipisFlagIcons4X3Um", "LipisFlagIcons4X3Un", "LipisFlagIcons4X3Us", "LipisFlagIcons4X3Uy", "LipisFlagIcons4X3Uz", "LipisFlagIcons4X3Va", "LipisFlagIcons4X3Vc", "LipisFlagIcons4X3Ve", "LipisFlagIcons4X3Vg", "LipisFlagIcons4X3Vi", "LipisFlagIcons4X3Vn", "LipisFlagIcons4X3Vu", "LipisFlagIcons4X3Wf", "LipisFlagIcons4X3Ws", "LipisFlagIcons4X3Xk", "LipisFlagIcons4X3Xx", "LipisFlagIcons4X3Ye", "LipisFlagIcons4X3Yt", "LipisFlagIcons4X3Za", "LipisFlagIcons4X3Zm", "LipisFlagIcons4X3Zw"]
octicons = ["OcticonsAccessibility16", "OcticonsAlert16", "OcticonsAlert24", "OcticonsAlertFill12", "OcticonsApps16", "OcticonsArchive16", "OcticonsArchive24", "OcticonsArrowBoth16", "OcticonsArrowBoth24", "OcticonsArrowDown16", "OcticonsArrowDown24", "OcticonsArrowDownLeft24", "OcticonsArrowDownRight24", "OcticonsArrowLeft16", "OcticonsArrowLeft24", "OcticonsArrowRight16", "OcticonsArrowRight24", "OcticonsArrowSwitch16", "OcticonsArrowSwitch24", "OcticonsArrowUp16", "OcticonsArrowUp24", "OcticonsArrowUpLeft24", "OcticonsArrowUpRight24", "OcticonsBeaker16", "OcticonsBeaker24", "OcticonsBell16", "OcticonsBell24", "OcticonsBellFill16", "OcticonsBellFill24", "OcticonsBellSlash16", "OcticonsBellSlash24", "OcticonsBlocked16", "OcticonsBlocked24", "OcticonsBold16", "OcticonsBold24", "OcticonsBook16", "OcticonsBook24", "OcticonsBookmark16", "OcticonsBookmark24", "OcticonsBookmarkFill24", "OcticonsBookmarkSlash16", "OcticonsBookmarkSlash24", "OcticonsBookmarkSlashFill24", "OcticonsBriefcase16", "OcticonsBriefcase24", "OcticonsBroadcast16", "OcticonsBroadcast24", "OcticonsBrowser16", "OcticonsBrowser24", "OcticonsBug16", "OcticonsBug24", "OcticonsCalendar16", "OcticonsCalendar24", "OcticonsCheck16", "OcticonsCheck24", "OcticonsCheckCircle16", "OcticonsCheckCircle24", "OcticonsCheckCircleFill12", "OcticonsCheckCircleFill16", "OcticonsCheckCircleFill24", "OcticonsChecklist16", "OcticonsChecklist24", "OcticonsChevronDown16", "OcticonsChevronDown24", "OcticonsChevronLeft16", "OcticonsChevronLeft24", "OcticonsChevronRight16", "OcticonsChevronRight24", "OcticonsChevronUp16", "OcticonsChevronUp24", "OcticonsCircle16", "OcticonsCircle24", "OcticonsCircleSlash16", "OcticonsCircleSlash24", "OcticonsClock16", "OcticonsClock24", "OcticonsCloud16", "OcticonsCloud24", "OcticonsCloudOffline16", "OcticonsCloudOffline24", "OcticonsCode16", "OcticonsCode24", "OcticonsCodeOfConduct16", "OcticonsCodeOfConduct24", "OcticonsCodeReview16", "OcticonsCodeReview24", "OcticonsCodeSquare16", "OcticonsCodeSquare24", "OcticonsCodescan16", "OcticonsCodescan24", "OcticonsCodescanCheckmark16", "OcticonsCodescanCheckmark24", "OcticonsCodespaces16", "OcticonsCodespaces24", "OcticonsColumns16", "OcticonsColumns24", "OcticonsComment16", "OcticonsComment24", "OcticonsCommentDiscussion16", "OcticonsCommentDiscussion24", "OcticonsCommit24", "OcticonsContainer16", "OcticonsContainer24", "OcticonsCopy16", "OcticonsCopy24", "OcticonsCpu16", "OcticonsCpu24", "OcticonsCreditCard16", "OcticonsCreditCard24", "OcticonsCrossReference16", "OcticonsCrossReference24", "OcticonsDash16", "OcticonsDash24", "OcticonsDatabase16", "OcticonsDatabase24", "OcticonsDependabot16", "OcticonsDependabot24", "OcticonsDesktopDownload16", "OcticonsDesktopDownload24", "OcticonsDeviceCamera16", "OcticonsDeviceCameraVideo16", "OcticonsDeviceCameraVideo24", "OcticonsDeviceDesktop16", "OcticonsDeviceDesktop24", "OcticonsDeviceMobile16", "OcticonsDeviceMobile24", "OcticonsDiamond16", "OcticonsDiamond24", "OcticonsDiff16", "OcticonsDiff24", "OcticonsDiffAdded16", "OcticonsDiffIgnored16", "OcticonsDiffModified16", "OcticonsDiffRemoved16", "OcticonsDiffRenamed16", "OcticonsDot16", "OcticonsDot24", "OcticonsDotFill16", "OcticonsDotFill24", "OcticonsDownload16", "OcticonsDownload24", "OcticonsDuplicate16", "OcticonsDuplicate24", "OcticonsEllipsis16", "OcticonsEye16", "OcticonsEye24", "OcticonsEyeClosed16", "OcticonsEyeClosed24", "OcticonsFeedDiscussion16", "OcticonsFeedForked16", "OcticonsFeedHeart16", "OcticonsFeedMerged16", "OcticonsFeedPerson16", "OcticonsFeedRepo16", "OcticonsFeedRocket16", "OcticonsFeedStar16", "OcticonsFeedTag16", "OcticonsFeedTrophy16", "OcticonsFile16", "OcticonsFile24", "OcticonsFileBadge16", "OcticonsFileBinary16", "OcticonsFileBinary24", "OcticonsFileCode16", "OcticonsFileCode24", "OcticonsFileDiff16", "OcticonsFileDiff24", "OcticonsFileDirectory16", "OcticonsFileDirectory24", "OcticonsFileDirectoryFill16", "OcticonsFileDirectoryFill24", "OcticonsFileDirectoryOpenFill16", "OcticonsFileMedia24", "OcticonsFileSubmodule16", "OcticonsFileSubmodule24", "OcticonsFileSymlinkFile16", "OcticonsFileSymlinkFile24", "OcticonsFileZip16", "OcticonsFileZip24", "OcticonsFilter16", "OcticonsFilter24", "OcticonsFlame16", "OcticonsFlame24", "OcticonsFold16", "OcticonsFold24", "OcticonsFoldDown16", "OcticonsFoldDown24", "OcticonsFoldUp16", "OcticonsFoldUp24", "OcticonsGear16", "OcticonsGear24", "OcticonsGift16", "OcticonsGift24", "OcticonsGitBranch16", "OcticonsGitBranch24", "OcticonsGitCommit16", "OcticonsGitCommit24", "OcticonsGitCompare16", "OcticonsGitCompare24", "OcticonsGitMerge16", "OcticonsGitMerge24", "OcticonsGitPullRequest16", "OcticonsGitPullRequest24", "OcticonsGitPullRequestClosed16", "OcticonsGitPullRequestClosed24", "OcticonsGitPullRequestDraft16", "OcticonsGitPullRequestDraft24", "OcticonsGlobe16", "OcticonsGlobe24", "OcticonsGrabber16", "OcticonsGrabber24", "OcticonsGraph16", "OcticonsGraph24", "OcticonsHash16", "OcticonsHash24", "OcticonsHeading16", "OcticonsHeading24", "OcticonsHeart16", "OcticonsHeart24", "OcticonsHeartFill16", "OcticonsHeartFill24", "OcticonsHistory16", "OcticonsHistory24", "OcticonsHome16", "OcticonsHome24", "OcticonsHomeFill24", "OcticonsHorizontalRule16", "OcticonsHorizontalRule24", "OcticonsHourglass16", "OcticonsHourglass24", "OcticonsHubot16", "OcticonsHubot24", "OcticonsIdBadge16", "OcticonsImage16", "OcticonsImage24", "OcticonsInbox16", "OcticonsInbox24", "OcticonsInfinity16", "OcticonsInfinity24", "OcticonsInfo16", "OcticonsInfo24", "OcticonsIssueClosed16", "OcticonsIssueClosed24", "OcticonsIssueDraft16", "OcticonsIssueDraft24", "OcticonsIssueOpened16", "OcticonsIssueOpened24", "OcticonsIssueReopened16", "OcticonsIssueReopened24", "OcticonsItalic16", "OcticonsItalic24", "OcticonsIterations16", "OcticonsIterations24", "OcticonsKebabHorizontal16", "OcticonsKebabHorizontal24", "OcticonsKey16", "OcticonsKey24", "OcticonsKeyAsterisk16", "OcticonsLaw16", "OcticonsLaw24", "OcticonsLightBulb16", "OcticonsLightBulb24", "OcticonsLink16", "OcticonsLink24", "OcticonsLinkExternal16", "OcticonsLinkExternal24", "OcticonsListOrdered16", "OcticonsListOrdered24", "OcticonsListUnordered16", "OcticonsListUnordered24", "OcticonsLocation16", "OcticonsLocation24", "OcticonsLock16", "OcticonsLock24", "OcticonsLog16", "OcticonsLogoGist16", "OcticonsLogoGithub16", "OcticonsMail16", "OcticonsMail24", "OcticonsMarkGithub16", "OcticonsMarkdown16", "OcticonsMegaphone16", "OcticonsMegaphone24", "OcticonsMention16", "OcticonsMention24", "OcticonsMeter16", "OcticonsMilestone16", "OcticonsMilestone24", "OcticonsMirror16", "OcticonsMirror24", "OcticonsMoon16", "OcticonsMoon24", "OcticonsMortarBoard16", "OcticonsMortarBoard24", "OcticonsMultiSelect16", "OcticonsMultiSelect24", "OcticonsMute16", "OcticonsMute24", "OcticonsNoEntry16", "OcticonsNoEntry24", "OcticonsNoEntryFill12", "OcticonsNorthStar16", "OcticonsNorthStar24", "OcticonsNote16", "OcticonsNote24", "OcticonsNumber16", "OcticonsNumber24", "OcticonsOrganization16", "OcticonsOrganization24", "OcticonsPackage16", "OcticonsPackage24", "OcticonsPackageDependencies16", "OcticonsPackageDependencies24", "OcticonsPackageDependents16", "OcticonsPackageDependents24", "OcticonsPaintbrush16", "OcticonsPaperAirplane16", "OcticonsPaperAirplane24", "OcticonsPaste16", "OcticonsPaste24", "OcticonsPencil16", "OcticonsPencil24", "OcticonsPeople16", "OcticonsPeople24", "OcticonsPerson16", "OcticonsPerson24", "OcticonsPersonAdd16", "OcticonsPersonAdd24", "OcticonsPersonFill16", "OcticonsPersonFill24", "OcticonsPin16", "OcticonsPin24", "OcticonsPlay16", "OcticonsPlay24", "OcticonsPlug16", "OcticonsPlug24", "OcticonsPlus16", "OcticonsPlus24", "OcticonsPlusCircle16", "OcticonsPlusCircle24", "OcticonsProject16", "OcticonsProject24", "OcticonsPulse16", "OcticonsPulse24", "OcticonsQuestion16", "OcticonsQuestion24", "OcticonsQuote16", "OcticonsQuote24", "OcticonsReply16", "OcticonsReply24", "OcticonsRepo16", "OcticonsRepo24", "OcticonsRepoClone16", "OcticonsRepoDeleted16", "OcticonsRepoForked16", "OcticonsRepoForked24", "OcticonsRepoLocked16", "OcticonsRepoPull16", "OcticonsRepoPush16", "OcticonsRepoPush24", "OcticonsRepoTemplate16", "OcticonsRepoTemplate24", "OcticonsReport16", "OcticonsReport24", "OcticonsRocket16", "OcticonsRocket24", "OcticonsRows16", "OcticonsRows24", "OcticonsRss16", "OcticonsRss24", "OcticonsRuby16", "OcticonsRuby24", "OcticonsScreenFull16", "OcticonsScreenFull24", "OcticonsScreenNormal16", "OcticonsScreenNormal24", "OcticonsSearch16", "OcticonsSearch24", "OcticonsServer16", "OcticonsServer24", "OcticonsShare16", "OcticonsShare24", "OcticonsShareAndroid16", "OcticonsShareAndroid24", "OcticonsShield16", "OcticonsShield24", "OcticonsShieldCheck16", "OcticonsShieldCheck24", "OcticonsShieldLock16", "OcticonsShieldLock24", "OcticonsShieldX16", "OcticonsShieldX24", "OcticonsSidebarCollapse16", "OcticonsSidebarCollapse24", "OcticonsSidebarExpand16", "OcticonsSidebarExpand24", "OcticonsSignIn16", "OcticonsSignIn24", "OcticonsSignOut16", "OcticonsSignOut24", "OcticonsSingleSelect16", "OcticonsSingleSelect24", "OcticonsSkip16", "OcticonsSkip24", "OcticonsSmiley16", "OcticonsSmiley24", "OcticonsSortAsc16", "OcticonsSortAsc24", "OcticonsSortDesc16", "OcticonsSortDesc24", "OcticonsSquare16", "OcticonsSquare24", "OcticonsSquareFill16", "OcticonsSquareFill24", "OcticonsSquirrel16", "OcticonsSquirrel24", "OcticonsStack16", "OcticonsStack24", "OcticonsStar16", "OcticonsStar24", "OcticonsStarFill16", "OcticonsStarFill24", "OcticonsStop16", "OcticonsStop24", "OcticonsStopwatch16", "OcticonsStopwatch24", "OcticonsStrikethrough16", "OcticonsStrikethrough24", "OcticonsSun16", "OcticonsSun24", "OcticonsSync16", "OcticonsSync24", "OcticonsTab24", "OcticonsTabExternal16", "OcticonsTable16", "OcticonsTable24", "OcticonsTag16", "OcticonsTag24", "OcticonsTasklist16", "OcticonsTasklist24", "OcticonsTelescope16", "OcticonsTelescope24", "OcticonsTelescopeFill16", "OcticonsTelescopeFill24", "OcticonsTerminal16", "OcticonsTerminal24", "OcticonsThreeBars16", "OcticonsThumbsdown16", "OcticonsThumbsdown24", "OcticonsThumbsup16", "OcticonsThumbsup24", "OcticonsTools16", "OcticonsTools24", "OcticonsTrash16", "OcticonsTrash24", "OcticonsTriangleDown16", "OcticonsTriangleDown24", "OcticonsTriangleLeft16", "OcticonsTriangleLeft24", "OcticonsTriangleRight16", "OcticonsTriangleRight24", "OcticonsTriangleUp16", "OcticonsTriangleUp24", "OcticonsTrophy16", "OcticonsTrophy24", "OcticonsTypography16", "OcticonsTypography24", "OcticonsUnfold16", "OcticonsUnfold24", "OcticonsUnlock16", "OcticonsUnlock24", "OcticonsUnmute16", "OcticonsUnmute24", "OcticonsUnverified16", "OcticonsUnverified24", "OcticonsUpload16", "OcticonsUpload24", "OcticonsVerified16", "OcticonsVerified24", "OcticonsVersions16", "OcticonsVersions24", "OcticonsVideo16", "OcticonsVideo24", "OcticonsWebhook16", "OcticonsWorkflow16", "OcticonsWorkflow24", "OcticonsX16", "OcticonsX24", "OcticonsXCircle16", "OcticonsXCircle24", "OcticonsXCircleFill12", "OcticonsXCircleFill16", "OcticonsXCircleFill24", "OcticonsZap16", "OcticonsZap24"]

[package]
authors = ["Finn Bear"]
description = "Easily include a variety of SVG icons into your yew app"
edition = "2018"
exclude = ["bootstrap", "feather", "Font-Awesome", "octicons", "lipis-flag-icons", "docs", "test-app"]
license = "MIT"
name = "yew_icons"
repository = "https://github.com/finnbear/yew_icons/"
version = "0.2.0"