@fugood/bricks-ctor 2.24.0-beta.40

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.
Files changed (129) hide show
  1. package/compile/action-name-map.ts +988 -0
  2. package/compile/index.ts +1245 -0
  3. package/compile/util.ts +358 -0
  4. package/index.ts +6 -0
  5. package/package.json +28 -0
  6. package/skills/bricks-design/LICENSE.txt +180 -0
  7. package/skills/bricks-design/SKILL.md +66 -0
  8. package/skills/bricks-project/SKILL.md +32 -0
  9. package/skills/bricks-project/rules/animation.md +159 -0
  10. package/skills/bricks-project/rules/architecture-patterns.md +69 -0
  11. package/skills/bricks-project/rules/automations.md +221 -0
  12. package/skills/bricks-project/rules/buttress.md +156 -0
  13. package/skills/bricks-project/rules/data-calculation.md +208 -0
  14. package/skills/bricks-project/rules/local-sync.md +129 -0
  15. package/skills/bricks-project/rules/media-flow.md +158 -0
  16. package/skills/bricks-project/rules/remote-data-bank.md +196 -0
  17. package/skills/bricks-project/rules/standby-transition.md +124 -0
  18. package/skills/rive-marketplace/SKILL.md +99 -0
  19. package/tools/deploy.ts +151 -0
  20. package/tools/icons/.gitattributes +1 -0
  21. package/tools/icons/fa6pro-glyphmap.json +4686 -0
  22. package/tools/icons/fa6pro-meta.json +3671 -0
  23. package/tools/mcp-server.ts +28 -0
  24. package/tools/mcp-tools/compile.ts +91 -0
  25. package/tools/mcp-tools/huggingface.ts +762 -0
  26. package/tools/mcp-tools/icons.ts +70 -0
  27. package/tools/mcp-tools/lottie.ts +102 -0
  28. package/tools/mcp-tools/media.ts +110 -0
  29. package/tools/postinstall.ts +229 -0
  30. package/tools/preview-main.mjs +293 -0
  31. package/tools/preview.ts +143 -0
  32. package/tools/pull.ts +116 -0
  33. package/tsconfig.json +16 -0
  34. package/types/animation.ts +100 -0
  35. package/types/automation.ts +235 -0
  36. package/types/brick-base.ts +80 -0
  37. package/types/bricks/Camera.ts +246 -0
  38. package/types/bricks/Chart.ts +372 -0
  39. package/types/bricks/GenerativeMedia.ts +276 -0
  40. package/types/bricks/Icon.ts +98 -0
  41. package/types/bricks/Image.ts +114 -0
  42. package/types/bricks/Items.ts +476 -0
  43. package/types/bricks/Lottie.ts +168 -0
  44. package/types/bricks/Maps.ts +262 -0
  45. package/types/bricks/QrCode.ts +117 -0
  46. package/types/bricks/Rect.ts +150 -0
  47. package/types/bricks/RichText.ts +128 -0
  48. package/types/bricks/Rive.ts +220 -0
  49. package/types/bricks/Slideshow.ts +201 -0
  50. package/types/bricks/Svg.ts +99 -0
  51. package/types/bricks/Text.ts +148 -0
  52. package/types/bricks/TextInput.ts +242 -0
  53. package/types/bricks/Video.ts +175 -0
  54. package/types/bricks/VideoStreaming.ts +112 -0
  55. package/types/bricks/WebRtcStream.ts +65 -0
  56. package/types/bricks/WebView.ts +168 -0
  57. package/types/bricks/index.ts +21 -0
  58. package/types/canvas.ts +82 -0
  59. package/types/common.ts +144 -0
  60. package/types/data-calc-command.ts +7005 -0
  61. package/types/data-calc-script.ts +21 -0
  62. package/types/data-calc.ts +11 -0
  63. package/types/data.ts +95 -0
  64. package/types/generators/AlarmClock.ts +110 -0
  65. package/types/generators/Assistant.ts +621 -0
  66. package/types/generators/BleCentral.ts +247 -0
  67. package/types/generators/BlePeripheral.ts +208 -0
  68. package/types/generators/CanvasMap.ts +74 -0
  69. package/types/generators/CastlesPay.ts +87 -0
  70. package/types/generators/DataBank.ts +160 -0
  71. package/types/generators/File.ts +432 -0
  72. package/types/generators/GraphQl.ts +132 -0
  73. package/types/generators/Http.ts +222 -0
  74. package/types/generators/HttpServer.ts +176 -0
  75. package/types/generators/Information.ts +103 -0
  76. package/types/generators/Intent.ts +168 -0
  77. package/types/generators/Iterator.ts +108 -0
  78. package/types/generators/Keyboard.ts +105 -0
  79. package/types/generators/LlmAnthropicCompat.ts +212 -0
  80. package/types/generators/LlmAppleBuiltin.ts +159 -0
  81. package/types/generators/LlmGgml.ts +861 -0
  82. package/types/generators/LlmMediaTekNeuroPilot.ts +235 -0
  83. package/types/generators/LlmMlx.ts +227 -0
  84. package/types/generators/LlmOnnx.ts +213 -0
  85. package/types/generators/LlmOpenAiCompat.ts +244 -0
  86. package/types/generators/LlmQualcommAiEngine.ts +247 -0
  87. package/types/generators/Mcp.ts +637 -0
  88. package/types/generators/McpServer.ts +289 -0
  89. package/types/generators/MediaFlow.ts +170 -0
  90. package/types/generators/MqttBroker.ts +141 -0
  91. package/types/generators/MqttClient.ts +141 -0
  92. package/types/generators/Question.ts +408 -0
  93. package/types/generators/RealtimeTranscription.ts +279 -0
  94. package/types/generators/RerankerGgml.ts +191 -0
  95. package/types/generators/SerialPort.ts +151 -0
  96. package/types/generators/SoundPlayer.ts +94 -0
  97. package/types/generators/SoundRecorder.ts +130 -0
  98. package/types/generators/SpeechToTextGgml.ts +415 -0
  99. package/types/generators/SpeechToTextOnnx.ts +236 -0
  100. package/types/generators/SpeechToTextPlatform.ts +85 -0
  101. package/types/generators/SqLite.ts +159 -0
  102. package/types/generators/Step.ts +107 -0
  103. package/types/generators/SttAppleBuiltin.ts +130 -0
  104. package/types/generators/Tcp.ts +126 -0
  105. package/types/generators/TcpServer.ts +147 -0
  106. package/types/generators/TextToSpeechAppleBuiltin.ts +127 -0
  107. package/types/generators/TextToSpeechGgml.ts +221 -0
  108. package/types/generators/TextToSpeechOnnx.ts +178 -0
  109. package/types/generators/TextToSpeechOpenAiLike.ts +121 -0
  110. package/types/generators/ThermalPrinter.ts +191 -0
  111. package/types/generators/Tick.ts +83 -0
  112. package/types/generators/Udp.ts +120 -0
  113. package/types/generators/VadGgml.ts +250 -0
  114. package/types/generators/VadOnnx.ts +231 -0
  115. package/types/generators/VadTraditional.ts +138 -0
  116. package/types/generators/VectorStore.ts +257 -0
  117. package/types/generators/Watchdog.ts +107 -0
  118. package/types/generators/WebCrawler.ts +103 -0
  119. package/types/generators/WebRtc.ts +181 -0
  120. package/types/generators/WebSocket.ts +148 -0
  121. package/types/generators/index.ts +57 -0
  122. package/types/index.ts +13 -0
  123. package/types/subspace.ts +59 -0
  124. package/types/switch.ts +51 -0
  125. package/types/system.ts +707 -0
  126. package/utils/calc.ts +126 -0
  127. package/utils/data.ts +497 -0
  128. package/utils/event-props.ts +836 -0
  129. package/utils/id.ts +80 -0
