@itfin/components 1.3.33 → 1.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -1
- package/src/ITFSettings.js +8 -0
- package/src/assets/fonts/bootstrap-icons.woff +0 -0
- package/src/assets/fonts/bootstrap-icons.woff2 +0 -0
- package/src/assets/scss/components/select/_selected.scss +1 -1
- package/src/assets/scss/icons.scss +2085 -0
- package/src/assets/scss/main.scss +1 -0
- package/src/components/avatar/index.stories.js +0 -1
- package/src/components/button/1.html +30 -0
- package/src/components/button/NativeButton.js +116 -0
- package/src/components/button/index.stories.js +10 -6
- package/src/components/checkbox/Checkbox.vue +5 -1
- package/src/components/datepicker/DatePickerInline.vue +10 -3
- package/src/components/datepicker/DateRangePickerInline.vue +10 -3
- package/src/components/dropdown/Dropdown.vue +5 -4
- package/src/components/dropdown/DropdownMenu.vue +7 -0
- package/src/components/filter/FilterBadge.vue +36 -19
- package/src/components/filter/FilterControl.vue +105 -0
- package/src/components/filter/constants.js +7 -6
- package/src/components/filter/index.stories.js +31 -3
- package/src/components/select/Select.vue +9 -2
- package/src/components/sortable/sortable-shopify.js +1 -1
- package/src/components/table/Table2.vue +108 -33
- package/src/components/table/TableBody.vue +58 -36
- package/src/components/table/TableGroup.vue +166 -114
- package/src/components/table/TableHeader.vue +153 -36
- package/src/components/table/index.stories.js +152 -4
- package/src/components/table/sticky.js +439 -0
- package/src/components/text-field/TextField.vue +1 -0
|
@@ -0,0 +1,2085 @@
|
|
|
1
|
+
|
|
2
|
+
$bootstrap-icons-font: "bootstrap-icons" !default;
|
|
3
|
+
$bootstrap-icons-font-dir: "../fonts" !default;
|
|
4
|
+
$bootstrap-icons-font-file: "#{$bootstrap-icons-font-dir}/#{$bootstrap-icons-font}" !default;
|
|
5
|
+
$bootstrap-icons-font-hash: "24e3eb84d0bcaf83d77f904c78ac1f47" !default;
|
|
6
|
+
$bootstrap-icons-font-src: url("#{$bootstrap-icons-font-file}.woff2?#{$bootstrap-icons-font-hash}") format("woff2"),
|
|
7
|
+
url("#{$bootstrap-icons-font-file}.woff?#{$bootstrap-icons-font-hash}") format("woff") !default;
|
|
8
|
+
|
|
9
|
+
@font-face {
|
|
10
|
+
font-display: block;
|
|
11
|
+
font-family: $bootstrap-icons-font;
|
|
12
|
+
src: $bootstrap-icons-font-src;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.nom::before,
|
|
16
|
+
[class^="nom-"]::before,
|
|
17
|
+
[class*=" nom-"]::before {
|
|
18
|
+
display: inline-block;
|
|
19
|
+
font-family: $bootstrap-icons-font !important;
|
|
20
|
+
font-style: normal;
|
|
21
|
+
font-weight: normal !important;
|
|
22
|
+
font-variant: normal;
|
|
23
|
+
text-transform: none;
|
|
24
|
+
line-height: 1;
|
|
25
|
+
vertical-align: -.125em;
|
|
26
|
+
-webkit-font-smoothing: antialiased;
|
|
27
|
+
-moz-osx-font-smoothing: grayscale;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
$bootstrap-icons-map: (
|
|
31
|
+
"123": "\f67f",
|
|
32
|
+
//"alarm-fill": "\f101",
|
|
33
|
+
//"alarm": "\f102",
|
|
34
|
+
//"align-bottom": "\f103",
|
|
35
|
+
//"align-center": "\f104",
|
|
36
|
+
//"align-end": "\f105",
|
|
37
|
+
//"align-middle": "\f106",
|
|
38
|
+
//"align-start": "\f107",
|
|
39
|
+
//"align-top": "\f108",
|
|
40
|
+
//"alt": "\f109",
|
|
41
|
+
//"app-indicator": "\f10a",
|
|
42
|
+
//"app": "\f10b",
|
|
43
|
+
//"archive-fill": "\f10c",
|
|
44
|
+
//"archive": "\f10d",
|
|
45
|
+
//"arrow-90deg-down": "\f10e",
|
|
46
|
+
//"arrow-90deg-left": "\f10f",
|
|
47
|
+
//"arrow-90deg-right": "\f110",
|
|
48
|
+
//"arrow-90deg-up": "\f111",
|
|
49
|
+
//"arrow-bar-down": "\f112",
|
|
50
|
+
//"arrow-bar-left": "\f113",
|
|
51
|
+
//"arrow-bar-right": "\f114",
|
|
52
|
+
//"arrow-bar-up": "\f115",
|
|
53
|
+
//"arrow-clockwise": "\f116",
|
|
54
|
+
//"arrow-counterclockwise": "\f117",
|
|
55
|
+
//"arrow-down-circle-fill": "\f118",
|
|
56
|
+
//"arrow-down-circle": "\f119",
|
|
57
|
+
//"arrow-down-left-circle-fill": "\f11a",
|
|
58
|
+
//"arrow-down-left-circle": "\f11b",
|
|
59
|
+
//"arrow-down-left-square-fill": "\f11c",
|
|
60
|
+
//"arrow-down-left-square": "\f11d",
|
|
61
|
+
//"arrow-down-left": "\f11e",
|
|
62
|
+
//"arrow-down-right-circle-fill": "\f11f",
|
|
63
|
+
//"arrow-down-right-circle": "\f120",
|
|
64
|
+
//"arrow-down-right-square-fill": "\f121",
|
|
65
|
+
//"arrow-down-right-square": "\f122",
|
|
66
|
+
//"arrow-down-right": "\f123",
|
|
67
|
+
//"arrow-down-short": "\f124",
|
|
68
|
+
//"arrow-down-square-fill": "\f125",
|
|
69
|
+
//"arrow-down-square": "\f126",
|
|
70
|
+
//"arrow-down-up": "\f127",
|
|
71
|
+
//"arrow-down": "\f128",
|
|
72
|
+
//"arrow-left-circle-fill": "\f129",
|
|
73
|
+
//"arrow-left-circle": "\f12a",
|
|
74
|
+
//"arrow-left-right": "\f12b",
|
|
75
|
+
//"arrow-left-short": "\f12c",
|
|
76
|
+
//"arrow-left-square-fill": "\f12d",
|
|
77
|
+
//"arrow-left-square": "\f12e",
|
|
78
|
+
//"arrow-left": "\f12f",
|
|
79
|
+
//"arrow-repeat": "\f130",
|
|
80
|
+
//"arrow-return-left": "\f131",
|
|
81
|
+
//"arrow-return-right": "\f132",
|
|
82
|
+
//"arrow-right-circle-fill": "\f133",
|
|
83
|
+
//"arrow-right-circle": "\f134",
|
|
84
|
+
//"arrow-right-short": "\f135",
|
|
85
|
+
//"arrow-right-square-fill": "\f136",
|
|
86
|
+
//"arrow-right-square": "\f137",
|
|
87
|
+
//"arrow-right": "\f138",
|
|
88
|
+
//"arrow-up-circle-fill": "\f139",
|
|
89
|
+
//"arrow-up-circle": "\f13a",
|
|
90
|
+
//"arrow-up-left-circle-fill": "\f13b",
|
|
91
|
+
//"arrow-up-left-circle": "\f13c",
|
|
92
|
+
//"arrow-up-left-square-fill": "\f13d",
|
|
93
|
+
//"arrow-up-left-square": "\f13e",
|
|
94
|
+
//"arrow-up-left": "\f13f",
|
|
95
|
+
//"arrow-up-right-circle-fill": "\f140",
|
|
96
|
+
//"arrow-up-right-circle": "\f141",
|
|
97
|
+
//"arrow-up-right-square-fill": "\f142",
|
|
98
|
+
"arrow-up-right-square": "\f143",
|
|
99
|
+
//"arrow-up-right": "\f144",
|
|
100
|
+
//"arrow-up-short": "\f145",
|
|
101
|
+
//"arrow-up-square-fill": "\f146",
|
|
102
|
+
//"arrow-up-square": "\f147",
|
|
103
|
+
//"arrow-up": "\f148",
|
|
104
|
+
//"arrows-angle-contract": "\f149",
|
|
105
|
+
//"arrows-angle-expand": "\f14a",
|
|
106
|
+
//"arrows-collapse": "\f14b",
|
|
107
|
+
//"arrows-expand": "\f14c",
|
|
108
|
+
//"arrows-fullscreen": "\f14d",
|
|
109
|
+
//"arrows-move": "\f14e",
|
|
110
|
+
//"aspect-ratio-fill": "\f14f",
|
|
111
|
+
//"aspect-ratio": "\f150",
|
|
112
|
+
//"asterisk": "\f151",
|
|
113
|
+
//"at": "\f152",
|
|
114
|
+
//"award-fill": "\f153",
|
|
115
|
+
//"award": "\f154",
|
|
116
|
+
//"back": "\f155",
|
|
117
|
+
//"backspace-fill": "\f156",
|
|
118
|
+
//"backspace-reverse-fill": "\f157",
|
|
119
|
+
//"backspace-reverse": "\f158",
|
|
120
|
+
//"backspace": "\f159",
|
|
121
|
+
//"badge-3d-fill": "\f15a",
|
|
122
|
+
//"badge-3d": "\f15b",
|
|
123
|
+
//"badge-4k-fill": "\f15c",
|
|
124
|
+
//"badge-4k": "\f15d",
|
|
125
|
+
//"badge-8k-fill": "\f15e",
|
|
126
|
+
//"badge-8k": "\f15f",
|
|
127
|
+
//"badge-ad-fill": "\f160",
|
|
128
|
+
//"badge-ad": "\f161",
|
|
129
|
+
//"badge-ar-fill": "\f162",
|
|
130
|
+
//"badge-ar": "\f163",
|
|
131
|
+
//"badge-cc-fill": "\f164",
|
|
132
|
+
//"badge-cc": "\f165",
|
|
133
|
+
//"badge-hd-fill": "\f166",
|
|
134
|
+
//"badge-hd": "\f167",
|
|
135
|
+
//"badge-tm-fill": "\f168",
|
|
136
|
+
//"badge-tm": "\f169",
|
|
137
|
+
//"badge-vo-fill": "\f16a",
|
|
138
|
+
//"badge-vo": "\f16b",
|
|
139
|
+
//"badge-vr-fill": "\f16c",
|
|
140
|
+
//"badge-vr": "\f16d",
|
|
141
|
+
//"badge-wc-fill": "\f16e",
|
|
142
|
+
//"badge-wc": "\f16f",
|
|
143
|
+
//"bag-check-fill": "\f170",
|
|
144
|
+
//"bag-check": "\f171",
|
|
145
|
+
//"bag-dash-fill": "\f172",
|
|
146
|
+
//"bag-dash": "\f173",
|
|
147
|
+
//"bag-fill": "\f174",
|
|
148
|
+
//"bag-plus-fill": "\f175",
|
|
149
|
+
//"bag-plus": "\f176",
|
|
150
|
+
//"bag-x-fill": "\f177",
|
|
151
|
+
//"bag-x": "\f178",
|
|
152
|
+
//"bag": "\f179",
|
|
153
|
+
//"bar-chart-fill": "\f17a",
|
|
154
|
+
//"bar-chart-line-fill": "\f17b",
|
|
155
|
+
//"bar-chart-line": "\f17c",
|
|
156
|
+
//"bar-chart-steps": "\f17d",
|
|
157
|
+
//"bar-chart": "\f17e",
|
|
158
|
+
//"basket-fill": "\f17f",
|
|
159
|
+
//"basket": "\f180",
|
|
160
|
+
//"basket2-fill": "\f181",
|
|
161
|
+
//"basket2": "\f182",
|
|
162
|
+
//"basket3-fill": "\f183",
|
|
163
|
+
//"basket3": "\f184",
|
|
164
|
+
//"battery-charging": "\f185",
|
|
165
|
+
//"battery-full": "\f186",
|
|
166
|
+
//"battery-half": "\f187",
|
|
167
|
+
//"battery": "\f188",
|
|
168
|
+
//"bell-fill": "\f189",
|
|
169
|
+
//"bell": "\f18a",
|
|
170
|
+
//"bezier": "\f18b",
|
|
171
|
+
//"bezier2": "\f18c",
|
|
172
|
+
//"bicycle": "\f18d",
|
|
173
|
+
//"binoculars-fill": "\f18e",
|
|
174
|
+
//"binoculars": "\f18f",
|
|
175
|
+
//"blockquote-left": "\f190",
|
|
176
|
+
//"blockquote-right": "\f191",
|
|
177
|
+
//"book-fill": "\f192",
|
|
178
|
+
//"book-half": "\f193",
|
|
179
|
+
//"book": "\f194",
|
|
180
|
+
//"bookmark-check-fill": "\f195",
|
|
181
|
+
//"bookmark-check": "\f196",
|
|
182
|
+
//"bookmark-dash-fill": "\f197",
|
|
183
|
+
//"bookmark-dash": "\f198",
|
|
184
|
+
//"bookmark-fill": "\f199",
|
|
185
|
+
//"bookmark-heart-fill": "\f19a",
|
|
186
|
+
//"bookmark-heart": "\f19b",
|
|
187
|
+
//"bookmark-plus-fill": "\f19c",
|
|
188
|
+
//"bookmark-plus": "\f19d",
|
|
189
|
+
//"bookmark-star-fill": "\f19e",
|
|
190
|
+
//"bookmark-star": "\f19f",
|
|
191
|
+
//"bookmark-x-fill": "\f1a0",
|
|
192
|
+
//"bookmark-x": "\f1a1",
|
|
193
|
+
//"bookmark": "\f1a2",
|
|
194
|
+
//"bookmarks-fill": "\f1a3",
|
|
195
|
+
//"bookmarks": "\f1a4",
|
|
196
|
+
//"bookshelf": "\f1a5",
|
|
197
|
+
//"bootstrap-fill": "\f1a6",
|
|
198
|
+
//"bootstrap-reboot": "\f1a7",
|
|
199
|
+
//"bootstrap": "\f1a8",
|
|
200
|
+
//"border-all": "\f1a9",
|
|
201
|
+
//"border-bottom": "\f1aa",
|
|
202
|
+
//"border-center": "\f1ab",
|
|
203
|
+
//"border-inner": "\f1ac",
|
|
204
|
+
//"border-left": "\f1ad",
|
|
205
|
+
//"border-middle": "\f1ae",
|
|
206
|
+
//"border-outer": "\f1af",
|
|
207
|
+
//"border-right": "\f1b0",
|
|
208
|
+
//"border-style": "\f1b1",
|
|
209
|
+
//"border-top": "\f1b2",
|
|
210
|
+
//"border-width": "\f1b3",
|
|
211
|
+
"value-object": "\f1b4",//"border": "\f1b4",
|
|
212
|
+
//"bounding-box-circles": "\f1b5",
|
|
213
|
+
//"bounding-box": "\f1b6",
|
|
214
|
+
//"box-arrow-down-left": "\f1b7",
|
|
215
|
+
//"box-arrow-down-right": "\f1b8",
|
|
216
|
+
//"box-arrow-down": "\f1b9",
|
|
217
|
+
//"box-arrow-in-down-left": "\f1ba",
|
|
218
|
+
//"box-arrow-in-down-right": "\f1bb",
|
|
219
|
+
//"box-arrow-in-down": "\f1bc",
|
|
220
|
+
//"box-arrow-in-left": "\f1bd",
|
|
221
|
+
//"box-arrow-in-right": "\f1be",
|
|
222
|
+
//"box-arrow-in-up-left": "\f1bf",
|
|
223
|
+
//"box-arrow-in-up-right": "\f1c0",
|
|
224
|
+
//"box-arrow-in-up": "\f1c1",
|
|
225
|
+
//"box-arrow-left": "\f1c2",
|
|
226
|
+
//"box-arrow-right": "\f1c3",
|
|
227
|
+
//"box-arrow-up-left": "\f1c4",
|
|
228
|
+
//"box-arrow-up-right": "\f1c5",
|
|
229
|
+
//"box-arrow-up": "\f1c6",
|
|
230
|
+
//"box-seam": "\f1c7",
|
|
231
|
+
"entity": "\f1c8", //"box": "\f1c8",
|
|
232
|
+
//"braces": "\f1c9",
|
|
233
|
+
//"bricks": "\f1ca",
|
|
234
|
+
//"briefcase-fill": "\f1cb",
|
|
235
|
+
"briefcase": "\f1cc",
|
|
236
|
+
//"brightness-alt-high-fill": "\f1cd",
|
|
237
|
+
//"brightness-alt-high": "\f1ce",
|
|
238
|
+
//"brightness-alt-low-fill": "\f1cf",
|
|
239
|
+
//"brightness-alt-low": "\f1d0",
|
|
240
|
+
//"brightness-high-fill": "\f1d1",
|
|
241
|
+
//"brightness-high": "\f1d2",
|
|
242
|
+
//"brightness-low-fill": "\f1d3",
|
|
243
|
+
//"brightness-low": "\f1d4",
|
|
244
|
+
//"broadcast-pin": "\f1d5",
|
|
245
|
+
//"broadcast": "\f1d6",
|
|
246
|
+
//"brush-fill": "\f1d7",
|
|
247
|
+
//"brush": "\f1d8",
|
|
248
|
+
//"bucket-fill": "\f1d9",
|
|
249
|
+
//"bucket": "\f1da",
|
|
250
|
+
//"bug-fill": "\f1db",
|
|
251
|
+
//"bug": "\f1dc",
|
|
252
|
+
//"building": "\f1dd",
|
|
253
|
+
//"bullseye": "\f1de",
|
|
254
|
+
//"calculator-fill": "\f1df",
|
|
255
|
+
//"calculator": "\f1e0",
|
|
256
|
+
//"calendar-check-fill": "\f1e1",
|
|
257
|
+
//"calendar-check": "\f1e2",
|
|
258
|
+
//"calendar-date-fill": "\f1e3",
|
|
259
|
+
//"calendar-date": "\f1e4",
|
|
260
|
+
//"calendar-day-fill": "\f1e5",
|
|
261
|
+
//"calendar-day": "\f1e6",
|
|
262
|
+
//"calendar-event-fill": "\f1e7",
|
|
263
|
+
//"calendar-event": "\f1e8",
|
|
264
|
+
//"calendar-fill": "\f1e9",
|
|
265
|
+
//"calendar-minus-fill": "\f1ea",
|
|
266
|
+
//"calendar-minus": "\f1eb",
|
|
267
|
+
//"calendar-month-fill": "\f1ec",
|
|
268
|
+
//"calendar-month": "\f1ed",
|
|
269
|
+
//"calendar-plus-fill": "\f1ee",
|
|
270
|
+
//"calendar-plus": "\f1ef",
|
|
271
|
+
//"calendar-range-fill": "\f1f0",
|
|
272
|
+
//"calendar-range": "\f1f1",
|
|
273
|
+
//"calendar-week-fill": "\f1f2",
|
|
274
|
+
//"calendar-week": "\f1f3",
|
|
275
|
+
//"calendar-x-fill": "\f1f4",
|
|
276
|
+
//"calendar-x": "\f1f5",
|
|
277
|
+
//"calendar": "\f1f6",
|
|
278
|
+
//"calendar2-check-fill": "\f1f7",
|
|
279
|
+
//"calendar2-check": "\f1f8",
|
|
280
|
+
//"calendar2-date-fill": "\f1f9",
|
|
281
|
+
//"calendar2-date": "\f1fa",
|
|
282
|
+
//"calendar2-day-fill": "\f1fb",
|
|
283
|
+
//"calendar2-day": "\f1fc",
|
|
284
|
+
//"calendar2-event-fill": "\f1fd",
|
|
285
|
+
//"calendar2-event": "\f1fe",
|
|
286
|
+
//"calendar2-fill": "\f1ff",
|
|
287
|
+
//"calendar2-minus-fill": "\f200",
|
|
288
|
+
//"calendar2-minus": "\f201",
|
|
289
|
+
//"calendar2-month-fill": "\f202",
|
|
290
|
+
//"calendar2-month": "\f203",
|
|
291
|
+
//"calendar2-plus-fill": "\f204",
|
|
292
|
+
//"calendar2-plus": "\f205",
|
|
293
|
+
//"calendar2-range-fill": "\f206",
|
|
294
|
+
//"calendar2-range": "\f207",
|
|
295
|
+
//"calendar2-week-fill": "\f208",
|
|
296
|
+
//"calendar2-week": "\f209",
|
|
297
|
+
//"calendar2-x-fill": "\f20a",
|
|
298
|
+
//"calendar2-x": "\f20b",
|
|
299
|
+
//"calendar2": "\f20c",
|
|
300
|
+
//"calendar3-event-fill": "\f20d",
|
|
301
|
+
//"calendar3-event": "\f20e",
|
|
302
|
+
//"calendar3-fill": "\f20f",
|
|
303
|
+
//"calendar3-range-fill": "\f210",
|
|
304
|
+
//"calendar3-range": "\f211",
|
|
305
|
+
//"calendar3-week-fill": "\f212",
|
|
306
|
+
//"calendar3-week": "\f213",
|
|
307
|
+
//"calendar3": "\f214",
|
|
308
|
+
//"calendar4-event": "\f215",
|
|
309
|
+
//"calendar4-range": "\f216",
|
|
310
|
+
//"calendar4-week": "\f217",
|
|
311
|
+
//"calendar4": "\f218",
|
|
312
|
+
//"camera-fill": "\f219",
|
|
313
|
+
//"camera-reels-fill": "\f21a",
|
|
314
|
+
//"camera-reels": "\f21b",
|
|
315
|
+
//"camera-video-fill": "\f21c",
|
|
316
|
+
//"camera-video-off-fill": "\f21d",
|
|
317
|
+
//"camera-video-off": "\f21e",
|
|
318
|
+
//"camera-video": "\f21f",
|
|
319
|
+
//"camera": "\f220",
|
|
320
|
+
//"camera2": "\f221",
|
|
321
|
+
//"capslock-fill": "\f222",
|
|
322
|
+
//"capslock": "\f223",
|
|
323
|
+
//"card-checklist": "\f224",
|
|
324
|
+
//"card-heading": "\f225",
|
|
325
|
+
//"card-image": "\f226",
|
|
326
|
+
//"card-list": "\f227",
|
|
327
|
+
//"card-text": "\f228",
|
|
328
|
+
"caret-down-fill": "\f229",
|
|
329
|
+
//"caret-down-square-fill": "\f22a",
|
|
330
|
+
//"caret-down-square": "\f22b",
|
|
331
|
+
//"caret-down": "\f22c",
|
|
332
|
+
//"caret-left-fill": "\f22d",
|
|
333
|
+
//"caret-left-square-fill": "\f22e",
|
|
334
|
+
//"caret-left-square": "\f22f",
|
|
335
|
+
//"caret-left": "\f230",
|
|
336
|
+
"caret-right-fill": "\f231",
|
|
337
|
+
//"caret-right-square-fill": "\f232",
|
|
338
|
+
//"caret-right-square": "\f233",
|
|
339
|
+
//"caret-right": "\f234",
|
|
340
|
+
//"caret-up-fill": "\f235",
|
|
341
|
+
//"caret-up-square-fill": "\f236",
|
|
342
|
+
//"caret-up-square": "\f237",
|
|
343
|
+
//"caret-up": "\f238",
|
|
344
|
+
//"cart-check-fill": "\f239",
|
|
345
|
+
//"cart-check": "\f23a",
|
|
346
|
+
//"cart-dash-fill": "\f23b",
|
|
347
|
+
//"cart-dash": "\f23c",
|
|
348
|
+
//"cart-fill": "\f23d",
|
|
349
|
+
//"cart-plus-fill": "\f23e",
|
|
350
|
+
//"cart-plus": "\f23f",
|
|
351
|
+
//"cart-x-fill": "\f240",
|
|
352
|
+
//"cart-x": "\f241",
|
|
353
|
+
//"cart": "\f242",
|
|
354
|
+
//"cart2": "\f243",
|
|
355
|
+
//"cart3": "\f244",
|
|
356
|
+
//"cart4": "\f245",
|
|
357
|
+
//"cash-stack": "\f246",
|
|
358
|
+
//"cash": "\f247",
|
|
359
|
+
//"cast": "\f248",
|
|
360
|
+
//"chat-dots-fill": "\f249",
|
|
361
|
+
//"chat-dots": "\f24a",
|
|
362
|
+
//"chat-fill": "\f24b",
|
|
363
|
+
//"chat-left-dots-fill": "\f24c",
|
|
364
|
+
//"chat-left-dots": "\f24d",
|
|
365
|
+
//"chat-left-fill": "\f24e",
|
|
366
|
+
//"chat-left-quote-fill": "\f24f",
|
|
367
|
+
//"chat-left-quote": "\f250",
|
|
368
|
+
//"chat-left-text-fill": "\f251",
|
|
369
|
+
//"chat-left-text": "\f252",
|
|
370
|
+
//"chat-left": "\f253",
|
|
371
|
+
//"chat-quote-fill": "\f254",
|
|
372
|
+
//"chat-quote": "\f255",
|
|
373
|
+
//"chat-right-dots-fill": "\f256",
|
|
374
|
+
//"chat-right-dots": "\f257",
|
|
375
|
+
//"chat-right-fill": "\f258",
|
|
376
|
+
//"chat-right-quote-fill": "\f259",
|
|
377
|
+
//"chat-right-quote": "\f25a",
|
|
378
|
+
//"chat-right-text-fill": "\f25b",
|
|
379
|
+
//"chat-right-text": "\f25c",
|
|
380
|
+
//"chat-right": "\f25d",
|
|
381
|
+
//"chat-square-dots-fill": "\f25e",
|
|
382
|
+
//"chat-square-dots": "\f25f",
|
|
383
|
+
//"chat-square-fill": "\f260",
|
|
384
|
+
//"chat-square-quote-fill": "\f261",
|
|
385
|
+
//"chat-square-quote": "\f262",
|
|
386
|
+
//"chat-square-text-fill": "\f263",
|
|
387
|
+
//"chat-square-text": "\f264",
|
|
388
|
+
//"chat-square": "\f265",
|
|
389
|
+
//"chat-text-fill": "\f266",
|
|
390
|
+
//"chat-text": "\f267",
|
|
391
|
+
//"chat": "\f268",
|
|
392
|
+
//"check-all": "\f269",
|
|
393
|
+
"check-circle-fill": "\f26a",
|
|
394
|
+
//"check-circle": "\f26b",
|
|
395
|
+
//"check-square-fill": "\f26c",
|
|
396
|
+
"check-square": "\f26d",
|
|
397
|
+
//"check": "\f26e",
|
|
398
|
+
//"check2-all": "\f26f",
|
|
399
|
+
//"check2-circle": "\f270",
|
|
400
|
+
//"check2-square": "\f271",
|
|
401
|
+
//"check2": "\f272",
|
|
402
|
+
//"chevron-bar-contract": "\f273",
|
|
403
|
+
//"chevron-bar-down": "\f274",
|
|
404
|
+
//"chevron-bar-expand": "\f275",
|
|
405
|
+
//"chevron-bar-left": "\f276",
|
|
406
|
+
//"chevron-bar-right": "\f277",
|
|
407
|
+
//"chevron-bar-up": "\f278",
|
|
408
|
+
//"chevron-compact-down": "\f279",
|
|
409
|
+
//"chevron-compact-left": "\f27a",
|
|
410
|
+
//"chevron-compact-right": "\f27b",
|
|
411
|
+
//"chevron-compact-up": "\f27c",
|
|
412
|
+
//"chevron-contract": "\f27d",
|
|
413
|
+
//"chevron-double-down": "\f27e",
|
|
414
|
+
"chevron-double-left": "\f27f",
|
|
415
|
+
//"chevron-double-right": "\f280",
|
|
416
|
+
//"chevron-double-up": "\f281",
|
|
417
|
+
//"chevron-down": "\f282",
|
|
418
|
+
"chevron-expand": "\f283",
|
|
419
|
+
//"chevron-left": "\f284",
|
|
420
|
+
//"chevron-right": "\f285",
|
|
421
|
+
//"chevron-up": "\f286",
|
|
422
|
+
"circle-fill": "\f287",
|
|
423
|
+
"circle-half": "\f288",
|
|
424
|
+
//"circle-square": "\f289",
|
|
425
|
+
//"circle": "\f28a",
|
|
426
|
+
//"clipboard-check": "\f28b",
|
|
427
|
+
//"clipboard-data": "\f28c",
|
|
428
|
+
//"clipboard-minus": "\f28d",
|
|
429
|
+
//"clipboard-plus": "\f28e",
|
|
430
|
+
//"clipboard-x": "\f28f",
|
|
431
|
+
//"clipboard": "\f290",
|
|
432
|
+
//"clock-fill": "\f291",
|
|
433
|
+
"clock-history": "\f292",
|
|
434
|
+
//"clock": "\f293",
|
|
435
|
+
//"cloud-arrow-down-fill": "\f294",
|
|
436
|
+
//"cloud-arrow-down": "\f295",
|
|
437
|
+
//"cloud-arrow-up-fill": "\f296",
|
|
438
|
+
//"cloud-arrow-up": "\f297",
|
|
439
|
+
//"cloud-check-fill": "\f298",
|
|
440
|
+
//"cloud-check": "\f299",
|
|
441
|
+
//"cloud-download-fill": "\f29a",
|
|
442
|
+
//"cloud-download": "\f29b",
|
|
443
|
+
//"cloud-drizzle-fill": "\f29c",
|
|
444
|
+
//"cloud-drizzle": "\f29d",
|
|
445
|
+
//"cloud-fill": "\f29e",
|
|
446
|
+
//"cloud-fog-fill": "\f29f",
|
|
447
|
+
//"cloud-fog": "\f2a0",
|
|
448
|
+
//"cloud-fog2-fill": "\f2a1",
|
|
449
|
+
//"cloud-fog2": "\f2a2",
|
|
450
|
+
//"cloud-hail-fill": "\f2a3",
|
|
451
|
+
//"cloud-hail": "\f2a4",
|
|
452
|
+
//"cloud-haze-fill": "\f2a6",
|
|
453
|
+
//"cloud-haze": "\f2a7",
|
|
454
|
+
//"cloud-haze2-fill": "\f2a8",
|
|
455
|
+
//"cloud-lightning-fill": "\f2a9",
|
|
456
|
+
//"cloud-lightning-rain-fill": "\f2aa",
|
|
457
|
+
//"cloud-lightning-rain": "\f2ab",
|
|
458
|
+
//"cloud-lightning": "\f2ac",
|
|
459
|
+
//"cloud-minus-fill": "\f2ad",
|
|
460
|
+
//"cloud-minus": "\f2ae",
|
|
461
|
+
//"cloud-moon-fill": "\f2af",
|
|
462
|
+
//"cloud-moon": "\f2b0",
|
|
463
|
+
//"cloud-plus-fill": "\f2b1",
|
|
464
|
+
//"cloud-plus": "\f2b2",
|
|
465
|
+
//"cloud-rain-fill": "\f2b3",
|
|
466
|
+
//"cloud-rain-heavy-fill": "\f2b4",
|
|
467
|
+
//"cloud-rain-heavy": "\f2b5",
|
|
468
|
+
//"cloud-rain": "\f2b6",
|
|
469
|
+
//"cloud-slash-fill": "\f2b7",
|
|
470
|
+
//"cloud-slash": "\f2b8",
|
|
471
|
+
//"cloud-sleet-fill": "\f2b9",
|
|
472
|
+
//"cloud-sleet": "\f2ba",
|
|
473
|
+
//"cloud-snow-fill": "\f2bb",
|
|
474
|
+
//"cloud-snow": "\f2bc",
|
|
475
|
+
//"cloud-sun-fill": "\f2bd",
|
|
476
|
+
//"cloud-sun": "\f2be",
|
|
477
|
+
//"cloud-upload-fill": "\f2bf",
|
|
478
|
+
//"cloud-upload": "\f2c0",
|
|
479
|
+
//"cloud": "\f2c1",
|
|
480
|
+
//"clouds-fill": "\f2c2",
|
|
481
|
+
//"clouds": "\f2c3",
|
|
482
|
+
//"cloudy-fill": "\f2c4",
|
|
483
|
+
//"cloudy": "\f2c5",
|
|
484
|
+
"code-slash": "\f2c6",
|
|
485
|
+
//"code-square": "\f2c7",
|
|
486
|
+
//"code": "\f2c8",
|
|
487
|
+
//"collection-fill": "\f2c9",
|
|
488
|
+
//"collection-play-fill": "\f2ca",
|
|
489
|
+
//"collection-play": "\f2cb",
|
|
490
|
+
//"collection": "\f2cc",
|
|
491
|
+
//"columns-gap": "\f2cd",
|
|
492
|
+
//"columns": "\f2ce",
|
|
493
|
+
//"command": "\f2cf",
|
|
494
|
+
//"compass-fill": "\f2d0",
|
|
495
|
+
//"compass": "\f2d1",
|
|
496
|
+
//"cone-striped": "\f2d2",
|
|
497
|
+
//"cone": "\f2d3",
|
|
498
|
+
//"controller": "\f2d4",
|
|
499
|
+
//"cpu-fill": "\f2d5",
|
|
500
|
+
//"cpu": "\f2d6",
|
|
501
|
+
//"credit-card-2-back-fill": "\f2d7",
|
|
502
|
+
//"credit-card-2-back": "\f2d8",
|
|
503
|
+
//"credit-card-2-front-fill": "\f2d9",
|
|
504
|
+
//"credit-card-2-front": "\f2da",
|
|
505
|
+
//"credit-card-fill": "\f2db",
|
|
506
|
+
"credit-card": "\f2dc",
|
|
507
|
+
//"crop": "\f2dd",
|
|
508
|
+
//"cup-fill": "\f2de",
|
|
509
|
+
//"cup-straw": "\f2df",
|
|
510
|
+
//"cup": "\f2e0",
|
|
511
|
+
//"cursor-fill": "\f2e1",
|
|
512
|
+
//"cursor-text": "\f2e2",
|
|
513
|
+
//"cursor": "\f2e3",
|
|
514
|
+
//"dash-circle-dotted": "\f2e4",
|
|
515
|
+
//"dash-circle-fill": "\f2e5",
|
|
516
|
+
//"dash-circle": "\f2e6",
|
|
517
|
+
//"dash-square-dotted": "\f2e7",
|
|
518
|
+
//"dash-square-fill": "\f2e8",
|
|
519
|
+
//"dash-square": "\f2e9",
|
|
520
|
+
//"dash": "\f2ea",
|
|
521
|
+
//"diagram-2-fill": "\f2eb",
|
|
522
|
+
"diagram-2": "\f2ec",
|
|
523
|
+
//"diagram-3-fill": "\f2ed",
|
|
524
|
+
//"diagram-3": "\f2ee",
|
|
525
|
+
// "diamond-fill": "\f2ef",
|
|
526
|
+
//"diamond-half": "\f2f0",
|
|
527
|
+
//"diamond": "\f2f1",
|
|
528
|
+
//"dice-1-fill": "\f2f2",
|
|
529
|
+
//"dice-1": "\f2f3",
|
|
530
|
+
//"dice-2-fill": "\f2f4",
|
|
531
|
+
//"dice-2": "\f2f5",
|
|
532
|
+
//"dice-3-fill": "\f2f6",
|
|
533
|
+
//"dice-3": "\f2f7",
|
|
534
|
+
//"dice-4-fill": "\f2f8",
|
|
535
|
+
//"dice-4": "\f2f9",
|
|
536
|
+
//"dice-5-fill": "\f2fa",
|
|
537
|
+
//"dice-5": "\f2fb",
|
|
538
|
+
//"dice-6-fill": "\f2fc",
|
|
539
|
+
//"dice-6": "\f2fd",
|
|
540
|
+
//"disc-fill": "\f2fe",
|
|
541
|
+
//"disc": "\f2ff",
|
|
542
|
+
//"discord": "\f300",
|
|
543
|
+
//"display-fill": "\f301",
|
|
544
|
+
//"display": "\f302",
|
|
545
|
+
//"distribute-horizontal": "\f303",
|
|
546
|
+
//"distribute-vertical": "\f304",
|
|
547
|
+
//"door-closed-fill": "\f305",
|
|
548
|
+
//"door-closed": "\f306",
|
|
549
|
+
//"door-open-fill": "\f307",
|
|
550
|
+
//"door-open": "\f308",
|
|
551
|
+
//"dot": "\f309",
|
|
552
|
+
//"download": "\f30a",
|
|
553
|
+
//"droplet-fill": "\f30b",
|
|
554
|
+
//"droplet-half": "\f30c",
|
|
555
|
+
//"droplet": "\f30d",
|
|
556
|
+
//"earbuds": "\f30e",
|
|
557
|
+
//"easel-fill": "\f30f",
|
|
558
|
+
//"easel": "\f310",
|
|
559
|
+
//"egg-fill": "\f311",
|
|
560
|
+
//"egg-fried": "\f312",
|
|
561
|
+
//"egg": "\f313",
|
|
562
|
+
//"eject-fill": "\f314",
|
|
563
|
+
//"eject": "\f315",
|
|
564
|
+
//"emoji-angry-fill": "\f316",
|
|
565
|
+
//"emoji-angry": "\f317",
|
|
566
|
+
//"emoji-dizzy-fill": "\f318",
|
|
567
|
+
//"emoji-dizzy": "\f319",
|
|
568
|
+
//"emoji-expressionless-fill": "\f31a",
|
|
569
|
+
//"emoji-expressionless": "\f31b",
|
|
570
|
+
//"emoji-frown-fill": "\f31c",
|
|
571
|
+
//"emoji-frown": "\f31d",
|
|
572
|
+
//"emoji-heart-eyes-fill": "\f31e",
|
|
573
|
+
//"emoji-heart-eyes": "\f31f",
|
|
574
|
+
//"emoji-laughing-fill": "\f320",
|
|
575
|
+
//"emoji-laughing": "\f321",
|
|
576
|
+
//"emoji-neutral-fill": "\f322",
|
|
577
|
+
//"emoji-neutral": "\f323",
|
|
578
|
+
//"emoji-smile-fill": "\f324",
|
|
579
|
+
//"emoji-smile-upside-down-fill": "\f325",
|
|
580
|
+
//"emoji-smile-upside-down": "\f326",
|
|
581
|
+
//"emoji-smile": "\f327",
|
|
582
|
+
//"emoji-sunglasses-fill": "\f328",
|
|
583
|
+
//"emoji-sunglasses": "\f329",
|
|
584
|
+
//"emoji-wink-fill": "\f32a",
|
|
585
|
+
//"emoji-wink": "\f32b",
|
|
586
|
+
//"envelope-fill": "\f32c",
|
|
587
|
+
//"envelope-open-fill": "\f32d",
|
|
588
|
+
//"envelope-open": "\f32e",
|
|
589
|
+
//"envelope": "\f32f",
|
|
590
|
+
//"eraser-fill": "\f330",
|
|
591
|
+
//"eraser": "\f331",
|
|
592
|
+
//"exclamation-circle-fill": "\f332",
|
|
593
|
+
//"exclamation-circle": "\f333",
|
|
594
|
+
//"exclamation-diamond-fill": "\f334",
|
|
595
|
+
//"exclamation-diamond": "\f335",
|
|
596
|
+
//"exclamation-octagon-fill": "\f336",
|
|
597
|
+
//"exclamation-octagon": "\f337",
|
|
598
|
+
//"exclamation-square-fill": "\f338",
|
|
599
|
+
//"exclamation-square": "\f339",
|
|
600
|
+
//"exclamation-triangle-fill": "\f33a",
|
|
601
|
+
"exclamation-triangle": "\f33b",
|
|
602
|
+
//"exclamation": "\f33c",
|
|
603
|
+
//"exclude": "\f33d",
|
|
604
|
+
//"eye-fill": "\f33e",
|
|
605
|
+
//"eye-slash-fill": "\f33f",
|
|
606
|
+
//"eye-slash": "\f340",
|
|
607
|
+
//"eye": "\f341",
|
|
608
|
+
//"eyedropper": "\f342",
|
|
609
|
+
//"eyeglasses": "\f343",
|
|
610
|
+
//"facebook": "\f344",
|
|
611
|
+
//"file-arrow-down-fill": "\f345",
|
|
612
|
+
//"file-arrow-down": "\f346",
|
|
613
|
+
//"file-arrow-up-fill": "\f347",
|
|
614
|
+
//"file-arrow-up": "\f348",
|
|
615
|
+
//"file-bar-graph-fill": "\f349",
|
|
616
|
+
//"file-bar-graph": "\f34a",
|
|
617
|
+
//"file-binary-fill": "\f34b",
|
|
618
|
+
//"file-binary": "\f34c",
|
|
619
|
+
//"file-break-fill": "\f34d",
|
|
620
|
+
//"file-break": "\f34e",
|
|
621
|
+
//"file-check-fill": "\f34f",
|
|
622
|
+
//"file-check": "\f350",
|
|
623
|
+
//"file-code-fill": "\f351",
|
|
624
|
+
//"file-code": "\f352",
|
|
625
|
+
//"file-diff-fill": "\f353",
|
|
626
|
+
//"file-diff": "\f354",
|
|
627
|
+
//"file-earmark-arrow-down-fill": "\f355",
|
|
628
|
+
//"file-earmark-arrow-down": "\f356",
|
|
629
|
+
//"file-earmark-arrow-up-fill": "\f357",
|
|
630
|
+
//"file-earmark-arrow-up": "\f358",
|
|
631
|
+
//"file-earmark-bar-graph-fill": "\f359",
|
|
632
|
+
//"file-earmark-bar-graph": "\f35a",
|
|
633
|
+
//"file-earmark-binary-fill": "\f35b",
|
|
634
|
+
//"file-earmark-binary": "\f35c",
|
|
635
|
+
//"file-earmark-break-fill": "\f35d",
|
|
636
|
+
//"file-earmark-break": "\f35e",
|
|
637
|
+
//"file-earmark-check-fill": "\f35f",
|
|
638
|
+
//"file-earmark-check": "\f360",
|
|
639
|
+
//"file-earmark-code-fill": "\f361",
|
|
640
|
+
//"file-earmark-code": "\f362",
|
|
641
|
+
//"file-earmark-diff-fill": "\f363",
|
|
642
|
+
//"file-earmark-diff": "\f364",
|
|
643
|
+
//"file-earmark-easel-fill": "\f365",
|
|
644
|
+
//"file-earmark-easel": "\f366",
|
|
645
|
+
//"file-earmark-excel-fill": "\f367",
|
|
646
|
+
//"file-earmark-excel": "\f368",
|
|
647
|
+
//"file-earmark-fill": "\f369",
|
|
648
|
+
//"file-earmark-font-fill": "\f36a",
|
|
649
|
+
//"file-earmark-font": "\f36b",
|
|
650
|
+
//"file-earmark-image-fill": "\f36c",
|
|
651
|
+
//"file-earmark-image": "\f36d",
|
|
652
|
+
//"file-earmark-lock-fill": "\f36e",
|
|
653
|
+
//"file-earmark-lock": "\f36f",
|
|
654
|
+
//"file-earmark-lock2-fill": "\f370",
|
|
655
|
+
//"file-earmark-lock2": "\f371",
|
|
656
|
+
//"file-earmark-medical-fill": "\f372",
|
|
657
|
+
//"file-earmark-medical": "\f373",
|
|
658
|
+
//"file-earmark-minus-fill": "\f374",
|
|
659
|
+
//"file-earmark-minus": "\f375",
|
|
660
|
+
//"file-earmark-music-fill": "\f376",
|
|
661
|
+
//"file-earmark-music": "\f377",
|
|
662
|
+
//"file-earmark-person-fill": "\f378",
|
|
663
|
+
//"file-earmark-person": "\f379",
|
|
664
|
+
//"file-earmark-play-fill": "\f37a",
|
|
665
|
+
//"file-earmark-play": "\f37b",
|
|
666
|
+
//"file-earmark-plus-fill": "\f37c",
|
|
667
|
+
//"file-earmark-plus": "\f37d",
|
|
668
|
+
//"file-earmark-post-fill": "\f37e",
|
|
669
|
+
//"file-earmark-post": "\f37f",
|
|
670
|
+
//"file-earmark-ppt-fill": "\f380",
|
|
671
|
+
//"file-earmark-ppt": "\f381",
|
|
672
|
+
//"file-earmark-richtext-fill": "\f382",
|
|
673
|
+
//"file-earmark-richtext": "\f383",
|
|
674
|
+
//"file-earmark-ruled-fill": "\f384",
|
|
675
|
+
//"file-earmark-ruled": "\f385",
|
|
676
|
+
//"file-earmark-slides-fill": "\f386",
|
|
677
|
+
//"file-earmark-slides": "\f387",
|
|
678
|
+
//"file-earmark-spreadsheet-fill": "\f388",
|
|
679
|
+
//"file-earmark-spreadsheet": "\f389",
|
|
680
|
+
//"file-earmark-text-fill": "\f38a",
|
|
681
|
+
//"file-earmark-text": "\f38b",
|
|
682
|
+
//"file-earmark-word-fill": "\f38c",
|
|
683
|
+
//"file-earmark-word": "\f38d",
|
|
684
|
+
//"file-earmark-x-fill": "\f38e",
|
|
685
|
+
//"file-earmark-x": "\f38f",
|
|
686
|
+
//"file-earmark-zip-fill": "\f390",
|
|
687
|
+
//"file-earmark-zip": "\f391",
|
|
688
|
+
//"file-earmark": "\f392",
|
|
689
|
+
//"file-easel-fill": "\f393",
|
|
690
|
+
//"file-easel": "\f394",
|
|
691
|
+
//"file-excel-fill": "\f395",
|
|
692
|
+
//"file-excel": "\f396",
|
|
693
|
+
//"file-fill": "\f397",
|
|
694
|
+
//"file-font-fill": "\f398",
|
|
695
|
+
//"file-font": "\f399",
|
|
696
|
+
//"file-image-fill": "\f39a",
|
|
697
|
+
//"file-image": "\f39b",
|
|
698
|
+
//"file-lock-fill": "\f39c",
|
|
699
|
+
//"file-lock": "\f39d",
|
|
700
|
+
//"file-lock2-fill": "\f39e",
|
|
701
|
+
//"file-lock2": "\f39f",
|
|
702
|
+
//"file-medical-fill": "\f3a0",
|
|
703
|
+
//"file-medical": "\f3a1",
|
|
704
|
+
//"file-minus-fill": "\f3a2",
|
|
705
|
+
//"file-minus": "\f3a3",
|
|
706
|
+
//"file-music-fill": "\f3a4",
|
|
707
|
+
//"file-music": "\f3a5",
|
|
708
|
+
//"file-person-fill": "\f3a6",
|
|
709
|
+
//"file-person": "\f3a7",
|
|
710
|
+
//"file-play-fill": "\f3a8",
|
|
711
|
+
//"file-play": "\f3a9",
|
|
712
|
+
//"file-plus-fill": "\f3aa",
|
|
713
|
+
//"file-plus": "\f3ab",
|
|
714
|
+
//"file-post-fill": "\f3ac",
|
|
715
|
+
//"file-post": "\f3ad",
|
|
716
|
+
//"file-ppt-fill": "\f3ae",
|
|
717
|
+
//"file-ppt": "\f3af",
|
|
718
|
+
//"file-richtext-fill": "\f3b0",
|
|
719
|
+
//"file-richtext": "\f3b1",
|
|
720
|
+
//"file-ruled-fill": "\f3b2",
|
|
721
|
+
//"file-ruled": "\f3b3",
|
|
722
|
+
//"file-slides-fill": "\f3b4",
|
|
723
|
+
//"file-slides": "\f3b5",
|
|
724
|
+
//"file-spreadsheet-fill": "\f3b6",
|
|
725
|
+
//"file-spreadsheet": "\f3b7",
|
|
726
|
+
//"file-text-fill": "\f3b8",
|
|
727
|
+
"file-text": "\f3b9",
|
|
728
|
+
//"file-word-fill": "\f3ba",
|
|
729
|
+
//"file-word": "\f3bb",
|
|
730
|
+
//"file-x-fill": "\f3bc",
|
|
731
|
+
//"file-x": "\f3bd",
|
|
732
|
+
//"file-zip-fill": "\f3be",
|
|
733
|
+
//"file-zip": "\f3bf",
|
|
734
|
+
//"file": "\f3c0",
|
|
735
|
+
"files-alt": "\f3c1",
|
|
736
|
+
"files": "\f3c2",
|
|
737
|
+
//"film": "\f3c3",
|
|
738
|
+
//"filter-circle-fill": "\f3c4",
|
|
739
|
+
//"filter-circle": "\f3c5",
|
|
740
|
+
//"filter-left": "\f3c6",
|
|
741
|
+
//"filter-right": "\f3c7",
|
|
742
|
+
//"filter-square-fill": "\f3c8",
|
|
743
|
+
//"filter-square": "\f3c9",
|
|
744
|
+
//"filter": "\f3ca",
|
|
745
|
+
//"flag-fill": "\f3cb",
|
|
746
|
+
//"flag": "\f3cc",
|
|
747
|
+
//"flower1": "\f3cd",
|
|
748
|
+
//"flower2": "\f3ce",
|
|
749
|
+
//"flower3": "\f3cf",
|
|
750
|
+
//"folder-check": "\f3d0",
|
|
751
|
+
//"folder-fill": "\f3d1",
|
|
752
|
+
//"folder-minus": "\f3d2",
|
|
753
|
+
//"folder-plus": "\f3d3",
|
|
754
|
+
//"folder-symlink-fill": "\f3d4",
|
|
755
|
+
//"folder-symlink": "\f3d5",
|
|
756
|
+
//"folder-x": "\f3d6",
|
|
757
|
+
//"folder": "\f3d7",
|
|
758
|
+
//"folder2-open": "\f3d8",
|
|
759
|
+
//"folder2": "\f3d9",
|
|
760
|
+
//"fonts": "\f3da",
|
|
761
|
+
//"forward-fill": "\f3db",
|
|
762
|
+
//"forward": "\f3dc",
|
|
763
|
+
//"front": "\f3dd",
|
|
764
|
+
//"fullscreen-exit": "\f3de",
|
|
765
|
+
//"fullscreen": "\f3df",
|
|
766
|
+
//"funnel-fill": "\f3e0",
|
|
767
|
+
//"funnel": "\f3e1",
|
|
768
|
+
//"gear-fill": "\f3e2",
|
|
769
|
+
//"gear-wide-connected": "\f3e3",
|
|
770
|
+
//"gear-wide": "\f3e4",
|
|
771
|
+
//"gear": "\f3e5",
|
|
772
|
+
//"gem": "\f3e6",
|
|
773
|
+
//"geo-alt-fill": "\f3e7",
|
|
774
|
+
//"geo-alt": "\f3e8",
|
|
775
|
+
//"geo-fill": "\f3e9",
|
|
776
|
+
//"geo": "\f3ea",
|
|
777
|
+
//"gift-fill": "\f3eb",
|
|
778
|
+
//"gift": "\f3ec",
|
|
779
|
+
//"github": "\f3ed",
|
|
780
|
+
//"globe": "\f3ee",
|
|
781
|
+
//"globe2": "\f3ef",
|
|
782
|
+
//"google": "\f3f0",
|
|
783
|
+
//"graph-down": "\f3f1",
|
|
784
|
+
//"graph-up": "\f3f2",
|
|
785
|
+
//"grid-1x2-fill": "\f3f3",
|
|
786
|
+
//"grid-1x2": "\f3f4",
|
|
787
|
+
//"grid-3x2-gap-fill": "\f3f5",
|
|
788
|
+
//"grid-3x2-gap": "\f3f6",
|
|
789
|
+
//"grid-3x2": "\f3f7",
|
|
790
|
+
//"grid-3x3-gap-fill": "\f3f8",
|
|
791
|
+
//"grid-3x3-gap": "\f3f9",
|
|
792
|
+
//"grid-3x3": "\f3fa",
|
|
793
|
+
//"grid-fill": "\f3fb",
|
|
794
|
+
//"grid": "\f3fc",
|
|
795
|
+
//"grip-horizontal": "\f3fd",
|
|
796
|
+
"grip-vertical": "\f3fe",
|
|
797
|
+
//"hammer": "\f3ff",
|
|
798
|
+
//"hand-index-fill": "\f400",
|
|
799
|
+
//"hand-index-thumb-fill": "\f401",
|
|
800
|
+
//"hand-index-thumb": "\f402",
|
|
801
|
+
//"hand-index": "\f403",
|
|
802
|
+
//"hand-thumbs-down-fill": "\f404",
|
|
803
|
+
//"hand-thumbs-down": "\f405",
|
|
804
|
+
//"hand-thumbs-up-fill": "\f406",
|
|
805
|
+
//"hand-thumbs-up": "\f407",
|
|
806
|
+
//"handbag-fill": "\f408",
|
|
807
|
+
//"handbag": "\f409",
|
|
808
|
+
//"hash": "\f40a",
|
|
809
|
+
//"hdd-fill": "\f40b",
|
|
810
|
+
//"hdd-network-fill": "\f40c",
|
|
811
|
+
//"hdd-network": "\f40d",
|
|
812
|
+
//"hdd-rack-fill": "\f40e",
|
|
813
|
+
//"hdd-rack": "\f40f",
|
|
814
|
+
//"hdd-stack-fill": "\f410",
|
|
815
|
+
//"hdd-stack": "\f411",
|
|
816
|
+
//"hdd": "\f412",
|
|
817
|
+
//"headphones": "\f413",
|
|
818
|
+
//"headset": "\f414",
|
|
819
|
+
//"heart-fill": "\f415",
|
|
820
|
+
//"heart-half": "\f416",
|
|
821
|
+
//"heart": "\f417",
|
|
822
|
+
//"heptagon-fill": "\f418",
|
|
823
|
+
//"heptagon-half": "\f419",
|
|
824
|
+
//"heptagon": "\f41a",
|
|
825
|
+
//"hexagon-fill": "\f41b",
|
|
826
|
+
//"hexagon-half": "\f41c",
|
|
827
|
+
//"hexagon": "\f41d",
|
|
828
|
+
//"hourglass-bottom": "\f41e",
|
|
829
|
+
//"hourglass-split": "\f41f",
|
|
830
|
+
//"hourglass-top": "\f420",
|
|
831
|
+
//"hourglass": "\f421",
|
|
832
|
+
//"house-door-fill": "\f422",
|
|
833
|
+
//"house-door": "\f423",
|
|
834
|
+
//"house-fill": "\f424",
|
|
835
|
+
//"house": "\f425",
|
|
836
|
+
//"hr": "\f426",
|
|
837
|
+
//"hurricane": "\f427",
|
|
838
|
+
//"image-alt": "\f428",
|
|
839
|
+
//"image-fill": "\f429",
|
|
840
|
+
//"image": "\f42a",
|
|
841
|
+
//"images": "\f42b",
|
|
842
|
+
//"inbox-fill": "\f42c",
|
|
843
|
+
//"inbox": "\f42d",
|
|
844
|
+
//"inboxes-fill": "\f42e",
|
|
845
|
+
//"inboxes": "\f42f",
|
|
846
|
+
//"info-circle-fill": "\f430",
|
|
847
|
+
//"info-circle": "\f431",
|
|
848
|
+
//"info-square-fill": "\f432",
|
|
849
|
+
//"info-square": "\f433",
|
|
850
|
+
//"info": "\f434",
|
|
851
|
+
//"input-cursor-text": "\f435",
|
|
852
|
+
//"input-cursor": "\f436",
|
|
853
|
+
//"instagram": "\f437",
|
|
854
|
+
//"intersect": "\f438",
|
|
855
|
+
//"journal-album": "\f439",
|
|
856
|
+
//"journal-arrow-down": "\f43a",
|
|
857
|
+
//"journal-arrow-up": "\f43b",
|
|
858
|
+
//"journal-bookmark-fill": "\f43c",
|
|
859
|
+
//"journal-bookmark": "\f43d",
|
|
860
|
+
//"journal-check": "\f43e",
|
|
861
|
+
//"journal-code": "\f43f",
|
|
862
|
+
//"journal-medical": "\f440",
|
|
863
|
+
//"journal-minus": "\f441",
|
|
864
|
+
//"journal-plus": "\f442",
|
|
865
|
+
//"journal-richtext": "\f443",
|
|
866
|
+
//"journal-text": "\f444",
|
|
867
|
+
//"journal-x": "\f445",
|
|
868
|
+
//"journal": "\f446",
|
|
869
|
+
//"journals": "\f447",
|
|
870
|
+
//"joystick": "\f448",
|
|
871
|
+
//"justify-left": "\f449",
|
|
872
|
+
//"justify-right": "\f44a",
|
|
873
|
+
//"justify": "\f44b",
|
|
874
|
+
//"kanban-fill": "\f44c",
|
|
875
|
+
//"kanban": "\f44d",
|
|
876
|
+
//"key-fill": "\f44e",
|
|
877
|
+
//"key": "\f44f",
|
|
878
|
+
//"keyboard-fill": "\f450",
|
|
879
|
+
//"keyboard": "\f451",
|
|
880
|
+
//"ladder": "\f452",
|
|
881
|
+
//"lamp-fill": "\f453",
|
|
882
|
+
//"lamp": "\f454",
|
|
883
|
+
//"laptop-fill": "\f455",
|
|
884
|
+
//"laptop": "\f456",
|
|
885
|
+
//"layer-backward": "\f457",
|
|
886
|
+
//"layer-forward": "\f458",
|
|
887
|
+
//"layers-fill": "\f459",
|
|
888
|
+
//"layers-half": "\f45a",
|
|
889
|
+
//"layers": "\f45b",
|
|
890
|
+
//"layout-sidebar-inset-reverse": "\f45c",
|
|
891
|
+
//"layout-sidebar-inset": "\f45d",
|
|
892
|
+
//"layout-sidebar-reverse": "\f45e",
|
|
893
|
+
//"layout-sidebar": "\f45f",
|
|
894
|
+
//"layout-split": "\f460",
|
|
895
|
+
//"layout-text-sidebar-reverse": "\f461",
|
|
896
|
+
//"layout-text-sidebar": "\f462",
|
|
897
|
+
//"layout-text-window-reverse": "\f463",
|
|
898
|
+
//"layout-text-window": "\f464",
|
|
899
|
+
"layout-three-columns": "\f465",
|
|
900
|
+
//"layout-wtf": "\f466",
|
|
901
|
+
//"life-preserver": "\f467",
|
|
902
|
+
//"lightbulb-fill": "\f468",
|
|
903
|
+
//"lightbulb-off-fill": "\f469",
|
|
904
|
+
//"lightbulb-off": "\f46a",
|
|
905
|
+
//"lightbulb": "\f46b",
|
|
906
|
+
//"lightning-charge-fill": "\f46c",
|
|
907
|
+
//"lightning-charge": "\f46d",
|
|
908
|
+
//"lightning-fill": "\f46e",
|
|
909
|
+
//"lightning": "\f46f",
|
|
910
|
+
//"link-45deg": "\f470",
|
|
911
|
+
"link": "\f471",
|
|
912
|
+
//"linkedin": "\f472",
|
|
913
|
+
//"list-check": "\f473",
|
|
914
|
+
//"list-nested": "\f474",
|
|
915
|
+
//"list-ol": "\f475",
|
|
916
|
+
//"list-stars": "\f476",
|
|
917
|
+
//"list-task": "\f477",
|
|
918
|
+
//"list-ul": "\f478",
|
|
919
|
+
//"list": "\f479",
|
|
920
|
+
//"lock-fill": "\f47a",
|
|
921
|
+
"lock": "\f47b",
|
|
922
|
+
//"mailbox": "\f47c",
|
|
923
|
+
//"mailbox2": "\f47d",
|
|
924
|
+
//"map-fill": "\f47e",
|
|
925
|
+
//"map": "\f47f",
|
|
926
|
+
//"markdown-fill": "\f480",
|
|
927
|
+
//"markdown": "\f481",
|
|
928
|
+
//"mask": "\f482",
|
|
929
|
+
//"megaphone-fill": "\f483",
|
|
930
|
+
//"megaphone": "\f484",
|
|
931
|
+
//"menu-app-fill": "\f485",
|
|
932
|
+
//"menu-app": "\f486",
|
|
933
|
+
//"menu-button-fill": "\f487",
|
|
934
|
+
//"menu-button-wide-fill": "\f488",
|
|
935
|
+
//"menu-button-wide": "\f489",
|
|
936
|
+
//"menu-button": "\f48a",
|
|
937
|
+
//"menu-down": "\f48b",
|
|
938
|
+
//"menu-up": "\f48c",
|
|
939
|
+
//"mic-fill": "\f48d",
|
|
940
|
+
//"mic-mute-fill": "\f48e",
|
|
941
|
+
//"mic-mute": "\f48f",
|
|
942
|
+
//"mic": "\f490",
|
|
943
|
+
//"minecart-loaded": "\f491",
|
|
944
|
+
//"minecart": "\f492",
|
|
945
|
+
//"moisture": "\f493",
|
|
946
|
+
//"moon-fill": "\f494",
|
|
947
|
+
//"moon-stars-fill": "\f495",
|
|
948
|
+
//"moon-stars": "\f496",
|
|
949
|
+
//"moon": "\f497",
|
|
950
|
+
//"mouse-fill": "\f498",
|
|
951
|
+
//"mouse": "\f499",
|
|
952
|
+
//"mouse2-fill": "\f49a",
|
|
953
|
+
//"mouse2": "\f49b",
|
|
954
|
+
//"mouse3-fill": "\f49c",
|
|
955
|
+
//"mouse3": "\f49d",
|
|
956
|
+
//"music-note-beamed": "\f49e",
|
|
957
|
+
//"music-note-list": "\f49f",
|
|
958
|
+
//"music-note": "\f4a0",
|
|
959
|
+
//"music-player-fill": "\f4a1",
|
|
960
|
+
//"music-player": "\f4a2",
|
|
961
|
+
//"newspaper": "\f4a3",
|
|
962
|
+
//"node-minus-fill": "\f4a4",
|
|
963
|
+
//"node-minus": "\f4a5",
|
|
964
|
+
//"node-plus-fill": "\f4a6",
|
|
965
|
+
//"node-plus": "\f4a7",
|
|
966
|
+
//"nut-fill": "\f4a8",
|
|
967
|
+
//"nut": "\f4a9",
|
|
968
|
+
//"octagon-fill": "\f4aa",
|
|
969
|
+
//"octagon-half": "\f4ab",
|
|
970
|
+
//"octagon": "\f4ac",
|
|
971
|
+
//"option": "\f4ad",
|
|
972
|
+
//"outlet": "\f4ae",
|
|
973
|
+
//"paint-bucket": "\f4af",
|
|
974
|
+
//"palette-fill": "\f4b0",
|
|
975
|
+
//"palette": "\f4b1",
|
|
976
|
+
//"palette2": "\f4b2",
|
|
977
|
+
//"paperclip": "\f4b3",
|
|
978
|
+
//"paragraph": "\f4b4",
|
|
979
|
+
//"patch-check-fill": "\f4b5",
|
|
980
|
+
"patch-check": "\f4b6",
|
|
981
|
+
//"patch-exclamation-fill": "\f4b7",
|
|
982
|
+
//"patch-exclamation": "\f4b8",
|
|
983
|
+
//"patch-minus-fill": "\f4b9",
|
|
984
|
+
//"patch-minus": "\f4ba",
|
|
985
|
+
//"patch-plus-fill": "\f4bb",
|
|
986
|
+
//"patch-plus": "\f4bc",
|
|
987
|
+
//"patch-question-fill": "\f4bd",
|
|
988
|
+
//"patch-question": "\f4be",
|
|
989
|
+
//"pause-btn-fill": "\f4bf",
|
|
990
|
+
//"pause-btn": "\f4c0",
|
|
991
|
+
//"pause-circle-fill": "\f4c1",
|
|
992
|
+
//"pause-circle": "\f4c2",
|
|
993
|
+
//"pause-fill": "\f4c3",
|
|
994
|
+
//"pause": "\f4c4",
|
|
995
|
+
//"peace-fill": "\f4c5",
|
|
996
|
+
//"peace": "\f4c6",
|
|
997
|
+
//"pen-fill": "\f4c7",
|
|
998
|
+
//"pen": "\f4c8",
|
|
999
|
+
//"pencil-fill": "\f4c9",
|
|
1000
|
+
//"pencil-square": "\f4ca",
|
|
1001
|
+
//"pencil": "\f4cb",
|
|
1002
|
+
//"pentagon-fill": "\f4cc",
|
|
1003
|
+
//"pentagon-half": "\f4cd",
|
|
1004
|
+
//"pentagon": "\f4ce",
|
|
1005
|
+
//"people-fill": "\f4cf",
|
|
1006
|
+
//"people": "\f4d0",
|
|
1007
|
+
//"percent": "\f4d1",
|
|
1008
|
+
//"person-badge-fill": "\f4d2",
|
|
1009
|
+
//"person-badge": "\f4d3",
|
|
1010
|
+
//"person-bounding-box": "\f4d4",
|
|
1011
|
+
//"person-check-fill": "\f4d5",
|
|
1012
|
+
//"person-check": "\f4d6",
|
|
1013
|
+
//"person-circle": "\f4d7",
|
|
1014
|
+
//"person-dash-fill": "\f4d8",
|
|
1015
|
+
//"person-dash": "\f4d9",
|
|
1016
|
+
//"person-fill": "\f4da",
|
|
1017
|
+
//"person-lines-fill": "\f4db",
|
|
1018
|
+
//"person-plus-fill": "\f4dc",
|
|
1019
|
+
//"person-plus": "\f4dd",
|
|
1020
|
+
//"person-square": "\f4de",
|
|
1021
|
+
//"person-x-fill": "\f4df",
|
|
1022
|
+
//"person-x": "\f4e0",
|
|
1023
|
+
"person": "\f4e1",
|
|
1024
|
+
//"phone-fill": "\f4e2",
|
|
1025
|
+
//"phone-landscape-fill": "\f4e3",
|
|
1026
|
+
//"phone-landscape": "\f4e4",
|
|
1027
|
+
//"phone-vibrate-fill": "\f4e5",
|
|
1028
|
+
//"phone-vibrate": "\f4e6",
|
|
1029
|
+
//"phone": "\f4e7",
|
|
1030
|
+
//"pie-chart-fill": "\f4e8",
|
|
1031
|
+
//"pie-chart": "\f4e9",
|
|
1032
|
+
//"pin-angle-fill": "\f4ea",
|
|
1033
|
+
//"pin-angle": "\f4eb",
|
|
1034
|
+
"pin-fill": "\f4ec",
|
|
1035
|
+
"pin": "\f4ed",
|
|
1036
|
+
//"pip-fill": "\f4ee",
|
|
1037
|
+
//"pip": "\f4ef",
|
|
1038
|
+
//"play-btn-fill": "\f4f0",
|
|
1039
|
+
//"play-btn": "\f4f1",
|
|
1040
|
+
//"play-circle-fill": "\f4f2",
|
|
1041
|
+
//"play-circle": "\f4f3",
|
|
1042
|
+
//"play-fill": "\f4f4",
|
|
1043
|
+
//"play": "\f4f5",
|
|
1044
|
+
//"plug-fill": "\f4f6",
|
|
1045
|
+
//"plug": "\f4f7",
|
|
1046
|
+
//"plus-circle-dotted": "\f4f8",
|
|
1047
|
+
//"plus-circle-fill": "\f4f9",
|
|
1048
|
+
//"plus-circle": "\f4fa",
|
|
1049
|
+
//"plus-square-dotted": "\f4fb",
|
|
1050
|
+
//"plus-square-fill": "\f4fc",
|
|
1051
|
+
//"plus-square": "\f4fd",
|
|
1052
|
+
"plus": "\f4fe",
|
|
1053
|
+
//"power": "\f4ff",
|
|
1054
|
+
//"printer-fill": "\f500",
|
|
1055
|
+
//"printer": "\f501",
|
|
1056
|
+
//"puzzle-fill": "\f502",
|
|
1057
|
+
//"puzzle": "\f503",
|
|
1058
|
+
//"question-circle-fill": "\f504",
|
|
1059
|
+
//"question-circle": "\f505",
|
|
1060
|
+
//"question-diamond-fill": "\f506",
|
|
1061
|
+
//"question-diamond": "\f507",
|
|
1062
|
+
//"question-octagon-fill": "\f508",
|
|
1063
|
+
//"question-octagon": "\f509",
|
|
1064
|
+
//"question-square-fill": "\f50a",
|
|
1065
|
+
//"question-square": "\f50b",
|
|
1066
|
+
//"question": "\f50c",
|
|
1067
|
+
//"rainbow": "\f50d",
|
|
1068
|
+
//"receipt-cutoff": "\f50e",
|
|
1069
|
+
//"receipt": "\f50f",
|
|
1070
|
+
//"reception-0": "\f510",
|
|
1071
|
+
//"reception-1": "\f511",
|
|
1072
|
+
//"reception-2": "\f512",
|
|
1073
|
+
//"reception-3": "\f513",
|
|
1074
|
+
//"reception-4": "\f514",
|
|
1075
|
+
//"record-btn-fill": "\f515",
|
|
1076
|
+
//"record-btn": "\f516",
|
|
1077
|
+
//"record-circle-fill": "\f517",
|
|
1078
|
+
//"record-circle": "\f518",
|
|
1079
|
+
//"record-fill": "\f519",
|
|
1080
|
+
//"record": "\f51a",
|
|
1081
|
+
//"record2-fill": "\f51b",
|
|
1082
|
+
//"record2": "\f51c",
|
|
1083
|
+
//"reply-all-fill": "\f51d",
|
|
1084
|
+
//"reply-all": "\f51e",
|
|
1085
|
+
//"reply-fill": "\f51f",
|
|
1086
|
+
//"reply": "\f520",
|
|
1087
|
+
//"rss-fill": "\f521",
|
|
1088
|
+
//"rss": "\f522",
|
|
1089
|
+
//"rulers": "\f523",
|
|
1090
|
+
//"save-fill": "\f524",
|
|
1091
|
+
//"save": "\f525",
|
|
1092
|
+
//"save2-fill": "\f526",
|
|
1093
|
+
//"save2": "\f527",
|
|
1094
|
+
//"scissors": "\f528",
|
|
1095
|
+
//"screwdriver": "\f529",
|
|
1096
|
+
//"search": "\f52a",
|
|
1097
|
+
//"segmented-nav": "\f52b",
|
|
1098
|
+
//"server": "\f52c",
|
|
1099
|
+
//"share-fill": "\f52d",
|
|
1100
|
+
//"share": "\f52e",
|
|
1101
|
+
//"shield-check": "\f52f",
|
|
1102
|
+
//"shield-exclamation": "\f530",
|
|
1103
|
+
//"shield-fill-check": "\f531",
|
|
1104
|
+
//"shield-fill-exclamation": "\f532",
|
|
1105
|
+
//"shield-fill-minus": "\f533",
|
|
1106
|
+
//"shield-fill-plus": "\f534",
|
|
1107
|
+
//"shield-fill-x": "\f535",
|
|
1108
|
+
//"shield-fill": "\f536",
|
|
1109
|
+
//"shield-lock-fill": "\f537",
|
|
1110
|
+
//"shield-lock": "\f538",
|
|
1111
|
+
//"shield-minus": "\f539",
|
|
1112
|
+
//"shield-plus": "\f53a",
|
|
1113
|
+
//"shield-shaded": "\f53b",
|
|
1114
|
+
//"shield-slash-fill": "\f53c",
|
|
1115
|
+
//"shield-slash": "\f53d",
|
|
1116
|
+
//"shield-x": "\f53e",
|
|
1117
|
+
//"shield": "\f53f",
|
|
1118
|
+
//"shift-fill": "\f540",
|
|
1119
|
+
//"shift": "\f541",
|
|
1120
|
+
//"shop-window": "\f542",
|
|
1121
|
+
//"shop": "\f543",
|
|
1122
|
+
//"shuffle": "\f544",
|
|
1123
|
+
//"signpost-2-fill": "\f545",
|
|
1124
|
+
//"signpost-2": "\f546",
|
|
1125
|
+
//"signpost-fill": "\f547",
|
|
1126
|
+
//"signpost-split-fill": "\f548",
|
|
1127
|
+
//"signpost-split": "\f549",
|
|
1128
|
+
//"signpost": "\f54a",
|
|
1129
|
+
//"sim-fill": "\f54b",
|
|
1130
|
+
//"sim": "\f54c",
|
|
1131
|
+
//"skip-backward-btn-fill": "\f54d",
|
|
1132
|
+
//"skip-backward-btn": "\f54e",
|
|
1133
|
+
//"skip-backward-circle-fill": "\f54f",
|
|
1134
|
+
//"skip-backward-circle": "\f550",
|
|
1135
|
+
//"skip-backward-fill": "\f551",
|
|
1136
|
+
//"skip-backward": "\f552",
|
|
1137
|
+
//"skip-end-btn-fill": "\f553",
|
|
1138
|
+
//"skip-end-btn": "\f554",
|
|
1139
|
+
//"skip-end-circle-fill": "\f555",
|
|
1140
|
+
//"skip-end-circle": "\f556",
|
|
1141
|
+
//"skip-end-fill": "\f557",
|
|
1142
|
+
//"skip-end": "\f558",
|
|
1143
|
+
//"skip-forward-btn-fill": "\f559",
|
|
1144
|
+
//"skip-forward-btn": "\f55a",
|
|
1145
|
+
//"skip-forward-circle-fill": "\f55b",
|
|
1146
|
+
//"skip-forward-circle": "\f55c",
|
|
1147
|
+
//"skip-forward-fill": "\f55d",
|
|
1148
|
+
//"skip-forward": "\f55e",
|
|
1149
|
+
//"skip-start-btn-fill": "\f55f",
|
|
1150
|
+
//"skip-start-btn": "\f560",
|
|
1151
|
+
//"skip-start-circle-fill": "\f561",
|
|
1152
|
+
//"skip-start-circle": "\f562",
|
|
1153
|
+
//"skip-start-fill": "\f563",
|
|
1154
|
+
//"skip-start": "\f564",
|
|
1155
|
+
//"slack": "\f565",
|
|
1156
|
+
//"slash-circle-fill": "\f566",
|
|
1157
|
+
//"slash-circle": "\f567",
|
|
1158
|
+
//"slash-square-fill": "\f568",
|
|
1159
|
+
//"slash-square": "\f569",
|
|
1160
|
+
//"slash": "\f56a",
|
|
1161
|
+
//"sliders": "\f56b",
|
|
1162
|
+
//"smartwatch": "\f56c",
|
|
1163
|
+
//"snow": "\f56d",
|
|
1164
|
+
//"snow2": "\f56e",
|
|
1165
|
+
//"snow3": "\f56f",
|
|
1166
|
+
//"sort-alpha-down-alt": "\f570",
|
|
1167
|
+
//"sort-alpha-down": "\f571",
|
|
1168
|
+
//"sort-alpha-up-alt": "\f572",
|
|
1169
|
+
//"sort-alpha-up": "\f573",
|
|
1170
|
+
//"sort-down-alt": "\f574",
|
|
1171
|
+
//"sort-down": "\f575",
|
|
1172
|
+
//"sort-numeric-down-alt": "\f576",
|
|
1173
|
+
//"sort-numeric-down": "\f577",
|
|
1174
|
+
//"sort-numeric-up-alt": "\f578",
|
|
1175
|
+
//"sort-numeric-up": "\f579",
|
|
1176
|
+
//"sort-up-alt": "\f57a",
|
|
1177
|
+
//"sort-up": "\f57b",
|
|
1178
|
+
//"soundwave": "\f57c",
|
|
1179
|
+
//"speaker-fill": "\f57d",
|
|
1180
|
+
//"speaker": "\f57e",
|
|
1181
|
+
//"speedometer": "\f57f",
|
|
1182
|
+
//"speedometer2": "\f580",
|
|
1183
|
+
//"spellcheck": "\f581",
|
|
1184
|
+
//"square-fill": "\f582",
|
|
1185
|
+
//"square-half": "\f583",
|
|
1186
|
+
//"square": "\f584",
|
|
1187
|
+
//"stack": "\f585",
|
|
1188
|
+
//"star-fill": "\f586",
|
|
1189
|
+
//"star-half": "\f587",
|
|
1190
|
+
//"star": "\f588",
|
|
1191
|
+
//"stars": "\f589",
|
|
1192
|
+
//"stickies-fill": "\f58a",
|
|
1193
|
+
//"stickies": "\f58b",
|
|
1194
|
+
//"sticky-fill": "\f58c",
|
|
1195
|
+
//"sticky": "\f58d",
|
|
1196
|
+
//"stop-btn-fill": "\f58e",
|
|
1197
|
+
//"stop-btn": "\f58f",
|
|
1198
|
+
//"stop-circle-fill": "\f590",
|
|
1199
|
+
//"stop-circle": "\f591",
|
|
1200
|
+
//"stop-fill": "\f592",
|
|
1201
|
+
//"stop": "\f593",
|
|
1202
|
+
//"stoplights-fill": "\f594",
|
|
1203
|
+
//"stoplights": "\f595",
|
|
1204
|
+
//"stopwatch-fill": "\f596",
|
|
1205
|
+
//"stopwatch": "\f597",
|
|
1206
|
+
//"subtract": "\f598",
|
|
1207
|
+
//"suit-club-fill": "\f599",
|
|
1208
|
+
//"suit-club": "\f59a",
|
|
1209
|
+
//"suit-diamond-fill": "\f59b",
|
|
1210
|
+
//"suit-diamond": "\f59c",
|
|
1211
|
+
//"suit-heart-fill": "\f59d",
|
|
1212
|
+
//"suit-heart": "\f59e",
|
|
1213
|
+
//"suit-spade-fill": "\f59f",
|
|
1214
|
+
//"suit-spade": "\f5a0",
|
|
1215
|
+
//"sun-fill": "\f5a1",
|
|
1216
|
+
//"sun": "\f5a2",
|
|
1217
|
+
//"sunglasses": "\f5a3",
|
|
1218
|
+
//"sunrise-fill": "\f5a4",
|
|
1219
|
+
//"sunrise": "\f5a5",
|
|
1220
|
+
//"sunset-fill": "\f5a6",
|
|
1221
|
+
//"sunset": "\f5a7",
|
|
1222
|
+
//"symmetry-horizontal": "\f5a8",
|
|
1223
|
+
//"symmetry-vertical": "\f5a9",
|
|
1224
|
+
//"table": "\f5aa",
|
|
1225
|
+
//"tablet-fill": "\f5ab",
|
|
1226
|
+
//"tablet-landscape-fill": "\f5ac",
|
|
1227
|
+
//"tablet-landscape": "\f5ad",
|
|
1228
|
+
//"tablet": "\f5ae",
|
|
1229
|
+
//"tag-fill": "\f5af",
|
|
1230
|
+
//"tag": "\f5b0",
|
|
1231
|
+
//"tags-fill": "\f5b1",
|
|
1232
|
+
//"tags": "\f5b2",
|
|
1233
|
+
//"telegram": "\f5b3",
|
|
1234
|
+
//"telephone-fill": "\f5b4",
|
|
1235
|
+
//"telephone-forward-fill": "\f5b5",
|
|
1236
|
+
//"telephone-forward": "\f5b6",
|
|
1237
|
+
//"telephone-inbound-fill": "\f5b7",
|
|
1238
|
+
//"telephone-inbound": "\f5b8",
|
|
1239
|
+
//"telephone-minus-fill": "\f5b9",
|
|
1240
|
+
//"telephone-minus": "\f5ba",
|
|
1241
|
+
//"telephone-outbound-fill": "\f5bb",
|
|
1242
|
+
//"telephone-outbound": "\f5bc",
|
|
1243
|
+
//"telephone-plus-fill": "\f5bd",
|
|
1244
|
+
//"telephone-plus": "\f5be",
|
|
1245
|
+
//"telephone-x-fill": "\f5bf",
|
|
1246
|
+
//"telephone-x": "\f5c0",
|
|
1247
|
+
//"telephone": "\f5c1",
|
|
1248
|
+
//"terminal-fill": "\f5c2",
|
|
1249
|
+
//"terminal": "\f5c3",
|
|
1250
|
+
//"text-center": "\f5c4",
|
|
1251
|
+
//"text-indent-left": "\f5c5",
|
|
1252
|
+
//"text-indent-right": "\f5c6",
|
|
1253
|
+
//"text-left": "\f5c7",
|
|
1254
|
+
//"text-paragraph": "\f5c8",
|
|
1255
|
+
//"text-right": "\f5c9",
|
|
1256
|
+
//"textarea-resize": "\f5ca",
|
|
1257
|
+
//"textarea-t": "\f5cb",
|
|
1258
|
+
//"textarea": "\f5cc",
|
|
1259
|
+
//"thermometer-half": "\f5cd",
|
|
1260
|
+
//"thermometer-high": "\f5ce",
|
|
1261
|
+
//"thermometer-low": "\f5cf",
|
|
1262
|
+
//"thermometer-snow": "\f5d0",
|
|
1263
|
+
//"thermometer-sun": "\f5d1",
|
|
1264
|
+
//"thermometer": "\f5d2",
|
|
1265
|
+
//"three-dots-vertical": "\f5d3",
|
|
1266
|
+
//"three-dots": "\f5d4",
|
|
1267
|
+
//"toggle-off": "\f5d5",
|
|
1268
|
+
//"toggle-on": "\f5d6",
|
|
1269
|
+
//"toggle2-off": "\f5d7",
|
|
1270
|
+
//"toggle2-on": "\f5d8",
|
|
1271
|
+
//"toggles": "\f5d9",
|
|
1272
|
+
//"toggles2": "\f5da",
|
|
1273
|
+
//"tools": "\f5db",
|
|
1274
|
+
//"tornado": "\f5dc",
|
|
1275
|
+
//"trash-fill": "\f5dd",
|
|
1276
|
+
"trash": "\f5de",
|
|
1277
|
+
//"trash2-fill": "\f5df",
|
|
1278
|
+
//"trash2": "\f5e0",
|
|
1279
|
+
//"tree-fill": "\f5e1",
|
|
1280
|
+
//"tree": "\f5e2",
|
|
1281
|
+
//"triangle-fill": "\f5e3",
|
|
1282
|
+
//"triangle-half": "\f5e4",
|
|
1283
|
+
//"triangle": "\f5e5",
|
|
1284
|
+
//"trophy-fill": "\f5e6",
|
|
1285
|
+
//"trophy": "\f5e7",
|
|
1286
|
+
//"tropical-storm": "\f5e8",
|
|
1287
|
+
//"truck-flatbed": "\f5e9",
|
|
1288
|
+
//"truck": "\f5ea",
|
|
1289
|
+
//"tsunami": "\f5eb",
|
|
1290
|
+
//"tv-fill": "\f5ec",
|
|
1291
|
+
//"tv": "\f5ed",
|
|
1292
|
+
//"twitch": "\f5ee",
|
|
1293
|
+
//"twitter": "\f5ef",
|
|
1294
|
+
//"type-bold": "\f5f0",
|
|
1295
|
+
//"type-h1": "\f5f1",
|
|
1296
|
+
//"type-h2": "\f5f2",
|
|
1297
|
+
//"type-h3": "\f5f3",
|
|
1298
|
+
//"type-italic": "\f5f4",
|
|
1299
|
+
//"type-strikethrough": "\f5f5",
|
|
1300
|
+
//"type-underline": "\f5f6",
|
|
1301
|
+
//"type": "\f5f7",
|
|
1302
|
+
//"ui-checks-grid": "\f5f8",
|
|
1303
|
+
//"ui-checks": "\f5f9",
|
|
1304
|
+
//"ui-radios-grid": "\f5fa",
|
|
1305
|
+
//"ui-radios": "\f5fb",
|
|
1306
|
+
//"umbrella-fill": "\f5fc",
|
|
1307
|
+
//"umbrella": "\f5fd",
|
|
1308
|
+
//"union": "\f5fe",
|
|
1309
|
+
//"unlock-fill": "\f5ff",
|
|
1310
|
+
//"unlock": "\f600",
|
|
1311
|
+
//"upc-scan": "\f601",
|
|
1312
|
+
//"upc": "\f602",
|
|
1313
|
+
//"upload": "\f603",
|
|
1314
|
+
//"vector-pen": "\f604",
|
|
1315
|
+
//"view-list": "\f605",
|
|
1316
|
+
//"view-stacked": "\f606",
|
|
1317
|
+
//"vinyl-fill": "\f607",
|
|
1318
|
+
//"vinyl": "\f608",
|
|
1319
|
+
//"voicemail": "\f609",
|
|
1320
|
+
//"volume-down-fill": "\f60a",
|
|
1321
|
+
//"volume-down": "\f60b",
|
|
1322
|
+
//"volume-mute-fill": "\f60c",
|
|
1323
|
+
//"volume-mute": "\f60d",
|
|
1324
|
+
//"volume-off-fill": "\f60e",
|
|
1325
|
+
//"volume-off": "\f60f",
|
|
1326
|
+
//"volume-up-fill": "\f610",
|
|
1327
|
+
//"volume-up": "\f611",
|
|
1328
|
+
//"vr": "\f612",
|
|
1329
|
+
//"wallet-fill": "\f613",
|
|
1330
|
+
//"wallet": "\f614",
|
|
1331
|
+
//"wallet2": "\f615",
|
|
1332
|
+
//"watch": "\f616",
|
|
1333
|
+
//"water": "\f617",
|
|
1334
|
+
//"whatsapp": "\f618",
|
|
1335
|
+
//"wifi-1": "\f619",
|
|
1336
|
+
//"wifi-2": "\f61a",
|
|
1337
|
+
//"wifi-off": "\f61b",
|
|
1338
|
+
//"wifi": "\f61c",
|
|
1339
|
+
//"wind": "\f61d",
|
|
1340
|
+
//"window-dock": "\f61e",
|
|
1341
|
+
//"window-sidebar": "\f61f",
|
|
1342
|
+
//"window": "\f620",
|
|
1343
|
+
//"wrench": "\f621",
|
|
1344
|
+
//"x-circle-fill": "\f622",
|
|
1345
|
+
//"x-circle": "\f623",
|
|
1346
|
+
//"x-diamond-fill": "\f624",
|
|
1347
|
+
//"x-diamond": "\f625",
|
|
1348
|
+
//"x-octagon-fill": "\f626",
|
|
1349
|
+
//"x-octagon": "\f627",
|
|
1350
|
+
//"x-square-fill": "\f628",
|
|
1351
|
+
//"x-square": "\f629",
|
|
1352
|
+
//"x": "\f62a",
|
|
1353
|
+
//"youtube": "\f62b",
|
|
1354
|
+
//"zoom-in": "\f62c",
|
|
1355
|
+
//"zoom-out": "\f62d",
|
|
1356
|
+
//"bank": "\f62e",
|
|
1357
|
+
//"bank2": "\f62f",
|
|
1358
|
+
//"bell-slash-fill": "\f630",
|
|
1359
|
+
//"bell-slash": "\f631",
|
|
1360
|
+
//"cash-coin": "\f632",
|
|
1361
|
+
//"check-lg": "\f633",
|
|
1362
|
+
//"coin": "\f634",
|
|
1363
|
+
//"currency-bitcoin": "\f635",
|
|
1364
|
+
//"currency-dollar": "\f636",
|
|
1365
|
+
//"currency-euro": "\f637",
|
|
1366
|
+
//"currency-exchange": "\f638",
|
|
1367
|
+
//"currency-pound": "\f639",
|
|
1368
|
+
//"currency-yen": "\f63a",
|
|
1369
|
+
//"dash-lg": "\f63b",
|
|
1370
|
+
//"exclamation-lg": "\f63c",
|
|
1371
|
+
//"file-earmark-pdf-fill": "\f63d",
|
|
1372
|
+
//"file-earmark-pdf": "\f63e",
|
|
1373
|
+
//"file-pdf-fill": "\f63f",
|
|
1374
|
+
//"file-pdf": "\f640",
|
|
1375
|
+
//"gender-ambiguous": "\f641",
|
|
1376
|
+
//"gender-female": "\f642",
|
|
1377
|
+
//"gender-male": "\f643",
|
|
1378
|
+
//"gender-trans": "\f644",
|
|
1379
|
+
//"headset-vr": "\f645",
|
|
1380
|
+
//"info-lg": "\f646",
|
|
1381
|
+
//"mastodon": "\f647",
|
|
1382
|
+
//"messenger": "\f648",
|
|
1383
|
+
//"piggy-bank-fill": "\f649",
|
|
1384
|
+
//"piggy-bank": "\f64a",
|
|
1385
|
+
//"pin-map-fill": "\f64b",
|
|
1386
|
+
//"pin-map": "\f64c",
|
|
1387
|
+
//"plus-lg": "\f64d",
|
|
1388
|
+
//"question-lg": "\f64e",
|
|
1389
|
+
//"recycle": "\f64f",
|
|
1390
|
+
//"reddit": "\f650",
|
|
1391
|
+
//"safe-fill": "\f651",
|
|
1392
|
+
//"safe2-fill": "\f652",
|
|
1393
|
+
//"safe2": "\f653",
|
|
1394
|
+
//"sd-card-fill": "\f654",
|
|
1395
|
+
//"sd-card": "\f655",
|
|
1396
|
+
//"skype": "\f656",
|
|
1397
|
+
//"slash-lg": "\f657",
|
|
1398
|
+
//"translate": "\f658",
|
|
1399
|
+
//"x-lg": "\f659",
|
|
1400
|
+
//"safe": "\f65a",
|
|
1401
|
+
//"apple": "\f65b",
|
|
1402
|
+
//"microsoft": "\f65d",
|
|
1403
|
+
//"windows": "\f65e",
|
|
1404
|
+
//"behance": "\f65c",
|
|
1405
|
+
//"dribbble": "\f65f",
|
|
1406
|
+
//"line": "\f660",
|
|
1407
|
+
//"medium": "\f661",
|
|
1408
|
+
//"paypal": "\f662",
|
|
1409
|
+
//"pinterest": "\f663",
|
|
1410
|
+
//"signal": "\f664",
|
|
1411
|
+
//"snapchat": "\f665",
|
|
1412
|
+
//"spotify": "\f666",
|
|
1413
|
+
//"stack-overflow": "\f667",
|
|
1414
|
+
//"strava": "\f668",
|
|
1415
|
+
//"wordpress": "\f669",
|
|
1416
|
+
//"vimeo": "\f66a",
|
|
1417
|
+
//"activity": "\f66b",
|
|
1418
|
+
//"easel2-fill": "\f66c",
|
|
1419
|
+
//"easel2": "\f66d",
|
|
1420
|
+
//"easel3-fill": "\f66e",
|
|
1421
|
+
//"easel3": "\f66f",
|
|
1422
|
+
//"fan": "\f670",
|
|
1423
|
+
//"fingerprint": "\f671",
|
|
1424
|
+
//"graph-down-arrow": "\f672",
|
|
1425
|
+
//"graph-up-arrow": "\f673",
|
|
1426
|
+
//"hypnotize": "\f674",
|
|
1427
|
+
//"magic": "\f675",
|
|
1428
|
+
//"person-rolodex": "\f676",
|
|
1429
|
+
//"person-video": "\f677",
|
|
1430
|
+
//"person-video2": "\f678",
|
|
1431
|
+
//"person-video3": "\f679",
|
|
1432
|
+
//"person-workspace": "\f67a",
|
|
1433
|
+
//"radioactive": "\f67b",
|
|
1434
|
+
//"webcam-fill": "\f67c",
|
|
1435
|
+
//"webcam": "\f67d",
|
|
1436
|
+
//"yin-yang": "\f67e",
|
|
1437
|
+
//"bandaid-fill": "\f680",
|
|
1438
|
+
//"bandaid": "\f681",
|
|
1439
|
+
//"bluetooth": "\f682",
|
|
1440
|
+
//"body-text": "\f683",
|
|
1441
|
+
//"boombox": "\f684",
|
|
1442
|
+
//"aggregate": "\f685",//"boxes": "\f685",
|
|
1443
|
+
//"dpad-fill": "\f686",
|
|
1444
|
+
//"dpad": "\f687",
|
|
1445
|
+
//"ear-fill": "\f688",
|
|
1446
|
+
//"ear": "\f689",
|
|
1447
|
+
//"envelope-check-fill": "\f68b",
|
|
1448
|
+
//"envelope-check": "\f68c",
|
|
1449
|
+
//"envelope-dash-fill": "\f68e",
|
|
1450
|
+
//"envelope-dash": "\f68f",
|
|
1451
|
+
//"envelope-exclamation-fill": "\f691",
|
|
1452
|
+
//"envelope-exclamation": "\f692",
|
|
1453
|
+
//"envelope-plus-fill": "\f693",
|
|
1454
|
+
//"envelope-plus": "\f694",
|
|
1455
|
+
//"envelope-slash-fill": "\f696",
|
|
1456
|
+
//"envelope-slash": "\f697",
|
|
1457
|
+
//"envelope-x-fill": "\f699",
|
|
1458
|
+
//"envelope-x": "\f69a",
|
|
1459
|
+
//"explicit-fill": "\f69b",
|
|
1460
|
+
//"explicit": "\f69c",
|
|
1461
|
+
//"git": "\f69d",
|
|
1462
|
+
//"infinity": "\f69e",
|
|
1463
|
+
//"list-columns-reverse": "\f69f",
|
|
1464
|
+
//"list-columns": "\f6a0",
|
|
1465
|
+
//"meta": "\f6a1",
|
|
1466
|
+
//"nintendo-switch": "\f6a4",
|
|
1467
|
+
//"pc-display-horizontal": "\f6a5",
|
|
1468
|
+
//"pc-display": "\f6a6",
|
|
1469
|
+
//"pc-horizontal": "\f6a7",
|
|
1470
|
+
//"pc": "\f6a8",
|
|
1471
|
+
//"playstation": "\f6a9",
|
|
1472
|
+
//"plus-slash-minus": "\f6aa",
|
|
1473
|
+
//"projector-fill": "\f6ab",
|
|
1474
|
+
//"projector": "\f6ac",
|
|
1475
|
+
//"qr-code-scan": "\f6ad",
|
|
1476
|
+
//"qr-code": "\f6ae",
|
|
1477
|
+
//"quora": "\f6af",
|
|
1478
|
+
//"quote": "\f6b0",
|
|
1479
|
+
//"robot": "\f6b1",
|
|
1480
|
+
//"send-check-fill": "\f6b2",
|
|
1481
|
+
//"send-check": "\f6b3",
|
|
1482
|
+
//"send-dash-fill": "\f6b4",
|
|
1483
|
+
//"send-dash": "\f6b5",
|
|
1484
|
+
//"send-exclamation-fill": "\f6b7",
|
|
1485
|
+
//"send-exclamation": "\f6b8",
|
|
1486
|
+
//"send-fill": "\f6b9",
|
|
1487
|
+
//"send-plus-fill": "\f6ba",
|
|
1488
|
+
//"send-plus": "\f6bb",
|
|
1489
|
+
//"send-slash-fill": "\f6bc",
|
|
1490
|
+
//"send-slash": "\f6bd",
|
|
1491
|
+
//"send-x-fill": "\f6be",
|
|
1492
|
+
//"send-x": "\f6bf",
|
|
1493
|
+
//"send": "\f6c0",
|
|
1494
|
+
//"steam": "\f6c1",
|
|
1495
|
+
//"terminal-dash": "\f6c3",
|
|
1496
|
+
//"terminal-plus": "\f6c4",
|
|
1497
|
+
//"terminal-split": "\f6c5",
|
|
1498
|
+
//"ticket-detailed-fill": "\f6c6",
|
|
1499
|
+
//"ticket-detailed": "\f6c7",
|
|
1500
|
+
//"ticket-fill": "\f6c8",
|
|
1501
|
+
//"ticket-perforated-fill": "\f6c9",
|
|
1502
|
+
//"ticket-perforated": "\f6ca",
|
|
1503
|
+
//"ticket": "\f6cb",
|
|
1504
|
+
//"tiktok": "\f6cc",
|
|
1505
|
+
//"window-dash": "\f6cd",
|
|
1506
|
+
//"window-desktop": "\f6ce",
|
|
1507
|
+
//"window-fullscreen": "\f6cf",
|
|
1508
|
+
//"window-plus": "\f6d0",
|
|
1509
|
+
//"window-split": "\f6d1",
|
|
1510
|
+
//"window-stack": "\f6d2",
|
|
1511
|
+
//"window-x": "\f6d3",
|
|
1512
|
+
//"xbox": "\f6d4",
|
|
1513
|
+
//"ethernet": "\f6d5",
|
|
1514
|
+
//"hdmi-fill": "\f6d6",
|
|
1515
|
+
//"hdmi": "\f6d7",
|
|
1516
|
+
//"usb-c-fill": "\f6d8",
|
|
1517
|
+
//"usb-c": "\f6d9",
|
|
1518
|
+
//"usb-fill": "\f6da",
|
|
1519
|
+
//"usb-plug-fill": "\f6db",
|
|
1520
|
+
//"usb-plug": "\f6dc",
|
|
1521
|
+
//"usb-symbol": "\f6dd",
|
|
1522
|
+
//"usb": "\f6de",
|
|
1523
|
+
//"boombox-fill": "\f6df",
|
|
1524
|
+
//"displayport": "\f6e1",
|
|
1525
|
+
//"gpu-card": "\f6e2",
|
|
1526
|
+
//"memory": "\f6e3",
|
|
1527
|
+
//"modem-fill": "\f6e4",
|
|
1528
|
+
//"modem": "\f6e5",
|
|
1529
|
+
//"motherboard-fill": "\f6e6",
|
|
1530
|
+
//"motherboard": "\f6e7",
|
|
1531
|
+
//"optical-audio-fill": "\f6e8",
|
|
1532
|
+
//"optical-audio": "\f6e9",
|
|
1533
|
+
//"pci-card": "\f6ea",
|
|
1534
|
+
//"router-fill": "\f6eb",
|
|
1535
|
+
//"router": "\f6ec",
|
|
1536
|
+
//"thunderbolt-fill": "\f6ef",
|
|
1537
|
+
//"thunderbolt": "\f6f0",
|
|
1538
|
+
//"usb-drive-fill": "\f6f1",
|
|
1539
|
+
//"usb-drive": "\f6f2",
|
|
1540
|
+
//"usb-micro-fill": "\f6f3",
|
|
1541
|
+
//"usb-micro": "\f6f4",
|
|
1542
|
+
//"usb-mini-fill": "\f6f5",
|
|
1543
|
+
//"usb-mini": "\f6f6",
|
|
1544
|
+
//"cloud-haze2": "\f6f7",
|
|
1545
|
+
//"device-hdd-fill": "\f6f8",
|
|
1546
|
+
//"device-hdd": "\f6f9",
|
|
1547
|
+
//"device-ssd-fill": "\f6fa",
|
|
1548
|
+
//"device-ssd": "\f6fb",
|
|
1549
|
+
//"displayport-fill": "\f6fc",
|
|
1550
|
+
//"mortarboard-fill": "\f6fd",
|
|
1551
|
+
//"mortarboard": "\f6fe",
|
|
1552
|
+
//"terminal-x": "\f6ff",
|
|
1553
|
+
//"arrow-through-heart-fill": "\f700",
|
|
1554
|
+
//"arrow-through-heart": "\f701",
|
|
1555
|
+
//"badge-sd-fill": "\f702",
|
|
1556
|
+
//"badge-sd": "\f703",
|
|
1557
|
+
//"bag-heart-fill": "\f704",
|
|
1558
|
+
//"bag-heart": "\f705",
|
|
1559
|
+
//"balloon-fill": "\f706",
|
|
1560
|
+
//"balloon-heart-fill": "\f707",
|
|
1561
|
+
//"balloon-heart": "\f708",
|
|
1562
|
+
//"balloon": "\f709",
|
|
1563
|
+
//"box2-fill": "\f70a",
|
|
1564
|
+
//"box2-heart-fill": "\f70b",
|
|
1565
|
+
//"box2-heart": "\f70c",
|
|
1566
|
+
//"box2": "\f70d",
|
|
1567
|
+
//"braces-asterisk": "\f70e",
|
|
1568
|
+
//"calendar-heart-fill": "\f70f",
|
|
1569
|
+
//"calendar-heart": "\f710",
|
|
1570
|
+
//"calendar2-heart-fill": "\f711",
|
|
1571
|
+
//"calendar2-heart": "\f712",
|
|
1572
|
+
//"chat-heart-fill": "\f713",
|
|
1573
|
+
//"chat-heart": "\f714",
|
|
1574
|
+
//"chat-left-heart-fill": "\f715",
|
|
1575
|
+
//"chat-left-heart": "\f716",
|
|
1576
|
+
//"chat-right-heart-fill": "\f717",
|
|
1577
|
+
//"chat-right-heart": "\f718",
|
|
1578
|
+
//"chat-square-heart-fill": "\f719",
|
|
1579
|
+
//"chat-square-heart": "\f71a",
|
|
1580
|
+
//"clipboard-check-fill": "\f71b",
|
|
1581
|
+
//"clipboard-data-fill": "\f71c",
|
|
1582
|
+
//"clipboard-fill": "\f71d",
|
|
1583
|
+
//"clipboard-heart-fill": "\f71e",
|
|
1584
|
+
//"clipboard-heart": "\f71f",
|
|
1585
|
+
//"clipboard-minus-fill": "\f720",
|
|
1586
|
+
//"clipboard-plus-fill": "\f721",
|
|
1587
|
+
//"clipboard-pulse": "\f722",
|
|
1588
|
+
//"clipboard-x-fill": "\f723",
|
|
1589
|
+
//"clipboard2-check-fill": "\f724",
|
|
1590
|
+
//"clipboard2-check": "\f725",
|
|
1591
|
+
//"clipboard2-data-fill": "\f726",
|
|
1592
|
+
//"clipboard2-data": "\f727",
|
|
1593
|
+
//"clipboard2-fill": "\f728",
|
|
1594
|
+
//"clipboard2-heart-fill": "\f729",
|
|
1595
|
+
//"clipboard2-heart": "\f72a",
|
|
1596
|
+
//"clipboard2-minus-fill": "\f72b",
|
|
1597
|
+
//"clipboard2-minus": "\f72c",
|
|
1598
|
+
//"clipboard2-plus-fill": "\f72d",
|
|
1599
|
+
//"clipboard2-plus": "\f72e",
|
|
1600
|
+
//"clipboard2-pulse-fill": "\f72f",
|
|
1601
|
+
//"clipboard2-pulse": "\f730",
|
|
1602
|
+
//"clipboard2-x-fill": "\f731",
|
|
1603
|
+
//"clipboard2-x": "\f732",
|
|
1604
|
+
//"clipboard2": "\f733",
|
|
1605
|
+
//"emoji-kiss-fill": "\f734",
|
|
1606
|
+
//"emoji-kiss": "\f735",
|
|
1607
|
+
//"envelope-heart-fill": "\f736",
|
|
1608
|
+
//"envelope-heart": "\f737",
|
|
1609
|
+
//"envelope-open-heart-fill": "\f738",
|
|
1610
|
+
//"envelope-open-heart": "\f739",
|
|
1611
|
+
//"envelope-paper-fill": "\f73a",
|
|
1612
|
+
//"envelope-paper-heart-fill": "\f73b",
|
|
1613
|
+
//"envelope-paper-heart": "\f73c",
|
|
1614
|
+
//"envelope-paper": "\f73d",
|
|
1615
|
+
//"filetype-aac": "\f73e",
|
|
1616
|
+
//"filetype-ai": "\f73f",
|
|
1617
|
+
//"filetype-bmp": "\f740",
|
|
1618
|
+
//"filetype-cs": "\f741",
|
|
1619
|
+
//"filetype-css": "\f742",
|
|
1620
|
+
//"filetype-csv": "\f743",
|
|
1621
|
+
//"filetype-doc": "\f744",
|
|
1622
|
+
//"filetype-docx": "\f745",
|
|
1623
|
+
//"filetype-exe": "\f746",
|
|
1624
|
+
//"filetype-gif": "\f747",
|
|
1625
|
+
//"filetype-heic": "\f748",
|
|
1626
|
+
//"filetype-html": "\f749",
|
|
1627
|
+
//"filetype-java": "\f74a",
|
|
1628
|
+
//"filetype-jpg": "\f74b",
|
|
1629
|
+
//"filetype-js": "\f74c",
|
|
1630
|
+
//"filetype-jsx": "\f74d",
|
|
1631
|
+
//"filetype-key": "\f74e",
|
|
1632
|
+
//"filetype-m4p": "\f74f",
|
|
1633
|
+
//"filetype-md": "\f750",
|
|
1634
|
+
//"filetype-mdx": "\f751",
|
|
1635
|
+
//"filetype-mov": "\f752",
|
|
1636
|
+
//"filetype-mp3": "\f753",
|
|
1637
|
+
//"filetype-mp4": "\f754",
|
|
1638
|
+
//"filetype-otf": "\f755",
|
|
1639
|
+
//"filetype-pdf": "\f756",
|
|
1640
|
+
//"filetype-php": "\f757",
|
|
1641
|
+
//"filetype-png": "\f758",
|
|
1642
|
+
//"filetype-ppt": "\f75a",
|
|
1643
|
+
//"filetype-psd": "\f75b",
|
|
1644
|
+
//"filetype-py": "\f75c",
|
|
1645
|
+
//"filetype-raw": "\f75d",
|
|
1646
|
+
//"filetype-rb": "\f75e",
|
|
1647
|
+
//"filetype-sass": "\f75f",
|
|
1648
|
+
//"filetype-scss": "\f760",
|
|
1649
|
+
//"filetype-sh": "\f761",
|
|
1650
|
+
//"filetype-svg": "\f762",
|
|
1651
|
+
//"filetype-tiff": "\f763",
|
|
1652
|
+
//"filetype-tsx": "\f764",
|
|
1653
|
+
//"filetype-ttf": "\f765",
|
|
1654
|
+
//"filetype-txt": "\f766",
|
|
1655
|
+
//"filetype-wav": "\f767",
|
|
1656
|
+
//"filetype-woff": "\f768",
|
|
1657
|
+
//"filetype-xls": "\f76a",
|
|
1658
|
+
//"filetype-xml": "\f76b",
|
|
1659
|
+
//"filetype-yml": "\f76c",
|
|
1660
|
+
//"heart-arrow": "\f76d",
|
|
1661
|
+
//"heart-pulse-fill": "\f76e",
|
|
1662
|
+
//"heart-pulse": "\f76f",
|
|
1663
|
+
//"heartbreak-fill": "\f770",
|
|
1664
|
+
//"heartbreak": "\f771",
|
|
1665
|
+
//"hearts": "\f772",
|
|
1666
|
+
//"hospital-fill": "\f773",
|
|
1667
|
+
//"hospital": "\f774",
|
|
1668
|
+
//"house-heart-fill": "\f775",
|
|
1669
|
+
//"house-heart": "\f776",
|
|
1670
|
+
//"incognito": "\f777",
|
|
1671
|
+
//"magnet-fill": "\f778",
|
|
1672
|
+
//"magnet": "\f779",
|
|
1673
|
+
//"person-heart": "\f77a",
|
|
1674
|
+
//"person-hearts": "\f77b",
|
|
1675
|
+
//"phone-flip": "\f77c",
|
|
1676
|
+
//"plugin": "\f77d",
|
|
1677
|
+
//"postage-fill": "\f77e",
|
|
1678
|
+
//"postage-heart-fill": "\f77f",
|
|
1679
|
+
//"postage-heart": "\f780",
|
|
1680
|
+
//"postage": "\f781",
|
|
1681
|
+
//"postcard-fill": "\f782",
|
|
1682
|
+
//"postcard-heart-fill": "\f783",
|
|
1683
|
+
//"postcard-heart": "\f784",
|
|
1684
|
+
//"postcard": "\f785",
|
|
1685
|
+
//"search-heart-fill": "\f786",
|
|
1686
|
+
//"search-heart": "\f787",
|
|
1687
|
+
//"sliders2-vertical": "\f788",
|
|
1688
|
+
//"sliders2": "\f789",
|
|
1689
|
+
//"trash3-fill": "\f78a",
|
|
1690
|
+
//"trash3": "\f78b",
|
|
1691
|
+
//"valentine": "\f78c",
|
|
1692
|
+
//"valentine2": "\f78d",
|
|
1693
|
+
//"wrench-adjustable-circle-fill": "\f78e",
|
|
1694
|
+
//"wrench-adjustable-circle": "\f78f",
|
|
1695
|
+
//"wrench-adjustable": "\f790",
|
|
1696
|
+
//"filetype-json": "\f791",
|
|
1697
|
+
//"filetype-pptx": "\f792",
|
|
1698
|
+
//"filetype-xlsx": "\f793",
|
|
1699
|
+
//"1-circle-fill": "\f796",
|
|
1700
|
+
//"1-circle": "\f797",
|
|
1701
|
+
//"1-square-fill": "\f798",
|
|
1702
|
+
//"1-square": "\f799",
|
|
1703
|
+
//"2-circle-fill": "\f79c",
|
|
1704
|
+
//"2-circle": "\f79d",
|
|
1705
|
+
//"2-square-fill": "\f79e",
|
|
1706
|
+
//"2-square": "\f79f",
|
|
1707
|
+
//"3-circle-fill": "\f7a2",
|
|
1708
|
+
//"3-circle": "\f7a3",
|
|
1709
|
+
//"3-square-fill": "\f7a4",
|
|
1710
|
+
//"3-square": "\f7a5",
|
|
1711
|
+
//"4-circle-fill": "\f7a8",
|
|
1712
|
+
//"4-circle": "\f7a9",
|
|
1713
|
+
//"4-square-fill": "\f7aa",
|
|
1714
|
+
//"4-square": "\f7ab",
|
|
1715
|
+
//"5-circle-fill": "\f7ae",
|
|
1716
|
+
//"5-circle": "\f7af",
|
|
1717
|
+
//"5-square-fill": "\f7b0",
|
|
1718
|
+
//"5-square": "\f7b1",
|
|
1719
|
+
//"6-circle-fill": "\f7b4",
|
|
1720
|
+
//"6-circle": "\f7b5",
|
|
1721
|
+
//"6-square-fill": "\f7b6",
|
|
1722
|
+
//"6-square": "\f7b7",
|
|
1723
|
+
//"7-circle-fill": "\f7ba",
|
|
1724
|
+
//"7-circle": "\f7bb",
|
|
1725
|
+
//"7-square-fill": "\f7bc",
|
|
1726
|
+
//"7-square": "\f7bd",
|
|
1727
|
+
//"8-circle-fill": "\f7c0",
|
|
1728
|
+
//"8-circle": "\f7c1",
|
|
1729
|
+
//"8-square-fill": "\f7c2",
|
|
1730
|
+
//"8-square": "\f7c3",
|
|
1731
|
+
//"9-circle-fill": "\f7c6",
|
|
1732
|
+
//"9-circle": "\f7c7",
|
|
1733
|
+
//"9-square-fill": "\f7c8",
|
|
1734
|
+
//"9-square": "\f7c9",
|
|
1735
|
+
//"airplane-engines-fill": "\f7ca",
|
|
1736
|
+
//"airplane-engines": "\f7cb",
|
|
1737
|
+
//"airplane-fill": "\f7cc",
|
|
1738
|
+
//"airplane": "\f7cd",
|
|
1739
|
+
//"alexa": "\f7ce",
|
|
1740
|
+
//"alipay": "\f7cf",
|
|
1741
|
+
//"android": "\f7d0",
|
|
1742
|
+
//"android2": "\f7d1",
|
|
1743
|
+
//"box-fill": "\f7d2",
|
|
1744
|
+
//"box-seam-fill": "\f7d3",
|
|
1745
|
+
//"browser-chrome": "\f7d4",
|
|
1746
|
+
//"browser-edge": "\f7d5",
|
|
1747
|
+
//"browser-firefox": "\f7d6",
|
|
1748
|
+
//"browser-safari": "\f7d7",
|
|
1749
|
+
//"c-circle-fill": "\f7da",
|
|
1750
|
+
//"c-circle": "\f7db",
|
|
1751
|
+
//"c-square-fill": "\f7dc",
|
|
1752
|
+
//"c-square": "\f7dd",
|
|
1753
|
+
//"capsule-pill": "\f7de",
|
|
1754
|
+
//"capsule": "\f7df",
|
|
1755
|
+
//"car-front-fill": "\f7e0",
|
|
1756
|
+
//"car-front": "\f7e1",
|
|
1757
|
+
//"cassette-fill": "\f7e2",
|
|
1758
|
+
//"cassette": "\f7e3",
|
|
1759
|
+
//"cc-circle-fill": "\f7e6",
|
|
1760
|
+
//"cc-circle": "\f7e7",
|
|
1761
|
+
//"cc-square-fill": "\f7e8",
|
|
1762
|
+
//"cc-square": "\f7e9",
|
|
1763
|
+
//"cup-hot-fill": "\f7ea",
|
|
1764
|
+
//"cup-hot": "\f7eb",
|
|
1765
|
+
//"currency-rupee": "\f7ec",
|
|
1766
|
+
//"dropbox": "\f7ed",
|
|
1767
|
+
//"escape": "\f7ee",
|
|
1768
|
+
//"fast-forward-btn-fill": "\f7ef",
|
|
1769
|
+
//"fast-forward-btn": "\f7f0",
|
|
1770
|
+
//"fast-forward-circle-fill": "\f7f1",
|
|
1771
|
+
//"fast-forward-circle": "\f7f2",
|
|
1772
|
+
//"fast-forward-fill": "\f7f3",
|
|
1773
|
+
//"fast-forward": "\f7f4",
|
|
1774
|
+
//"filetype-sql": "\f7f5",
|
|
1775
|
+
//"fire": "\f7f6",
|
|
1776
|
+
//"google-play": "\f7f7",
|
|
1777
|
+
//"h-circle-fill": "\f7fa",
|
|
1778
|
+
//"h-circle": "\f7fb",
|
|
1779
|
+
//"h-square-fill": "\f7fc",
|
|
1780
|
+
//"h-square": "\f7fd",
|
|
1781
|
+
//"indent": "\f7fe",
|
|
1782
|
+
//"lungs-fill": "\f7ff",
|
|
1783
|
+
//"lungs": "\f800",
|
|
1784
|
+
//"microsoft-teams": "\f801",
|
|
1785
|
+
//"p-circle-fill": "\f804",
|
|
1786
|
+
//"p-circle": "\f805",
|
|
1787
|
+
//"p-square-fill": "\f806",
|
|
1788
|
+
//"p-square": "\f807",
|
|
1789
|
+
//"pass-fill": "\f808",
|
|
1790
|
+
//"pass": "\f809",
|
|
1791
|
+
//"prescription": "\f80a",
|
|
1792
|
+
//"prescription2": "\f80b",
|
|
1793
|
+
//"r-circle-fill": "\f80e",
|
|
1794
|
+
//"r-circle": "\f80f",
|
|
1795
|
+
//"r-square-fill": "\f810",
|
|
1796
|
+
//"r-square": "\f811",
|
|
1797
|
+
//"repeat-1": "\f812",
|
|
1798
|
+
//"repeat": "\f813",
|
|
1799
|
+
//"rewind-btn-fill": "\f814",
|
|
1800
|
+
//"rewind-btn": "\f815",
|
|
1801
|
+
//"rewind-circle-fill": "\f816",
|
|
1802
|
+
//"rewind-circle": "\f817",
|
|
1803
|
+
//"rewind-fill": "\f818",
|
|
1804
|
+
//"rewind": "\f819",
|
|
1805
|
+
//"train-freight-front-fill": "\f81a",
|
|
1806
|
+
//"train-freight-front": "\f81b",
|
|
1807
|
+
//"train-front-fill": "\f81c",
|
|
1808
|
+
//"train-front": "\f81d",
|
|
1809
|
+
//"train-lightrail-front-fill": "\f81e",
|
|
1810
|
+
//"train-lightrail-front": "\f81f",
|
|
1811
|
+
//"truck-front-fill": "\f820",
|
|
1812
|
+
//"truck-front": "\f821",
|
|
1813
|
+
//"ubuntu": "\f822",
|
|
1814
|
+
//"unindent": "\f823",
|
|
1815
|
+
//"unity": "\f824",
|
|
1816
|
+
//"universal-access-circle": "\f825",
|
|
1817
|
+
//"universal-access": "\f826",
|
|
1818
|
+
//"virus": "\f827",
|
|
1819
|
+
//"virus2": "\f828",
|
|
1820
|
+
//"wechat": "\f829",
|
|
1821
|
+
//"yelp": "\f82a",
|
|
1822
|
+
//"sign-stop-fill": "\f82b",
|
|
1823
|
+
//"sign-stop-lights-fill": "\f82c",
|
|
1824
|
+
//"sign-stop-lights": "\f82d",
|
|
1825
|
+
//"sign-stop": "\f82e",
|
|
1826
|
+
//"sign-turn-left-fill": "\f82f",
|
|
1827
|
+
//"sign-turn-left": "\f830",
|
|
1828
|
+
//"sign-turn-right-fill": "\f831",
|
|
1829
|
+
//"sign-turn-right": "\f832",
|
|
1830
|
+
//"sign-turn-slight-left-fill": "\f833",
|
|
1831
|
+
//"sign-turn-slight-left": "\f834",
|
|
1832
|
+
//"sign-turn-slight-right-fill": "\f835",
|
|
1833
|
+
//"sign-turn-slight-right": "\f836",
|
|
1834
|
+
//"sign-yield-fill": "\f837",
|
|
1835
|
+
//"sign-yield": "\f838",
|
|
1836
|
+
//"ev-station-fill": "\f839",
|
|
1837
|
+
//"ev-station": "\f83a",
|
|
1838
|
+
//"fuel-pump-diesel-fill": "\f83b",
|
|
1839
|
+
//"fuel-pump-diesel": "\f83c",
|
|
1840
|
+
//"fuel-pump-fill": "\f83d",
|
|
1841
|
+
//"fuel-pump": "\f83e",
|
|
1842
|
+
//"0-circle-fill": "\f83f",
|
|
1843
|
+
//"0-circle": "\f840",
|
|
1844
|
+
//"0-square-fill": "\f841",
|
|
1845
|
+
//"0-square": "\f842",
|
|
1846
|
+
//"rocket-fill": "\f843",
|
|
1847
|
+
//"rocket-takeoff-fill": "\f844",
|
|
1848
|
+
//"rocket-takeoff": "\f845",
|
|
1849
|
+
//"rocket": "\f846",
|
|
1850
|
+
//"stripe": "\f847",
|
|
1851
|
+
//"subscript": "\f848",
|
|
1852
|
+
//"superscript": "\f849",
|
|
1853
|
+
//"trello": "\f84a",
|
|
1854
|
+
//"envelope-at-fill": "\f84b",
|
|
1855
|
+
//"envelope-at": "\f84c",
|
|
1856
|
+
//"regex": "\f84d",
|
|
1857
|
+
//"text-wrap": "\f84e",
|
|
1858
|
+
//"sign-dead-end-fill": "\f84f",
|
|
1859
|
+
//"sign-dead-end": "\f850",
|
|
1860
|
+
//"sign-do-not-enter-fill": "\f851",
|
|
1861
|
+
//"sign-do-not-enter": "\f852",
|
|
1862
|
+
//"sign-intersection-fill": "\f853",
|
|
1863
|
+
//"sign-intersection-side-fill": "\f854",
|
|
1864
|
+
//"sign-intersection-side": "\f855",
|
|
1865
|
+
//"sign-intersection-t-fill": "\f856",
|
|
1866
|
+
//"sign-intersection-t": "\f857",
|
|
1867
|
+
//"sign-intersection-y-fill": "\f858",
|
|
1868
|
+
//"sign-intersection-y": "\f859",
|
|
1869
|
+
//"sign-intersection": "\f85a",
|
|
1870
|
+
//"sign-merge-left-fill": "\f85b",
|
|
1871
|
+
//"sign-merge-left": "\f85c",
|
|
1872
|
+
//"sign-merge-right-fill": "\f85d",
|
|
1873
|
+
//"sign-merge-right": "\f85e",
|
|
1874
|
+
//"sign-no-left-turn-fill": "\f85f",
|
|
1875
|
+
//"sign-no-left-turn": "\f860",
|
|
1876
|
+
//"sign-no-parking-fill": "\f861",
|
|
1877
|
+
//"sign-no-parking": "\f862",
|
|
1878
|
+
//"sign-no-right-turn-fill": "\f863",
|
|
1879
|
+
//"sign-no-right-turn": "\f864",
|
|
1880
|
+
//"sign-railroad-fill": "\f865",
|
|
1881
|
+
//"sign-railroad": "\f866",
|
|
1882
|
+
//"building-add": "\f867",
|
|
1883
|
+
//"building-check": "\f868",
|
|
1884
|
+
//"building-dash": "\f869",
|
|
1885
|
+
//"building-down": "\f86a",
|
|
1886
|
+
//"building-exclamation": "\f86b",
|
|
1887
|
+
//"building-fill-add": "\f86c",
|
|
1888
|
+
//"building-fill-check": "\f86d",
|
|
1889
|
+
//"building-fill-dash": "\f86e",
|
|
1890
|
+
//"building-fill-down": "\f86f",
|
|
1891
|
+
//"building-fill-exclamation": "\f870",
|
|
1892
|
+
//"building-fill-gear": "\f871",
|
|
1893
|
+
//"building-fill-lock": "\f872",
|
|
1894
|
+
//"building-fill-slash": "\f873",
|
|
1895
|
+
//"building-fill-up": "\f874",
|
|
1896
|
+
//"building-fill-x": "\f875",
|
|
1897
|
+
//"building-fill": "\f876",
|
|
1898
|
+
//"building-gear": "\f877",
|
|
1899
|
+
//"building-lock": "\f878",
|
|
1900
|
+
//"building-slash": "\f879",
|
|
1901
|
+
//"building-up": "\f87a",
|
|
1902
|
+
//"building-x": "\f87b",
|
|
1903
|
+
//"buildings-fill": "\f87c",
|
|
1904
|
+
//"buildings": "\f87d",
|
|
1905
|
+
//"bus-front-fill": "\f87e",
|
|
1906
|
+
//"bus-front": "\f87f",
|
|
1907
|
+
//"ev-front-fill": "\f880",
|
|
1908
|
+
//"ev-front": "\f881",
|
|
1909
|
+
//"globe-americas": "\f882",
|
|
1910
|
+
//"globe-asia-australia": "\f883",
|
|
1911
|
+
//"globe-central-south-asia": "\f884",
|
|
1912
|
+
//"globe-europe-africa": "\f885",
|
|
1913
|
+
//"house-add-fill": "\f886",
|
|
1914
|
+
//"house-add": "\f887",
|
|
1915
|
+
//"house-check-fill": "\f888",
|
|
1916
|
+
//"house-check": "\f889",
|
|
1917
|
+
//"house-dash-fill": "\f88a",
|
|
1918
|
+
//"house-dash": "\f88b",
|
|
1919
|
+
//"house-down-fill": "\f88c",
|
|
1920
|
+
//"house-down": "\f88d",
|
|
1921
|
+
//"house-exclamation-fill": "\f88e",
|
|
1922
|
+
//"house-exclamation": "\f88f",
|
|
1923
|
+
//"house-gear-fill": "\f890",
|
|
1924
|
+
//"house-gear": "\f891",
|
|
1925
|
+
//"house-lock-fill": "\f892",
|
|
1926
|
+
//"house-lock": "\f893",
|
|
1927
|
+
//"house-slash-fill": "\f894",
|
|
1928
|
+
//"house-slash": "\f895",
|
|
1929
|
+
//"house-up-fill": "\f896",
|
|
1930
|
+
//"house-up": "\f897",
|
|
1931
|
+
//"house-x-fill": "\f898",
|
|
1932
|
+
//"house-x": "\f899",
|
|
1933
|
+
//"person-add": "\f89a",
|
|
1934
|
+
//"person-down": "\f89b",
|
|
1935
|
+
//"person-exclamation": "\f89c",
|
|
1936
|
+
//"person-fill-add": "\f89d",
|
|
1937
|
+
//"person-fill-check": "\f89e",
|
|
1938
|
+
//"person-fill-dash": "\f89f",
|
|
1939
|
+
//"person-fill-down": "\f8a0",
|
|
1940
|
+
//"person-fill-exclamation": "\f8a1",
|
|
1941
|
+
//"person-fill-gear": "\f8a2",
|
|
1942
|
+
//"person-fill-lock": "\f8a3",
|
|
1943
|
+
//"person-fill-slash": "\f8a4",
|
|
1944
|
+
//"person-fill-up": "\f8a5",
|
|
1945
|
+
//"person-fill-x": "\f8a6",
|
|
1946
|
+
//"person-gear": "\f8a7",
|
|
1947
|
+
//"person-lock": "\f8a8",
|
|
1948
|
+
//"person-slash": "\f8a9",
|
|
1949
|
+
//"person-up": "\f8aa",
|
|
1950
|
+
//"scooter": "\f8ab",
|
|
1951
|
+
//"taxi-front-fill": "\f8ac",
|
|
1952
|
+
//"taxi-front": "\f8ad",
|
|
1953
|
+
//"amd": "\f8ae",
|
|
1954
|
+
//"database-add": "\f8af",
|
|
1955
|
+
//"database-check": "\f8b0",
|
|
1956
|
+
//"database-dash": "\f8b1",
|
|
1957
|
+
//"database-down": "\f8b2",
|
|
1958
|
+
//"database-exclamation": "\f8b3",
|
|
1959
|
+
//"database-fill-add": "\f8b4",
|
|
1960
|
+
//"database-fill-check": "\f8b5",
|
|
1961
|
+
//"database-fill-dash": "\f8b6",
|
|
1962
|
+
//"database-fill-down": "\f8b7",
|
|
1963
|
+
//"database-fill-exclamation": "\f8b8",
|
|
1964
|
+
//"database-fill-gear": "\f8b9",
|
|
1965
|
+
//"database-fill-lock": "\f8ba",
|
|
1966
|
+
//"database-fill-slash": "\f8bb",
|
|
1967
|
+
//"database-fill-up": "\f8bc",
|
|
1968
|
+
//"database-fill-x": "\f8bd",
|
|
1969
|
+
//"database-fill": "\f8be",
|
|
1970
|
+
//"database-gear": "\f8bf",
|
|
1971
|
+
//"database-lock": "\f8c0",
|
|
1972
|
+
//"database-slash": "\f8c1",
|
|
1973
|
+
//"database-up": "\f8c2",
|
|
1974
|
+
//"database-x": "\f8c3",
|
|
1975
|
+
//"database": "\f8c4",
|
|
1976
|
+
//"houses-fill": "\f8c5",
|
|
1977
|
+
//"houses": "\f8c6",
|
|
1978
|
+
//"nvidia": "\f8c7",
|
|
1979
|
+
//"person-vcard-fill": "\f8c8",
|
|
1980
|
+
//"person-vcard": "\f8c9",
|
|
1981
|
+
//"sina-weibo": "\f8ca",
|
|
1982
|
+
//"tencent-qq": "\f8cb",
|
|
1983
|
+
//"wikipedia": "\f8cc",
|
|
1984
|
+
//"alphabet-uppercase": "\f2a5",
|
|
1985
|
+
//"alphabet": "\f68a",
|
|
1986
|
+
//"amazon": "\f68d",
|
|
1987
|
+
//"arrows-collapse-vertical": "\f690",
|
|
1988
|
+
//"arrows-expand-vertical": "\f695",
|
|
1989
|
+
//"arrows-vertical": "\f698",
|
|
1990
|
+
//"arrows": "\f6a2",
|
|
1991
|
+
//"ban-fill": "\f6a3",
|
|
1992
|
+
//"ban": "\f6b6",
|
|
1993
|
+
//"bing": "\f6c2",
|
|
1994
|
+
//"cake": "\f6e0",
|
|
1995
|
+
//"cake2": "\f6ed",
|
|
1996
|
+
//"cookie": "\f6ee",
|
|
1997
|
+
//"copy": "\f759",
|
|
1998
|
+
//"crosshair": "\f769",
|
|
1999
|
+
//"crosshair2": "\f794",
|
|
2000
|
+
//"emoji-astonished-fill": "\f795",
|
|
2001
|
+
//"emoji-astonished": "\f79a",
|
|
2002
|
+
//"emoji-grimace-fill": "\f79b",
|
|
2003
|
+
//"emoji-grimace": "\f7a0",
|
|
2004
|
+
//"emoji-grin-fill": "\f7a1",
|
|
2005
|
+
//"emoji-grin": "\f7a6",
|
|
2006
|
+
//"emoji-surprise-fill": "\f7a7",
|
|
2007
|
+
//"emoji-surprise": "\f7ac",
|
|
2008
|
+
//"emoji-tear-fill": "\f7ad",
|
|
2009
|
+
//"emoji-tear": "\f7b2",
|
|
2010
|
+
//"envelope-arrow-down-fill": "\f7b3",
|
|
2011
|
+
//"envelope-arrow-down": "\f7b8",
|
|
2012
|
+
//"envelope-arrow-up-fill": "\f7b9",
|
|
2013
|
+
//"envelope-arrow-up": "\f7be",
|
|
2014
|
+
//"feather": "\f7bf",
|
|
2015
|
+
//"feather2": "\f7c4",
|
|
2016
|
+
//"floppy-fill": "\f7c5",
|
|
2017
|
+
//"floppy": "\f7d8",
|
|
2018
|
+
//"floppy2-fill": "\f7d9",
|
|
2019
|
+
//"floppy2": "\f7e4",
|
|
2020
|
+
//"gitlab": "\f7e5",
|
|
2021
|
+
//"highlighter": "\f7f8",
|
|
2022
|
+
//"marker-tip": "\f802",
|
|
2023
|
+
//"nvme-fill": "\f803",
|
|
2024
|
+
//"nvme": "\f80c",
|
|
2025
|
+
//"opencollective": "\f80d",
|
|
2026
|
+
//"pci-card-network": "\f8cd",
|
|
2027
|
+
//"pci-card-sound": "\f8ce",
|
|
2028
|
+
//"radar": "\f8cf",
|
|
2029
|
+
//"send-arrow-down-fill": "\f8d0",
|
|
2030
|
+
//"send-arrow-down": "\f8d1",
|
|
2031
|
+
//"send-arrow-up-fill": "\f8d2",
|
|
2032
|
+
//"send-arrow-up": "\f8d3",
|
|
2033
|
+
//"sim-slash-fill": "\f8d4",
|
|
2034
|
+
//"sim-slash": "\f8d5",
|
|
2035
|
+
//"sourceforge": "\f8d6",
|
|
2036
|
+
//"substack": "\f8d7",
|
|
2037
|
+
//"threads-fill": "\f8d8",
|
|
2038
|
+
//"threads": "\f8d9",
|
|
2039
|
+
//"transparency": "\f8da",
|
|
2040
|
+
//"twitter-x": "\f8db",
|
|
2041
|
+
//"type-h4": "\f8dc",
|
|
2042
|
+
//"type-h5": "\f8dd",
|
|
2043
|
+
//"type-h6": "\f8de",
|
|
2044
|
+
//"backpack-fill": "\f8df",
|
|
2045
|
+
//"backpack": "\f8e0",
|
|
2046
|
+
//"backpack2-fill": "\f8e1",
|
|
2047
|
+
//"backpack2": "\f8e2",
|
|
2048
|
+
//"backpack3-fill": "\f8e3",
|
|
2049
|
+
//"backpack3": "\f8e4",
|
|
2050
|
+
//"backpack4-fill": "\f8e5",
|
|
2051
|
+
//"backpack4": "\f8e6",
|
|
2052
|
+
//"brilliance": "\f8e7",
|
|
2053
|
+
//"cake-fill": "\f8e8",
|
|
2054
|
+
//"cake2-fill": "\f8e9",
|
|
2055
|
+
//"duffle-fill": "\f8ea",
|
|
2056
|
+
//"duffle": "\f8eb",
|
|
2057
|
+
//"exposure": "\f8ec",
|
|
2058
|
+
//"gender-neuter": "\f8ed",
|
|
2059
|
+
//"highlights": "\f8ee",
|
|
2060
|
+
//"luggage-fill": "\f8ef",
|
|
2061
|
+
//"luggage": "\f8f0",
|
|
2062
|
+
//"mailbox-flag": "\f8f1",
|
|
2063
|
+
//"mailbox2-flag": "\f8f2",
|
|
2064
|
+
//"noise-reduction": "\f8f3",
|
|
2065
|
+
//"passport-fill": "\f8f4",
|
|
2066
|
+
//"passport": "\f8f5",
|
|
2067
|
+
//"person-arms-up": "\f8f6",
|
|
2068
|
+
//"person-raised-hand": "\f8f7",
|
|
2069
|
+
//"person-standing-dress": "\f8f8",
|
|
2070
|
+
//"person-standing": "\f8f9",
|
|
2071
|
+
//"person-walking": "\f8fa",
|
|
2072
|
+
//"person-wheelchair": "\f8fb",
|
|
2073
|
+
//"shadows": "\f8fc",
|
|
2074
|
+
//"suitcase-fill": "\f8fd",
|
|
2075
|
+
//"suitcase-lg-fill": "\f8fe",
|
|
2076
|
+
//"suitcase-lg": "\f8ff",
|
|
2077
|
+
//"suitcase": "\f900",
|
|
2078
|
+
//"suitcase2-fill": "\f901",
|
|
2079
|
+
//"suitcase2": "\f902",
|
|
2080
|
+
//"vignette": "\f903",
|
|
2081
|
+
);
|
|
2082
|
+
|
|
2083
|
+
@each $icon, $codepoint in $bootstrap-icons-map {
|
|
2084
|
+
.nom-#{$icon}::before { content: $codepoint; }
|
|
2085
|
+
}
|