@@ -0,0 +1,3671 @@
1
+ {
2
+ "0": 510,
3
+ "1": 510,
4
+ "2": 510,
5
+ "3": 510,
6
+ "4": 510,
7
+ "5": 510,
8
+ "6": 510,
9
+ "7": 510,
10
+ "8": 510,
11
+ "9": 510,
12
+ "42-group": 1,
13
+ "500px": 1,
14
+ "accessible-icon": 1,
15
+ "accusoft": 1,
16
+ "adn": 1,
17
+ "adversal": 1,
18
+ "affiliatetheme": 1,
19
+ "airbnb": 1,
20
+ "algolia": 1,
21
+ "alipay": 1,
22
+ "amazon-pay": 1,
23
+ "amazon": 1,
24
+ "amilia": 1,
25
+ "android": 1,
26
+ "angellist": 1,
27
+ "angrycreative": 1,
28
+ "angular": 1,
29
+ "app-store-ios": 1,
30
+ "app-store": 1,
31
+ "apper": 1,
32
+ "apple-pay": 1,
33
+ "apple": 1,
34
+ "artstation": 1,
35
+ "asymmetrik": 1,
36
+ "atlassian": 1,
37
+ "audible": 1,
38
+ "autoprefixer": 1,
39
+ "avianex": 1,
40
+ "aviato": 1,
41
+ "aws": 1,
42
+ "bandcamp": 1,
43
+ "battle-net": 1,
44
+ "behance": 1,
45
+ "bilibili": 1,
46
+ "bimobject": 1,
47
+ "bitbucket": 1,
48
+ "bitcoin": 1,
49
+ "bity": 1,
50
+ "black-tie": 1,
51
+ "blackberry": 1,
52
+ "blogger-b": 1,
53
+ "blogger": 1,
54
+ "bluetooth-b": 1,
55
+ "bluetooth": 511,
56
+ "bootstrap": 1,
57
+ "bots": 1,
58
+ "btc": 1,
59
+ "buffer": 1,
60
+ "buromobelexperte": 1,
61
+ "buy-n-large": 1,
62
+ "buysellads": 1,
63
+ "canadian-maple-leaf": 1,
64
+ "cc-amazon-pay": 1,
65
+ "cc-amex": 1,
66
+ "cc-apple-pay": 1,
67
+ "cc-diners-club": 1,
68
+ "cc-discover": 1,
69
+ "cc-jcb": 1,
70
+ "cc-mastercard": 1,
71
+ "cc-paypal": 1,
72
+ "cc-stripe": 1,
73
+ "cc-visa": 1,
74
+ "centercode": 1,
75
+ "centos": 1,
76
+ "chrome": 1,
77
+ "chromecast": 1,
78
+ "cloudflare": 1,
79
+ "cloudscale": 1,
80
+ "cloudsmith": 1,
81
+ "cloudversify": 1,
82
+ "cmplid": 1,
83
+ "codepen": 1,
84
+ "codiepie": 1,
85
+ "confluence": 1,
86
+ "connectdevelop": 1,
87
+ "contao": 1,
88
+ "cotton-bureau": 1,
89
+ "cpanel": 1,
90
+ "creative-commons-by": 1,
91
+ "creative-commons-nc-eu": 1,
92
+ "creative-commons-nc-jp": 1,
93
+ "creative-commons-nc": 1,
94
+ "creative-commons-nd": 1,
95
+ "creative-commons-pd-alt": 1,
96
+ "creative-commons-pd": 1,
97
+ "creative-commons-remix": 1,
98
+ "creative-commons-sa": 1,
99
+ "creative-commons-sampling-plus": 1,
100
+ "creative-commons-sampling": 1,
101
+ "creative-commons-share": 1,
102
+ "creative-commons-zero": 1,
103
+ "creative-commons": 1,
104
+ "critical-role": 1,
105
+ "css3-alt": 1,
106
+ "css3": 1,
107
+ "cuttlefish": 1,
108
+ "d-and-d-beyond": 1,
109
+ "d-and-d": 1,
110
+ "dailymotion": 1,
111
+ "dashcube": 1,
112
+ "deezer": 1,
113
+ "delicious": 1,
114
+ "deploydog": 1,
115
+ "deskpro": 1,
116
+ "dev": 1,
117
+ "deviantart": 1,
118
+ "dhl": 1,
119
+ "diaspora": 1,
120
+ "digg": 1,
121
+ "digital-ocean": 1,
122
+ "discord": 1,
123
+ "discourse": 1,
124
+ "dochub": 1,
125
+ "docker": 1,
126
+ "draft2digital": 1,
127
+ "dribbble": 1,
128
+ "dropbox": 1,
129
+ "drupal": 1,
130
+ "dyalog": 1,
131
+ "earlybirds": 1,
132
+ "ebay": 1,
133
+ "edge-legacy": 1,
134
+ "edge": 1,
135
+ "elementor": 1,
136
+ "ello": 1,
137
+ "ember": 1,
138
+ "empire": 1,
139
+ "envira": 1,
140
+ "erlang": 1,
141
+ "ethereum": 1,
142
+ "etsy": 1,
143
+ "evernote": 1,
144
+ "expeditedssl": 1,
145
+ "facebook-f": 1,
146
+ "facebook-messenger": 1,
147
+ "facebook": 1,
148
+ "fantasy-flight-games": 1,
149
+ "fedex": 1,
150
+ "fedora": 1,
151
+ "figma": 1,
152
+ "firefox-browser": 1,
153
+ "firefox": 1,
154
+ "first-order-alt": 1,
155
+ "first-order": 1,
156
+ "firstdraft": 1,
157
+ "flickr": 1,
158
+ "flipboard": 1,
159
+ "fly": 1,
160
+ "font-awesome": 511,
161
+ "fonticons-fi": 1,
162
+ "fonticons": 1,
163
+ "fort-awesome-alt": 1,
164
+ "fort-awesome": 1,
165
+ "forumbee": 1,
166
+ "foursquare": 1,
167
+ "free-code-camp": 1,
168
+ "freebsd": 1,
169
+ "fulcrum": 1,
170
+ "galactic-republic": 1,
171
+ "galactic-senate": 1,
172
+ "get-pocket": 1,
173
+ "gg-circle": 1,
174
+ "gg": 1,
175
+ "git-alt": 1,
176
+ "git": 1,
177
+ "github-alt": 1,
178
+ "github": 1,
179
+ "gitkraken": 1,
180
+ "gitlab": 1,
181
+ "gitter": 1,
182
+ "glide-g": 1,
183
+ "glide": 1,
184
+ "gofore": 1,
185
+ "golang": 1,
186
+ "goodreads-g": 1,
187
+ "goodreads": 1,
188
+ "google-drive": 1,
189
+ "google-pay": 1,
190
+ "google-play": 1,
191
+ "google-plus-g": 1,
192
+ "google-plus": 1,
193
+ "google-wallet": 1,
194
+ "google": 1,
195
+ "gratipay": 1,
196
+ "grav": 1,
197
+ "gripfire": 1,
198
+ "grunt": 1,
199
+ "guilded": 1,
200
+ "gulp": 1,
201
+ "hacker-news": 1,
202
+ "hackerrank": 1,
203
+ "hashnode": 1,
204
+ "hips": 1,
205
+ "hire-a-helper": 1,
206
+ "hive": 1,
207
+ "hooli": 1,
208
+ "hornbill": 1,
209
+ "hotjar": 1,
210
+ "houzz": 1,
211
+ "html5": 1,
212
+ "hubspot": 1,
213
+ "ideal": 1,
214
+ "imdb": 1,
215
+ "instagram": 1,
216
+ "instalod": 1,
217
+ "intercom": 1,
218
+ "internet-explorer": 1,
219
+ "invision": 1,
220
+ "ioxhost": 1,
221
+ "itch-io": 1,
222
+ "itunes-note": 1,
223
+ "itunes": 1,
224
+ "java": 1,
225
+ "jedi-order": 1,
226
+ "jenkins": 1,
227
+ "jira": 1,
228
+ "joget": 1,
229
+ "joomla": 1,
230
+ "js": 1,
231
+ "jsfiddle": 1,
232
+ "kaggle": 1,
233
+ "keybase": 1,
234
+ "keycdn": 1,
235
+ "kickstarter-k": 1,
236
+ "kickstarter": 1,
237
+ "korvue": 1,
238
+ "laravel": 1,
239
+ "lastfm": 1,
240
+ "leanpub": 1,
241
+ "less": 1,
242
+ "line": 1,
243
+ "linkedin-in": 1,
244
+ "linkedin": 1,
245
+ "linode": 1,
246
+ "linux": 1,
247
+ "lyft": 1,
248
+ "magento": 1,
249
+ "mailchimp": 1,
250
+ "mandalorian": 1,
251
+ "markdown": 1,
252
+ "mastodon": 1,
253
+ "maxcdn": 1,
254
+ "mdb": 1,
255
+ "medapps": 1,
256
+ "medium": 1,
257
+ "medrt": 1,
258
+ "meetup": 1,
259
+ "megaport": 1,
260
+ "mendeley": 1,
261
+ "meta": 1,
262
+ "microblog": 1,
263
+ "microsoft": 1,
264
+ "mix": 1,
265
+ "mixcloud": 1,
266
+ "mixer": 1,
267
+ "mizuni": 1,
268
+ "modx": 1,
269
+ "monero": 1,
270
+ "napster": 1,
271
+ "neos": 1,
272
+ "nfc-directional": 1,
273
+ "nfc-symbol": 511,
274
+ "nimblr": 1,
275
+ "node-js": 1,
276
+ "node": 1,
277
+ "npm": 1,
278
+ "ns8": 1,
279
+ "nutritionix": 1,
280
+ "octopus-deploy": 1,
281
+ "odnoklassniki": 1,
282
+ "odysee": 1,
283
+ "old-republic": 1,
284
+ "opencart": 1,
285
+ "openid": 1,
286
+ "opera": 1,
287
+ "optin-monster": 1,
288
+ "orcid": 1,
289
+ "osi": 1,
290
+ "padlet": 1,
291
+ "page4": 1,
292
+ "pagelines": 1,
293
+ "palfed": 1,
294
+ "patreon": 1,
295
+ "paypal": 1,
296
+ "perbyte": 1,
297
+ "periscope": 1,
298
+ "phabricator": 1,
299
+ "phoenix-framework": 1,
300
+ "phoenix-squadron": 1,
301
+ "php": 1,
302
+ "pied-piper-alt": 1,
303
+ "pied-piper-hat": 1,
304
+ "pied-piper-pp": 1,
305
+ "pied-piper": 1,
306
+ "pinterest-p": 1,
307
+ "pinterest": 1,
308
+ "pix": 1,
309
+ "playstation": 1,
310
+ "product-hunt": 1,
311
+ "pushed": 1,
312
+ "python": 1,
313
+ "qq": 1,
314
+ "quinscape": 1,
315
+ "quora": 1,
316
+ "r-project": 1,
317
+ "raspberry-pi": 1,
318
+ "ravelry": 1,
319
+ "react": 1,
320
+ "reacteurope": 1,
321
+ "readme": 1,
322
+ "rebel": 1,
323
+ "red-river": 1,
324
+ "reddit-alien": 1,
325
+ "reddit": 1,
326
+ "redhat": 1,
327
+ "renren": 1,
328
+ "replyd": 1,
329
+ "researchgate": 1,
330
+ "resolving": 1,
331
+ "rev": 1,
332
+ "rocketchat": 1,
333
+ "rockrms": 1,
334
+ "rust": 1,
335
+ "safari": 1,
336
+ "salesforce": 1,
337
+ "sass": 1,
338
+ "schlix": 1,
339
+ "screenpal": 1,
340
+ "scribd": 1,
341
+ "searchengin": 1,
342
+ "sellcast": 1,
343
+ "sellsy": 1,
344
+ "servicestack": 1,
345
+ "shirtsinbulk": 1,
346
+ "shopify": 1,
347
+ "shopware": 1,
348
+ "simplybuilt": 1,
349
+ "sistrix": 1,
350
+ "sith": 1,
351
+ "sitrox": 1,
352
+ "sketch": 1,
353
+ "skyatlas": 1,
354
+ "skype": 1,
355
+ "slack": 1,
356
+ "slideshare": 1,
357
+ "snapchat": 1,
358
+ "soundcloud": 1,
359
+ "sourcetree": 1,
360
+ "space-awesome": 1,
361
+ "speakap": 1,
362
+ "speaker-deck": 1,
363
+ "spotify": 1,
364
+ "square-behance": 1,
365
+ "square-dribbble": 1,
366
+ "square-facebook": 1,
367
+ "square-font-awesome-stroke": 1,
368
+ "square-font-awesome": 1,
369
+ "square-git": 1,
370
+ "square-github": 1,
371
+ "square-gitlab": 1,
372
+ "square-google-plus": 1,
373
+ "square-hacker-news": 1,
374
+ "square-instagram": 1,
375
+ "square-js": 1,
376
+ "square-lastfm": 1,
377
+ "square-odnoklassniki": 1,
378
+ "square-pied-piper": 1,
379
+ "square-pinterest": 1,
380
+ "square-reddit": 1,
381
+ "square-snapchat": 1,
382
+ "square-steam": 1,
383
+ "square-tumblr": 1,
384
+ "square-twitter": 1,
385
+ "square-viadeo": 1,
386
+ "square-vimeo": 1,
387
+ "square-whatsapp": 1,
388
+ "square-xing": 1,
389
+ "square-youtube": 1,
390
+ "squarespace": 1,
391
+ "stack-exchange": 1,
392
+ "stack-overflow": 1,
393
+ "stackpath": 1,
394
+ "staylinked": 1,
395
+ "steam-symbol": 1,
396
+ "steam": 1,
397
+ "sticker-mule": 1,
398
+ "strava": 1,
399
+ "stripe-s": 1,
400
+ "stripe": 1,
401
+ "stubber": 1,
402
+ "studiovinari": 1,
403
+ "stumbleupon-circle": 1,
404
+ "stumbleupon": 1,
405
+ "superpowers": 1,
406
+ "supple": 1,
407
+ "suse": 1,
408
+ "swift": 1,
409
+ "symfony": 1,
410
+ "teamspeak": 1,
411
+ "telegram": 1,
412
+ "tencent-weibo": 1,
413
+ "the-red-yeti": 1,
414
+ "themeco": 1,
415
+ "themeisle": 1,
416
+ "think-peaks": 1,
417
+ "tiktok": 1,
418
+ "trade-federation": 1,
419
+ "trello": 1,
420
+ "tumblr": 1,
421
+ "twitch": 1,
422
+ "twitter": 1,
423
+ "typo3": 1,
424
+ "uber": 1,
425
+ "ubuntu": 1,
426
+ "uikit": 1,
427
+ "umbraco": 1,
428
+ "uncharted": 1,
429
+ "uniregistry": 1,
430
+ "unity": 1,
431
+ "unsplash": 1,
432
+ "untappd": 1,
433
+ "ups": 1,
434
+ "usb": 1,
435
+ "usps": 1,
436
+ "ussunnah": 1,
437
+ "vaadin": 1,
438
+ "viacoin": 1,
439
+ "viadeo": 1,
440
+ "viber": 1,
441
+ "vimeo-v": 1,
442
+ "vimeo": 1,
443
+ "vine": 1,
444
+ "vk": 1,
445
+ "vnv": 1,
446
+ "vuejs": 1,
447
+ "watchman-monitoring": 1,
448
+ "waze": 1,
449
+ "weebly": 1,
450
+ "weibo": 1,
451
+ "weixin": 1,
452
+ "whatsapp": 1,
453
+ "whmcs": 1,
454
+ "wikipedia-w": 1,
455
+ "windows": 1,
456
+ "wirsindhandwerk": 1,
457
+ "wix": 1,
458
+ "wizards-of-the-coast": 1,
459
+ "wodu": 1,
460
+ "wolf-pack-battalion": 1,
461
+ "wordpress-simple": 1,
462
+ "wordpress": 1,
463
+ "wpbeginner": 1,
464
+ "wpexplorer": 1,
465
+ "wpforms": 1,
466
+ "wpressr": 1,
467
+ "xbox": 1,
468
+ "xing": 1,
469
+ "y-combinator": 1,
470
+ "yahoo": 1,
471
+ "yammer": 1,
472
+ "yandex-international": 1,
473
+ "yandex": 1,
474
+ "yarn": 1,
475
+ "yelp": 1,
476
+ "yoast": 1,
477
+ "youtube": 1,
478
+ "zhihu": 1,
479
+ "00": 510,
480
+ "360-degrees": 510,
481
+ "a": 510,
482
+ "abacus": 510,
483
+ "accent-grave": 510,
484
+ "acorn": 510,
485
+ "address-book": 510,
486
+ "address-card": 510,
487
+ "air-conditioner": 510,
488
+ "airplay": 510,
489
+ "alarm-clock": 510,
490
+ "alarm-exclamation": 510,
491
+ "alarm-plus": 510,
492
+ "alarm-snooze": 510,
493
+ "album-circle-plus": 510,
494
+ "album-circle-user": 510,
495
+ "album-collection-circle-plus": 510,
496
+ "album-collection-circle-user": 510,
497
+ "album-collection": 510,
498
+ "album": 510,
499
+ "alicorn": 510,
500
+ "alien-8bit": 510,
501
+ "alien": 510,
502
+ "align-center": 510,
503
+ "align-justify": 510,
504
+ "align-left": 510,
505
+ "align-right": 510,
506
+ "align-slash": 510,
507
+ "alt": 510,
508
+ "amp-guitar": 510,
509
+ "ampersand": 510,
510
+ "anchor-circle-check": 510,
511
+ "anchor-circle-exclamation": 510,
512
+ "anchor-circle-xmark": 510,
513
+ "anchor-lock": 510,
514
+ "anchor": 510,
515
+ "angel": 510,
516
+ "angle-90": 510,
517
+ "angle-down": 510,
518
+ "angle-left": 510,
519
+ "angle-right": 510,
520
+ "angle-up": 510,
521
+ "angle": 510,
522
+ "angles-down": 510,
523
+ "angles-left": 510,
524
+ "angles-right": 510,
525
+ "angles-up": 510,
526
+ "ankh": 510,
527
+ "apartment": 510,
528
+ "aperture": 510,
529
+ "apostrophe": 510,
530
+ "apple-core": 510,
531
+ "apple-whole": 510,
532
+ "archway": 510,
533
+ "arrow-down-1-9": 510,
534
+ "arrow-down-9-1": 510,
535
+ "arrow-down-a-z": 510,
536
+ "arrow-down-arrow-up": 510,
537
+ "arrow-down-big-small": 510,
538
+ "arrow-down-from-dotted-line": 510,
539
+ "arrow-down-from-line": 510,
540
+ "arrow-down-left-and-arrow-up-right-to-center": 510,
541
+ "arrow-down-left": 510,
542
+ "arrow-down-long": 510,
543
+ "arrow-down-right": 510,
544
+ "arrow-down-short-wide": 510,
545
+ "arrow-down-small-big": 510,
546
+ "arrow-down-square-triangle": 510,
547
+ "arrow-down-to-arc": 510,
548
+ "arrow-down-to-bracket": 510,
549
+ "arrow-down-to-dotted-line": 510,
550
+ "arrow-down-to-line": 510,
551
+ "arrow-down-to-square": 510,
552
+ "arrow-down-triangle-square": 510,
553
+ "arrow-down-up-across-line": 510,
554
+ "arrow-down-up-lock": 510,
555
+ "arrow-down-wide-short": 510,
556
+ "arrow-down-z-a": 510,
557
+ "arrow-down": 510,
558
+ "arrow-left-from-line": 510,
559
+ "arrow-left-long-to-line": 510,
560
+ "arrow-left-long": 510,
561
+ "arrow-left-to-line": 510,
562
+ "arrow-left": 510,
563
+ "arrow-pointer": 510,
564
+ "arrow-progress": 510,
565
+ "arrow-right-arrow-left": 510,
566
+ "arrow-right-from-arc": 510,
567
+ "arrow-right-from-bracket": 510,
568
+ "arrow-right-from-line": 510,
569
+ "arrow-right-long-to-line": 510,
570
+ "arrow-right-long": 510,
571
+ "arrow-right-to-arc": 510,
572
+ "arrow-right-to-bracket": 510,
573
+ "arrow-right-to-city": 510,
574
+ "arrow-right-to-line": 510,
575
+ "arrow-right": 510,
576
+ "arrow-rotate-left": 510,
577
+ "arrow-rotate-right": 510,
578
+ "arrow-trend-down": 510,
579
+ "arrow-trend-up": 510,
580
+ "arrow-turn-down-left": 510,
581
+ "arrow-turn-down-right": 510,
582
+ "arrow-turn-down": 510,
583
+ "arrow-turn-up": 510,
584
+ "arrow-up-1-9": 510,
585
+ "arrow-up-9-1": 510,
586
+ "arrow-up-a-z": 510,
587
+ "arrow-up-arrow-down": 510,
588
+ "arrow-up-big-small": 510,
589
+ "arrow-up-from-arc": 510,
590
+ "arrow-up-from-bracket": 510,
591
+ "arrow-up-from-dotted-line": 510,
592
+ "arrow-up-from-ground-water": 510,
593
+ "arrow-up-from-line": 510,
594
+ "arrow-up-from-square": 510,
595
+ "arrow-up-from-water-pump": 510,
596
+ "arrow-up-left-from-circle": 510,
597
+ "arrow-up-left": 510,
598
+ "arrow-up-long": 510,
599
+ "arrow-up-right-and-arrow-down-left-from-center": 510,
600
+ "arrow-up-right-dots": 510,
601
+ "arrow-up-right-from-square": 510,
602
+ "arrow-up-right": 510,
603
+ "arrow-up-short-wide": 510,
604
+ "arrow-up-small-big": 510,
605
+ "arrow-up-square-triangle": 510,
606
+ "arrow-up-to-dotted-line": 510,
607
+ "arrow-up-to-line": 510,
608
+ "arrow-up-triangle-square": 510,
609
+ "arrow-up-wide-short": 510,
610
+ "arrow-up-z-a": 510,
611
+ "arrow-up": 510,
612
+ "arrows-cross": 510,
613
+ "arrows-down-to-line": 510,
614
+ "arrows-down-to-people": 510,
615
+ "arrows-from-dotted-line": 510,
616
+ "arrows-from-line": 510,
617
+ "arrows-left-right-to-line": 510,
618
+ "arrows-left-right": 510,
619
+ "arrows-maximize": 510,
620
+ "arrows-minimize": 510,
621
+ "arrows-repeat-1": 510,
622
+ "arrows-repeat": 510,
623
+ "arrows-retweet": 510,
624
+ "arrows-rotate": 510,
625
+ "arrows-spin": 510,
626
+ "arrows-split-up-and-left": 510,
627
+ "arrows-to-circle": 510,
628
+ "arrows-to-dot": 510,
629
+ "arrows-to-dotted-line": 510,
630
+ "arrows-to-eye": 510,
631
+ "arrows-to-line": 510,
632
+ "arrows-turn-right": 510,
633
+ "arrows-turn-to-dots": 510,
634
+ "arrows-up-down-left-right": 510,
635
+ "arrows-up-down": 510,
636
+ "arrows-up-to-line": 510,
637
+ "asterisk": 510,
638
+ "at": 510,
639
+ "atom-simple": 510,
640
+ "atom": 510,
641
+ "audio-description-slash": 510,
642
+ "audio-description": 510,
643
+ "austral-sign": 510,
644
+ "avocado": 510,
645
+ "award-simple": 510,
646
+ "award": 510,
647
+ "axe-battle": 510,
648
+ "axe": 510,
649
+ "b": 510,
650
+ "baby-carriage": 510,
651
+ "baby": 510,
652
+ "backpack": 510,
653
+ "backward-fast": 510,
654
+ "backward-step": 510,
655
+ "backward": 510,
656
+ "bacon": 510,
657
+ "bacteria": 510,
658
+ "bacterium": 510,
659
+ "badge-check": 510,
660
+ "badge-dollar": 510,
661
+ "badge-percent": 510,
662
+ "badge-sheriff": 510,
663
+ "badge": 510,
664
+ "badger-honey": 510,
665
+ "badminton": 510,
666
+ "bag-seedling": 510,
667
+ "bag-shopping": 510,
668
+ "bagel": 510,
669
+ "bags-shopping": 510,
670
+ "baguette": 510,
671
+ "bahai": 510,
672
+ "baht-sign": 510,
673
+ "ball-pile": 510,
674
+ "balloon": 510,
675
+ "balloons": 510,
676
+ "ballot-check": 510,
677
+ "ballot": 510,
678
+ "ban-bug": 510,
679
+ "ban-parking": 510,
680
+ "ban-smoking": 510,
681
+ "ban": 510,
682
+ "banana": 510,
683
+ "bandage": 510,
684
+ "bangladeshi-taka-sign": 510,
685
+ "banjo": 510,
686
+ "barcode-read": 510,
687
+ "barcode-scan": 510,
688
+ "barcode": 510,
689
+ "bars-filter": 510,
690
+ "bars-progress": 510,
691
+ "bars-sort": 510,
692
+ "bars-staggered": 510,
693
+ "bars": 510,
694
+ "baseball-bat-ball": 510,
695
+ "baseball": 510,
696
+ "basket-shopping-simple": 510,
697
+ "basket-shopping": 510,
698
+ "basketball-hoop": 510,
699
+ "basketball": 510,
700
+ "bat": 510,
701
+ "bath": 510,
702
+ "battery-bolt": 510,
703
+ "battery-empty": 510,
704
+ "battery-exclamation": 510,
705
+ "battery-full": 510,
706
+ "battery-half": 510,
707
+ "battery-low": 510,
708
+ "battery-quarter": 510,
709
+ "battery-slash": 510,
710
+ "battery-three-quarters": 510,
711
+ "bed-bunk": 510,
712
+ "bed-empty": 510,
713
+ "bed-front": 510,
714
+ "bed-pulse": 510,
715
+ "bed": 510,
716
+ "bee": 510,
717
+ "beer-mug-empty": 510,
718
+ "beer-mug": 510,
719
+ "bell-concierge": 510,
720
+ "bell-exclamation": 510,
721
+ "bell-on": 510,
722
+ "bell-plus": 510,
723
+ "bell-school-slash": 510,
724
+ "bell-school": 510,
725
+ "bell-slash": 510,
726
+ "bell": 510,
727
+ "bells": 510,
728
+ "bench-tree": 510,
729
+ "bezier-curve": 510,
730
+ "bicycle": 510,
731
+ "billboard": 510,
732
+ "bin-bottles-recycle": 510,
733
+ "bin-bottles": 510,
734
+ "bin-recycle": 510,
735
+ "binary-circle-check": 510,
736
+ "binary-lock": 510,
737
+ "binary-slash": 510,
738
+ "binary": 510,
739
+ "binoculars": 510,
740
+ "biohazard": 510,
741
+ "bird": 510,
742
+ "bitcoin-sign": 510,
743
+ "blanket-fire": 510,
744
+ "blanket": 510,
745
+ "blender-phone": 510,
746
+ "blender": 510,
747
+ "blinds-open": 510,
748
+ "blinds-raised": 510,
749
+ "blinds": 510,
750
+ "block-brick-fire": 510,
751
+ "block-brick": 510,
752
+ "block-question": 510,
753
+ "block-quote": 510,
754
+ "block": 510,
755
+ "blog": 510,
756
+ "blueberries": 510,
757
+ "bold": 510,
758
+ "bolt-auto": 510,
759
+ "bolt-lightning": 510,
760
+ "bolt-slash": 510,
761
+ "bolt": 510,
762
+ "bomb": 510,
763
+ "bone-break": 510,
764
+ "bone": 510,
765
+ "bong": 510,
766
+ "book-arrow-right": 510,
767
+ "book-arrow-up": 510,
768
+ "book-atlas": 510,
769
+ "book-bible": 510,
770
+ "book-blank": 510,
771
+ "book-bookmark": 510,
772
+ "book-circle-arrow-right": 510,
773
+ "book-circle-arrow-up": 510,
774
+ "book-copy": 510,
775
+ "book-font": 510,
776
+ "book-heart": 510,
777
+ "book-journal-whills": 510,
778
+ "book-medical": 510,
779
+ "book-open-cover": 510,
780
+ "book-open-reader": 510,
781
+ "book-open": 510,
782
+ "book-quran": 510,
783
+ "book-section": 510,
784
+ "book-skull": 510,
785
+ "book-sparkles": 510,
786
+ "book-tanakh": 510,
787
+ "book-user": 510,
788
+ "book": 510,
789
+ "bookmark-slash": 510,
790
+ "bookmark": 510,
791
+ "books-medical": 510,
792
+ "books": 510,
793
+ "boombox": 510,
794
+ "boot-heeled": 510,
795
+ "boot": 510,
796
+ "booth-curtain": 510,
797
+ "border-all": 510,
798
+ "border-bottom-right": 510,
799
+ "border-bottom": 510,
800
+ "border-center-h": 510,
801
+ "border-center-v": 510,
802
+ "border-inner": 510,
803
+ "border-left": 510,
804
+ "border-none": 510,
805
+ "border-outer": 510,
806
+ "border-right": 510,
807
+ "border-top-left": 510,
808
+ "border-top": 510,
809
+ "bore-hole": 510,
810
+ "bottle-droplet": 510,
811
+ "bottle-water": 510,
812
+ "bow-arrow": 510,
813
+ "bowl-chopsticks-noodles": 510,
814
+ "bowl-chopsticks": 510,
815
+ "bowl-food": 510,
816
+ "bowl-hot": 510,
817
+ "bowl-rice": 510,
818
+ "bowl-scoop": 510,
819
+ "bowl-scoops": 510,
820
+ "bowl-soft-serve": 510,
821
+ "bowl-spoon": 510,
822
+ "bowling-ball-pin": 510,
823
+ "bowling-ball": 510,
824
+ "bowling-pins": 510,
825
+ "box-archive": 510,
826
+ "box-ballot": 510,
827
+ "box-check": 510,
828
+ "box-circle-check": 510,
829
+ "box-dollar": 510,
830
+ "box-heart": 510,
831
+ "box-open-full": 510,
832
+ "box-open": 510,
833
+ "box-taped": 510,
834
+ "box-tissue": 510,
835
+ "box": 510,
836
+ "boxes-packing": 510,
837
+ "boxes-stacked": 510,
838
+ "boxing-glove": 510,
839
+ "bracket-curly-right": 510,
840
+ "bracket-curly": 510,
841
+ "bracket-round-right": 510,
842
+ "bracket-round": 510,
843
+ "bracket-square-right": 510,
844
+ "bracket-square": 510,
845
+ "brackets-curly": 510,
846
+ "brackets-round": 510,
847
+ "brackets-square": 510,
848
+ "braille": 510,
849
+ "brain-arrow-curved-right": 510,
850
+ "brain-circuit": 510,
851
+ "brain": 510,
852
+ "brake-warning": 510,
853
+ "brazilian-real-sign": 510,
854
+ "bread-loaf": 510,
855
+ "bread-slice-butter": 510,
856
+ "bread-slice": 510,
857
+ "bridge-circle-check": 510,
858
+ "bridge-circle-exclamation": 510,
859
+ "bridge-circle-xmark": 510,
860
+ "bridge-lock": 510,
861
+ "bridge-suspension": 510,
862
+ "bridge-water": 510,
863
+ "bridge": 510,
864
+ "briefcase-arrow-right": 510,
865
+ "briefcase-blank": 510,
866
+ "briefcase-medical": 510,
867
+ "briefcase": 510,
868
+ "brightness-low": 510,
869
+ "brightness": 510,
870
+ "bring-forward": 510,
871
+ "bring-front": 510,
872
+ "broccoli": 510,
873
+ "broom-ball": 510,
874
+ "broom-wide": 510,
875
+ "broom": 510,
876
+ "browser": 510,
877
+ "browsers": 510,
878
+ "brush": 510,
879
+ "bucket": 510,
880
+ "bug-slash": 510,
881
+ "bug": 510,
882
+ "bugs": 510,
883
+ "building-circle-arrow-right": 510,
884
+ "building-circle-check": 510,
885
+ "building-circle-exclamation": 510,
886
+ "building-circle-xmark": 510,
887
+ "building-columns": 510,
888
+ "building-flag": 510,
889
+ "building-lock": 510,
890
+ "building-ngo": 510,
891
+ "building-shield": 510,
892
+ "building-un": 510,
893
+ "building-user": 510,
894
+ "building-wheat": 510,
895
+ "building": 510,
896
+ "buildings": 510,
897
+ "bullhorn": 510,
898
+ "bullseye-arrow": 510,
899
+ "bullseye-pointer": 510,
900
+ "bullseye": 510,
901
+ "buoy-mooring": 510,
902
+ "buoy": 510,
903
+ "burger-cheese": 510,
904
+ "burger-fries": 510,
905
+ "burger-glass": 510,
906
+ "burger-lettuce": 510,
907
+ "burger-soda": 510,
908
+ "burger": 510,
909
+ "burrito": 510,
910
+ "burst": 510,
911
+ "bus-school": 510,
912
+ "bus-simple": 510,
913
+ "bus": 510,
914
+ "business-time": 510,
915
+ "butter": 510,
916
+ "c": 510,
917
+ "cabin": 510,
918
+ "cabinet-filing": 510,
919
+ "cable-car": 510,
920
+ "cactus": 510,
921
+ "cake-candles": 510,
922
+ "cake-slice": 510,
923
+ "calculator-simple": 510,
924
+ "calculator": 510,
925
+ "calendar-arrow-down": 510,
926
+ "calendar-arrow-up": 510,
927
+ "calendar-check": 510,
928
+ "calendar-circle-exclamation": 510,
929
+ "calendar-circle-minus": 510,
930
+ "calendar-circle-plus": 510,
931
+ "calendar-circle-user": 510,
932
+ "calendar-clock": 510,
933
+ "calendar-day": 510,
934
+ "calendar-days": 510,
935
+ "calendar-exclamation": 510,
936
+ "calendar-heart": 510,
937
+ "calendar-image": 510,
938
+ "calendar-lines-pen": 510,
939
+ "calendar-lines": 510,
940
+ "calendar-minus": 510,
941
+ "calendar-pen": 510,
942
+ "calendar-plus": 510,
943
+ "calendar-range": 510,
944
+ "calendar-star": 510,
945
+ "calendar-users": 510,
946
+ "calendar-week": 510,
947
+ "calendar-xmark": 510,
948
+ "calendar": 510,
949
+ "calendars": 510,
950
+ "camcorder": 510,
951
+ "camera-cctv": 510,
952
+ "camera-movie": 510,
953
+ "camera-polaroid": 510,
954
+ "camera-retro": 510,
955
+ "camera-rotate": 510,
956
+ "camera-security": 510,
957
+ "camera-slash": 510,
958
+ "camera-viewfinder": 510,
959
+ "camera-web-slash": 510,
960
+ "camera-web": 510,
961
+ "camera": 510,
962
+ "campfire": 510,
963
+ "campground": 510,
964
+ "can-food": 510,
965
+ "candle-holder": 510,
966
+ "candy-bar": 510,
967
+ "candy-cane": 510,
968
+ "candy-corn": 510,
969
+ "candy": 510,
970
+ "cannabis": 510,
971
+ "capsules": 510,
972
+ "car-battery": 510,
973
+ "car-bolt": 510,
974
+ "car-building": 510,
975
+ "car-bump": 510,
976
+ "car-burst": 510,
977
+ "car-bus": 510,
978
+ "car-circle-bolt": 510,
979
+ "car-garage": 510,
980
+ "car-mirrors": 510,
981
+ "car-on": 510,
982
+ "car-rear": 510,
983
+ "car-side-bolt": 510,
984
+ "car-side": 510,
985
+ "car-tilt": 510,
986
+ "car-tunnel": 510,
987
+ "car-wash": 510,
988
+ "car-wrench": 510,
989
+ "car": 510,
990
+ "caravan-simple": 510,
991
+ "caravan": 510,
992
+ "card-club": 510,
993
+ "card-diamond": 510,
994
+ "card-heart": 510,
995
+ "card-spade": 510,
996
+ "cards-blank": 510,
997
+ "cards": 510,
998
+ "caret-down": 510,
999
+ "caret-left": 510,
1000
+ "caret-right": 510,
1001
+ "caret-up": 510,
1002
+ "carrot": 510,
1003
+ "cars": 510,
1004
+ "cart-arrow-down": 510,
1005
+ "cart-arrow-up": 510,
1006
+ "cart-circle-arrow-down": 510,
1007
+ "cart-circle-arrow-up": 510,
1008
+ "cart-circle-check": 510,
1009
+ "cart-circle-exclamation": 510,
1010
+ "cart-circle-plus": 510,
1011
+ "cart-circle-xmark": 510,
1012
+ "cart-flatbed-boxes": 510,
1013
+ "cart-flatbed-empty": 510,
1014
+ "cart-flatbed-suitcase": 510,
1015
+ "cart-flatbed": 510,
1016
+ "cart-minus": 510,
1017
+ "cart-plus": 510,
1018
+ "cart-shopping-fast": 510,
1019
+ "cart-shopping": 510,
1020
+ "cart-xmark": 510,
1021
+ "cash-register": 510,
1022
+ "cassette-betamax": 510,
1023
+ "cassette-tape": 510,
1024
+ "cassette-vhs": 510,
1025
+ "castle": 510,
1026
+ "cat-space": 510,
1027
+ "cat": 510,
1028
+ "cauldron": 510,
1029
+ "cedi-sign": 510,
1030
+ "cent-sign": 510,
1031
+ "certificate": 510,
1032
+ "chair-office": 510,
1033
+ "chair": 510,
1034
+ "chalkboard-user": 510,
1035
+ "chalkboard": 510,
1036
+ "champagne-glass": 510,
1037
+ "champagne-glasses": 510,
1038
+ "charging-station": 510,
1039
+ "chart-area": 510,
1040
+ "chart-bar": 510,
1041
+ "chart-bullet": 510,
1042
+ "chart-candlestick": 510,
1043
+ "chart-column": 510,
1044
+ "chart-gantt": 510,
1045
+ "chart-line-down": 510,
1046
+ "chart-line-up-down": 510,
1047
+ "chart-line-up": 510,
1048
+ "chart-line": 510,
1049
+ "chart-mixed-up-circle-currency": 510,
1050
+ "chart-mixed-up-circle-dollar": 510,
1051
+ "chart-mixed": 510,
1052
+ "chart-network": 510,
1053
+ "chart-pie-simple-circle-currency": 510,
1054
+ "chart-pie-simple-circle-dollar": 510,
1055
+ "chart-pie-simple": 510,
1056
+ "chart-pie": 510,
1057
+ "chart-pyramid": 510,
1058
+ "chart-radar": 510,
1059
+ "chart-scatter-3d": 510,
1060
+ "chart-scatter-bubble": 510,
1061
+ "chart-scatter": 510,
1062
+ "chart-simple-horizontal": 510,
1063
+ "chart-simple": 510,
1064
+ "chart-tree-map": 510,
1065
+ "chart-user": 510,
1066
+ "chart-waterfall": 510,
1067
+ "check-double": 510,
1068
+ "check-to-slot": 510,
1069
+ "check": 510,
1070
+ "cheese-swiss": 510,
1071
+ "cheese": 510,
1072
+ "cherries": 510,
1073
+ "chess-bishop-piece": 510,
1074
+ "chess-bishop": 510,
1075
+ "chess-board": 510,
1076
+ "chess-clock-flip": 510,
1077
+ "chess-clock": 510,
1078
+ "chess-king-piece": 510,
1079
+ "chess-king": 510,
1080
+ "chess-knight-piece": 510,
1081
+ "chess-knight": 510,
1082
+ "chess-pawn-piece": 510,
1083
+ "chess-pawn": 510,
1084
+ "chess-queen-piece": 510,
1085
+ "chess-queen": 510,
1086
+ "chess-rook-piece": 510,
1087
+ "chess-rook": 510,
1088
+ "chess": 510,
1089
+ "chestnut": 510,
1090
+ "chevron-down": 510,
1091
+ "chevron-left": 510,
1092
+ "chevron-right": 510,
1093
+ "chevron-up": 510,
1094
+ "chevrons-down": 510,
1095
+ "chevrons-left": 510,
1096
+ "chevrons-right": 510,
1097
+ "chevrons-up": 510,
1098
+ "chf-sign": 510,
1099
+ "child-combatant": 510,
1100
+ "child-dress": 510,
1101
+ "child-reaching": 510,
1102
+ "child": 510,
1103
+ "children": 510,
1104
+ "chimney": 510,
1105
+ "chopsticks": 510,
1106
+ "church": 510,
1107
+ "circle-0": 510,
1108
+ "circle-1": 510,
1109
+ "circle-2": 510,
1110
+ "circle-3": 510,
1111
+ "circle-4": 510,
1112
+ "circle-5": 510,
1113
+ "circle-6": 510,
1114
+ "circle-7": 510,
1115
+ "circle-8": 510,
1116
+ "circle-9": 510,
1117
+ "circle-a": 510,
1118
+ "circle-ampersand": 510,
1119
+ "circle-arrow-down-left": 510,
1120
+ "circle-arrow-down-right": 510,
1121
+ "circle-arrow-down": 510,
1122
+ "circle-arrow-left": 510,
1123
+ "circle-arrow-right": 510,
1124
+ "circle-arrow-up-left": 510,
1125
+ "circle-arrow-up-right": 510,
1126
+ "circle-arrow-up": 510,
1127
+ "circle-b": 510,
1128
+ "circle-bolt": 510,
1129
+ "circle-book-open": 510,
1130
+ "circle-bookmark": 510,
1131
+ "circle-c": 510,
1132
+ "circle-calendar": 510,
1133
+ "circle-camera": 510,
1134
+ "circle-caret-down": 510,
1135
+ "circle-caret-left": 510,
1136
+ "circle-caret-right": 510,
1137
+ "circle-caret-up": 510,
1138
+ "circle-check": 510,
1139
+ "circle-chevron-down": 510,
1140
+ "circle-chevron-left": 510,
1141
+ "circle-chevron-right": 510,
1142
+ "circle-chevron-up": 510,
1143
+ "circle-d": 510,
1144
+ "circle-dashed": 510,
1145
+ "circle-divide": 510,
1146
+ "circle-dollar-to-slot": 510,
1147
+ "circle-dollar": 510,
1148
+ "circle-dot": 510,
1149
+ "circle-down-left": 510,
1150
+ "circle-down-right": 510,
1151
+ "circle-down": 510,
1152
+ "circle-e": 510,
1153
+ "circle-ellipsis-vertical": 510,
1154
+ "circle-ellipsis": 510,
1155
+ "circle-envelope": 510,
1156
+ "circle-euro": 510,
1157
+ "circle-exclamation-check": 510,
1158
+ "circle-exclamation": 510,
1159
+ "circle-f": 510,
1160
+ "circle-g": 510,
1161
+ "circle-h": 510,
1162
+ "circle-half-stroke": 510,
1163
+ "circle-half": 510,
1164
+ "circle-heart": 510,
1165
+ "circle-i": 510,
1166
+ "circle-info": 510,
1167
+ "circle-j": 510,
1168
+ "circle-k": 510,
1169
+ "circle-l": 510,
1170
+ "circle-left": 510,
1171
+ "circle-location-arrow": 510,
1172
+ "circle-m": 510,
1173
+ "circle-microphone-lines": 510,
1174
+ "circle-microphone": 510,
1175
+ "circle-minus": 510,
1176
+ "circle-n": 510,
1177
+ "circle-nodes": 510,
1178
+ "circle-notch": 510,
1179
+ "circle-o": 510,
1180
+ "circle-p": 510,
1181
+ "circle-parking": 510,
1182
+ "circle-pause": 510,
1183
+ "circle-phone-flip": 510,
1184
+ "circle-phone-hangup": 510,
1185
+ "circle-phone": 510,
1186
+ "circle-play": 510,
1187
+ "circle-plus": 510,
1188
+ "circle-q": 510,
1189
+ "circle-quarter-stroke": 510,
1190
+ "circle-quarter": 510,
1191
+ "circle-quarters": 510,
1192
+ "circle-question": 510,
1193
+ "circle-r": 510,
1194
+ "circle-radiation": 510,
1195
+ "circle-right": 510,
1196
+ "circle-s": 510,
1197
+ "circle-small": 510,
1198
+ "circle-sort-down": 510,
1199
+ "circle-sort-up": 510,
1200
+ "circle-sort": 510,
1201
+ "circle-star": 510,
1202
+ "circle-sterling": 510,
1203
+ "circle-stop": 510,
1204
+ "circle-t": 510,
1205
+ "circle-three-quarters-stroke": 510,
1206
+ "circle-three-quarters": 510,
1207
+ "circle-trash": 510,
1208
+ "circle-u": 510,
1209
+ "circle-up-left": 510,
1210
+ "circle-up-right": 510,
1211
+ "circle-up": 510,
1212
+ "circle-user": 510,
1213
+ "circle-v": 510,
1214
+ "circle-video": 510,
1215
+ "circle-w": 510,
1216
+ "circle-waveform-lines": 510,
1217
+ "circle-x": 510,
1218
+ "circle-xmark": 510,
1219
+ "circle-y": 510,
1220
+ "circle-yen": 510,
1221
+ "circle-z": 510,
1222
+ "circle": 510,
1223
+ "circles-overlap": 510,
1224
+ "citrus-slice": 510,
1225
+ "citrus": 510,
1226
+ "city": 510,
1227
+ "clapperboard-play": 510,
1228
+ "clapperboard": 510,
1229
+ "clarinet": 510,
1230
+ "claw-marks": 510,
1231
+ "clipboard-check": 510,
1232
+ "clipboard-list-check": 510,
1233
+ "clipboard-list": 510,
1234
+ "clipboard-medical": 510,
1235
+ "clipboard-prescription": 510,
1236
+ "clipboard-question": 510,
1237
+ "clipboard-user": 510,
1238
+ "clipboard": 510,
1239
+ "clock-desk": 510,
1240
+ "clock-eight-thirty": 510,
1241
+ "clock-eight": 510,
1242
+ "clock-eleven-thirty": 510,
1243
+ "clock-eleven": 510,
1244
+ "clock-five-thirty": 510,
1245
+ "clock-five": 510,
1246
+ "clock-four-thirty": 510,
1247
+ "clock-nine-thirty": 510,
1248
+ "clock-nine": 510,
1249
+ "clock-one-thirty": 510,
1250
+ "clock-one": 510,
1251
+ "clock-rotate-left": 510,
1252
+ "clock-seven-thirty": 510,
1253
+ "clock-seven": 510,
1254
+ "clock-six-thirty": 510,
1255
+ "clock-six": 510,
1256
+ "clock-ten-thirty": 510,
1257
+ "clock-ten": 510,
1258
+ "clock-three-thirty": 510,
1259
+ "clock-three": 510,
1260
+ "clock-twelve-thirty": 510,
1261
+ "clock-twelve": 510,
1262
+ "clock-two-thirty": 510,
1263
+ "clock-two": 510,
1264
+ "clock": 510,
1265
+ "clone": 510,
1266
+ "closed-captioning-slash": 510,
1267
+ "closed-captioning": 510,
1268
+ "clothes-hanger": 510,
1269
+ "cloud-arrow-down": 510,
1270
+ "cloud-arrow-up": 510,
1271
+ "cloud-binary": 510,
1272
+ "cloud-bolt-moon": 510,
1273
+ "cloud-bolt-sun": 510,
1274
+ "cloud-bolt": 510,
1275
+ "cloud-check": 510,
1276
+ "cloud-drizzle": 510,
1277
+ "cloud-exclamation": 510,
1278
+ "cloud-fog": 510,
1279
+ "cloud-hail-mixed": 510,
1280
+ "cloud-hail": 510,
1281
+ "cloud-meatball": 510,
1282
+ "cloud-minus": 510,
1283
+ "cloud-moon-rain": 510,
1284
+ "cloud-moon": 510,
1285
+ "cloud-music": 510,
1286
+ "cloud-plus": 510,
1287
+ "cloud-question": 510,
1288
+ "cloud-rain": 510,
1289
+ "cloud-rainbow": 510,
1290
+ "cloud-showers-heavy": 510,
1291
+ "cloud-showers-water": 510,
1292
+ "cloud-showers": 510,
1293
+ "cloud-slash": 510,
1294
+ "cloud-sleet": 510,
1295
+ "cloud-snow": 510,
1296
+ "cloud-sun-rain": 510,
1297
+ "cloud-sun": 510,
1298
+ "cloud-word": 510,
1299
+ "cloud-xmark": 510,
1300
+ "cloud": 510,
1301
+ "clouds-moon": 510,
1302
+ "clouds-sun": 510,
1303
+ "clouds": 510,
1304
+ "clover": 510,
1305
+ "club": 510,
1306
+ "coconut": 510,
1307
+ "code-branch": 510,
1308
+ "code-commit": 510,
1309
+ "code-compare": 510,
1310
+ "code-fork": 510,
1311
+ "code-merge": 510,
1312
+ "code-pull-request-closed": 510,
1313
+ "code-pull-request-draft": 510,
1314
+ "code-pull-request": 510,
1315
+ "code-simple": 510,
1316
+ "code": 510,
1317
+ "coffee-bean": 510,
1318
+ "coffee-beans": 510,
1319
+ "coffee-pot": 510,
1320
+ "coffin-cross": 510,
1321
+ "coffin": 510,
1322
+ "coin-blank": 510,
1323
+ "coin-front": 510,
1324
+ "coin-vertical": 510,
1325
+ "coin": 510,
1326
+ "coins": 510,
1327
+ "colon-sign": 510,
1328
+ "colon": 510,
1329
+ "columns-3": 510,
1330
+ "comet": 510,
1331
+ "comma": 510,
1332
+ "command": 510,
1333
+ "comment-arrow-down": 510,
1334
+ "comment-arrow-up-right": 510,
1335
+ "comment-arrow-up": 510,
1336
+ "comment-captions": 510,
1337
+ "comment-check": 510,
1338
+ "comment-code": 510,
1339
+ "comment-dollar": 510,
1340
+ "comment-dots": 510,
1341
+ "comment-exclamation": 510,
1342
+ "comment-heart": 510,
1343
+ "comment-image": 510,
1344
+ "comment-lines": 510,
1345
+ "comment-medical": 510,
1346
+ "comment-middle-top": 510,
1347
+ "comment-middle": 510,
1348
+ "comment-minus": 510,
1349
+ "comment-music": 510,
1350
+ "comment-pen": 510,
1351
+ "comment-plus": 510,
1352
+ "comment-question": 510,
1353
+ "comment-quote": 510,
1354
+ "comment-slash": 510,
1355
+ "comment-smile": 510,
1356
+ "comment-sms": 510,
1357
+ "comment-text": 510,
1358
+ "comment-xmark": 510,
1359
+ "comment": 510,
1360
+ "comments-dollar": 510,
1361
+ "comments-question-check": 510,
1362
+ "comments-question": 510,
1363
+ "comments": 510,
1364
+ "compact-disc": 510,
1365
+ "compass-drafting": 510,
1366
+ "compass-slash": 510,
1367
+ "compass": 510,
1368
+ "compress-wide": 510,
1369
+ "compress": 510,
1370
+ "computer-classic": 510,
1371
+ "computer-mouse-scrollwheel": 510,
1372
+ "computer-mouse": 510,
1373
+ "computer-speaker": 510,
1374
+ "computer": 510,
1375
+ "container-storage": 510,
1376
+ "conveyor-belt-arm": 510,
1377
+ "conveyor-belt-boxes": 510,
1378
+ "conveyor-belt-empty": 510,
1379
+ "conveyor-belt": 510,
1380
+ "cookie-bite": 510,
1381
+ "cookie": 510,
1382
+ "copy": 510,
1383
+ "copyright": 510,
1384
+ "corn": 510,
1385
+ "corner": 510,
1386
+ "couch": 510,
1387
+ "cow": 510,
1388
+ "cowbell-circle-plus": 510,
1389
+ "cowbell": 510,
1390
+ "crab": 510,
1391
+ "crate-apple": 510,
1392
+ "crate-empty": 510,
1393
+ "credit-card-blank": 510,
1394
+ "credit-card-front": 510,
1395
+ "credit-card": 510,
1396
+ "cricket-bat-ball": 510,
1397
+ "croissant": 510,
1398
+ "crop-simple": 510,
1399
+ "crop": 510,
1400
+ "cross": 510,
1401
+ "crosshairs-simple": 510,
1402
+ "crosshairs": 510,
1403
+ "crow": 510,
1404
+ "crown": 510,
1405
+ "crutch": 510,
1406
+ "crutches": 510,
1407
+ "cruzeiro-sign": 510,
1408
+ "crystal-ball": 510,
1409
+ "cube": 510,
1410
+ "cubes-stacked": 510,
1411
+ "cubes": 510,
1412
+ "cucumber": 510,
1413
+ "cup-straw-swoosh": 510,
1414
+ "cup-straw": 510,
1415
+ "cup-togo": 510,
1416
+ "cupcake": 510,
1417
+ "curling-stone": 510,
1418
+ "custard": 510,
1419
+ "d": 510,
1420
+ "dagger": 510,
1421
+ "dash": 510,
1422
+ "database": 510,
1423
+ "deer-rudolph": 510,
1424
+ "deer": 510,
1425
+ "delete-left": 510,
1426
+ "delete-right": 510,
1427
+ "democrat": 510,
1428
+ "desktop-arrow-down": 510,
1429
+ "desktop": 510,
1430
+ "dharmachakra": 510,
1431
+ "diagram-cells": 510,
1432
+ "diagram-lean-canvas": 510,
1433
+ "diagram-nested": 510,
1434
+ "diagram-next": 510,
1435
+ "diagram-predecessor": 510,
1436
+ "diagram-previous": 510,
1437
+ "diagram-project": 510,
1438
+ "diagram-sankey": 510,
1439
+ "diagram-subtask": 510,
1440
+ "diagram-successor": 510,
1441
+ "diagram-venn": 510,
1442
+ "dial-high": 510,
1443
+ "dial-low": 510,
1444
+ "dial-max": 510,
1445
+ "dial-med-low": 510,
1446
+ "dial-med": 510,
1447
+ "dial-min": 510,
1448
+ "dial-off": 510,
1449
+ "dial": 510,
1450
+ "diamond-exclamation": 510,
1451
+ "diamond-half-stroke": 510,
1452
+ "diamond-half": 510,
1453
+ "diamond-turn-right": 510,
1454
+ "diamond": 510,
1455
+ "dice-d10": 510,
1456
+ "dice-d12": 510,
1457
+ "dice-d20": 510,
1458
+ "dice-d4": 510,
1459
+ "dice-d6": 510,
1460
+ "dice-d8": 510,
1461
+ "dice-five": 510,
1462
+ "dice-four": 510,
1463
+ "dice-one": 510,
1464
+ "dice-six": 510,
1465
+ "dice-three": 510,
1466
+ "dice-two": 510,
1467
+ "dice": 510,
1468
+ "dinosaur": 510,
1469
+ "diploma": 510,
1470
+ "disc-drive": 510,
1471
+ "disease": 510,
1472
+ "display-arrow-down": 510,
1473
+ "display-chart-up-circle-currency": 510,
1474
+ "display-chart-up-circle-dollar": 510,
1475
+ "display-chart-up": 510,
1476
+ "display-code": 510,
1477
+ "display-medical": 510,
1478
+ "display-slash": 510,
1479
+ "display": 510,
1480
+ "distribute-spacing-horizontal": 510,
1481
+ "distribute-spacing-vertical": 510,
1482
+ "ditto": 510,
1483
+ "divide": 510,
1484
+ "dna": 510,
1485
+ "do-not-enter": 510,
1486
+ "dog-leashed": 510,
1487
+ "dog": 510,
1488
+ "dollar-sign": 510,
1489
+ "dolly-empty": 510,
1490
+ "dolly": 510,
1491
+ "dolphin": 510,
1492
+ "dong-sign": 510,
1493
+ "donut": 510,
1494
+ "door-closed": 510,
1495
+ "door-open": 510,
1496
+ "dove": 510,
1497
+ "down-from-dotted-line": 510,
1498
+ "down-from-line": 510,
1499
+ "down-left-and-up-right-to-center": 510,
1500
+ "down-left": 510,
1501
+ "down-long": 510,
1502
+ "down-right": 510,
1503
+ "down-to-bracket": 510,
1504
+ "down-to-dotted-line": 510,
1505
+ "down-to-line": 510,
1506
+ "down": 510,
1507
+ "download": 510,
1508
+ "dragon": 510,
1509
+ "draw-circle": 510,
1510
+ "draw-polygon": 510,
1511
+ "draw-square": 510,
1512
+ "dreidel": 510,
1513
+ "drone-front": 510,
1514
+ "drone": 510,
1515
+ "droplet-degree": 510,
1516
+ "droplet-percent": 510,
1517
+ "droplet-slash": 510,
1518
+ "droplet": 510,
1519
+ "drum-steelpan": 510,
1520
+ "drum": 510,
1521
+ "drumstick-bite": 510,
1522
+ "drumstick": 510,
1523
+ "dryer-heat": 510,
1524
+ "dryer": 510,
1525
+ "duck": 510,
1526
+ "dumbbell": 510,
1527
+ "dumpster-fire": 510,
1528
+ "dumpster": 510,
1529
+ "dungeon": 510,
1530
+ "e": 510,
1531
+ "ear-deaf": 510,
1532
+ "ear-listen": 510,
1533
+ "ear-muffs": 510,
1534
+ "ear": 510,
1535
+ "earth-africa": 510,
1536
+ "earth-americas": 510,
1537
+ "earth-asia": 510,
1538
+ "earth-europe": 510,
1539
+ "earth-oceania": 510,
1540
+ "eclipse": 510,
1541
+ "egg-fried": 510,
1542
+ "egg": 510,
1543
+ "eggplant": 510,
1544
+ "eject": 510,
1545
+ "elephant": 510,
1546
+ "elevator": 510,
1547
+ "ellipsis-stroke-vertical": 510,
1548
+ "ellipsis-stroke": 510,
1549
+ "ellipsis-vertical": 510,
1550
+ "ellipsis": 510,
1551
+ "empty-set": 510,
1552
+ "engine-warning": 510,
1553
+ "engine": 510,
1554
+ "envelope-circle-check": 510,
1555
+ "envelope-dot": 510,
1556
+ "envelope-open-dollar": 510,
1557
+ "envelope-open-text": 510,
1558
+ "envelope-open": 510,
1559
+ "envelope": 510,
1560
+ "envelopes-bulk": 510,
1561
+ "envelopes": 510,
1562
+ "equals": 510,
1563
+ "eraser": 510,
1564
+ "escalator": 510,
1565
+ "ethernet": 510,
1566
+ "euro-sign": 510,
1567
+ "exclamation": 510,
1568
+ "expand-wide": 510,
1569
+ "expand": 510,
1570
+ "explosion": 510,
1571
+ "eye-dropper-full": 510,
1572
+ "eye-dropper-half": 510,
1573
+ "eye-dropper": 510,
1574
+ "eye-evil": 510,
1575
+ "eye-low-vision": 510,
1576
+ "eye-slash": 510,
1577
+ "eye": 510,
1578
+ "eyes": 510,
1579
+ "f": 510,
1580
+ "face-angry-horns": 510,
1581
+ "face-angry": 510,
1582
+ "face-anguished": 510,
1583
+ "face-anxious-sweat": 510,
1584
+ "face-astonished": 510,
1585
+ "face-awesome": 510,
1586
+ "face-beam-hand-over-mouth": 510,
1587
+ "face-clouds": 510,
1588
+ "face-confounded": 510,
1589
+ "face-confused": 510,
1590
+ "face-cowboy-hat": 510,
1591
+ "face-diagonal-mouth": 510,
1592
+ "face-disappointed": 510,
1593
+ "face-disguise": 510,
1594
+ "face-dizzy": 510,
1595
+ "face-dotted": 510,
1596
+ "face-downcast-sweat": 510,
1597
+ "face-drooling": 510,
1598
+ "face-exhaling": 510,
1599
+ "face-explode": 510,
1600
+ "face-expressionless": 510,
1601
+ "face-eyes-xmarks": 510,
1602
+ "face-fearful": 510,
1603
+ "face-flushed": 510,
1604
+ "face-frown-open": 510,
1605
+ "face-frown-slight": 510,
1606
+ "face-frown": 510,
1607
+ "face-glasses": 510,
1608
+ "face-grimace": 510,
1609
+ "face-grin-beam-sweat": 510,
1610
+ "face-grin-beam": 510,
1611
+ "face-grin-hearts": 510,
1612
+ "face-grin-squint-tears": 510,
1613
+ "face-grin-squint": 510,
1614
+ "face-grin-stars": 510,
1615
+ "face-grin-tears": 510,
1616
+ "face-grin-tongue-squint": 510,
1617
+ "face-grin-tongue-wink": 510,
1618
+ "face-grin-tongue": 510,
1619
+ "face-grin-wide": 510,
1620
+ "face-grin-wink": 510,
1621
+ "face-grin": 510,
1622
+ "face-hand-over-mouth": 510,
1623
+ "face-hand-peeking": 510,
1624
+ "face-hand-yawn": 510,
1625
+ "face-head-bandage": 510,
1626
+ "face-holding-back-tears": 510,
1627
+ "face-hushed": 510,
1628
+ "face-icicles": 510,
1629
+ "face-kiss-beam": 510,
1630
+ "face-kiss-closed-eyes": 510,
1631
+ "face-kiss-wink-heart": 510,
1632
+ "face-kiss": 510,
1633
+ "face-laugh-beam": 510,
1634
+ "face-laugh-squint": 510,
1635
+ "face-laugh-wink": 510,
1636
+ "face-laugh": 510,
1637
+ "face-lying": 510,
1638
+ "face-mask": 510,
1639
+ "face-meh-blank": 510,
1640
+ "face-meh": 510,
1641
+ "face-melting": 510,
1642
+ "face-monocle": 510,
1643
+ "face-nauseated": 510,
1644
+ "face-nose-steam": 510,
1645
+ "face-party": 510,
1646
+ "face-pensive": 510,
1647
+ "face-persevering": 510,
1648
+ "face-pleading": 510,
1649
+ "face-pouting": 510,
1650
+ "face-raised-eyebrow": 510,
1651
+ "face-relieved": 510,
1652
+ "face-rolling-eyes": 510,
1653
+ "face-sad-cry": 510,
1654
+ "face-sad-sweat": 510,
1655
+ "face-sad-tear": 510,
1656
+ "face-saluting": 510,
1657
+ "face-scream": 510,
1658
+ "face-shush": 510,
1659
+ "face-sleeping": 510,
1660
+ "face-sleepy": 510,
1661
+ "face-smile-beam": 510,
1662
+ "face-smile-halo": 510,
1663
+ "face-smile-hearts": 510,
1664
+ "face-smile-horns": 510,
1665
+ "face-smile-plus": 510,
1666
+ "face-smile-relaxed": 510,
1667
+ "face-smile-tear": 510,
1668
+ "face-smile-tongue": 510,
1669
+ "face-smile-upside-down": 510,
1670
+ "face-smile-wink": 510,
1671
+ "face-smile": 510,
1672
+ "face-smiling-hands": 510,
1673
+ "face-smirking": 510,
1674
+ "face-spiral-eyes": 510,
1675
+ "face-sunglasses": 510,
1676
+ "face-surprise": 510,
1677
+ "face-swear": 510,
1678
+ "face-thermometer": 510,
1679
+ "face-thinking": 510,
1680
+ "face-tired": 510,
1681
+ "face-tissue": 510,
1682
+ "face-tongue-money": 510,
1683
+ "face-tongue-sweat": 510,
1684
+ "face-unamused": 510,
1685
+ "face-viewfinder": 510,
1686
+ "face-vomit": 510,
1687
+ "face-weary": 510,
1688
+ "face-woozy": 510,
1689
+ "face-worried": 510,
1690
+ "face-zany": 510,
1691
+ "face-zipper": 510,
1692
+ "falafel": 510,
1693
+ "family-dress": 510,
1694
+ "family-pants": 510,
1695
+ "family": 510,
1696
+ "fan-table": 510,
1697
+ "fan": 510,
1698
+ "farm": 510,
1699
+ "faucet-drip": 510,
1700
+ "faucet": 510,
1701
+ "fax": 510,
1702
+ "feather-pointed": 510,
1703
+ "feather": 510,
1704
+ "fence": 510,
1705
+ "ferris-wheel": 510,
1706
+ "ferry": 510,
1707
+ "field-hockey-stick-ball": 510,
1708
+ "file-arrow-down": 510,
1709
+ "file-arrow-up": 510,
1710
+ "file-audio": 510,
1711
+ "file-binary": 510,
1712
+ "file-certificate": 510,
1713
+ "file-chart-column": 510,
1714
+ "file-chart-pie": 510,
1715
+ "file-check": 510,
1716
+ "file-circle-check": 510,
1717
+ "file-circle-exclamation": 510,
1718
+ "file-circle-info": 510,
1719
+ "file-circle-minus": 510,
1720
+ "file-circle-plus": 510,
1721
+ "file-circle-question": 510,
1722
+ "file-circle-xmark": 510,
1723
+ "file-code": 510,
1724
+ "file-contract": 510,
1725
+ "file-csv": 510,
1726
+ "file-dashed-line": 510,
1727
+ "file-doc": 510,
1728
+ "file-excel": 510,
1729
+ "file-exclamation": 510,
1730
+ "file-export": 510,
1731
+ "file-heart": 510,
1732
+ "file-image": 510,
1733
+ "file-import": 510,
1734
+ "file-invoice-dollar": 510,
1735
+ "file-invoice": 510,
1736
+ "file-lines": 510,
1737
+ "file-lock": 510,
1738
+ "file-magnifying-glass": 510,
1739
+ "file-medical": 510,
1740
+ "file-minus": 510,
1741
+ "file-music": 510,
1742
+ "file-pdf": 510,
1743
+ "file-pen": 510,
1744
+ "file-plus-minus": 510,
1745
+ "file-plus": 510,
1746
+ "file-powerpoint": 510,
1747
+ "file-prescription": 510,
1748
+ "file-shield": 510,
1749
+ "file-signature": 510,
1750
+ "file-slash": 510,
1751
+ "file-spreadsheet": 510,
1752
+ "file-user": 510,
1753
+ "file-video": 510,
1754
+ "file-waveform": 510,
1755
+ "file-word": 510,
1756
+ "file-xmark": 510,
1757
+ "file-zip": 510,
1758
+ "file-zipper": 510,
1759
+ "file": 510,
1760
+ "files-medical": 510,
1761
+ "files": 510,
1762
+ "fill-drip": 510,
1763
+ "fill": 510,
1764
+ "film-canister": 510,
1765
+ "film-simple": 510,
1766
+ "film-slash": 510,
1767
+ "film": 510,
1768
+ "films": 510,
1769
+ "filter-circle-dollar": 510,
1770
+ "filter-circle-xmark": 510,
1771
+ "filter-list": 510,
1772
+ "filter-slash": 510,
1773
+ "filter": 510,
1774
+ "filters": 510,
1775
+ "fingerprint": 510,
1776
+ "fire-burner": 510,
1777
+ "fire-extinguisher": 510,
1778
+ "fire-flame-curved": 510,
1779
+ "fire-flame-simple": 510,
1780
+ "fire-flame": 510,
1781
+ "fire-hydrant": 510,
1782
+ "fire-smoke": 510,
1783
+ "fire": 510,
1784
+ "fireplace": 510,
1785
+ "fish-bones": 510,
1786
+ "fish-cooked": 510,
1787
+ "fish-fins": 510,
1788
+ "fish": 510,
1789
+ "fishing-rod": 510,
1790
+ "flag-checkered": 510,
1791
+ "flag-pennant": 510,
1792
+ "flag-swallowtail": 510,
1793
+ "flag-usa": 510,
1794
+ "flag": 510,
1795
+ "flashlight": 510,
1796
+ "flask-gear": 510,
1797
+ "flask-round-poison": 510,
1798
+ "flask-round-potion": 510,
1799
+ "flask-vial": 510,
1800
+ "flask": 510,
1801
+ "flatbread-stuffed": 510,
1802
+ "flatbread": 510,
1803
+ "floppy-disk-circle-arrow-right": 510,
1804
+ "floppy-disk-circle-xmark": 510,
1805
+ "floppy-disk-pen": 510,
1806
+ "floppy-disk": 510,
1807
+ "floppy-disks": 510,
1808
+ "florin-sign": 510,
1809
+ "flower-daffodil": 510,
1810
+ "flower-tulip": 510,
1811
+ "flower": 510,
1812
+ "flute": 510,
1813
+ "flux-capacitor": 510,
1814
+ "flying-disc": 510,
1815
+ "folder-arrow-down": 510,
1816
+ "folder-arrow-up": 510,
1817
+ "folder-bookmark": 510,
1818
+ "folder-closed": 510,
1819
+ "folder-gear": 510,
1820
+ "folder-grid": 510,
1821
+ "folder-heart": 510,
1822
+ "folder-image": 510,
1823
+ "folder-magnifying-glass": 510,
1824
+ "folder-medical": 510,
1825
+ "folder-minus": 510,
1826
+ "folder-music": 510,
1827
+ "folder-open": 510,
1828
+ "folder-plus": 510,
1829
+ "folder-tree": 510,
1830
+ "folder-user": 510,
1831
+ "folder-xmark": 510,
1832
+ "folder": 510,
1833
+ "folders": 510,
1834
+ "fondue-pot": 510,
1835
+ "font-case": 510,
1836
+ "font": 510,
1837
+ "football-helmet": 510,
1838
+ "football": 510,
1839
+ "fork-knife": 510,
1840
+ "fork": 510,
1841
+ "forklift": 510,
1842
+ "fort": 510,
1843
+ "forward-fast": 510,
1844
+ "forward-step": 510,
1845
+ "forward": 510,
1846
+ "frame": 510,
1847
+ "franc-sign": 510,
1848
+ "french-fries": 510,
1849
+ "frog": 510,
1850
+ "function": 510,
1851
+ "futbol": 510,
1852
+ "g": 510,
1853
+ "galaxy": 510,
1854
+ "gallery-thumbnails": 510,
1855
+ "game-board-simple": 510,
1856
+ "game-board": 510,
1857
+ "game-console-handheld-crank": 510,
1858
+ "game-console-handheld": 510,
1859
+ "gamepad-modern": 510,
1860
+ "gamepad": 510,
1861
+ "garage-car": 510,
1862
+ "garage-open": 510,
1863
+ "garage": 510,
1864
+ "garlic": 510,
1865
+ "gas-pump-slash": 510,
1866
+ "gas-pump": 510,
1867
+ "gauge-circle-bolt": 510,
1868
+ "gauge-circle-minus": 510,
1869
+ "gauge-circle-plus": 510,
1870
+ "gauge-high": 510,
1871
+ "gauge-low": 510,
1872
+ "gauge-max": 510,
1873
+ "gauge-min": 510,
1874
+ "gauge-simple-high": 510,
1875
+ "gauge-simple-low": 510,
1876
+ "gauge-simple-max": 510,
1877
+ "gauge-simple-min": 510,
1878
+ "gauge-simple": 510,
1879
+ "gauge": 510,
1880
+ "gavel": 510,
1881
+ "gear-code": 510,
1882
+ "gear-complex-code": 510,
1883
+ "gear-complex": 510,
1884
+ "gear": 510,
1885
+ "gears": 510,
1886
+ "gem": 510,
1887
+ "genderless": 510,
1888
+ "ghost": 510,
1889
+ "gif": 510,
1890
+ "gift-card": 510,
1891
+ "gift": 510,
1892
+ "gifts": 510,
1893
+ "gingerbread-man": 510,
1894
+ "glass-citrus": 510,
1895
+ "glass-empty": 510,
1896
+ "glass-half": 510,
1897
+ "glass-water-droplet": 510,
1898
+ "glass-water": 510,
1899
+ "glass": 510,
1900
+ "glasses-round": 510,
1901
+ "glasses": 510,
1902
+ "globe-snow": 510,
1903
+ "globe-stand": 510,
1904
+ "globe": 510,
1905
+ "goal-net": 510,
1906
+ "golf-ball-tee": 510,
1907
+ "golf-club": 510,
1908
+ "golf-flag-hole": 510,
1909
+ "gopuram": 510,
1910
+ "graduation-cap": 510,
1911
+ "gramophone": 510,
1912
+ "grapes": 510,
1913
+ "grate-droplet": 510,
1914
+ "grate": 510,
1915
+ "greater-than-equal": 510,
1916
+ "greater-than": 510,
1917
+ "grid-2-plus": 510,
1918
+ "grid-2": 510,
1919
+ "grid-4": 510,
1920
+ "grid-5": 510,
1921
+ "grid-dividers": 510,
1922
+ "grid-horizontal": 510,
1923
+ "grid-round-2-plus": 510,
1924
+ "grid-round-2": 510,
1925
+ "grid-round-4": 510,
1926
+ "grid-round-5": 510,
1927
+ "grid-round": 510,
1928
+ "grid": 510,
1929
+ "grill-fire": 510,
1930
+ "grill-hot": 510,
1931
+ "grill": 510,
1932
+ "grip-dots-vertical": 510,
1933
+ "grip-dots": 510,
1934
+ "grip-lines-vertical": 510,
1935
+ "grip-lines": 510,
1936
+ "grip-vertical": 510,
1937
+ "grip": 510,
1938
+ "group-arrows-rotate": 510,
1939
+ "guarani-sign": 510,
1940
+ "guitar-electric": 510,
1941
+ "guitar": 510,
1942
+ "guitars": 510,
1943
+ "gun-slash": 510,
1944
+ "gun-squirt": 510,
1945
+ "gun": 510,
1946
+ "h": 510,
1947
+ "h1": 510,
1948
+ "h2": 510,
1949
+ "h3": 510,
1950
+ "h4": 510,
1951
+ "h5": 510,
1952
+ "h6": 510,
1953
+ "hammer-crash": 510,
1954
+ "hammer-war": 510,
1955
+ "hammer": 510,
1956
+ "hamsa": 510,
1957
+ "hand-back-fist": 510,
1958
+ "hand-back-point-down": 510,
1959
+ "hand-back-point-left": 510,
1960
+ "hand-back-point-ribbon": 510,
1961
+ "hand-back-point-right": 510,
1962
+ "hand-back-point-up": 510,
1963
+ "hand-dots": 510,
1964
+ "hand-fingers-crossed": 510,
1965
+ "hand-fist": 510,
1966
+ "hand-heart": 510,
1967
+ "hand-holding-box": 510,
1968
+ "hand-holding-dollar": 510,
1969
+ "hand-holding-droplet": 510,
1970
+ "hand-holding-hand": 510,
1971
+ "hand-holding-heart": 510,
1972
+ "hand-holding-magic": 510,
1973
+ "hand-holding-medical": 510,
1974
+ "hand-holding-seedling": 510,
1975
+ "hand-holding-skull": 510,
1976
+ "hand-holding": 510,
1977
+ "hand-horns": 510,
1978
+ "hand-lizard": 510,
1979
+ "hand-love": 510,
1980
+ "hand-middle-finger": 510,
1981
+ "hand-peace": 510,
1982
+ "hand-point-down": 510,
1983
+ "hand-point-left": 510,
1984
+ "hand-point-ribbon": 510,
1985
+ "hand-point-right": 510,
1986
+ "hand-point-up": 510,
1987
+ "hand-pointer": 510,
1988
+ "hand-scissors": 510,
1989
+ "hand-sparkles": 510,
1990
+ "hand-spock": 510,
1991
+ "hand-wave": 510,
1992
+ "hand": 510,
1993
+ "handcuffs": 510,
1994
+ "hands-asl-interpreting": 510,
1995
+ "hands-bound": 510,
1996
+ "hands-bubbles": 510,
1997
+ "hands-clapping": 510,
1998
+ "hands-holding-child": 510,
1999
+ "hands-holding-circle": 510,
2000
+ "hands-holding-diamond": 510,
2001
+ "hands-holding-dollar": 510,
2002
+ "hands-holding-heart": 510,
2003
+ "hands-holding": 510,
2004
+ "hands-praying": 510,
2005
+ "hands": 510,
2006
+ "handshake-angle": 510,
2007
+ "handshake-simple-slash": 510,
2008
+ "handshake-simple": 510,
2009
+ "handshake-slash": 510,
2010
+ "handshake": 510,
2011
+ "hanukiah": 510,
2012
+ "hard-drive": 510,
2013
+ "hashtag-lock": 510,
2014
+ "hashtag": 510,
2015
+ "hat-beach": 510,
2016
+ "hat-chef": 510,
2017
+ "hat-cowboy-side": 510,
2018
+ "hat-cowboy": 510,
2019
+ "hat-santa": 510,
2020
+ "hat-winter": 510,
2021
+ "hat-witch": 510,
2022
+ "hat-wizard": 510,
2023
+ "head-side-brain": 510,
2024
+ "head-side-cough-slash": 510,
2025
+ "head-side-cough": 510,
2026
+ "head-side-goggles": 510,
2027
+ "head-side-headphones": 510,
2028
+ "head-side-heart": 510,
2029
+ "head-side-mask": 510,
2030
+ "head-side-medical": 510,
2031
+ "head-side-virus": 510,
2032
+ "head-side": 510,
2033
+ "heading": 510,
2034
+ "headphones-simple": 510,
2035
+ "headphones": 510,
2036
+ "headset": 510,
2037
+ "heart-circle-bolt": 510,
2038
+ "heart-circle-check": 510,
2039
+ "heart-circle-exclamation": 510,
2040
+ "heart-circle-minus": 510,
2041
+ "heart-circle-plus": 510,
2042
+ "heart-circle-xmark": 510,
2043
+ "heart-crack": 510,
2044
+ "heart-half-stroke": 510,
2045
+ "heart-half": 510,
2046
+ "heart-pulse": 510,
2047
+ "heart": 510,
2048
+ "heat": 510,
2049
+ "helicopter-symbol": 510,
2050
+ "helicopter": 510,
2051
+ "helmet-battle": 510,
2052
+ "helmet-safety": 510,
2053
+ "helmet-un": 510,
2054
+ "hexagon-check": 510,
2055
+ "hexagon-divide": 510,
2056
+ "hexagon-exclamation": 510,
2057
+ "hexagon-image": 510,
2058
+ "hexagon-minus": 510,
2059
+ "hexagon-plus": 510,
2060
+ "hexagon-vertical-nft-slanted": 510,
2061
+ "hexagon-vertical-nft": 510,
2062
+ "hexagon-xmark": 510,
2063
+ "hexagon": 510,
2064
+ "high-definition": 510,
2065
+ "highlighter-line": 510,
2066
+ "highlighter": 510,
2067
+ "hill-avalanche": 510,
2068
+ "hill-rockslide": 510,
2069
+ "hippo": 510,
2070
+ "hockey-mask": 510,
2071
+ "hockey-puck": 510,
2072
+ "hockey-stick-puck": 510,
2073
+ "hockey-sticks": 510,
2074
+ "holly-berry": 510,
2075
+ "honey-pot": 510,
2076
+ "hood-cloak": 510,
2077
+ "horizontal-rule": 510,
2078
+ "horse-head": 510,
2079
+ "horse-saddle": 510,
2080
+ "horse": 510,
2081
+ "hose-reel": 510,
2082
+ "hose": 510,
2083
+ "hospital-user": 510,
2084
+ "hospital": 510,
2085
+ "hospitals": 510,
2086
+ "hot-tub-person": 510,
2087
+ "hotdog": 510,
2088
+ "hotel": 510,
2089
+ "hourglass-clock": 510,
2090
+ "hourglass-end": 510,
2091
+ "hourglass-half": 510,
2092
+ "hourglass-start": 510,
2093
+ "hourglass": 510,
2094
+ "house-blank": 510,
2095
+ "house-building": 510,
2096
+ "house-chimney-blank": 510,
2097
+ "house-chimney-crack": 510,
2098
+ "house-chimney-heart": 510,
2099
+ "house-chimney-medical": 510,
2100
+ "house-chimney-user": 510,
2101
+ "house-chimney-window": 510,
2102
+ "house-chimney": 510,
2103
+ "house-circle-check": 510,
2104
+ "house-circle-exclamation": 510,
2105
+ "house-circle-xmark": 510,
2106
+ "house-crack": 510,
2107
+ "house-day": 510,
2108
+ "house-fire": 510,
2109
+ "house-flag": 510,
2110
+ "house-flood-water-circle-arrow-right": 510,
2111
+ "house-flood-water": 510,
2112
+ "house-heart": 510,
2113
+ "house-laptop": 510,
2114
+ "house-lock": 510,
2115
+ "house-medical-circle-check": 510,
2116
+ "house-medical-circle-exclamation": 510,
2117
+ "house-medical-circle-xmark": 510,
2118
+ "house-medical-flag": 510,
2119
+ "house-medical": 510,
2120
+ "house-night": 510,
2121
+ "house-person-leave": 510,
2122
+ "house-person-return": 510,
2123
+ "house-signal": 510,
2124
+ "house-tree": 510,
2125
+ "house-tsunami": 510,
2126
+ "house-turret": 510,
2127
+ "house-user": 510,
2128
+ "house-water": 510,
2129
+ "house-window": 510,
2130
+ "house": 510,
2131
+ "hryvnia-sign": 510,
2132
+ "hundred-points": 510,
2133
+ "hurricane": 510,
2134
+ "hyphen": 510,
2135
+ "i-cursor": 510,
2136
+ "i": 510,
2137
+ "ice-cream": 510,
2138
+ "ice-skate": 510,
2139
+ "icicles": 510,
2140
+ "icons": 510,
2141
+ "id-badge": 510,
2142
+ "id-card-clip": 510,
2143
+ "id-card": 510,
2144
+ "igloo": 510,
2145
+ "image-landscape": 510,
2146
+ "image-polaroid-user": 510,
2147
+ "image-polaroid": 510,
2148
+ "image-portrait": 510,
2149
+ "image-slash": 510,
2150
+ "image-user": 510,
2151
+ "image": 510,
2152
+ "images-user": 510,
2153
+ "images": 510,
2154
+ "inbox-full": 510,
2155
+ "inbox-in": 510,
2156
+ "inbox-out": 510,
2157
+ "inbox": 510,
2158
+ "inboxes": 510,
2159
+ "indent": 510,
2160
+ "indian-rupee-sign": 510,
2161
+ "industry-windows": 510,
2162
+ "industry": 510,
2163
+ "infinity": 510,
2164
+ "info": 510,
2165
+ "inhaler": 510,
2166
+ "input-numeric": 510,
2167
+ "input-pipe": 510,
2168
+ "input-text": 510,
2169
+ "integral": 510,
2170
+ "interrobang": 510,
2171
+ "intersection": 510,
2172
+ "island-tropical": 510,
2173
+ "italic": 510,
2174
+ "j": 510,
2175
+ "jack-o-lantern": 510,
2176
+ "jar-wheat": 510,
2177
+ "jar": 510,
2178
+ "jedi": 510,
2179
+ "jet-fighter-up": 510,
2180
+ "jet-fighter": 510,
2181
+ "joint": 510,
2182
+ "joystick": 510,
2183
+ "jug-bottle": 510,
2184
+ "jug-detergent": 510,
2185
+ "jug": 510,
2186
+ "k": 510,
2187
+ "kaaba": 510,
2188
+ "kazoo": 510,
2189
+ "kerning": 510,
2190
+ "key-skeleton-left-right": 510,
2191
+ "key-skeleton": 510,
2192
+ "key": 510,
2193
+ "keyboard-brightness-low": 510,
2194
+ "keyboard-brightness": 510,
2195
+ "keyboard-down": 510,
2196
+ "keyboard-left": 510,
2197
+ "keyboard": 510,
2198
+ "keynote": 510,
2199
+ "khanda": 510,
2200
+ "kidneys": 510,
2201
+ "kip-sign": 510,
2202
+ "kit-medical": 510,
2203
+ "kitchen-set": 510,
2204
+ "kite": 510,
2205
+ "kiwi-bird": 510,
2206
+ "kiwi-fruit": 510,
2207
+ "knife-kitchen": 510,
2208
+ "knife": 510,
2209
+ "l": 510,
2210
+ "lacrosse-stick-ball": 510,
2211
+ "lacrosse-stick": 510,
2212
+ "lambda": 510,
2213
+ "lamp-desk": 510,
2214
+ "lamp-floor": 510,
2215
+ "lamp-street": 510,
2216
+ "lamp": 510,
2217
+ "land-mine-on": 510,
2218
+ "landmark-dome": 510,
2219
+ "landmark-flag": 510,
2220
+ "landmark": 510,
2221
+ "language": 510,
2222
+ "laptop-arrow-down": 510,
2223
+ "laptop-binary": 510,
2224
+ "laptop-code": 510,
2225
+ "laptop-file": 510,
2226
+ "laptop-medical": 510,
2227
+ "laptop-mobile": 510,
2228
+ "laptop-slash": 510,
2229
+ "laptop": 510,
2230
+ "lari-sign": 510,
2231
+ "lasso-sparkles": 510,
2232
+ "lasso": 510,
2233
+ "layer-group": 510,
2234
+ "layer-minus": 510,
2235
+ "layer-plus": 510,
2236
+ "leaf-heart": 510,
2237
+ "leaf-maple": 510,
2238
+ "leaf-oak": 510,
2239
+ "leaf": 510,
2240
+ "leafy-green": 510,
2241
+ "left-from-line": 510,
2242
+ "left-long-to-line": 510,
2243
+ "left-long": 510,
2244
+ "left-right": 510,
2245
+ "left-to-line": 510,
2246
+ "left": 510,
2247
+ "lemon": 510,
2248
+ "less-than-equal": 510,
2249
+ "less-than": 510,
2250
+ "life-ring": 510,
2251
+ "light-ceiling": 510,
2252
+ "light-emergency-on": 510,
2253
+ "light-emergency": 510,
2254
+ "light-switch-off": 510,
2255
+ "light-switch-on": 510,
2256
+ "light-switch": 510,
2257
+ "lightbulb-cfl-on": 510,
2258
+ "lightbulb-cfl": 510,
2259
+ "lightbulb-dollar": 510,
2260
+ "lightbulb-exclamation-on": 510,
2261
+ "lightbulb-exclamation": 510,
2262
+ "lightbulb-gear": 510,
2263
+ "lightbulb-on": 510,
2264
+ "lightbulb-slash": 510,
2265
+ "lightbulb": 510,
2266
+ "lights-holiday": 510,
2267
+ "line-columns": 510,
2268
+ "line-height": 510,
2269
+ "lines-leaning": 510,
2270
+ "link-horizontal-slash": 510,
2271
+ "link-horizontal": 510,
2272
+ "link-simple-slash": 510,
2273
+ "link-simple": 510,
2274
+ "link-slash": 510,
2275
+ "link": 510,
2276
+ "lips": 510,
2277
+ "lira-sign": 510,
2278
+ "list-check": 510,
2279
+ "list-dropdown": 510,
2280
+ "list-music": 510,
2281
+ "list-ol": 510,
2282
+ "list-radio": 510,
2283
+ "list-timeline": 510,
2284
+ "list-tree": 510,
2285
+ "list-ul": 510,
2286
+ "list": 510,
2287
+ "litecoin-sign": 510,
2288
+ "loader": 510,
2289
+ "lobster": 510,
2290
+ "location-arrow": 510,
2291
+ "location-check": 510,
2292
+ "location-crosshairs-slash": 510,
2293
+ "location-crosshairs": 510,
2294
+ "location-dot-slash": 510,
2295
+ "location-dot": 510,
2296
+ "location-exclamation": 510,
2297
+ "location-minus": 510,
2298
+ "location-pen": 510,
2299
+ "location-pin-lock": 510,
2300
+ "location-pin-slash": 510,
2301
+ "location-pin": 510,
2302
+ "location-plus": 510,
2303
+ "location-question": 510,
2304
+ "location-smile": 510,
2305
+ "location-xmark": 510,
2306
+ "lock-a": 510,
2307
+ "lock-hashtag": 510,
2308
+ "lock-keyhole-open": 510,
2309
+ "lock-keyhole": 510,
2310
+ "lock-open": 510,
2311
+ "lock": 510,
2312
+ "locust": 510,
2313
+ "lollipop": 510,
2314
+ "loveseat": 510,
2315
+ "luchador-mask": 510,
2316
+ "lungs-virus": 510,
2317
+ "lungs": 510,
2318
+ "m": 510,
2319
+ "mace": 510,
2320
+ "magnet": 510,
2321
+ "magnifying-glass-arrow-right": 510,
2322
+ "magnifying-glass-chart": 510,
2323
+ "magnifying-glass-dollar": 510,
2324
+ "magnifying-glass-location": 510,
2325
+ "magnifying-glass-minus": 510,
2326
+ "magnifying-glass-plus": 510,
2327
+ "magnifying-glass": 510,
2328
+ "mailbox-flag-up": 510,
2329
+ "mailbox": 510,
2330
+ "manat-sign": 510,
2331
+ "mandolin": 510,
2332
+ "mango": 510,
2333
+ "manhole": 510,
2334
+ "map-location-dot": 510,
2335
+ "map-location": 510,
2336
+ "map-pin": 510,
2337
+ "map": 510,
2338
+ "marker": 510,
2339
+ "mars-and-venus-burst": 510,
2340
+ "mars-and-venus": 510,
2341
+ "mars-double": 510,
2342
+ "mars-stroke-right": 510,
2343
+ "mars-stroke-up": 510,
2344
+ "mars-stroke": 510,
2345
+ "mars": 510,
2346
+ "martini-glass-citrus": 510,
2347
+ "martini-glass-empty": 510,
2348
+ "martini-glass": 510,
2349
+ "mask-face": 510,
2350
+ "mask-snorkel": 510,
2351
+ "mask-ventilator": 510,
2352
+ "mask": 510,
2353
+ "masks-theater": 510,
2354
+ "mattress-pillow": 510,
2355
+ "maximize": 510,
2356
+ "meat": 510,
2357
+ "medal": 510,
2358
+ "megaphone": 510,
2359
+ "melon-slice": 510,
2360
+ "melon": 510,
2361
+ "memo-circle-check": 510,
2362
+ "memo-circle-info": 510,
2363
+ "memo-pad": 510,
2364
+ "memo": 510,
2365
+ "memory": 510,
2366
+ "menorah": 510,
2367
+ "mercury": 510,
2368
+ "merge": 510,
2369
+ "message-arrow-down": 510,
2370
+ "message-arrow-up-right": 510,
2371
+ "message-arrow-up": 510,
2372
+ "message-bot": 510,
2373
+ "message-captions": 510,
2374
+ "message-check": 510,
2375
+ "message-code": 510,
2376
+ "message-dollar": 510,
2377
+ "message-dots": 510,
2378
+ "message-exclamation": 510,
2379
+ "message-heart": 510,
2380
+ "message-image": 510,
2381
+ "message-lines": 510,
2382
+ "message-medical": 510,
2383
+ "message-middle-top": 510,
2384
+ "message-middle": 510,
2385
+ "message-minus": 510,
2386
+ "message-music": 510,
2387
+ "message-pen": 510,
2388
+ "message-plus": 510,
2389
+ "message-question": 510,
2390
+ "message-quote": 510,
2391
+ "message-slash": 510,
2392
+ "message-smile": 510,
2393
+ "message-sms": 510,
2394
+ "message-text": 510,
2395
+ "message-xmark": 510,
2396
+ "message": 510,
2397
+ "messages-dollar": 510,
2398
+ "messages-question": 510,
2399
+ "messages": 510,
2400
+ "meteor": 510,
2401
+ "meter-bolt": 510,
2402
+ "meter-droplet": 510,
2403
+ "meter-fire": 510,
2404
+ "meter": 510,
2405
+ "microchip-ai": 510,
2406
+ "microchip": 510,
2407
+ "microphone-lines-slash": 510,
2408
+ "microphone-lines": 510,
2409
+ "microphone-slash": 510,
2410
+ "microphone-stand": 510,
2411
+ "microphone": 510,
2412
+ "microscope": 510,
2413
+ "microwave": 510,
2414
+ "mill-sign": 510,
2415
+ "minimize": 510,
2416
+ "minus": 510,
2417
+ "mistletoe": 510,
2418
+ "mitten": 510,
2419
+ "mobile-button": 510,
2420
+ "mobile-notch": 510,
2421
+ "mobile-retro": 510,
2422
+ "mobile-screen-button": 510,
2423
+ "mobile-screen": 510,
2424
+ "mobile-signal-out": 510,
2425
+ "mobile-signal": 510,
2426
+ "mobile": 510,
2427
+ "money-bill-1-wave": 510,
2428
+ "money-bill-1": 510,
2429
+ "money-bill-simple-wave": 510,
2430
+ "money-bill-simple": 510,
2431
+ "money-bill-transfer": 510,
2432
+ "money-bill-trend-up": 510,
2433
+ "money-bill-wave": 510,
2434
+ "money-bill-wheat": 510,
2435
+ "money-bill": 510,
2436
+ "money-bills-simple": 510,
2437
+ "money-bills": 510,
2438
+ "money-check-dollar-pen": 510,
2439
+ "money-check-dollar": 510,
2440
+ "money-check-pen": 510,
2441
+ "money-check": 510,
2442
+ "money-from-bracket": 510,
2443
+ "money-simple-from-bracket": 510,
2444
+ "monitor-waveform": 510,
2445
+ "monkey": 510,
2446
+ "monument": 510,
2447
+ "moon-cloud": 510,
2448
+ "moon-over-sun": 510,
2449
+ "moon-stars": 510,
2450
+ "moon": 510,
2451
+ "moped": 510,
2452
+ "mortar-pestle": 510,
2453
+ "mosque": 510,
2454
+ "mosquito-net": 510,
2455
+ "mosquito": 510,
2456
+ "motorcycle": 510,
2457
+ "mound": 510,
2458
+ "mountain-city": 510,
2459
+ "mountain-sun": 510,
2460
+ "mountain": 510,
2461
+ "mountains": 510,
2462
+ "mouse-field": 510,
2463
+ "mp3-player": 510,
2464
+ "mug-hot": 510,
2465
+ "mug-marshmallows": 510,
2466
+ "mug-saucer": 510,
2467
+ "mug-tea-saucer": 510,
2468
+ "mug-tea": 510,
2469
+ "mug": 510,
2470
+ "mushroom": 510,
2471
+ "music-note-slash": 510,
2472
+ "music-note": 510,
2473
+ "music-slash": 510,
2474
+ "music": 510,
2475
+ "mustache": 510,
2476
+ "n": 510,
2477
+ "naira-sign": 510,
2478
+ "narwhal": 510,
2479
+ "nesting-dolls": 510,
2480
+ "network-wired": 510,
2481
+ "neuter": 510,
2482
+ "newspaper": 510,
2483
+ "nfc-lock": 510,
2484
+ "nfc-magnifying-glass": 510,
2485
+ "nfc-pen": 510,
2486
+ "nfc-signal": 510,
2487
+ "nfc-slash": 510,
2488
+ "nfc-trash": 510,
2489
+ "nfc": 510,
2490
+ "nose": 510,
2491
+ "not-equal": 510,
2492
+ "notdef": 510,
2493
+ "note-medical": 510,
2494
+ "note-sticky": 510,
2495
+ "note": 510,
2496
+ "notebook": 510,
2497
+ "notes-medical": 510,
2498
+ "notes": 510,
2499
+ "o": 510,
2500
+ "object-exclude": 510,
2501
+ "object-group": 510,
2502
+ "object-intersect": 510,
2503
+ "object-subtract": 510,
2504
+ "object-ungroup": 510,
2505
+ "object-union": 510,
2506
+ "objects-align-bottom": 510,
2507
+ "objects-align-center-horizontal": 510,
2508
+ "objects-align-center-vertical": 510,
2509
+ "objects-align-left": 510,
2510
+ "objects-align-right": 510,
2511
+ "objects-align-top": 510,
2512
+ "objects-column": 510,
2513
+ "octagon-check": 510,
2514
+ "octagon-divide": 510,
2515
+ "octagon-exclamation": 510,
2516
+ "octagon-minus": 510,
2517
+ "octagon-plus": 510,
2518
+ "octagon-xmark": 510,
2519
+ "octagon": 510,
2520
+ "oil-can-drip": 510,
2521
+ "oil-can": 510,
2522
+ "oil-temperature": 510,
2523
+ "oil-well": 510,
2524
+ "olive-branch": 510,
2525
+ "olive": 510,
2526
+ "om": 510,
2527
+ "omega": 510,
2528
+ "onion": 510,
2529
+ "option": 510,
2530
+ "ornament": 510,
2531
+ "otter": 510,
2532
+ "outdent": 510,
2533
+ "outlet": 510,
2534
+ "oven": 510,
2535
+ "overline": 510,
2536
+ "p": 510,
2537
+ "page-caret-down": 510,
2538
+ "page-caret-up": 510,
2539
+ "page": 510,
2540
+ "pager": 510,
2541
+ "paint-roller": 510,
2542
+ "paintbrush-fine": 510,
2543
+ "paintbrush-pencil": 510,
2544
+ "paintbrush": 510,
2545
+ "palette": 510,
2546
+ "pallet-box": 510,
2547
+ "pallet-boxes": 510,
2548
+ "pallet": 510,
2549
+ "pan-food": 510,
2550
+ "pan-frying": 510,
2551
+ "pancakes": 510,
2552
+ "panel-ews": 510,
2553
+ "panel-fire": 510,
2554
+ "panorama": 510,
2555
+ "paper-plane-top": 510,
2556
+ "paper-plane": 510,
2557
+ "paperclip-vertical": 510,
2558
+ "paperclip": 510,
2559
+ "parachute-box": 510,
2560
+ "paragraph-left": 510,
2561
+ "paragraph": 510,
2562
+ "party-bell": 510,
2563
+ "party-horn": 510,
2564
+ "passport": 510,
2565
+ "paste": 510,
2566
+ "pause": 510,
2567
+ "paw-claws": 510,
2568
+ "paw-simple": 510,
2569
+ "paw": 510,
2570
+ "peace": 510,
2571
+ "peach": 510,
2572
+ "peanut": 510,
2573
+ "peanuts": 510,
2574
+ "peapod": 510,
2575
+ "pear": 510,
2576
+ "pedestal": 510,
2577
+ "pegasus": 510,
2578
+ "pen-circle": 510,
2579
+ "pen-clip-slash": 510,
2580
+ "pen-clip": 510,
2581
+ "pen-fancy-slash": 510,
2582
+ "pen-fancy": 510,
2583
+ "pen-field": 510,
2584
+ "pen-line": 510,
2585
+ "pen-nib-slash": 510,
2586
+ "pen-nib": 510,
2587
+ "pen-paintbrush": 510,
2588
+ "pen-ruler": 510,
2589
+ "pen-slash": 510,
2590
+ "pen-swirl": 510,
2591
+ "pen-to-square": 510,
2592
+ "pen": 510,
2593
+ "pencil-mechanical": 510,
2594
+ "pencil-slash": 510,
2595
+ "pencil": 510,
2596
+ "people-arrows": 510,
2597
+ "people-carry-box": 510,
2598
+ "people-dress-simple": 510,
2599
+ "people-dress": 510,
2600
+ "people-group": 510,
2601
+ "people-line": 510,
2602
+ "people-pants-simple": 510,
2603
+ "people-pants": 510,
2604
+ "people-pulling": 510,
2605
+ "people-robbery": 510,
2606
+ "people-roof": 510,
2607
+ "people-simple": 510,
2608
+ "people": 510,
2609
+ "pepper-hot": 510,
2610
+ "pepper": 510,
2611
+ "percent": 510,
2612
+ "period": 510,
2613
+ "person-arrow-down-to-line": 510,
2614
+ "person-arrow-up-from-line": 510,
2615
+ "person-biking-mountain": 510,
2616
+ "person-biking": 510,
2617
+ "person-booth": 510,
2618
+ "person-breastfeeding": 510,
2619
+ "person-burst": 510,
2620
+ "person-cane": 510,
2621
+ "person-carry-box": 510,
2622
+ "person-chalkboard": 510,
2623
+ "person-circle-check": 510,
2624
+ "person-circle-exclamation": 510,
2625
+ "person-circle-minus": 510,
2626
+ "person-circle-plus": 510,
2627
+ "person-circle-question": 510,
2628
+ "person-circle-xmark": 510,
2629
+ "person-digging": 510,
2630
+ "person-dolly-empty": 510,
2631
+ "person-dolly": 510,
2632
+ "person-dots-from-line": 510,
2633
+ "person-dress-burst": 510,
2634
+ "person-dress-simple": 510,
2635
+ "person-dress": 510,
2636
+ "person-drowning": 510,
2637
+ "person-falling-burst": 510,
2638
+ "person-falling": 510,
2639
+ "person-from-portal": 510,
2640
+ "person-half-dress": 510,
2641
+ "person-harassing": 510,
2642
+ "person-hiking": 510,
2643
+ "person-military-pointing": 510,
2644
+ "person-military-rifle": 510,
2645
+ "person-military-to-person": 510,
2646
+ "person-pinball": 510,
2647
+ "person-praying": 510,
2648
+ "person-pregnant": 510,
2649
+ "person-rays": 510,
2650
+ "person-rifle": 510,
2651
+ "person-running-fast": 510,
2652
+ "person-running": 510,
2653
+ "person-seat-reclined": 510,
2654
+ "person-seat": 510,
2655
+ "person-shelter": 510,
2656
+ "person-sign": 510,
2657
+ "person-simple": 510,
2658
+ "person-skating": 510,
2659
+ "person-ski-jumping": 510,
2660
+ "person-ski-lift": 510,
2661
+ "person-skiing-nordic": 510,
2662
+ "person-skiing": 510,
2663
+ "person-sledding": 510,
2664
+ "person-snowboarding": 510,
2665
+ "person-snowmobiling": 510,
2666
+ "person-swimming": 510,
2667
+ "person-through-window": 510,
2668
+ "person-to-door": 510,
2669
+ "person-to-portal": 510,
2670
+ "person-walking-arrow-loop-left": 510,
2671
+ "person-walking-arrow-right": 510,
2672
+ "person-walking-dashed-line-arrow-right": 510,
2673
+ "person-walking-luggage": 510,
2674
+ "person-walking-with-cane": 510,
2675
+ "person-walking": 510,
2676
+ "person": 510,
2677
+ "peseta-sign": 510,
2678
+ "peso-sign": 510,
2679
+ "phone-arrow-down-left": 510,
2680
+ "phone-arrow-right": 510,
2681
+ "phone-arrow-up-right": 510,
2682
+ "phone-flip": 510,
2683
+ "phone-hangup": 510,
2684
+ "phone-intercom": 510,
2685
+ "phone-missed": 510,
2686
+ "phone-office": 510,
2687
+ "phone-plus": 510,
2688
+ "phone-rotary": 510,
2689
+ "phone-slash": 510,
2690
+ "phone-volume": 510,
2691
+ "phone-xmark": 510,
2692
+ "phone": 510,
2693
+ "photo-film-music": 510,
2694
+ "photo-film": 510,
2695
+ "pi": 510,
2696
+ "piano-keyboard": 510,
2697
+ "piano": 510,
2698
+ "pickaxe": 510,
2699
+ "pickleball": 510,
2700
+ "pie": 510,
2701
+ "pig": 510,
2702
+ "piggy-bank": 510,
2703
+ "pills": 510,
2704
+ "pinata": 510,
2705
+ "pinball": 510,
2706
+ "pineapple": 510,
2707
+ "pipe-circle-check": 510,
2708
+ "pipe-collar": 510,
2709
+ "pipe-section": 510,
2710
+ "pipe-smoking": 510,
2711
+ "pipe-valve": 510,
2712
+ "pipe": 510,
2713
+ "pizza-slice": 510,
2714
+ "pizza": 510,
2715
+ "place-of-worship": 510,
2716
+ "plane-arrival": 510,
2717
+ "plane-circle-check": 510,
2718
+ "plane-circle-exclamation": 510,
2719
+ "plane-circle-xmark": 510,
2720
+ "plane-departure": 510,
2721
+ "plane-engines": 510,
2722
+ "plane-lock": 510,
2723
+ "plane-prop": 510,
2724
+ "plane-slash": 510,
2725
+ "plane-tail": 510,
2726
+ "plane-up-slash": 510,
2727
+ "plane-up": 510,
2728
+ "plane": 510,
2729
+ "planet-moon": 510,
2730
+ "planet-ringed": 510,
2731
+ "plant-wilt": 510,
2732
+ "plate-utensils": 510,
2733
+ "plate-wheat": 510,
2734
+ "play-pause": 510,
2735
+ "play": 510,
2736
+ "plug-circle-bolt": 510,
2737
+ "plug-circle-check": 510,
2738
+ "plug-circle-exclamation": 510,
2739
+ "plug-circle-minus": 510,
2740
+ "plug-circle-plus": 510,
2741
+ "plug-circle-xmark": 510,
2742
+ "plug": 510,
2743
+ "plus-large": 510,
2744
+ "plus-minus": 510,
2745
+ "plus": 510,
2746
+ "podcast": 510,
2747
+ "podium-star": 510,
2748
+ "podium": 510,
2749
+ "police-box": 510,
2750
+ "poll-people": 510,
2751
+ "pompebled": 510,
2752
+ "poo-storm": 510,
2753
+ "poo": 510,
2754
+ "pool-8-ball": 510,
2755
+ "poop": 510,
2756
+ "popcorn": 510,
2757
+ "popsicle": 510,
2758
+ "pot-food": 510,
2759
+ "potato": 510,
2760
+ "power-off": 510,
2761
+ "prescription-bottle-medical": 510,
2762
+ "prescription-bottle-pill": 510,
2763
+ "prescription-bottle": 510,
2764
+ "prescription": 510,
2765
+ "presentation-screen": 510,
2766
+ "pretzel": 510,
2767
+ "print-magnifying-glass": 510,
2768
+ "print-slash": 510,
2769
+ "print": 510,
2770
+ "projector": 510,
2771
+ "pump-medical": 510,
2772
+ "pump-soap": 510,
2773
+ "pump": 510,
2774
+ "pumpkin": 510,
2775
+ "puzzle-piece-simple": 510,
2776
+ "puzzle-piece": 510,
2777
+ "puzzle": 510,
2778
+ "q": 510,
2779
+ "qrcode": 510,
2780
+ "question": 510,
2781
+ "quote-left": 510,
2782
+ "quote-right": 510,
2783
+ "quotes": 510,
2784
+ "r": 510,
2785
+ "rabbit-running": 510,
2786
+ "rabbit": 510,
2787
+ "racquet": 510,
2788
+ "radar": 510,
2789
+ "radiation": 510,
2790
+ "radio-tuner": 510,
2791
+ "radio": 510,
2792
+ "rainbow": 510,
2793
+ "raindrops": 510,
2794
+ "ram": 510,
2795
+ "ramp-loading": 510,
2796
+ "ranking-star": 510,
2797
+ "raygun": 510,
2798
+ "receipt": 510,
2799
+ "record-vinyl": 510,
2800
+ "rectangle-ad": 510,
2801
+ "rectangle-barcode": 510,
2802
+ "rectangle-code": 510,
2803
+ "rectangle-history-circle-plus": 510,
2804
+ "rectangle-history-circle-user": 510,
2805
+ "rectangle-history": 510,
2806
+ "rectangle-list": 510,
2807
+ "rectangle-pro": 510,
2808
+ "rectangle-terminal": 510,
2809
+ "rectangle-vertical-history": 510,
2810
+ "rectangle-vertical": 510,
2811
+ "rectangle-wide": 510,
2812
+ "rectangle-xmark": 510,
2813
+ "rectangle": 510,
2814
+ "rectangles-mixed": 510,
2815
+ "recycle": 510,
2816
+ "reel": 510,
2817
+ "refrigerator": 510,
2818
+ "registered": 510,
2819
+ "repeat-1": 510,
2820
+ "repeat": 510,
2821
+ "reply-all": 510,
2822
+ "reply-clock": 510,
2823
+ "reply": 510,
2824
+ "republican": 510,
2825
+ "restroom-simple": 510,
2826
+ "restroom": 510,
2827
+ "retweet": 510,
2828
+ "rhombus": 510,
2829
+ "ribbon": 510,
2830
+ "right-from-bracket": 510,
2831
+ "right-from-line": 510,
2832
+ "right-left-large": 510,
2833
+ "right-left": 510,
2834
+ "right-long-to-line": 510,
2835
+ "right-long": 510,
2836
+ "right-to-bracket": 510,
2837
+ "right-to-line": 510,
2838
+ "right": 510,
2839
+ "ring-diamond": 510,
2840
+ "ring": 510,
2841
+ "rings-wedding": 510,
2842
+ "road-barrier": 510,
2843
+ "road-bridge": 510,
2844
+ "road-circle-check": 510,
2845
+ "road-circle-exclamation": 510,
2846
+ "road-circle-xmark": 510,
2847
+ "road-lock": 510,
2848
+ "road-spikes": 510,
2849
+ "road": 510,
2850
+ "robot-astromech": 510,
2851
+ "robot": 510,
2852
+ "rocket-launch": 510,
2853
+ "rocket": 510,
2854
+ "roller-coaster": 510,
2855
+ "rotate-exclamation": 510,
2856
+ "rotate-left": 510,
2857
+ "rotate-right": 510,
2858
+ "rotate": 510,
2859
+ "route-highway": 510,
2860
+ "route-interstate": 510,
2861
+ "route": 510,
2862
+ "router": 510,
2863
+ "rss": 510,
2864
+ "ruble-sign": 510,
2865
+ "rug": 510,
2866
+ "rugby-ball": 510,
2867
+ "ruler-combined": 510,
2868
+ "ruler-horizontal": 510,
2869
+ "ruler-triangle": 510,
2870
+ "ruler-vertical": 510,
2871
+ "ruler": 510,
2872
+ "rupee-sign": 510,
2873
+ "rupiah-sign": 510,
2874
+ "rv": 510,
2875
+ "s": 510,
2876
+ "sack-dollar": 510,
2877
+ "sack-xmark": 510,
2878
+ "sack": 510,
2879
+ "sailboat": 510,
2880
+ "salad": 510,
2881
+ "salt-shaker": 510,
2882
+ "sandwich": 510,
2883
+ "satellite-dish": 510,
2884
+ "satellite": 510,
2885
+ "sausage": 510,
2886
+ "saxophone-fire": 510,
2887
+ "saxophone": 510,
2888
+ "scale-balanced": 510,
2889
+ "scale-unbalanced-flip": 510,
2890
+ "scale-unbalanced": 510,
2891
+ "scalpel-line-dashed": 510,
2892
+ "scalpel": 510,
2893
+ "scanner-gun": 510,
2894
+ "scanner-image": 510,
2895
+ "scanner-keyboard": 510,
2896
+ "scanner-touchscreen": 510,
2897
+ "scarecrow": 510,
2898
+ "scarf": 510,
2899
+ "school-circle-check": 510,
2900
+ "school-circle-exclamation": 510,
2901
+ "school-circle-xmark": 510,
2902
+ "school-flag": 510,
2903
+ "school-lock": 510,
2904
+ "school": 510,
2905
+ "scissors": 510,
2906
+ "screen-users": 510,
2907
+ "screencast": 510,
2908
+ "screwdriver-wrench": 510,
2909
+ "screwdriver": 510,
2910
+ "scribble": 510,
2911
+ "scroll-old": 510,
2912
+ "scroll-torah": 510,
2913
+ "scroll": 510,
2914
+ "scrubber": 510,
2915
+ "scythe": 510,
2916
+ "sd-card": 510,
2917
+ "sd-cards": 510,
2918
+ "seal-exclamation": 510,
2919
+ "seal-question": 510,
2920
+ "seal": 510,
2921
+ "seat-airline": 510,
2922
+ "section": 510,
2923
+ "seedling": 510,
2924
+ "semicolon": 510,
2925
+ "send-back": 510,
2926
+ "send-backward": 510,
2927
+ "sensor-cloud": 510,
2928
+ "sensor-fire": 510,
2929
+ "sensor-on": 510,
2930
+ "sensor-triangle-exclamation": 510,
2931
+ "sensor": 510,
2932
+ "server": 510,
2933
+ "shapes": 510,
2934
+ "share-all": 510,
2935
+ "share-from-square": 510,
2936
+ "share-nodes": 510,
2937
+ "share": 510,
2938
+ "sheep": 510,
2939
+ "sheet-plastic": 510,
2940
+ "shekel-sign": 510,
2941
+ "shelves-empty": 510,
2942
+ "shelves": 510,
2943
+ "shield-cat": 510,
2944
+ "shield-check": 510,
2945
+ "shield-cross": 510,
2946
+ "shield-dog": 510,
2947
+ "shield-exclamation": 510,
2948
+ "shield-halved": 510,
2949
+ "shield-heart": 510,
2950
+ "shield-keyhole": 510,
2951
+ "shield-minus": 510,
2952
+ "shield-plus": 510,
2953
+ "shield-quartered": 510,
2954
+ "shield-slash": 510,
2955
+ "shield-virus": 510,
2956
+ "shield-xmark": 510,
2957
+ "shield": 510,
2958
+ "ship": 510,
2959
+ "shirt-long-sleeve": 510,
2960
+ "shirt-running": 510,
2961
+ "shirt-tank-top": 510,
2962
+ "shirt": 510,
2963
+ "shish-kebab": 510,
2964
+ "shoe-prints": 510,
2965
+ "shop-lock": 510,
2966
+ "shop-slash": 510,
2967
+ "shop": 510,
2968
+ "shovel-snow": 510,
2969
+ "shovel": 510,
2970
+ "shower-down": 510,
2971
+ "shower": 510,
2972
+ "shredder": 510,
2973
+ "shrimp": 510,
2974
+ "shuffle": 510,
2975
+ "shutters": 510,
2976
+ "shuttle-space": 510,
2977
+ "shuttlecock": 510,
2978
+ "sickle": 510,
2979
+ "sidebar-flip": 510,
2980
+ "sidebar": 510,
2981
+ "sigma": 510,
2982
+ "sign-hanging": 510,
2983
+ "signal-bars-fair": 510,
2984
+ "signal-bars-good": 510,
2985
+ "signal-bars-slash": 510,
2986
+ "signal-bars-weak": 510,
2987
+ "signal-bars": 510,
2988
+ "signal-fair": 510,
2989
+ "signal-good": 510,
2990
+ "signal-slash": 510,
2991
+ "signal-stream-slash": 510,
2992
+ "signal-stream": 510,
2993
+ "signal-strong": 510,
2994
+ "signal-weak": 510,
2995
+ "signal": 510,
2996
+ "signature-lock": 510,
2997
+ "signature-slash": 510,
2998
+ "signature": 510,
2999
+ "signs-post": 510,
3000
+ "sim-card": 510,
3001
+ "sim-cards": 510,
3002
+ "sink": 510,
3003
+ "siren-on": 510,
3004
+ "siren": 510,
3005
+ "sitemap": 510,
3006
+ "skeleton-ribs": 510,
3007
+ "skeleton": 510,
3008
+ "ski-boot-ski": 510,
3009
+ "ski-boot": 510,
3010
+ "skull-cow": 510,
3011
+ "skull-crossbones": 510,
3012
+ "skull": 510,
3013
+ "slash-back": 510,
3014
+ "slash-forward": 510,
3015
+ "slash": 510,
3016
+ "sleigh": 510,
3017
+ "slider": 510,
3018
+ "sliders-simple": 510,
3019
+ "sliders-up": 510,
3020
+ "sliders": 510,
3021
+ "slot-machine": 510,
3022
+ "smog": 510,
3023
+ "smoke": 510,
3024
+ "smoking": 510,
3025
+ "snake": 510,
3026
+ "snooze": 510,
3027
+ "snow-blowing": 510,
3028
+ "snowflake-droplets": 510,
3029
+ "snowflake": 510,
3030
+ "snowflakes": 510,
3031
+ "snowman-head": 510,
3032
+ "snowman": 510,
3033
+ "snowplow": 510,
3034
+ "soap": 510,
3035
+ "socks": 510,
3036
+ "soft-serve": 510,
3037
+ "solar-panel": 510,
3038
+ "solar-system": 510,
3039
+ "sort-down": 510,
3040
+ "sort-up": 510,
3041
+ "sort": 510,
3042
+ "spa": 510,
3043
+ "space-station-moon-construction": 510,
3044
+ "space-station-moon": 510,
3045
+ "spade": 510,
3046
+ "spaghetti-monster-flying": 510,
3047
+ "sparkle": 510,
3048
+ "sparkles": 510,
3049
+ "speaker": 510,
3050
+ "speakers": 510,
3051
+ "spell-check": 510,
3052
+ "spider-black-widow": 510,
3053
+ "spider-web": 510,
3054
+ "spider": 510,
3055
+ "spinner-third": 510,
3056
+ "spinner": 510,
3057
+ "split": 510,
3058
+ "splotch": 510,
3059
+ "spoon": 510,
3060
+ "sportsball": 510,
3061
+ "spray-can-sparkles": 510,
3062
+ "spray-can": 510,
3063
+ "sprinkler-ceiling": 510,
3064
+ "sprinkler": 510,
3065
+ "square-0": 510,
3066
+ "square-1": 510,
3067
+ "square-2": 510,
3068
+ "square-3": 510,
3069
+ "square-4": 510,
3070
+ "square-5": 510,
3071
+ "square-6": 510,
3072
+ "square-7": 510,
3073
+ "square-8": 510,
3074
+ "square-9": 510,
3075
+ "square-a-lock": 510,
3076
+ "square-a": 510,
3077
+ "square-ampersand": 510,
3078
+ "square-arrow-down-left": 510,
3079
+ "square-arrow-down-right": 510,
3080
+ "square-arrow-down": 510,
3081
+ "square-arrow-left": 510,
3082
+ "square-arrow-right": 510,
3083
+ "square-arrow-up-left": 510,
3084
+ "square-arrow-up-right": 510,
3085
+ "square-arrow-up": 510,
3086
+ "square-b": 510,
3087
+ "square-bolt": 510,
3088
+ "square-c": 510,
3089
+ "square-caret-down": 510,
3090
+ "square-caret-left": 510,
3091
+ "square-caret-right": 510,
3092
+ "square-caret-up": 510,
3093
+ "square-check": 510,
3094
+ "square-chevron-down": 510,
3095
+ "square-chevron-left": 510,
3096
+ "square-chevron-right": 510,
3097
+ "square-chevron-up": 510,
3098
+ "square-code": 510,
3099
+ "square-d": 510,
3100
+ "square-dashed-circle-plus": 510,
3101
+ "square-dashed": 510,
3102
+ "square-divide": 510,
3103
+ "square-dollar": 510,
3104
+ "square-down-left": 510,
3105
+ "square-down-right": 510,
3106
+ "square-down": 510,
3107
+ "square-e": 510,
3108
+ "square-ellipsis-vertical": 510,
3109
+ "square-ellipsis": 510,
3110
+ "square-envelope": 510,
3111
+ "square-exclamation": 510,
3112
+ "square-f": 510,
3113
+ "square-fragile": 510,
3114
+ "square-full": 510,
3115
+ "square-g": 510,
3116
+ "square-h": 510,
3117
+ "square-heart": 510,
3118
+ "square-i": 510,
3119
+ "square-info": 510,
3120
+ "square-j": 510,
3121
+ "square-k": 510,
3122
+ "square-kanban": 510,
3123
+ "square-l": 510,
3124
+ "square-left": 510,
3125
+ "square-list": 510,
3126
+ "square-m": 510,
3127
+ "square-minus": 510,
3128
+ "square-n": 510,
3129
+ "square-nfi": 510,
3130
+ "square-o": 510,
3131
+ "square-p": 510,
3132
+ "square-parking-slash": 510,
3133
+ "square-parking": 510,
3134
+ "square-pen": 510,
3135
+ "square-person-confined": 510,
3136
+ "square-phone-flip": 510,
3137
+ "square-phone-hangup": 510,
3138
+ "square-phone": 510,
3139
+ "square-plus": 510,
3140
+ "square-poll-horizontal": 510,
3141
+ "square-poll-vertical": 510,
3142
+ "square-q": 510,
3143
+ "square-quarters": 510,
3144
+ "square-question": 510,
3145
+ "square-quote": 510,
3146
+ "square-r": 510,
3147
+ "square-right": 510,
3148
+ "square-ring": 510,
3149
+ "square-root-variable": 510,
3150
+ "square-root": 510,
3151
+ "square-rss": 510,
3152
+ "square-s": 510,
3153
+ "square-share-nodes": 510,
3154
+ "square-sliders-vertical": 510,
3155
+ "square-sliders": 510,
3156
+ "square-small": 510,
3157
+ "square-star": 510,
3158
+ "square-t": 510,
3159
+ "square-terminal": 510,
3160
+ "square-this-way-up": 510,
3161
+ "square-u": 510,
3162
+ "square-up-left": 510,
3163
+ "square-up-right": 510,
3164
+ "square-up": 510,
3165
+ "square-user": 510,
3166
+ "square-v": 510,
3167
+ "square-virus": 510,
3168
+ "square-w": 510,
3169
+ "square-x": 510,
3170
+ "square-xmark": 510,
3171
+ "square-y": 510,
3172
+ "square-z": 510,
3173
+ "square": 510,
3174
+ "squid": 510,
3175
+ "squirrel": 510,
3176
+ "staff-snake": 510,
3177
+ "staff": 510,
3178
+ "stairs": 510,
3179
+ "stamp": 510,
3180
+ "standard-definition": 510,
3181
+ "stapler": 510,
3182
+ "star-and-crescent": 510,
3183
+ "star-christmas": 510,
3184
+ "star-exclamation": 510,
3185
+ "star-half-stroke": 510,
3186
+ "star-half": 510,
3187
+ "star-of-david": 510,
3188
+ "star-of-life": 510,
3189
+ "star-sharp-half-stroke": 510,
3190
+ "star-sharp-half": 510,
3191
+ "star-sharp": 510,
3192
+ "star-shooting": 510,
3193
+ "star": 510,
3194
+ "starfighter-twin-ion-engine-advanced": 510,
3195
+ "starfighter-twin-ion-engine": 510,
3196
+ "starfighter": 510,
3197
+ "stars": 510,
3198
+ "starship-freighter": 510,
3199
+ "starship": 510,
3200
+ "steak": 510,
3201
+ "steering-wheel": 510,
3202
+ "sterling-sign": 510,
3203
+ "stethoscope": 510,
3204
+ "stocking": 510,
3205
+ "stomach": 510,
3206
+ "stop": 510,
3207
+ "stopwatch-20": 510,
3208
+ "stopwatch": 510,
3209
+ "store-lock": 510,
3210
+ "store-slash": 510,
3211
+ "store": 510,
3212
+ "strawberry": 510,
3213
+ "street-view": 510,
3214
+ "stretcher": 510,
3215
+ "strikethrough": 510,
3216
+ "stroopwafel": 510,
3217
+ "subscript": 510,
3218
+ "suitcase-medical": 510,
3219
+ "suitcase-rolling": 510,
3220
+ "suitcase": 510,
3221
+ "sun-bright": 510,
3222
+ "sun-cloud": 510,
3223
+ "sun-dust": 510,
3224
+ "sun-haze": 510,
3225
+ "sun-plant-wilt": 510,
3226
+ "sun": 510,
3227
+ "sunglasses": 510,
3228
+ "sunrise": 510,
3229
+ "sunset": 510,
3230
+ "superscript": 510,
3231
+ "sushi-roll": 510,
3232
+ "sushi": 510,
3233
+ "swatchbook": 510,
3234
+ "sword-laser-alt": 510,
3235
+ "sword-laser": 510,
3236
+ "sword": 510,
3237
+ "swords-laser": 510,
3238
+ "swords": 510,
3239
+ "symbols": 510,
3240
+ "synagogue": 510,
3241
+ "syringe": 510,
3242
+ "t": 510,
3243
+ "table-cells-large": 510,
3244
+ "table-cells": 510,
3245
+ "table-columns": 510,
3246
+ "table-layout": 510,
3247
+ "table-list": 510,
3248
+ "table-picnic": 510,
3249
+ "table-pivot": 510,
3250
+ "table-rows": 510,
3251
+ "table-tennis-paddle-ball": 510,
3252
+ "table-tree": 510,
3253
+ "table": 510,
3254
+ "tablet-button": 510,
3255
+ "tablet-rugged": 510,
3256
+ "tablet-screen-button": 510,
3257
+ "tablet-screen": 510,
3258
+ "tablet": 510,
3259
+ "tablets": 510,
3260
+ "tachograph-digital": 510,
3261
+ "taco": 510,
3262
+ "tag": 510,
3263
+ "tags": 510,
3264
+ "tally-1": 510,
3265
+ "tally-2": 510,
3266
+ "tally-3": 510,
3267
+ "tally-4": 510,
3268
+ "tally": 510,
3269
+ "tamale": 510,
3270
+ "tank-water": 510,
3271
+ "tape": 510,
3272
+ "tarp-droplet": 510,
3273
+ "tarp": 510,
3274
+ "taxi-bus": 510,
3275
+ "taxi": 510,
3276
+ "teddy-bear": 510,
3277
+ "teeth-open": 510,
3278
+ "teeth": 510,
3279
+ "telescope": 510,
3280
+ "temperature-arrow-down": 510,
3281
+ "temperature-arrow-up": 510,
3282
+ "temperature-empty": 510,
3283
+ "temperature-full": 510,
3284
+ "temperature-half": 510,
3285
+ "temperature-high": 510,
3286
+ "temperature-list": 510,
3287
+ "temperature-low": 510,
3288
+ "temperature-quarter": 510,
3289
+ "temperature-snow": 510,
3290
+ "temperature-sun": 510,
3291
+ "temperature-three-quarters": 510,
3292
+ "tenge-sign": 510,
3293
+ "tennis-ball": 510,
3294
+ "tent-arrow-down-to-line": 510,
3295
+ "tent-arrow-left-right": 510,
3296
+ "tent-arrow-turn-left": 510,
3297
+ "tent-arrows-down": 510,
3298
+ "tent": 510,
3299
+ "tents": 510,
3300
+ "terminal": 510,
3301
+ "text-height": 510,
3302
+ "text-size": 510,
3303
+ "text-slash": 510,
3304
+ "text-width": 510,
3305
+ "text": 510,
3306
+ "thermometer": 510,
3307
+ "theta": 510,
3308
+ "thought-bubble": 510,
3309
+ "thumbs-down": 510,
3310
+ "thumbs-up": 510,
3311
+ "thumbtack": 510,
3312
+ "tick": 510,
3313
+ "ticket-airline": 510,
3314
+ "ticket-simple": 510,
3315
+ "ticket": 510,
3316
+ "tickets-airline": 510,
3317
+ "tilde": 510,
3318
+ "timeline-arrow": 510,
3319
+ "timeline": 510,
3320
+ "timer": 510,
3321
+ "tire-flat": 510,
3322
+ "tire-pressure-warning": 510,
3323
+ "tire-rugged": 510,
3324
+ "tire": 510,
3325
+ "toggle-large-off": 510,
3326
+ "toggle-large-on": 510,
3327
+ "toggle-off": 510,
3328
+ "toggle-on": 510,
3329
+ "toilet-paper-blank-under": 510,
3330
+ "toilet-paper-blank": 510,
3331
+ "toilet-paper-check": 510,
3332
+ "toilet-paper-slash": 510,
3333
+ "toilet-paper-under-slash": 510,
3334
+ "toilet-paper-under": 510,
3335
+ "toilet-paper-xmark": 510,
3336
+ "toilet-paper": 510,
3337
+ "toilet-portable": 510,
3338
+ "toilet": 510,
3339
+ "toilets-portable": 510,
3340
+ "tomato": 510,
3341
+ "tombstone-blank": 510,
3342
+ "tombstone": 510,
3343
+ "toolbox": 510,
3344
+ "tooth": 510,
3345
+ "toothbrush": 510,
3346
+ "torii-gate": 510,
3347
+ "tornado": 510,
3348
+ "tower-broadcast": 510,
3349
+ "tower-cell": 510,
3350
+ "tower-control": 510,
3351
+ "tower-observation": 510,
3352
+ "tractor": 510,
3353
+ "trademark": 510,
3354
+ "traffic-cone": 510,
3355
+ "traffic-light-go": 510,
3356
+ "traffic-light-slow": 510,
3357
+ "traffic-light-stop": 510,
3358
+ "traffic-light": 510,
3359
+ "trailer": 510,
3360
+ "train-subway-tunnel": 510,
3361
+ "train-subway": 510,
3362
+ "train-track": 510,
3363
+ "train-tram": 510,
3364
+ "train-tunnel": 510,
3365
+ "train": 510,
3366
+ "transformer-bolt": 510,
3367
+ "transgender": 510,
3368
+ "transporter-1": 510,
3369
+ "transporter-2": 510,
3370
+ "transporter-3": 510,
3371
+ "transporter-4": 510,
3372
+ "transporter-5": 510,
3373
+ "transporter-6": 510,
3374
+ "transporter-7": 510,
3375
+ "transporter-empty": 510,
3376
+ "transporter": 510,
3377
+ "trash-arrow-up": 510,
3378
+ "trash-can-arrow-up": 510,
3379
+ "trash-can-check": 510,
3380
+ "trash-can-clock": 510,
3381
+ "trash-can-list": 510,
3382
+ "trash-can-plus": 510,
3383
+ "trash-can-slash": 510,
3384
+ "trash-can-undo": 510,
3385
+ "trash-can-xmark": 510,
3386
+ "trash-can": 510,
3387
+ "trash-check": 510,
3388
+ "trash-clock": 510,
3389
+ "trash-list": 510,
3390
+ "trash-plus": 510,
3391
+ "trash-slash": 510,
3392
+ "trash-undo": 510,
3393
+ "trash-xmark": 510,
3394
+ "trash": 510,
3395
+ "treasure-chest": 510,
3396
+ "tree-christmas": 510,
3397
+ "tree-city": 510,
3398
+ "tree-deciduous": 510,
3399
+ "tree-decorated": 510,
3400
+ "tree-large": 510,
3401
+ "tree-palm": 510,
3402
+ "tree": 510,
3403
+ "trees": 510,
3404
+ "triangle-exclamation": 510,
3405
+ "triangle-instrument": 510,
3406
+ "triangle-person-digging": 510,
3407
+ "triangle": 510,
3408
+ "tricycle-adult": 510,
3409
+ "tricycle": 510,
3410
+ "trillium": 510,
3411
+ "trophy-star": 510,
3412
+ "trophy": 510,
3413
+ "trowel-bricks": 510,
3414
+ "trowel": 510,
3415
+ "truck-arrow-right": 510,
3416
+ "truck-bolt": 510,
3417
+ "truck-clock": 510,
3418
+ "truck-container-empty": 510,
3419
+ "truck-container": 510,
3420
+ "truck-droplet": 510,
3421
+ "truck-fast": 510,
3422
+ "truck-field-un": 510,
3423
+ "truck-field": 510,
3424
+ "truck-flatbed": 510,
3425
+ "truck-front": 510,
3426
+ "truck-medical": 510,
3427
+ "truck-monster": 510,
3428
+ "truck-moving": 510,
3429
+ "truck-pickup": 510,
3430
+ "truck-plane": 510,
3431
+ "truck-plow": 510,
3432
+ "truck-ramp-box": 510,
3433
+ "truck-ramp-couch": 510,
3434
+ "truck-ramp": 510,
3435
+ "truck-tow": 510,
3436
+ "truck": 510,
3437
+ "trumpet": 510,
3438
+ "tty-answer": 510,
3439
+ "tty": 510,
3440
+ "tugrik-sign": 510,
3441
+ "turkey": 510,
3442
+ "turkish-lira-sign": 510,
3443
+ "turn-down-left": 510,
3444
+ "turn-down-right": 510,
3445
+ "turn-down": 510,
3446
+ "turn-up": 510,
3447
+ "turntable": 510,
3448
+ "turtle": 510,
3449
+ "tv-music": 510,
3450
+ "tv-retro": 510,
3451
+ "tv": 510,
3452
+ "typewriter": 510,
3453
+ "u": 510,
3454
+ "ufo-beam": 510,
3455
+ "ufo": 510,
3456
+ "umbrella-beach": 510,
3457
+ "umbrella-simple": 510,
3458
+ "umbrella": 510,
3459
+ "underline": 510,
3460
+ "unicorn": 510,
3461
+ "uniform-martial-arts": 510,
3462
+ "union": 510,
3463
+ "universal-access": 510,
3464
+ "unlock-keyhole": 510,
3465
+ "unlock": 510,
3466
+ "up-down-left-right": 510,
3467
+ "up-down": 510,
3468
+ "up-from-bracket": 510,
3469
+ "up-from-dotted-line": 510,
3470
+ "up-from-line": 510,
3471
+ "up-left": 510,
3472
+ "up-long": 510,
3473
+ "up-right-and-down-left-from-center": 510,
3474
+ "up-right-from-square": 510,
3475
+ "up-right": 510,
3476
+ "up-to-dotted-line": 510,
3477
+ "up-to-line": 510,
3478
+ "up": 510,
3479
+ "upload": 510,
3480
+ "usb-drive": 510,
3481
+ "user-alien": 510,
3482
+ "user-astronaut": 510,
3483
+ "user-bounty-hunter": 510,
3484
+ "user-check": 510,
3485
+ "user-chef": 510,
3486
+ "user-clock": 510,
3487
+ "user-cowboy": 510,
3488
+ "user-crown": 510,
3489
+ "user-doctor-hair-long": 510,
3490
+ "user-doctor-hair": 510,
3491
+ "user-doctor-message": 510,
3492
+ "user-doctor": 510,
3493
+ "user-gear": 510,
3494
+ "user-graduate": 510,
3495
+ "user-group-crown": 510,
3496
+ "user-group-simple": 510,
3497
+ "user-group": 510,
3498
+ "user-hair-buns": 510,
3499
+ "user-hair-long": 510,
3500
+ "user-hair-mullet": 510,
3501
+ "user-hair": 510,
3502
+ "user-headset": 510,
3503
+ "user-helmet-safety": 510,
3504
+ "user-injured": 510,
3505
+ "user-large-slash": 510,
3506
+ "user-large": 510,
3507
+ "user-lock": 510,
3508
+ "user-magnifying-glass": 510,
3509
+ "user-minus": 510,
3510
+ "user-music": 510,
3511
+ "user-ninja": 510,
3512
+ "user-nurse-hair-long": 510,
3513
+ "user-nurse-hair": 510,
3514
+ "user-nurse": 510,
3515
+ "user-pen": 510,
3516
+ "user-pilot-tie": 510,
3517
+ "user-pilot": 510,
3518
+ "user-plus": 510,
3519
+ "user-police-tie": 510,
3520
+ "user-police": 510,
3521
+ "user-robot-xmarks": 510,
3522
+ "user-robot": 510,
3523
+ "user-secret": 510,
3524
+ "user-shakespeare": 510,
3525
+ "user-shield": 510,
3526
+ "user-slash": 510,
3527
+ "user-tag": 510,
3528
+ "user-tie-hair-long": 510,
3529
+ "user-tie-hair": 510,
3530
+ "user-tie": 510,
3531
+ "user-unlock": 510,
3532
+ "user-visor": 510,
3533
+ "user-vneck-hair-long": 510,
3534
+ "user-vneck-hair": 510,
3535
+ "user-vneck": 510,
3536
+ "user-xmark": 510,
3537
+ "user": 510,
3538
+ "users-between-lines": 510,
3539
+ "users-gear": 510,
3540
+ "users-line": 510,
3541
+ "users-medical": 510,
3542
+ "users-rays": 510,
3543
+ "users-rectangle": 510,
3544
+ "users-slash": 510,
3545
+ "users-viewfinder": 510,
3546
+ "users": 510,
3547
+ "utensils-slash": 510,
3548
+ "utensils": 510,
3549
+ "utility-pole-double": 510,
3550
+ "utility-pole": 510,
3551
+ "v": 510,
3552
+ "vacuum-robot": 510,
3553
+ "vacuum": 510,
3554
+ "value-absolute": 510,
3555
+ "van-shuttle": 510,
3556
+ "vault": 510,
3557
+ "vector-circle": 510,
3558
+ "vector-polygon": 510,
3559
+ "vector-square": 510,
3560
+ "vent-damper": 510,
3561
+ "venus-double": 510,
3562
+ "venus-mars": 510,
3563
+ "venus": 510,
3564
+ "vest-patches": 510,
3565
+ "vest": 510,
3566
+ "vial-circle-check": 510,
3567
+ "vial-virus": 510,
3568
+ "vial": 510,
3569
+ "vials": 510,
3570
+ "video-arrow-down-left": 510,
3571
+ "video-arrow-up-right": 510,
3572
+ "video-plus": 510,
3573
+ "video-slash": 510,
3574
+ "video": 510,
3575
+ "vihara": 510,
3576
+ "violin": 510,
3577
+ "virus-covid-slash": 510,
3578
+ "virus-covid": 510,
3579
+ "virus-slash": 510,
3580
+ "virus": 510,
3581
+ "viruses": 510,
3582
+ "voicemail": 510,
3583
+ "volcano": 510,
3584
+ "volleyball": 510,
3585
+ "volume-high": 510,
3586
+ "volume-low": 510,
3587
+ "volume-off": 510,
3588
+ "volume-slash": 510,
3589
+ "volume-xmark": 510,
3590
+ "volume": 510,
3591
+ "vr-cardboard": 510,
3592
+ "w": 510,
3593
+ "waffle": 510,
3594
+ "wagon-covered": 510,
3595
+ "walker": 510,
3596
+ "walkie-talkie": 510,
3597
+ "wallet": 510,
3598
+ "wand-magic-sparkles": 510,
3599
+ "wand-magic": 510,
3600
+ "wand-sparkles": 510,
3601
+ "wand": 510,
3602
+ "warehouse-full": 510,
3603
+ "warehouse": 510,
3604
+ "washing-machine": 510,
3605
+ "watch-apple": 510,
3606
+ "watch-calculator": 510,
3607
+ "watch-fitness": 510,
3608
+ "watch-smart": 510,
3609
+ "watch": 510,
3610
+ "water-arrow-down": 510,
3611
+ "water-arrow-up": 510,
3612
+ "water-ladder": 510,
3613
+ "water": 510,
3614
+ "watermelon-slice": 510,
3615
+ "wave-pulse": 510,
3616
+ "wave-sine": 510,
3617
+ "wave-square": 510,
3618
+ "wave-triangle": 510,
3619
+ "waveform-lines": 510,
3620
+ "waveform": 510,
3621
+ "webhook": 510,
3622
+ "weight-hanging": 510,
3623
+ "weight-scale": 510,
3624
+ "whale": 510,
3625
+ "wheat-awn-circle-exclamation": 510,
3626
+ "wheat-awn-slash": 510,
3627
+ "wheat-awn": 510,
3628
+ "wheat-slash": 510,
3629
+ "wheat": 510,
3630
+ "wheelchair-move": 510,
3631
+ "wheelchair": 510,
3632
+ "whiskey-glass-ice": 510,
3633
+ "whiskey-glass": 510,
3634
+ "whistle": 510,
3635
+ "wifi-exclamation": 510,
3636
+ "wifi-fair": 510,
3637
+ "wifi-slash": 510,
3638
+ "wifi-weak": 510,
3639
+ "wifi": 510,
3640
+ "wind-turbine": 510,
3641
+ "wind-warning": 510,
3642
+ "wind": 510,
3643
+ "window-flip": 510,
3644
+ "window-frame-open": 510,
3645
+ "window-frame": 510,
3646
+ "window-maximize": 510,
3647
+ "window-minimize": 510,
3648
+ "window-restore": 510,
3649
+ "window": 510,
3650
+ "windsock": 510,
3651
+ "wine-bottle": 510,
3652
+ "wine-glass-crack": 510,
3653
+ "wine-glass-empty": 510,
3654
+ "wine-glass": 510,
3655
+ "won-sign": 510,
3656
+ "worm": 510,
3657
+ "wreath-laurel": 510,
3658
+ "wreath": 510,
3659
+ "wrench-simple": 510,
3660
+ "wrench": 510,
3661
+ "x-ray": 510,
3662
+ "x": 510,
3663
+ "xmark-large": 510,
3664
+ "xmark-to-slot": 510,
3665
+ "xmark": 510,
3666
+ "xmarks-lines": 510,
3667
+ "y": 510,
3668
+ "yen-sign": 510,
3669
+ "yin-yang": 510,
3670
+ "z": 510
3671
+ }