├── materialdesignicons-webfont.ttf ├── README.md ├── LICENSE.txt ├── LICENSE └── Icon.js /materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevincarlson/QmlBridgeForMaterialDesignIcons/HEAD/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # QmlBridgeForMaterialDesignIcons 2 | 3 | This project provides a look up table for using the Material Design Icons font in Qt/QML projects. The font contains thousands of icons designed to match Android's native icon set, which should help make applications that target mobile devices feel more at home on that platform. 4 | 5 | The look up table is released under the terms of the MIT license, in order to permit usage in commercial applications distributed through the various app stores. The complete licensing terms are included at the top of the Icon.js file. This repository contains a copy of the Material Design Icons web font, which is distributed under the terms of the Apache Software License, version 2.0. 6 | 7 | ## Using The Icons in a QML Project 8 | 9 | 1. Download the Material Design Icons font, available at [https://materialdesignicons.com/](https://materialdesignicons.com/) 10 | 2. Add the font file, and Icon.js from this project to the project's QRC file 11 | 3. When initializing the application from C++, add the font to the font database, `QFontDatabase::addApplicationFont(":/materialdesignicons-webfont.ttf");` 12 | 4. Import `Icon.js` in any QML file where icons will be referenced: `import "Icon.js" as MdiFont` 13 | 5. Add the desired icon to any QML item that can display text 14 | * Set font.family to "Material Design Icons" 15 | * Set the text property to the desired property of MdiFont.Icon, e.g. `MdiFont.Icon.mdiFileImage` 16 | 17 | For a more thorough step by step guide, as well as an explanation of the design process, see [https://kevincarlson.codes/using-material-design-icons-with-qml/](https://kevincarlson.codes/using-material-design-icons-with-qml/). 18 | 19 | ## Example 20 | 21 | A simple, reusable QML Icon Button may look like this: 22 | 23 | ``` 24 | import QtQuick 2.7 25 | 26 | import QtQuick.Controls 2.0 27 | import "Icon.js" as MdiFont 28 | 29 | Button { 30 | implicitHeight: 48 31 | implicitWidth: 48 32 | font.pointSize: 24 33 | font.family: "Material Design Icons" 34 | } 35 | ``` 36 | 37 | The control could be used as follows, for a simple formatting toolbar: 38 | 39 | ``` 40 | import QtQuick 2.7 41 | import QtQuick.Controls 2.0 42 | import QtQuick.Layouts 1.1 43 | import "Icon.js" as MdiFont 44 | 45 | ToolBar { 46 | height: 56 47 | RowLayout { 48 | IconButton { 49 | text: MdiFont.Icon.formatBold 50 | checkable: true 51 | } 52 | 53 | IconButton { 54 | text: MdiFont.Icon.formatItalic 55 | checkable: true 56 | } 57 | 58 | IconButton { 59 | text: MdiFont.Icon.formatUnderline 60 | checkable: true 61 | } 62 | 63 | Item { 64 | width: 8 65 | } 66 | 67 | IconButton { 68 | text: MdiFont.Icon.formatIndentDecrease 69 | } 70 | 71 | IconButton { 72 | text: MdiFont.Icon.formatIndentIncrease 73 | } 74 | } 75 | } 76 | ``` 77 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 2 | This license is copied below, and is also available with a FAQ at: 3 | http://scripts.sil.org/OFL 4 | 5 | 6 | ----------------------------------------------------------- 7 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 8 | ----------------------------------------------------------- 9 | 10 | PREAMBLE 11 | The goals of the Open Font License (OFL) are to stimulate worldwide 12 | development of collaborative font projects, to support the font creation 13 | efforts of academic and linguistic communities, and to provide a free and 14 | open framework in which fonts may be shared and improved in partnership 15 | with others. 16 | 17 | The OFL allows the licensed fonts to be used, studied, modified and 18 | redistributed freely as long as they are not sold by themselves. The 19 | fonts, including any derivative works, can be bundled, embedded, 20 | redistributed and/or sold with any software provided that any reserved 21 | names are not used by derivative works. The fonts and derivatives, 22 | however, cannot be released under any other type of license. The 23 | requirement for fonts to remain under this license does not apply 24 | to any document created using the fonts or their derivatives. 25 | 26 | DEFINITIONS 27 | "Font Software" refers to the set of files released by the Copyright 28 | Holder(s) under this license and clearly marked as such. This may 29 | include source files, build scripts and documentation. 30 | 31 | "Reserved Font Name" refers to any names specified as such after the 32 | copyright statement(s). 33 | 34 | "Original Version" refers to the collection of Font Software components as 35 | distributed by the Copyright Holder(s). 36 | 37 | "Modified Version" refers to any derivative made by adding to, deleting, 38 | or substituting -- in part or in whole -- any of the components of the 39 | Original Version, by changing formats or by porting the Font Software to a 40 | new environment. 41 | 42 | "Author" refers to any designer, engineer, programmer, technical 43 | writer or other person who contributed to the Font Software. 44 | 45 | PERMISSION & CONDITIONS 46 | Permission is hereby granted, free of charge, to any person obtaining 47 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 48 | redistribute, and sell modified and unmodified copies of the Font 49 | Software, subject to the following conditions: 50 | 51 | 1) Neither the Font Software nor any of its individual components, 52 | in Original or Modified Versions, may be sold by itself. 53 | 54 | 2) Original or Modified Versions of the Font Software may be bundled, 55 | redistributed and/or sold with any software, provided that each copy 56 | contains the above copyright notice and this license. These can be 57 | included either as stand-alone text files, human-readable headers or 58 | in the appropriate machine-readable metadata fields within text or 59 | binary files as long as those fields can be easily viewed by the user. 60 | 61 | 3) No Modified Version of the Font Software may use the Reserved Font 62 | Name(s) unless explicit written permission is granted by the corresponding 63 | Copyright Holder. This restriction only applies to the primary font name as 64 | presented to the users. 65 | 66 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 67 | Software shall not be used to promote, endorse or advertise any 68 | Modified Version, except to acknowledge the contribution(s) of the 69 | Copyright Holder(s) and the Author(s) or with their explicit written 70 | permission. 71 | 72 | 5) The Font Software, modified or unmodified, in part or in whole, 73 | must be distributed entirely under this license, and must not be 74 | distributed under any other license. The requirement for fonts to 75 | remain under this license does not apply to any document created 76 | using the Font Software. 77 | 78 | TERMINATION 79 | This license becomes null and void if any of the above conditions are 80 | not met. 81 | 82 | DISCLAIMER 83 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 84 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 85 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 86 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 87 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 88 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 89 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 90 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 91 | OTHER DEALINGS IN THE FONT SOFTWARE. 92 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /Icon.js: -------------------------------------------------------------------------------- 1 | //////////////////////////////////////////////////////////////////////////////// 2 | // 3 | // QML Bridge for Material Design icons 4 | // Copyright (C) 2016-2021 by Kevin Carlson 5 | // 6 | // Permission is hereby granted, free of charge, to any person obtaining a copy 7 | // of this software and associated documentation files (the "Software"), to 8 | // deal in the Software without restriction, including without limitation the 9 | // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 10 | // sell copies of the Software, and to permit persons to whom the Software is 11 | // furnished to do so, subject to the following conditions: 12 | // 13 | // The above copyright notice and this permission notice shall be included in 14 | // all copies or substantial portions of the Software. 15 | // 16 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 22 | // IN THE SOFTWARE. 23 | // 24 | //////////////////////////////////////////////////////////////////////////////// 25 | 26 | 27 | var Icon = { 28 | "abTesting": "\uf01C9", 29 | "abacus": "\uf16E0", 30 | "abjadArabic": "\uf1328", 31 | "abjadHebrew": "\uf1329", 32 | "abugidaDevanagari": "\uf132A", 33 | "abugidaThai": "\uf132B", 34 | "accessPoint": "\uf0003", 35 | "accessPointCheck": "\uf1538", 36 | "accessPointMinus": "\uf1539", 37 | "accessPointNetwork": "\uf0002", 38 | "accessPointNetworkOff": "\uf0BE1", 39 | "accessPointOff": "\uf1511", 40 | "accessPointPlus": "\uf153A", 41 | "accessPointRemove": "\uf153B", 42 | "account": "\uf0004", 43 | "accountAlert": "\uf0005", 44 | "accountAlertOutline": "\uf0B50", 45 | "accountArrowLeft": "\uf0B51", 46 | "accountArrowLeftOutline": "\uf0B52", 47 | "accountArrowRight": "\uf0B53", 48 | "accountArrowRightOutline": "\uf0B54", 49 | "accountBox": "\uf0006", 50 | "accountBoxMultiple": "\uf0934", 51 | "accountBoxMultipleOutline": "\uf100A", 52 | "accountBoxOutline": "\uf0007", 53 | "accountCancel": "\uf12DF", 54 | "accountCancelOutline": "\uf12E0", 55 | "accountCash": "\uf1097", 56 | "accountCashOutline": "\uf1098", 57 | "accountCheck": "\uf0008", 58 | "accountCheckOutline": "\uf0BE2", 59 | "accountChild": "\uf0A89", 60 | "accountChildCircle": "\uf0A8A", 61 | "accountChildOutline": "\uf10C8", 62 | "accountCircle": "\uf0009", 63 | "accountCircleOutline": "\uf0B55", 64 | "accountClock": "\uf0B56", 65 | "accountClockOutline": "\uf0B57", 66 | "accountCog": "\uf1370", 67 | "accountCogOutline": "\uf1371", 68 | "accountConvert": "\uf000A", 69 | "accountConvertOutline": "\uf1301", 70 | "accountCowboyHat": "\uf0E9B", 71 | "accountDetails": "\uf0631", 72 | "accountDetailsOutline": "\uf1372", 73 | "accountEdit": "\uf06BC", 74 | "accountEditOutline": "\uf0FFB", 75 | "accountGroup": "\uf0849", 76 | "accountGroupOutline": "\uf0B58", 77 | "accountHardHat": "\uf05B5", 78 | "accountHeart": "\uf0899", 79 | "accountHeartOutline": "\uf0BE3", 80 | "accountKey": "\uf000B", 81 | "accountKeyOutline": "\uf0BE4", 82 | "accountLock": "\uf115E", 83 | "accountLockOutline": "\uf115F", 84 | "accountMinus": "\uf000D", 85 | "accountMinusOutline": "\uf0AEC", 86 | "accountMultiple": "\uf000E", 87 | "accountMultipleCheck": "\uf08C5", 88 | "accountMultipleCheckOutline": "\uf11FE", 89 | "accountMultipleMinus": "\uf05D3", 90 | "accountMultipleMinusOutline": "\uf0BE5", 91 | "accountMultipleOutline": "\uf000F", 92 | "accountMultiplePlus": "\uf0010", 93 | "accountMultiplePlusOutline": "\uf0800", 94 | "accountMultipleRemove": "\uf120A", 95 | "accountMultipleRemoveOutline": "\uf120B", 96 | "accountMusic": "\uf0803", 97 | "accountMusicOutline": "\uf0CE9", 98 | "accountNetwork": "\uf0011", 99 | "accountNetworkOutline": "\uf0BE6", 100 | "accountOff": "\uf0012", 101 | "accountOffOutline": "\uf0BE7", 102 | "accountOutline": "\uf0013", 103 | "accountPlus": "\uf0014", 104 | "accountPlusOutline": "\uf0801", 105 | "accountQuestion": "\uf0B59", 106 | "accountQuestionOutline": "\uf0B5A", 107 | "accountReactivate": "\uf152B", 108 | "accountReactivateOutline": "\uf152C", 109 | "accountRemove": "\uf0015", 110 | "accountRemoveOutline": "\uf0AED", 111 | "accountSearch": "\uf0016", 112 | "accountSearchOutline": "\uf0935", 113 | "accountSettings": "\uf0630", 114 | "accountSettingsOutline": "\uf10C9", 115 | "accountStar": "\uf0017", 116 | "accountStarOutline": "\uf0BE8", 117 | "accountSupervisor": "\uf0A8B", 118 | "accountSupervisorCircle": "\uf0A8C", 119 | "accountSupervisorCircleOutline": "\uf14EC", 120 | "accountSupervisorOutline": "\uf112D", 121 | "accountSwitch": "\uf0019", 122 | "accountSwitchOutline": "\uf04CB", 123 | "accountTie": "\uf0CE3", 124 | "accountTieOutline": "\uf10CA", 125 | "accountTieVoice": "\uf1308", 126 | "accountTieVoiceOff": "\uf130A", 127 | "accountTieVoiceOffOutline": "\uf130B", 128 | "accountTieVoiceOutline": "\uf1309", 129 | "accountVoice": "\uf05CB", 130 | "adjust": "\uf001A", 131 | "adobe": "\uf0936", 132 | "adobeAcrobat": "\uf0F9D", 133 | "airConditioner": "\uf001B", 134 | "airFilter": "\uf0D43", 135 | "airHorn": "\uf0DAC", 136 | "airHumidifier": "\uf1099", 137 | "airHumidifierOff": "\uf1466", 138 | "airPurifier": "\uf0D44", 139 | "airbag": "\uf0BE9", 140 | "airballoon": "\uf001C", 141 | "airballoonOutline": "\uf100B", 142 | "airplane": "\uf001D", 143 | "airplaneLanding": "\uf05D4", 144 | "airplaneOff": "\uf001E", 145 | "airplaneTakeoff": "\uf05D5", 146 | "airport": "\uf084B", 147 | "alarm": "\uf0020", 148 | "alarmBell": "\uf078E", 149 | "alarmCheck": "\uf0021", 150 | "alarmLight": "\uf078F", 151 | "alarmLightOff": "\uf171E", 152 | "alarmLightOffOutline": "\uf171F", 153 | "alarmLightOutline": "\uf0BEA", 154 | "alarmMultiple": "\uf0022", 155 | "alarmNote": "\uf0E71", 156 | "alarmNoteOff": "\uf0E72", 157 | "alarmOff": "\uf0023", 158 | "alarmPanel": "\uf15C4", 159 | "alarmPanelOutline": "\uf15C5", 160 | "alarmPlus": "\uf0024", 161 | "alarmSnooze": "\uf068E", 162 | "album": "\uf0025", 163 | "alert": "\uf0026", 164 | "alertBox": "\uf0027", 165 | "alertBoxOutline": "\uf0CE4", 166 | "alertCircle": "\uf0028", 167 | "alertCircleCheck": "\uf11ED", 168 | "alertCircleCheckOutline": "\uf11EE", 169 | "alertCircleOutline": "\uf05D6", 170 | "alertDecagram": "\uf06BD", 171 | "alertDecagramOutline": "\uf0CE5", 172 | "alertMinus": "\uf14BB", 173 | "alertMinusOutline": "\uf14BE", 174 | "alertOctagon": "\uf0029", 175 | "alertOctagonOutline": "\uf0CE6", 176 | "alertOctagram": "\uf0767", 177 | "alertOctagramOutline": "\uf0CE7", 178 | "alertOutline": "\uf002A", 179 | "alertPlus": "\uf14BA", 180 | "alertPlusOutline": "\uf14BD", 181 | "alertRemove": "\uf14BC", 182 | "alertRemoveOutline": "\uf14BF", 183 | "alertRhombus": "\uf11CE", 184 | "alertRhombusOutline": "\uf11CF", 185 | "alien": "\uf089A", 186 | "alienOutline": "\uf10CB", 187 | "alignHorizontalCenter": "\uf11C3", 188 | "alignHorizontalLeft": "\uf11C2", 189 | "alignHorizontalRight": "\uf11C4", 190 | "alignVerticalBottom": "\uf11C5", 191 | "alignVerticalCenter": "\uf11C6", 192 | "alignVerticalTop": "\uf11C7", 193 | "allInclusive": "\uf06BE", 194 | "allergy": "\uf1258", 195 | "alpha": "\uf002B", 196 | "alphaA": "\uf0AEE", 197 | "alphaABox": "\uf0B08", 198 | "alphaABoxOutline": "\uf0BEB", 199 | "alphaACircle": "\uf0BEC", 200 | "alphaACircleOutline": "\uf0BED", 201 | "alphaB": "\uf0AEF", 202 | "alphaBBox": "\uf0B09", 203 | "alphaBBoxOutline": "\uf0BEE", 204 | "alphaBCircle": "\uf0BEF", 205 | "alphaBCircleOutline": "\uf0BF0", 206 | "alphaC": "\uf0AF0", 207 | "alphaCBox": "\uf0B0A", 208 | "alphaCBoxOutline": "\uf0BF1", 209 | "alphaCCircle": "\uf0BF2", 210 | "alphaCCircleOutline": "\uf0BF3", 211 | "alphaD": "\uf0AF1", 212 | "alphaDBox": "\uf0B0B", 213 | "alphaDBoxOutline": "\uf0BF4", 214 | "alphaDCircle": "\uf0BF5", 215 | "alphaDCircleOutline": "\uf0BF6", 216 | "alphaE": "\uf0AF2", 217 | "alphaEBox": "\uf0B0C", 218 | "alphaEBoxOutline": "\uf0BF7", 219 | "alphaECircle": "\uf0BF8", 220 | "alphaECircleOutline": "\uf0BF9", 221 | "alphaF": "\uf0AF3", 222 | "alphaFBox": "\uf0B0D", 223 | "alphaFBoxOutline": "\uf0BFA", 224 | "alphaFCircle": "\uf0BFB", 225 | "alphaFCircleOutline": "\uf0BFC", 226 | "alphaG": "\uf0AF4", 227 | "alphaGBox": "\uf0B0E", 228 | "alphaGBoxOutline": "\uf0BFD", 229 | "alphaGCircle": "\uf0BFE", 230 | "alphaGCircleOutline": "\uf0BFF", 231 | "alphaH": "\uf0AF5", 232 | "alphaHBox": "\uf0B0F", 233 | "alphaHBoxOutline": "\uf0C00", 234 | "alphaHCircle": "\uf0C01", 235 | "alphaHCircleOutline": "\uf0C02", 236 | "alphaI": "\uf0AF6", 237 | "alphaIBox": "\uf0B10", 238 | "alphaIBoxOutline": "\uf0C03", 239 | "alphaICircle": "\uf0C04", 240 | "alphaICircleOutline": "\uf0C05", 241 | "alphaJ": "\uf0AF7", 242 | "alphaJBox": "\uf0B11", 243 | "alphaJBoxOutline": "\uf0C06", 244 | "alphaJCircle": "\uf0C07", 245 | "alphaJCircleOutline": "\uf0C08", 246 | "alphaK": "\uf0AF8", 247 | "alphaKBox": "\uf0B12", 248 | "alphaKBoxOutline": "\uf0C09", 249 | "alphaKCircle": "\uf0C0A", 250 | "alphaKCircleOutline": "\uf0C0B", 251 | "alphaL": "\uf0AF9", 252 | "alphaLBox": "\uf0B13", 253 | "alphaLBoxOutline": "\uf0C0C", 254 | "alphaLCircle": "\uf0C0D", 255 | "alphaLCircleOutline": "\uf0C0E", 256 | "alphaM": "\uf0AFA", 257 | "alphaMBox": "\uf0B14", 258 | "alphaMBoxOutline": "\uf0C0F", 259 | "alphaMCircle": "\uf0C10", 260 | "alphaMCircleOutline": "\uf0C11", 261 | "alphaN": "\uf0AFB", 262 | "alphaNBox": "\uf0B15", 263 | "alphaNBoxOutline": "\uf0C12", 264 | "alphaNCircle": "\uf0C13", 265 | "alphaNCircleOutline": "\uf0C14", 266 | "alphaO": "\uf0AFC", 267 | "alphaOBox": "\uf0B16", 268 | "alphaOBoxOutline": "\uf0C15", 269 | "alphaOCircle": "\uf0C16", 270 | "alphaOCircleOutline": "\uf0C17", 271 | "alphaP": "\uf0AFD", 272 | "alphaPBox": "\uf0B17", 273 | "alphaPBoxOutline": "\uf0C18", 274 | "alphaPCircle": "\uf0C19", 275 | "alphaPCircleOutline": "\uf0C1A", 276 | "alphaQ": "\uf0AFE", 277 | "alphaQBox": "\uf0B18", 278 | "alphaQBoxOutline": "\uf0C1B", 279 | "alphaQCircle": "\uf0C1C", 280 | "alphaQCircleOutline": "\uf0C1D", 281 | "alphaR": "\uf0AFF", 282 | "alphaRBox": "\uf0B19", 283 | "alphaRBoxOutline": "\uf0C1E", 284 | "alphaRCircle": "\uf0C1F", 285 | "alphaRCircleOutline": "\uf0C20", 286 | "alphaS": "\uf0B00", 287 | "alphaSBox": "\uf0B1A", 288 | "alphaSBoxOutline": "\uf0C21", 289 | "alphaSCircle": "\uf0C22", 290 | "alphaSCircleOutline": "\uf0C23", 291 | "alphaT": "\uf0B01", 292 | "alphaTBox": "\uf0B1B", 293 | "alphaTBoxOutline": "\uf0C24", 294 | "alphaTCircle": "\uf0C25", 295 | "alphaTCircleOutline": "\uf0C26", 296 | "alphaU": "\uf0B02", 297 | "alphaUBox": "\uf0B1C", 298 | "alphaUBoxOutline": "\uf0C27", 299 | "alphaUCircle": "\uf0C28", 300 | "alphaUCircleOutline": "\uf0C29", 301 | "alphaV": "\uf0B03", 302 | "alphaVBox": "\uf0B1D", 303 | "alphaVBoxOutline": "\uf0C2A", 304 | "alphaVCircle": "\uf0C2B", 305 | "alphaVCircleOutline": "\uf0C2C", 306 | "alphaW": "\uf0B04", 307 | "alphaWBox": "\uf0B1E", 308 | "alphaWBoxOutline": "\uf0C2D", 309 | "alphaWCircle": "\uf0C2E", 310 | "alphaWCircleOutline": "\uf0C2F", 311 | "alphaX": "\uf0B05", 312 | "alphaXBox": "\uf0B1F", 313 | "alphaXBoxOutline": "\uf0C30", 314 | "alphaXCircle": "\uf0C31", 315 | "alphaXCircleOutline": "\uf0C32", 316 | "alphaY": "\uf0B06", 317 | "alphaYBox": "\uf0B20", 318 | "alphaYBoxOutline": "\uf0C33", 319 | "alphaYCircle": "\uf0C34", 320 | "alphaYCircleOutline": "\uf0C35", 321 | "alphaZ": "\uf0B07", 322 | "alphaZBox": "\uf0B21", 323 | "alphaZBoxOutline": "\uf0C36", 324 | "alphaZCircle": "\uf0C37", 325 | "alphaZCircleOutline": "\uf0C38", 326 | "alphabetAurebesh": "\uf132C", 327 | "alphabetCyrillic": "\uf132D", 328 | "alphabetGreek": "\uf132E", 329 | "alphabetLatin": "\uf132F", 330 | "alphabetPiqad": "\uf1330", 331 | "alphabetTengwar": "\uf1337", 332 | "alphabetical": "\uf002C", 333 | "alphabeticalOff": "\uf100C", 334 | "alphabeticalVariant": "\uf100D", 335 | "alphabeticalVariantOff": "\uf100E", 336 | "altimeter": "\uf05D7", 337 | "amazon": "\uf002D", 338 | "amazonAlexa": "\uf08C6", 339 | "ambulance": "\uf002F", 340 | "ammunition": "\uf0CE8", 341 | "ampersand": "\uf0A8D", 342 | "amplifier": "\uf0030", 343 | "amplifierOff": "\uf11B5", 344 | "anchor": "\uf0031", 345 | "android": "\uf0032", 346 | "androidAuto": "\uf0A8E", 347 | "androidDebugBridge": "\uf0033", 348 | "androidMessages": "\uf0D45", 349 | "androidStudio": "\uf0034", 350 | "angleAcute": "\uf0937", 351 | "angleObtuse": "\uf0938", 352 | "angleRight": "\uf0939", 353 | "angular": "\uf06B2", 354 | "angularjs": "\uf06BF", 355 | "animation": "\uf05D8", 356 | "animationOutline": "\uf0A8F", 357 | "animationPlay": "\uf093A", 358 | "animationPlayOutline": "\uf0A90", 359 | "ansible": "\uf109A", 360 | "antenna": "\uf1119", 361 | "anvil": "\uf089B", 362 | "apacheKafka": "\uf100F", 363 | "api": "\uf109B", 364 | "apiOff": "\uf1257", 365 | "apple": "\uf0035", 366 | "appleAirplay": "\uf001F", 367 | "appleFinder": "\uf0036", 368 | "appleIcloud": "\uf0038", 369 | "appleIos": "\uf0037", 370 | "appleKeyboardCaps": "\uf0632", 371 | "appleKeyboardCommand": "\uf0633", 372 | "appleKeyboardControl": "\uf0634", 373 | "appleKeyboardOption": "\uf0635", 374 | "appleKeyboardShift": "\uf0636", 375 | "appleSafari": "\uf0039", 376 | "application": "\uf0614", 377 | "applicationCog": "\uf1577", 378 | "applicationExport": "\uf0DAD", 379 | "applicationImport": "\uf0DAE", 380 | "applicationSettings": "\uf1555", 381 | "approximatelyEqual": "\uf0F9E", 382 | "approximatelyEqualBox": "\uf0F9F", 383 | "apps": "\uf003B", 384 | "appsBox": "\uf0D46", 385 | "arch": "\uf08C7", 386 | "archive": "\uf003C", 387 | "archiveAlert": "\uf14FD", 388 | "archiveAlertOutline": "\uf14FE", 389 | "archiveArrowDown": "\uf1259", 390 | "archiveArrowDownOutline": "\uf125A", 391 | "archiveArrowUp": "\uf125B", 392 | "archiveArrowUpOutline": "\uf125C", 393 | "archiveOutline": "\uf120E", 394 | "armFlex": "\uf0FD7", 395 | "armFlexOutline": "\uf0FD6", 396 | "arrangeBringForward": "\uf003D", 397 | "arrangeBringToFront": "\uf003E", 398 | "arrangeSendBackward": "\uf003F", 399 | "arrangeSendToBack": "\uf0040", 400 | "arrowAll": "\uf0041", 401 | "arrowBottomLeft": "\uf0042", 402 | "arrowBottomLeftBoldOutline": "\uf09B7", 403 | "arrowBottomLeftThick": "\uf09B8", 404 | "arrowBottomLeftThinCircleOutline": "\uf1596", 405 | "arrowBottomRight": "\uf0043", 406 | "arrowBottomRightBoldOutline": "\uf09B9", 407 | "arrowBottomRightThick": "\uf09BA", 408 | "arrowBottomRightThinCircleOutline": "\uf1595", 409 | "arrowCollapse": "\uf0615", 410 | "arrowCollapseAll": "\uf0044", 411 | "arrowCollapseDown": "\uf0792", 412 | "arrowCollapseHorizontal": "\uf084C", 413 | "arrowCollapseLeft": "\uf0793", 414 | "arrowCollapseRight": "\uf0794", 415 | "arrowCollapseUp": "\uf0795", 416 | "arrowCollapseVertical": "\uf084D", 417 | "arrowDecision": "\uf09BB", 418 | "arrowDecisionAuto": "\uf09BC", 419 | "arrowDecisionAutoOutline": "\uf09BD", 420 | "arrowDecisionOutline": "\uf09BE", 421 | "arrowDown": "\uf0045", 422 | "arrowDownBold": "\uf072E", 423 | "arrowDownBoldBox": "\uf072F", 424 | "arrowDownBoldBoxOutline": "\uf0730", 425 | "arrowDownBoldCircle": "\uf0047", 426 | "arrowDownBoldCircleOutline": "\uf0048", 427 | "arrowDownBoldHexagonOutline": "\uf0049", 428 | "arrowDownBoldOutline": "\uf09BF", 429 | "arrowDownBox": "\uf06C0", 430 | "arrowDownCircle": "\uf0CDB", 431 | "arrowDownCircleOutline": "\uf0CDC", 432 | "arrowDownDropCircle": "\uf004A", 433 | "arrowDownDropCircleOutline": "\uf004B", 434 | "arrowDownThick": "\uf0046", 435 | "arrowDownThinCircleOutline": "\uf1599", 436 | "arrowExpand": "\uf0616", 437 | "arrowExpandAll": "\uf004C", 438 | "arrowExpandDown": "\uf0796", 439 | "arrowExpandHorizontal": "\uf084E", 440 | "arrowExpandLeft": "\uf0797", 441 | "arrowExpandRight": "\uf0798", 442 | "arrowExpandUp": "\uf0799", 443 | "arrowExpandVertical": "\uf084F", 444 | "arrowHorizontalLock": "\uf115B", 445 | "arrowLeft": "\uf004D", 446 | "arrowLeftBold": "\uf0731", 447 | "arrowLeftBoldBox": "\uf0732", 448 | "arrowLeftBoldBoxOutline": "\uf0733", 449 | "arrowLeftBoldCircle": "\uf004F", 450 | "arrowLeftBoldCircleOutline": "\uf0050", 451 | "arrowLeftBoldHexagonOutline": "\uf0051", 452 | "arrowLeftBoldOutline": "\uf09C0", 453 | "arrowLeftBox": "\uf06C1", 454 | "arrowLeftCircle": "\uf0CDD", 455 | "arrowLeftCircleOutline": "\uf0CDE", 456 | "arrowLeftDropCircle": "\uf0052", 457 | "arrowLeftDropCircleOutline": "\uf0053", 458 | "arrowLeftRight": "\uf0E73", 459 | "arrowLeftRightBold": "\uf0E74", 460 | "arrowLeftRightBoldOutline": "\uf09C1", 461 | "arrowLeftThick": "\uf004E", 462 | "arrowLeftThinCircleOutline": "\uf159A", 463 | "arrowRight": "\uf0054", 464 | "arrowRightBold": "\uf0734", 465 | "arrowRightBoldBox": "\uf0735", 466 | "arrowRightBoldBoxOutline": "\uf0736", 467 | "arrowRightBoldCircle": "\uf0056", 468 | "arrowRightBoldCircleOutline": "\uf0057", 469 | "arrowRightBoldHexagonOutline": "\uf0058", 470 | "arrowRightBoldOutline": "\uf09C2", 471 | "arrowRightBox": "\uf06C2", 472 | "arrowRightCircle": "\uf0CDF", 473 | "arrowRightCircleOutline": "\uf0CE0", 474 | "arrowRightDropCircle": "\uf0059", 475 | "arrowRightDropCircleOutline": "\uf005A", 476 | "arrowRightThick": "\uf0055", 477 | "arrowRightThinCircleOutline": "\uf1598", 478 | "arrowSplitHorizontal": "\uf093B", 479 | "arrowSplitVertical": "\uf093C", 480 | "arrowTopLeft": "\uf005B", 481 | "arrowTopLeftBoldOutline": "\uf09C3", 482 | "arrowTopLeftBottomRight": "\uf0E75", 483 | "arrowTopLeftBottomRightBold": "\uf0E76", 484 | "arrowTopLeftThick": "\uf09C4", 485 | "arrowTopLeftThinCircleOutline": "\uf1593", 486 | "arrowTopRight": "\uf005C", 487 | "arrowTopRightBoldOutline": "\uf09C5", 488 | "arrowTopRightBottomLeft": "\uf0E77", 489 | "arrowTopRightBottomLeftBold": "\uf0E78", 490 | "arrowTopRightThick": "\uf09C6", 491 | "arrowTopRightThinCircleOutline": "\uf1594", 492 | "arrowUp": "\uf005D", 493 | "arrowUpBold": "\uf0737", 494 | "arrowUpBoldBox": "\uf0738", 495 | "arrowUpBoldBoxOutline": "\uf0739", 496 | "arrowUpBoldCircle": "\uf005F", 497 | "arrowUpBoldCircleOutline": "\uf0060", 498 | "arrowUpBoldHexagonOutline": "\uf0061", 499 | "arrowUpBoldOutline": "\uf09C7", 500 | "arrowUpBox": "\uf06C3", 501 | "arrowUpCircle": "\uf0CE1", 502 | "arrowUpCircleOutline": "\uf0CE2", 503 | "arrowUpDown": "\uf0E79", 504 | "arrowUpDownBold": "\uf0E7A", 505 | "arrowUpDownBoldOutline": "\uf09C8", 506 | "arrowUpDropCircle": "\uf0062", 507 | "arrowUpDropCircleOutline": "\uf0063", 508 | "arrowUpThick": "\uf005E", 509 | "arrowUpThinCircleOutline": "\uf1597", 510 | "arrowVerticalLock": "\uf115C", 511 | "artstation": "\uf0B5B", 512 | "aspectRatio": "\uf0A24", 513 | "assistant": "\uf0064", 514 | "asterisk": "\uf06C4", 515 | "at": "\uf0065", 516 | "atlassian": "\uf0804", 517 | "atm": "\uf0D47", 518 | "atom": "\uf0768", 519 | "atomVariant": "\uf0E7B", 520 | "attachment": "\uf0066", 521 | "audioVideo": "\uf093D", 522 | "audioVideoOff": "\uf11B6", 523 | "augmentedReality": "\uf0850", 524 | "autoDownload": "\uf137E", 525 | "autoFix": "\uf0068", 526 | "autoUpload": "\uf0069", 527 | "autorenew": "\uf006A", 528 | "avTimer": "\uf006B", 529 | "aws": "\uf0E0F", 530 | "axe": "\uf08C8", 531 | "axis": "\uf0D48", 532 | "axisArrow": "\uf0D49", 533 | "axisArrowInfo": "\uf140E", 534 | "axisArrowLock": "\uf0D4A", 535 | "axisLock": "\uf0D4B", 536 | "axisXArrow": "\uf0D4C", 537 | "axisXArrowLock": "\uf0D4D", 538 | "axisXRotateClockwise": "\uf0D4E", 539 | "axisXRotateCounterclockwise": "\uf0D4F", 540 | "axisXYArrowLock": "\uf0D50", 541 | "axisYArrow": "\uf0D51", 542 | "axisYArrowLock": "\uf0D52", 543 | "axisYRotateClockwise": "\uf0D53", 544 | "axisYRotateCounterclockwise": "\uf0D54", 545 | "axisZArrow": "\uf0D55", 546 | "axisZArrowLock": "\uf0D56", 547 | "axisZRotateClockwise": "\uf0D57", 548 | "axisZRotateCounterclockwise": "\uf0D58", 549 | "babel": "\uf0A25", 550 | "baby": "\uf006C", 551 | "babyBottle": "\uf0F39", 552 | "babyBottleOutline": "\uf0F3A", 553 | "babyBuggy": "\uf13E0", 554 | "babyCarriage": "\uf068F", 555 | "babyCarriageOff": "\uf0FA0", 556 | "babyFace": "\uf0E7C", 557 | "babyFaceOutline": "\uf0E7D", 558 | "backburger": "\uf006D", 559 | "backspace": "\uf006E", 560 | "backspaceOutline": "\uf0B5C", 561 | "backspaceReverse": "\uf0E7E", 562 | "backspaceReverseOutline": "\uf0E7F", 563 | "backupRestore": "\uf006F", 564 | "bacteria": "\uf0ED5", 565 | "bacteriaOutline": "\uf0ED6", 566 | "badgeAccount": "\uf0DA7", 567 | "badgeAccountAlert": "\uf0DA8", 568 | "badgeAccountAlertOutline": "\uf0DA9", 569 | "badgeAccountHorizontal": "\uf0E0D", 570 | "badgeAccountHorizontalOutline": "\uf0E0E", 571 | "badgeAccountOutline": "\uf0DAA", 572 | "badminton": "\uf0851", 573 | "bagCarryOn": "\uf0F3B", 574 | "bagCarryOnCheck": "\uf0D65", 575 | "bagCarryOnOff": "\uf0F3C", 576 | "bagChecked": "\uf0F3D", 577 | "bagPersonal": "\uf0E10", 578 | "bagPersonalOff": "\uf0E11", 579 | "bagPersonalOffOutline": "\uf0E12", 580 | "bagPersonalOutline": "\uf0E13", 581 | "bagSuitcase": "\uf158B", 582 | "bagSuitcaseOff": "\uf158D", 583 | "bagSuitcaseOffOutline": "\uf158E", 584 | "bagSuitcaseOutline": "\uf158C", 585 | "baguette": "\uf0F3E", 586 | "balloon": "\uf0A26", 587 | "ballot": "\uf09C9", 588 | "ballotOutline": "\uf09CA", 589 | "ballotRecount": "\uf0C39", 590 | "ballotRecountOutline": "\uf0C3A", 591 | "bandage": "\uf0DAF", 592 | "bandcamp": "\uf0675", 593 | "bank": "\uf0070", 594 | "bankCheck": "\uf1655", 595 | "bankMinus": "\uf0DB0", 596 | "bankOff": "\uf1656", 597 | "bankOffOutline": "\uf1657", 598 | "bankOutline": "\uf0E80", 599 | "bankPlus": "\uf0DB1", 600 | "bankRemove": "\uf0DB2", 601 | "bankTransfer": "\uf0A27", 602 | "bankTransferIn": "\uf0A28", 603 | "bankTransferOut": "\uf0A29", 604 | "barcode": "\uf0071", 605 | "barcodeOff": "\uf1236", 606 | "barcodeScan": "\uf0072", 607 | "barley": "\uf0073", 608 | "barleyOff": "\uf0B5D", 609 | "barn": "\uf0B5E", 610 | "barrel": "\uf0074", 611 | "baseball": "\uf0852", 612 | "baseballBat": "\uf0853", 613 | "baseballDiamond": "\uf15EC", 614 | "baseballDiamondOutline": "\uf15ED", 615 | "bash": "\uf1183", 616 | "basket": "\uf0076", 617 | "basketFill": "\uf0077", 618 | "basketMinus": "\uf1523", 619 | "basketMinusOutline": "\uf1524", 620 | "basketOff": "\uf1525", 621 | "basketOffOutline": "\uf1526", 622 | "basketOutline": "\uf1181", 623 | "basketPlus": "\uf1527", 624 | "basketPlusOutline": "\uf1528", 625 | "basketRemove": "\uf1529", 626 | "basketRemoveOutline": "\uf152A", 627 | "basketUnfill": "\uf0078", 628 | "basketball": "\uf0806", 629 | "basketballHoop": "\uf0C3B", 630 | "basketballHoopOutline": "\uf0C3C", 631 | "bat": "\uf0B5F", 632 | "battery": "\uf0079", 633 | "battery-10": "\uf007A", 634 | "battery-10Bluetooth": "\uf093E", 635 | "battery-20": "\uf007B", 636 | "battery-20Bluetooth": "\uf093F", 637 | "battery-30": "\uf007C", 638 | "battery-30Bluetooth": "\uf0940", 639 | "battery-40": "\uf007D", 640 | "battery-40Bluetooth": "\uf0941", 641 | "battery-50": "\uf007E", 642 | "battery-50Bluetooth": "\uf0942", 643 | "battery-60": "\uf007F", 644 | "battery-60Bluetooth": "\uf0943", 645 | "battery-70": "\uf0080", 646 | "battery-70Bluetooth": "\uf0944", 647 | "battery-80": "\uf0081", 648 | "battery-80Bluetooth": "\uf0945", 649 | "battery-90": "\uf0082", 650 | "battery-90Bluetooth": "\uf0946", 651 | "batteryAlert": "\uf0083", 652 | "batteryAlertBluetooth": "\uf0947", 653 | "batteryAlertVariant": "\uf10CC", 654 | "batteryAlertVariantOutline": "\uf10CD", 655 | "batteryBluetooth": "\uf0948", 656 | "batteryBluetoothVariant": "\uf0949", 657 | "batteryCharging": "\uf0084", 658 | "batteryCharging-10": "\uf089C", 659 | "batteryCharging-100": "\uf0085", 660 | "batteryCharging-20": "\uf0086", 661 | "batteryCharging-30": "\uf0087", 662 | "batteryCharging-40": "\uf0088", 663 | "batteryCharging-50": "\uf089D", 664 | "batteryCharging-60": "\uf0089", 665 | "batteryCharging-70": "\uf089E", 666 | "batteryCharging-80": "\uf008A", 667 | "batteryCharging-90": "\uf008B", 668 | "batteryChargingHigh": "\uf12A6", 669 | "batteryChargingLow": "\uf12A4", 670 | "batteryChargingMedium": "\uf12A5", 671 | "batteryChargingOutline": "\uf089F", 672 | "batteryChargingWireless": "\uf0807", 673 | "batteryChargingWireless-10": "\uf0808", 674 | "batteryChargingWireless-20": "\uf0809", 675 | "batteryChargingWireless-30": "\uf080A", 676 | "batteryChargingWireless-40": "\uf080B", 677 | "batteryChargingWireless-50": "\uf080C", 678 | "batteryChargingWireless-60": "\uf080D", 679 | "batteryChargingWireless-70": "\uf080E", 680 | "batteryChargingWireless-80": "\uf080F", 681 | "batteryChargingWireless-90": "\uf0810", 682 | "batteryChargingWirelessAlert": "\uf0811", 683 | "batteryChargingWirelessOutline": "\uf0812", 684 | "batteryHeart": "\uf120F", 685 | "batteryHeartOutline": "\uf1210", 686 | "batteryHeartVariant": "\uf1211", 687 | "batteryHigh": "\uf12A3", 688 | "batteryLow": "\uf12A1", 689 | "batteryMedium": "\uf12A2", 690 | "batteryMinus": "\uf008C", 691 | "batteryNegative": "\uf008D", 692 | "batteryOff": "\uf125D", 693 | "batteryOffOutline": "\uf125E", 694 | "batteryOutline": "\uf008E", 695 | "batteryPlus": "\uf008F", 696 | "batteryPositive": "\uf0090", 697 | "batteryUnknown": "\uf0091", 698 | "batteryUnknownBluetooth": "\uf094A", 699 | "battlenet": "\uf0B60", 700 | "beach": "\uf0092", 701 | "beaker": "\uf0CEA", 702 | "beakerAlert": "\uf1229", 703 | "beakerAlertOutline": "\uf122A", 704 | "beakerCheck": "\uf122B", 705 | "beakerCheckOutline": "\uf122C", 706 | "beakerMinus": "\uf122D", 707 | "beakerMinusOutline": "\uf122E", 708 | "beakerOutline": "\uf0690", 709 | "beakerPlus": "\uf122F", 710 | "beakerPlusOutline": "\uf1230", 711 | "beakerQuestion": "\uf1231", 712 | "beakerQuestionOutline": "\uf1232", 713 | "beakerRemove": "\uf1233", 714 | "beakerRemoveOutline": "\uf1234", 715 | "bed": "\uf02E3", 716 | "bedDouble": "\uf0FD4", 717 | "bedDoubleOutline": "\uf0FD3", 718 | "bedEmpty": "\uf08A0", 719 | "bedKing": "\uf0FD2", 720 | "bedKingOutline": "\uf0FD1", 721 | "bedOutline": "\uf0099", 722 | "bedQueen": "\uf0FD0", 723 | "bedQueenOutline": "\uf0FDB", 724 | "bedSingle": "\uf106D", 725 | "bedSingleOutline": "\uf106E", 726 | "bee": "\uf0FA1", 727 | "beeFlower": "\uf0FA2", 728 | "beehiveOffOutline": "\uf13ED", 729 | "beehiveOutline": "\uf10CE", 730 | "beekeeper": "\uf14E2", 731 | "beer": "\uf0098", 732 | "beerOutline": "\uf130C", 733 | "bell": "\uf009A", 734 | "bellAlert": "\uf0D59", 735 | "bellAlertOutline": "\uf0E81", 736 | "bellCancel": "\uf13E7", 737 | "bellCancelOutline": "\uf13E8", 738 | "bellCheck": "\uf11E5", 739 | "bellCheckOutline": "\uf11E6", 740 | "bellCircle": "\uf0D5A", 741 | "bellCircleOutline": "\uf0D5B", 742 | "bellMinus": "\uf13E9", 743 | "bellMinusOutline": "\uf13EA", 744 | "bellOff": "\uf009B", 745 | "bellOffOutline": "\uf0A91", 746 | "bellOutline": "\uf009C", 747 | "bellPlus": "\uf009D", 748 | "bellPlusOutline": "\uf0A92", 749 | "bellRemove": "\uf13EB", 750 | "bellRemoveOutline": "\uf13EC", 751 | "bellRing": "\uf009E", 752 | "bellRingOutline": "\uf009F", 753 | "bellSleep": "\uf00A0", 754 | "bellSleepOutline": "\uf0A93", 755 | "beta": "\uf00A1", 756 | "betamax": "\uf09CB", 757 | "biathlon": "\uf0E14", 758 | "bicycle": "\uf109C", 759 | "bicycleBasket": "\uf1235", 760 | "bicycleElectric": "\uf15B4", 761 | "bicyclePennyFarthing": "\uf15E9", 762 | "bike": "\uf00A3", 763 | "bikeFast": "\uf111F", 764 | "billboard": "\uf1010", 765 | "billiards": "\uf0B61", 766 | "billiardsRack": "\uf0B62", 767 | "binoculars": "\uf00A5", 768 | "bio": "\uf00A6", 769 | "biohazard": "\uf00A7", 770 | "bird": "\uf15C6", 771 | "bitbucket": "\uf00A8", 772 | "bitcoin": "\uf0813", 773 | "blackMesa": "\uf00A9", 774 | "blender": "\uf0CEB", 775 | "blenderSoftware": "\uf00AB", 776 | "blinds": "\uf00AC", 777 | "blindsOpen": "\uf1011", 778 | "blockHelper": "\uf00AD", 779 | "blogger": "\uf00AE", 780 | "bloodBag": "\uf0CEC", 781 | "bluetooth": "\uf00AF", 782 | "bluetoothAudio": "\uf00B0", 783 | "bluetoothConnect": "\uf00B1", 784 | "bluetoothOff": "\uf00B2", 785 | "bluetoothSettings": "\uf00B3", 786 | "bluetoothTransfer": "\uf00B4", 787 | "blur": "\uf00B5", 788 | "blurLinear": "\uf00B6", 789 | "blurOff": "\uf00B7", 790 | "blurRadial": "\uf00B8", 791 | "bolnisiCross": "\uf0CED", 792 | "bolt": "\uf0DB3", 793 | "bomb": "\uf0691", 794 | "bombOff": "\uf06C5", 795 | "bone": "\uf00B9", 796 | "book": "\uf00BA", 797 | "bookAccount": "\uf13AD", 798 | "bookAccountOutline": "\uf13AE", 799 | "bookAlert": "\uf167C", 800 | "bookAlertOutline": "\uf167D", 801 | "bookAlphabet": "\uf061D", 802 | "bookArrowDown": "\uf167E", 803 | "bookArrowDownOutline": "\uf167F", 804 | "bookArrowLeft": "\uf1680", 805 | "bookArrowLeftOutline": "\uf1681", 806 | "bookArrowRight": "\uf1682", 807 | "bookArrowRightOutline": "\uf1683", 808 | "bookArrowUp": "\uf1684", 809 | "bookArrowUpOutline": "\uf1685", 810 | "bookCancel": "\uf1686", 811 | "bookCancelOutline": "\uf1687", 812 | "bookCheck": "\uf14F3", 813 | "bookCheckOutline": "\uf14F4", 814 | "bookClock": "\uf1688", 815 | "bookClockOutline": "\uf1689", 816 | "bookCog": "\uf168A", 817 | "bookCogOutline": "\uf168B", 818 | "bookCross": "\uf00A2", 819 | "bookEdit": "\uf168C", 820 | "bookEditOutline": "\uf168D", 821 | "bookEducation": "\uf16C9", 822 | "bookEducationOutline": "\uf16CA", 823 | "bookInformationVariant": "\uf106F", 824 | "bookLock": "\uf079A", 825 | "bookLockOpen": "\uf079B", 826 | "bookLockOpenOutline": "\uf168E", 827 | "bookLockOutline": "\uf168F", 828 | "bookMarker": "\uf1690", 829 | "bookMarkerOutline": "\uf1691", 830 | "bookMinus": "\uf05D9", 831 | "bookMinusMultiple": "\uf0A94", 832 | "bookMinusMultipleOutline": "\uf090B", 833 | "bookMinusOutline": "\uf1692", 834 | "bookMultiple": "\uf00BB", 835 | "bookMultipleOutline": "\uf0436", 836 | "bookMusic": "\uf0067", 837 | "bookMusicOutline": "\uf1693", 838 | "bookOff": "\uf1694", 839 | "bookOffOutline": "\uf1695", 840 | "bookOpen": "\uf00BD", 841 | "bookOpenBlankVariant": "\uf00BE", 842 | "bookOpenOutline": "\uf0B63", 843 | "bookOpenPageVariant": "\uf05DA", 844 | "bookOpenPageVariantOutline": "\uf15D6", 845 | "bookOpenVariant": "\uf14F7", 846 | "bookOutline": "\uf0B64", 847 | "bookPlay": "\uf0E82", 848 | "bookPlayOutline": "\uf0E83", 849 | "bookPlus": "\uf05DB", 850 | "bookPlusMultiple": "\uf0A95", 851 | "bookPlusMultipleOutline": "\uf0ADE", 852 | "bookPlusOutline": "\uf1696", 853 | "bookRefresh": "\uf1697", 854 | "bookRefreshOutline": "\uf1698", 855 | "bookRemove": "\uf0A97", 856 | "bookRemoveMultiple": "\uf0A96", 857 | "bookRemoveMultipleOutline": "\uf04CA", 858 | "bookRemoveOutline": "\uf1699", 859 | "bookSearch": "\uf0E84", 860 | "bookSearchOutline": "\uf0E85", 861 | "bookSettings": "\uf169A", 862 | "bookSettingsOutline": "\uf169B", 863 | "bookSync": "\uf169C", 864 | "bookSyncOutline": "\uf16C8", 865 | "bookVariant": "\uf00BF", 866 | "bookVariantMultiple": "\uf00BC", 867 | "bookmark": "\uf00C0", 868 | "bookmarkCheck": "\uf00C1", 869 | "bookmarkCheckOutline": "\uf137B", 870 | "bookmarkMinus": "\uf09CC", 871 | "bookmarkMinusOutline": "\uf09CD", 872 | "bookmarkMultiple": "\uf0E15", 873 | "bookmarkMultipleOutline": "\uf0E16", 874 | "bookmarkMusic": "\uf00C2", 875 | "bookmarkMusicOutline": "\uf1379", 876 | "bookmarkOff": "\uf09CE", 877 | "bookmarkOffOutline": "\uf09CF", 878 | "bookmarkOutline": "\uf00C3", 879 | "bookmarkPlus": "\uf00C5", 880 | "bookmarkPlusOutline": "\uf00C4", 881 | "bookmarkRemove": "\uf00C6", 882 | "bookmarkRemoveOutline": "\uf137A", 883 | "bookshelf": "\uf125F", 884 | "boomGate": "\uf0E86", 885 | "boomGateAlert": "\uf0E87", 886 | "boomGateAlertOutline": "\uf0E88", 887 | "boomGateDown": "\uf0E89", 888 | "boomGateDownOutline": "\uf0E8A", 889 | "boomGateOutline": "\uf0E8B", 890 | "boomGateUp": "\uf0E8C", 891 | "boomGateUpOutline": "\uf0E8D", 892 | "boombox": "\uf05DC", 893 | "boomerang": "\uf10CF", 894 | "bootstrap": "\uf06C6", 895 | "borderAll": "\uf00C7", 896 | "borderAllVariant": "\uf08A1", 897 | "borderBottom": "\uf00C8", 898 | "borderBottomVariant": "\uf08A2", 899 | "borderColor": "\uf00C9", 900 | "borderHorizontal": "\uf00CA", 901 | "borderInside": "\uf00CB", 902 | "borderLeft": "\uf00CC", 903 | "borderLeftVariant": "\uf08A3", 904 | "borderNone": "\uf00CD", 905 | "borderNoneVariant": "\uf08A4", 906 | "borderOutside": "\uf00CE", 907 | "borderRight": "\uf00CF", 908 | "borderRightVariant": "\uf08A5", 909 | "borderStyle": "\uf00D0", 910 | "borderTop": "\uf00D1", 911 | "borderTopVariant": "\uf08A6", 912 | "borderVertical": "\uf00D2", 913 | "bottleSoda": "\uf1070", 914 | "bottleSodaClassic": "\uf1071", 915 | "bottleSodaClassicOutline": "\uf1363", 916 | "bottleSodaOutline": "\uf1072", 917 | "bottleTonic": "\uf112E", 918 | "bottleTonicOutline": "\uf112F", 919 | "bottleTonicPlus": "\uf1130", 920 | "bottleTonicPlusOutline": "\uf1131", 921 | "bottleTonicSkull": "\uf1132", 922 | "bottleTonicSkullOutline": "\uf1133", 923 | "bottleWine": "\uf0854", 924 | "bottleWineOutline": "\uf1310", 925 | "bowTie": "\uf0678", 926 | "bowl": "\uf028E", 927 | "bowlMix": "\uf0617", 928 | "bowlMixOutline": "\uf02E4", 929 | "bowlOutline": "\uf02A9", 930 | "bowling": "\uf00D3", 931 | "box": "\uf00D4", 932 | "boxCutter": "\uf00D5", 933 | "boxCutterOff": "\uf0B4A", 934 | "boxShadow": "\uf0637", 935 | "boxingGlove": "\uf0B65", 936 | "braille": "\uf09D0", 937 | "brain": "\uf09D1", 938 | "breadSlice": "\uf0CEE", 939 | "breadSliceOutline": "\uf0CEF", 940 | "bridge": "\uf0618", 941 | "briefcase": "\uf00D6", 942 | "briefcaseAccount": "\uf0CF0", 943 | "briefcaseAccountOutline": "\uf0CF1", 944 | "briefcaseCheck": "\uf00D7", 945 | "briefcaseCheckOutline": "\uf131E", 946 | "briefcaseClock": "\uf10D0", 947 | "briefcaseClockOutline": "\uf10D1", 948 | "briefcaseDownload": "\uf00D8", 949 | "briefcaseDownloadOutline": "\uf0C3D", 950 | "briefcaseEdit": "\uf0A98", 951 | "briefcaseEditOutline": "\uf0C3E", 952 | "briefcaseMinus": "\uf0A2A", 953 | "briefcaseMinusOutline": "\uf0C3F", 954 | "briefcaseOff": "\uf1658", 955 | "briefcaseOffOutline": "\uf1659", 956 | "briefcaseOutline": "\uf0814", 957 | "briefcasePlus": "\uf0A2B", 958 | "briefcasePlusOutline": "\uf0C40", 959 | "briefcaseRemove": "\uf0A2C", 960 | "briefcaseRemoveOutline": "\uf0C41", 961 | "briefcaseSearch": "\uf0A2D", 962 | "briefcaseSearchOutline": "\uf0C42", 963 | "briefcaseUpload": "\uf00D9", 964 | "briefcaseUploadOutline": "\uf0C43", 965 | "briefcaseVariant": "\uf1494", 966 | "briefcaseVariantOff": "\uf165A", 967 | "briefcaseVariantOffOutline": "\uf165B", 968 | "briefcaseVariantOutline": "\uf1495", 969 | "brightness-1": "\uf00DA", 970 | "brightness-2": "\uf00DB", 971 | "brightness-3": "\uf00DC", 972 | "brightness-4": "\uf00DD", 973 | "brightness-5": "\uf00DE", 974 | "brightness-6": "\uf00DF", 975 | "brightness-7": "\uf00E0", 976 | "brightnessAuto": "\uf00E1", 977 | "brightnessPercent": "\uf0CF2", 978 | "broadcast": "\uf1720", 979 | "broadcastOff": "\uf1721", 980 | "broom": "\uf00E2", 981 | "brush": "\uf00E3", 982 | "bucket": "\uf1415", 983 | "bucketOutline": "\uf1416", 984 | "buddhism": "\uf094B", 985 | "buffer": "\uf0619", 986 | "buffet": "\uf0578", 987 | "bug": "\uf00E4", 988 | "bugCheck": "\uf0A2E", 989 | "bugCheckOutline": "\uf0A2F", 990 | "bugOutline": "\uf0A30", 991 | "bugle": "\uf0DB4", 992 | "bulldozer": "\uf0B22", 993 | "bullet": "\uf0CF3", 994 | "bulletinBoard": "\uf00E5", 995 | "bullhorn": "\uf00E6", 996 | "bullhornOutline": "\uf0B23", 997 | "bullseye": "\uf05DD", 998 | "bullseyeArrow": "\uf08C9", 999 | "bulma": "\uf12E7", 1000 | "bunkBed": "\uf1302", 1001 | "bunkBedOutline": "\uf0097", 1002 | "bus": "\uf00E7", 1003 | "busAlert": "\uf0A99", 1004 | "busArticulatedEnd": "\uf079C", 1005 | "busArticulatedFront": "\uf079D", 1006 | "busClock": "\uf08CA", 1007 | "busDoubleDecker": "\uf079E", 1008 | "busMarker": "\uf1212", 1009 | "busMultiple": "\uf0F3F", 1010 | "busSchool": "\uf079F", 1011 | "busSide": "\uf07A0", 1012 | "busStop": "\uf1012", 1013 | "busStopCovered": "\uf1013", 1014 | "busStopUncovered": "\uf1014", 1015 | "butterfly": "\uf1589", 1016 | "butterflyOutline": "\uf158A", 1017 | "cableData": "\uf1394", 1018 | "cached": "\uf00E8", 1019 | "cactus": "\uf0DB5", 1020 | "cake": "\uf00E9", 1021 | "cakeLayered": "\uf00EA", 1022 | "cakeVariant": "\uf00EB", 1023 | "calculator": "\uf00EC", 1024 | "calculatorVariant": "\uf0A9A", 1025 | "calculatorVariantOutline": "\uf15A6", 1026 | "calendar": "\uf00ED", 1027 | "calendarAccount": "\uf0ED7", 1028 | "calendarAccountOutline": "\uf0ED8", 1029 | "calendarAlert": "\uf0A31", 1030 | "calendarArrowLeft": "\uf1134", 1031 | "calendarArrowRight": "\uf1135", 1032 | "calendarBlank": "\uf00EE", 1033 | "calendarBlankMultiple": "\uf1073", 1034 | "calendarBlankOutline": "\uf0B66", 1035 | "calendarCheck": "\uf00EF", 1036 | "calendarCheckOutline": "\uf0C44", 1037 | "calendarClock": "\uf00F0", 1038 | "calendarClockOutline": "\uf16E1", 1039 | "calendarCursor": "\uf157B", 1040 | "calendarEdit": "\uf08A7", 1041 | "calendarEnd": "\uf166C", 1042 | "calendarExport": "\uf0B24", 1043 | "calendarHeart": "\uf09D2", 1044 | "calendarImport": "\uf0B25", 1045 | "calendarLock": "\uf1641", 1046 | "calendarLockOutline": "\uf1642", 1047 | "calendarMinus": "\uf0D5C", 1048 | "calendarMonth": "\uf0E17", 1049 | "calendarMonthOutline": "\uf0E18", 1050 | "calendarMultiple": "\uf00F1", 1051 | "calendarMultipleCheck": "\uf00F2", 1052 | "calendarMultiselect": "\uf0A32", 1053 | "calendarOutline": "\uf0B67", 1054 | "calendarPlus": "\uf00F3", 1055 | "calendarQuestion": "\uf0692", 1056 | "calendarRange": "\uf0679", 1057 | "calendarRangeOutline": "\uf0B68", 1058 | "calendarRefresh": "\uf01E1", 1059 | "calendarRefreshOutline": "\uf0203", 1060 | "calendarRemove": "\uf00F4", 1061 | "calendarRemoveOutline": "\uf0C45", 1062 | "calendarSearch": "\uf094C", 1063 | "calendarStar": "\uf09D3", 1064 | "calendarStart": "\uf166D", 1065 | "calendarSync": "\uf0E8E", 1066 | "calendarSyncOutline": "\uf0E8F", 1067 | "calendarText": "\uf00F5", 1068 | "calendarTextOutline": "\uf0C46", 1069 | "calendarToday": "\uf00F6", 1070 | "calendarWeek": "\uf0A33", 1071 | "calendarWeekBegin": "\uf0A34", 1072 | "calendarWeekend": "\uf0ED9", 1073 | "calendarWeekendOutline": "\uf0EDA", 1074 | "callMade": "\uf00F7", 1075 | "callMerge": "\uf00F8", 1076 | "callMissed": "\uf00F9", 1077 | "callReceived": "\uf00FA", 1078 | "callSplit": "\uf00FB", 1079 | "camcorder": "\uf00FC", 1080 | "camcorderOff": "\uf00FF", 1081 | "camera": "\uf0100", 1082 | "cameraAccount": "\uf08CB", 1083 | "cameraBurst": "\uf0693", 1084 | "cameraControl": "\uf0B69", 1085 | "cameraEnhance": "\uf0101", 1086 | "cameraEnhanceOutline": "\uf0B6A", 1087 | "cameraFlip": "\uf15D9", 1088 | "cameraFlipOutline": "\uf15DA", 1089 | "cameraFront": "\uf0102", 1090 | "cameraFrontVariant": "\uf0103", 1091 | "cameraGopro": "\uf07A1", 1092 | "cameraImage": "\uf08CC", 1093 | "cameraIris": "\uf0104", 1094 | "cameraMeteringCenter": "\uf07A2", 1095 | "cameraMeteringMatrix": "\uf07A3", 1096 | "cameraMeteringPartial": "\uf07A4", 1097 | "cameraMeteringSpot": "\uf07A5", 1098 | "cameraOff": "\uf05DF", 1099 | "cameraOutline": "\uf0D5D", 1100 | "cameraPartyMode": "\uf0105", 1101 | "cameraPlus": "\uf0EDB", 1102 | "cameraPlusOutline": "\uf0EDC", 1103 | "cameraRear": "\uf0106", 1104 | "cameraRearVariant": "\uf0107", 1105 | "cameraRetake": "\uf0E19", 1106 | "cameraRetakeOutline": "\uf0E1A", 1107 | "cameraSwitch": "\uf0108", 1108 | "cameraSwitchOutline": "\uf084A", 1109 | "cameraTimer": "\uf0109", 1110 | "cameraWireless": "\uf0DB6", 1111 | "cameraWirelessOutline": "\uf0DB7", 1112 | "campfire": "\uf0EDD", 1113 | "cancel": "\uf073A", 1114 | "candle": "\uf05E2", 1115 | "candycane": "\uf010A", 1116 | "cannabis": "\uf07A6", 1117 | "cannabisOff": "\uf166E", 1118 | "capsLock": "\uf0A9B", 1119 | "car": "\uf010B", 1120 | "car-2Plus": "\uf1015", 1121 | "car-3Plus": "\uf1016", 1122 | "carArrowLeft": "\uf13B2", 1123 | "carArrowRight": "\uf13B3", 1124 | "carBack": "\uf0E1B", 1125 | "carBattery": "\uf010C", 1126 | "carBrakeAbs": "\uf0C47", 1127 | "carBrakeAlert": "\uf0C48", 1128 | "carBrakeHold": "\uf0D5E", 1129 | "carBrakeParking": "\uf0D5F", 1130 | "carBrakeRetarder": "\uf1017", 1131 | "carChildSeat": "\uf0FA3", 1132 | "carClutch": "\uf1018", 1133 | "carCog": "\uf13CC", 1134 | "carConnected": "\uf010D", 1135 | "carConvertible": "\uf07A7", 1136 | "carCoolantLevel": "\uf1019", 1137 | "carCruiseControl": "\uf0D60", 1138 | "carDefrostFront": "\uf0D61", 1139 | "carDefrostRear": "\uf0D62", 1140 | "carDoor": "\uf0B6B", 1141 | "carDoorLock": "\uf109D", 1142 | "carElectric": "\uf0B6C", 1143 | "carElectricOutline": "\uf15B5", 1144 | "carEmergency": "\uf160F", 1145 | "carEsp": "\uf0C49", 1146 | "carEstate": "\uf07A8", 1147 | "carHatchback": "\uf07A9", 1148 | "carInfo": "\uf11BE", 1149 | "carKey": "\uf0B6D", 1150 | "carLiftedPickup": "\uf152D", 1151 | "carLightDimmed": "\uf0C4A", 1152 | "carLightFog": "\uf0C4B", 1153 | "carLightHigh": "\uf0C4C", 1154 | "carLimousine": "\uf08CD", 1155 | "carMultiple": "\uf0B6E", 1156 | "carOff": "\uf0E1C", 1157 | "carOutline": "\uf14ED", 1158 | "carParkingLights": "\uf0D63", 1159 | "carPickup": "\uf07AA", 1160 | "carSeat": "\uf0FA4", 1161 | "carSeatCooler": "\uf0FA5", 1162 | "carSeatHeater": "\uf0FA6", 1163 | "carSettings": "\uf13CD", 1164 | "carShiftPattern": "\uf0F40", 1165 | "carSide": "\uf07AB", 1166 | "carSports": "\uf07AC", 1167 | "carTireAlert": "\uf0C4D", 1168 | "carTractionControl": "\uf0D64", 1169 | "carTurbocharger": "\uf101A", 1170 | "carWash": "\uf010E", 1171 | "carWindshield": "\uf101B", 1172 | "carWindshieldOutline": "\uf101C", 1173 | "carabiner": "\uf14C0", 1174 | "caravan": "\uf07AD", 1175 | "card": "\uf0B6F", 1176 | "cardAccountDetails": "\uf05D2", 1177 | "cardAccountDetailsOutline": "\uf0DAB", 1178 | "cardAccountDetailsStar": "\uf02A3", 1179 | "cardAccountDetailsStarOutline": "\uf06DB", 1180 | "cardAccountMail": "\uf018E", 1181 | "cardAccountMailOutline": "\uf0E98", 1182 | "cardAccountPhone": "\uf0E99", 1183 | "cardAccountPhoneOutline": "\uf0E9A", 1184 | "cardBulleted": "\uf0B70", 1185 | "cardBulletedOff": "\uf0B71", 1186 | "cardBulletedOffOutline": "\uf0B72", 1187 | "cardBulletedOutline": "\uf0B73", 1188 | "cardBulletedSettings": "\uf0B74", 1189 | "cardBulletedSettingsOutline": "\uf0B75", 1190 | "cardMinus": "\uf1600", 1191 | "cardMinusOutline": "\uf1601", 1192 | "cardOff": "\uf1602", 1193 | "cardOffOutline": "\uf1603", 1194 | "cardOutline": "\uf0B76", 1195 | "cardPlus": "\uf11FF", 1196 | "cardPlusOutline": "\uf1200", 1197 | "cardRemove": "\uf1604", 1198 | "cardRemoveOutline": "\uf1605", 1199 | "cardSearch": "\uf1074", 1200 | "cardSearchOutline": "\uf1075", 1201 | "cardText": "\uf0B77", 1202 | "cardTextOutline": "\uf0B78", 1203 | "cards": "\uf0638", 1204 | "cardsClub": "\uf08CE", 1205 | "cardsDiamond": "\uf08CF", 1206 | "cardsDiamondOutline": "\uf101D", 1207 | "cardsHeart": "\uf08D0", 1208 | "cardsOutline": "\uf0639", 1209 | "cardsPlayingOutline": "\uf063A", 1210 | "cardsSpade": "\uf08D1", 1211 | "cardsVariant": "\uf06C7", 1212 | "carrot": "\uf010F", 1213 | "cart": "\uf0110", 1214 | "cartArrowDown": "\uf0D66", 1215 | "cartArrowRight": "\uf0C4E", 1216 | "cartArrowUp": "\uf0D67", 1217 | "cartCheck": "\uf15EA", 1218 | "cartMinus": "\uf0D68", 1219 | "cartOff": "\uf066B", 1220 | "cartOutline": "\uf0111", 1221 | "cartPlus": "\uf0112", 1222 | "cartRemove": "\uf0D69", 1223 | "cartVariant": "\uf15EB", 1224 | "caseSensitiveAlt": "\uf0113", 1225 | "cash": "\uf0114", 1226 | "cash-100": "\uf0115", 1227 | "cashCheck": "\uf14EE", 1228 | "cashLock": "\uf14EA", 1229 | "cashLockOpen": "\uf14EB", 1230 | "cashMarker": "\uf0DB8", 1231 | "cashMinus": "\uf1260", 1232 | "cashMultiple": "\uf0116", 1233 | "cashPlus": "\uf1261", 1234 | "cashRefund": "\uf0A9C", 1235 | "cashRegister": "\uf0CF4", 1236 | "cashRemove": "\uf1262", 1237 | "cashUsd": "\uf1176", 1238 | "cashUsdOutline": "\uf0117", 1239 | "cassette": "\uf09D4", 1240 | "cast": "\uf0118", 1241 | "castAudio": "\uf101E", 1242 | "castConnected": "\uf0119", 1243 | "castEducation": "\uf0E1D", 1244 | "castOff": "\uf078A", 1245 | "castle": "\uf011A", 1246 | "cat": "\uf011B", 1247 | "cctv": "\uf07AE", 1248 | "ceilingLight": "\uf0769", 1249 | "cellphone": "\uf011C", 1250 | "cellphoneAndroid": "\uf011D", 1251 | "cellphoneArrowDown": "\uf09D5", 1252 | "cellphoneBasic": "\uf011E", 1253 | "cellphoneCharging": "\uf1397", 1254 | "cellphoneCog": "\uf0951", 1255 | "cellphoneDock": "\uf011F", 1256 | "cellphoneErase": "\uf094D", 1257 | "cellphoneInformation": "\uf0F41", 1258 | "cellphoneIphone": "\uf0120", 1259 | "cellphoneKey": "\uf094E", 1260 | "cellphoneLink": "\uf0121", 1261 | "cellphoneLinkOff": "\uf0122", 1262 | "cellphoneLock": "\uf094F", 1263 | "cellphoneMessage": "\uf08D3", 1264 | "cellphoneMessageOff": "\uf10D2", 1265 | "cellphoneNfc": "\uf0E90", 1266 | "cellphoneNfcOff": "\uf12D8", 1267 | "cellphoneOff": "\uf0950", 1268 | "cellphonePlay": "\uf101F", 1269 | "cellphoneScreenshot": "\uf0A35", 1270 | "cellphoneSettings": "\uf0123", 1271 | "cellphoneSound": "\uf0952", 1272 | "cellphoneText": "\uf08D2", 1273 | "cellphoneWireless": "\uf0815", 1274 | "celticCross": "\uf0CF5", 1275 | "centos": "\uf111A", 1276 | "certificate": "\uf0124", 1277 | "certificateOutline": "\uf1188", 1278 | "chairRolling": "\uf0F48", 1279 | "chairSchool": "\uf0125", 1280 | "charity": "\uf0C4F", 1281 | "chartArc": "\uf0126", 1282 | "chartAreaspline": "\uf0127", 1283 | "chartAreasplineVariant": "\uf0E91", 1284 | "chartBar": "\uf0128", 1285 | "chartBarStacked": "\uf076A", 1286 | "chartBellCurve": "\uf0C50", 1287 | "chartBellCurveCumulative": "\uf0FA7", 1288 | "chartBox": "\uf154D", 1289 | "chartBoxOutline": "\uf154E", 1290 | "chartBoxPlusOutline": "\uf154F", 1291 | "chartBubble": "\uf05E3", 1292 | "chartDonut": "\uf07AF", 1293 | "chartDonutVariant": "\uf07B0", 1294 | "chartGantt": "\uf066C", 1295 | "chartHistogram": "\uf0129", 1296 | "chartLine": "\uf012A", 1297 | "chartLineStacked": "\uf076B", 1298 | "chartLineVariant": "\uf07B1", 1299 | "chartMultiline": "\uf08D4", 1300 | "chartMultiple": "\uf1213", 1301 | "chartPie": "\uf012B", 1302 | "chartPpf": "\uf1380", 1303 | "chartSankey": "\uf11DF", 1304 | "chartSankeyVariant": "\uf11E0", 1305 | "chartScatterPlot": "\uf0E92", 1306 | "chartScatterPlotHexbin": "\uf066D", 1307 | "chartTimeline": "\uf066E", 1308 | "chartTimelineVariant": "\uf0E93", 1309 | "chartTimelineVariantShimmer": "\uf15B6", 1310 | "chartTree": "\uf0E94", 1311 | "chat": "\uf0B79", 1312 | "chatAlert": "\uf0B7A", 1313 | "chatAlertOutline": "\uf12C9", 1314 | "chatMinus": "\uf1410", 1315 | "chatMinusOutline": "\uf1413", 1316 | "chatOutline": "\uf0EDE", 1317 | "chatPlus": "\uf140F", 1318 | "chatPlusOutline": "\uf1412", 1319 | "chatProcessing": "\uf0B7B", 1320 | "chatProcessingOutline": "\uf12CA", 1321 | "chatQuestion": "\uf1738", 1322 | "chatQuestionOutline": "\uf1739", 1323 | "chatRemove": "\uf1411", 1324 | "chatRemoveOutline": "\uf1414", 1325 | "chatSleep": "\uf12D1", 1326 | "chatSleepOutline": "\uf12D2", 1327 | "check": "\uf012C", 1328 | "checkAll": "\uf012D", 1329 | "checkBold": "\uf0E1E", 1330 | "checkBoxMultipleOutline": "\uf0C51", 1331 | "checkBoxOutline": "\uf0C52", 1332 | "checkCircle": "\uf05E0", 1333 | "checkCircleOutline": "\uf05E1", 1334 | "checkDecagram": "\uf0791", 1335 | "checkDecagramOutline": "\uf1740", 1336 | "checkNetwork": "\uf0C53", 1337 | "checkNetworkOutline": "\uf0C54", 1338 | "checkOutline": "\uf0855", 1339 | "checkUnderline": "\uf0E1F", 1340 | "checkUnderlineCircle": "\uf0E20", 1341 | "checkUnderlineCircleOutline": "\uf0E21", 1342 | "checkbook": "\uf0A9D", 1343 | "checkboxBlank": "\uf012E", 1344 | "checkboxBlankCircle": "\uf012F", 1345 | "checkboxBlankCircleOutline": "\uf0130", 1346 | "checkboxBlankOff": "\uf12EC", 1347 | "checkboxBlankOffOutline": "\uf12ED", 1348 | "checkboxBlankOutline": "\uf0131", 1349 | "checkboxIntermediate": "\uf0856", 1350 | "checkboxMarked": "\uf0132", 1351 | "checkboxMarkedCircle": "\uf0133", 1352 | "checkboxMarkedCircleOutline": "\uf0134", 1353 | "checkboxMarkedOutline": "\uf0135", 1354 | "checkboxMultipleBlank": "\uf0136", 1355 | "checkboxMultipleBlankCircle": "\uf063B", 1356 | "checkboxMultipleBlankCircleOutline": "\uf063C", 1357 | "checkboxMultipleBlankOutline": "\uf0137", 1358 | "checkboxMultipleMarked": "\uf0138", 1359 | "checkboxMultipleMarkedCircle": "\uf063D", 1360 | "checkboxMultipleMarkedCircleOutline": "\uf063E", 1361 | "checkboxMultipleMarkedOutline": "\uf0139", 1362 | "checkerboard": "\uf013A", 1363 | "checkerboardMinus": "\uf1202", 1364 | "checkerboardPlus": "\uf1201", 1365 | "checkerboardRemove": "\uf1203", 1366 | "cheese": "\uf12B9", 1367 | "cheeseOff": "\uf13EE", 1368 | "chefHat": "\uf0B7C", 1369 | "chemicalWeapon": "\uf013B", 1370 | "chessBishop": "\uf085C", 1371 | "chessKing": "\uf0857", 1372 | "chessKnight": "\uf0858", 1373 | "chessPawn": "\uf0859", 1374 | "chessQueen": "\uf085A", 1375 | "chessRook": "\uf085B", 1376 | "chevronDoubleDown": "\uf013C", 1377 | "chevronDoubleLeft": "\uf013D", 1378 | "chevronDoubleRight": "\uf013E", 1379 | "chevronDoubleUp": "\uf013F", 1380 | "chevronDown": "\uf0140", 1381 | "chevronDownBox": "\uf09D6", 1382 | "chevronDownBoxOutline": "\uf09D7", 1383 | "chevronDownCircle": "\uf0B26", 1384 | "chevronDownCircleOutline": "\uf0B27", 1385 | "chevronLeft": "\uf0141", 1386 | "chevronLeftBox": "\uf09D8", 1387 | "chevronLeftBoxOutline": "\uf09D9", 1388 | "chevronLeftCircle": "\uf0B28", 1389 | "chevronLeftCircleOutline": "\uf0B29", 1390 | "chevronRight": "\uf0142", 1391 | "chevronRightBox": "\uf09DA", 1392 | "chevronRightBoxOutline": "\uf09DB", 1393 | "chevronRightCircle": "\uf0B2A", 1394 | "chevronRightCircleOutline": "\uf0B2B", 1395 | "chevronTripleDown": "\uf0DB9", 1396 | "chevronTripleLeft": "\uf0DBA", 1397 | "chevronTripleRight": "\uf0DBB", 1398 | "chevronTripleUp": "\uf0DBC", 1399 | "chevronUp": "\uf0143", 1400 | "chevronUpBox": "\uf09DC", 1401 | "chevronUpBoxOutline": "\uf09DD", 1402 | "chevronUpCircle": "\uf0B2C", 1403 | "chevronUpCircleOutline": "\uf0B2D", 1404 | "chiliHot": "\uf07B2", 1405 | "chiliMedium": "\uf07B3", 1406 | "chiliMild": "\uf07B4", 1407 | "chiliOff": "\uf1467", 1408 | "chip": "\uf061A", 1409 | "christianity": "\uf0953", 1410 | "christianityOutline": "\uf0CF6", 1411 | "church": "\uf0144", 1412 | "cigar": "\uf1189", 1413 | "cigarOff": "\uf141B", 1414 | "circle": "\uf0765", 1415 | "circleBox": "\uf15DC", 1416 | "circleBoxOutline": "\uf15DD", 1417 | "circleDouble": "\uf0E95", 1418 | "circleEditOutline": "\uf08D5", 1419 | "circleExpand": "\uf0E96", 1420 | "circleHalf": "\uf1395", 1421 | "circleHalfFull": "\uf1396", 1422 | "circleMedium": "\uf09DE", 1423 | "circleMultiple": "\uf0B38", 1424 | "circleMultipleOutline": "\uf0695", 1425 | "circleOffOutline": "\uf10D3", 1426 | "circleOutline": "\uf0766", 1427 | "circleSlice-1": "\uf0A9E", 1428 | "circleSlice-2": "\uf0A9F", 1429 | "circleSlice-3": "\uf0AA0", 1430 | "circleSlice-4": "\uf0AA1", 1431 | "circleSlice-5": "\uf0AA2", 1432 | "circleSlice-6": "\uf0AA3", 1433 | "circleSlice-7": "\uf0AA4", 1434 | "circleSlice-8": "\uf0AA5", 1435 | "circleSmall": "\uf09DF", 1436 | "circularSaw": "\uf0E22", 1437 | "city": "\uf0146", 1438 | "cityVariant": "\uf0A36", 1439 | "cityVariantOutline": "\uf0A37", 1440 | "clipboard": "\uf0147", 1441 | "clipboardAccount": "\uf0148", 1442 | "clipboardAccountOutline": "\uf0C55", 1443 | "clipboardAlert": "\uf0149", 1444 | "clipboardAlertOutline": "\uf0CF7", 1445 | "clipboardArrowDown": "\uf014A", 1446 | "clipboardArrowDownOutline": "\uf0C56", 1447 | "clipboardArrowLeft": "\uf014B", 1448 | "clipboardArrowLeftOutline": "\uf0CF8", 1449 | "clipboardArrowRight": "\uf0CF9", 1450 | "clipboardArrowRightOutline": "\uf0CFA", 1451 | "clipboardArrowUp": "\uf0C57", 1452 | "clipboardArrowUpOutline": "\uf0C58", 1453 | "clipboardCheck": "\uf014E", 1454 | "clipboardCheckMultiple": "\uf1263", 1455 | "clipboardCheckMultipleOutline": "\uf1264", 1456 | "clipboardCheckOutline": "\uf08A8", 1457 | "clipboardClock": "\uf16E2", 1458 | "clipboardClockOutline": "\uf16E3", 1459 | "clipboardEdit": "\uf14E5", 1460 | "clipboardEditOutline": "\uf14E6", 1461 | "clipboardFile": "\uf1265", 1462 | "clipboardFileOutline": "\uf1266", 1463 | "clipboardFlow": "\uf06C8", 1464 | "clipboardFlowOutline": "\uf1117", 1465 | "clipboardList": "\uf10D4", 1466 | "clipboardListOutline": "\uf10D5", 1467 | "clipboardMinus": "\uf1618", 1468 | "clipboardMinusOutline": "\uf1619", 1469 | "clipboardMultiple": "\uf1267", 1470 | "clipboardMultipleOutline": "\uf1268", 1471 | "clipboardOff": "\uf161A", 1472 | "clipboardOffOutline": "\uf161B", 1473 | "clipboardOutline": "\uf014C", 1474 | "clipboardPlay": "\uf0C59", 1475 | "clipboardPlayMultiple": "\uf1269", 1476 | "clipboardPlayMultipleOutline": "\uf126A", 1477 | "clipboardPlayOutline": "\uf0C5A", 1478 | "clipboardPlus": "\uf0751", 1479 | "clipboardPlusOutline": "\uf131F", 1480 | "clipboardPulse": "\uf085D", 1481 | "clipboardPulseOutline": "\uf085E", 1482 | "clipboardRemove": "\uf161C", 1483 | "clipboardRemoveOutline": "\uf161D", 1484 | "clipboardSearch": "\uf161E", 1485 | "clipboardSearchOutline": "\uf161F", 1486 | "clipboardText": "\uf014D", 1487 | "clipboardTextMultiple": "\uf126B", 1488 | "clipboardTextMultipleOutline": "\uf126C", 1489 | "clipboardTextOff": "\uf1620", 1490 | "clipboardTextOffOutline": "\uf1621", 1491 | "clipboardTextOutline": "\uf0A38", 1492 | "clipboardTextPlay": "\uf0C5B", 1493 | "clipboardTextPlayOutline": "\uf0C5C", 1494 | "clipboardTextSearch": "\uf1622", 1495 | "clipboardTextSearchOutline": "\uf1623", 1496 | "clippy": "\uf014F", 1497 | "clock": "\uf0954", 1498 | "clockAlert": "\uf0955", 1499 | "clockAlertOutline": "\uf05CE", 1500 | "clockCheck": "\uf0FA8", 1501 | "clockCheckOutline": "\uf0FA9", 1502 | "clockDigital": "\uf0E97", 1503 | "clockEnd": "\uf0151", 1504 | "clockFast": "\uf0152", 1505 | "clockIn": "\uf0153", 1506 | "clockOut": "\uf0154", 1507 | "clockOutline": "\uf0150", 1508 | "clockStart": "\uf0155", 1509 | "clockTimeEight": "\uf1446", 1510 | "clockTimeEightOutline": "\uf1452", 1511 | "clockTimeEleven": "\uf1449", 1512 | "clockTimeElevenOutline": "\uf1455", 1513 | "clockTimeFive": "\uf1443", 1514 | "clockTimeFiveOutline": "\uf144F", 1515 | "clockTimeFour": "\uf1442", 1516 | "clockTimeFourOutline": "\uf144E", 1517 | "clockTimeNine": "\uf1447", 1518 | "clockTimeNineOutline": "\uf1453", 1519 | "clockTimeOne": "\uf143F", 1520 | "clockTimeOneOutline": "\uf144B", 1521 | "clockTimeSeven": "\uf1445", 1522 | "clockTimeSevenOutline": "\uf1451", 1523 | "clockTimeSix": "\uf1444", 1524 | "clockTimeSixOutline": "\uf1450", 1525 | "clockTimeTen": "\uf1448", 1526 | "clockTimeTenOutline": "\uf1454", 1527 | "clockTimeThree": "\uf1441", 1528 | "clockTimeThreeOutline": "\uf144D", 1529 | "clockTimeTwelve": "\uf144A", 1530 | "clockTimeTwelveOutline": "\uf1456", 1531 | "clockTimeTwo": "\uf1440", 1532 | "clockTimeTwoOutline": "\uf144C", 1533 | "close": "\uf0156", 1534 | "closeBox": "\uf0157", 1535 | "closeBoxMultiple": "\uf0C5D", 1536 | "closeBoxMultipleOutline": "\uf0C5E", 1537 | "closeBoxOutline": "\uf0158", 1538 | "closeCircle": "\uf0159", 1539 | "closeCircleMultiple": "\uf062A", 1540 | "closeCircleMultipleOutline": "\uf0883", 1541 | "closeCircleOutline": "\uf015A", 1542 | "closeNetwork": "\uf015B", 1543 | "closeNetworkOutline": "\uf0C5F", 1544 | "closeOctagon": "\uf015C", 1545 | "closeOctagonOutline": "\uf015D", 1546 | "closeOutline": "\uf06C9", 1547 | "closeThick": "\uf1398", 1548 | "closedCaption": "\uf015E", 1549 | "closedCaptionOutline": "\uf0DBD", 1550 | "cloud": "\uf015F", 1551 | "cloudAlert": "\uf09E0", 1552 | "cloudBraces": "\uf07B5", 1553 | "cloudCheck": "\uf0160", 1554 | "cloudCheckOutline": "\uf12CC", 1555 | "cloudCircle": "\uf0161", 1556 | "cloudDownload": "\uf0162", 1557 | "cloudDownloadOutline": "\uf0B7D", 1558 | "cloudLock": "\uf11F1", 1559 | "cloudLockOutline": "\uf11F2", 1560 | "cloudOffOutline": "\uf0164", 1561 | "cloudOutline": "\uf0163", 1562 | "cloudPrint": "\uf0165", 1563 | "cloudPrintOutline": "\uf0166", 1564 | "cloudQuestion": "\uf0A39", 1565 | "cloudRefresh": "\uf052A", 1566 | "cloudSearch": "\uf0956", 1567 | "cloudSearchOutline": "\uf0957", 1568 | "cloudSync": "\uf063F", 1569 | "cloudSyncOutline": "\uf12D6", 1570 | "cloudTags": "\uf07B6", 1571 | "cloudUpload": "\uf0167", 1572 | "cloudUploadOutline": "\uf0B7E", 1573 | "clover": "\uf0816", 1574 | "coachLamp": "\uf1020", 1575 | "coatRack": "\uf109E", 1576 | "codeArray": "\uf0168", 1577 | "codeBraces": "\uf0169", 1578 | "codeBracesBox": "\uf10D6", 1579 | "codeBrackets": "\uf016A", 1580 | "codeEqual": "\uf016B", 1581 | "codeGreaterThan": "\uf016C", 1582 | "codeGreaterThanOrEqual": "\uf016D", 1583 | "codeJson": "\uf0626", 1584 | "codeLessThan": "\uf016E", 1585 | "codeLessThanOrEqual": "\uf016F", 1586 | "codeNotEqual": "\uf0170", 1587 | "codeNotEqualVariant": "\uf0171", 1588 | "codeParentheses": "\uf0172", 1589 | "codeParenthesesBox": "\uf10D7", 1590 | "codeString": "\uf0173", 1591 | "codeTags": "\uf0174", 1592 | "codeTagsCheck": "\uf0694", 1593 | "codepen": "\uf0175", 1594 | "coffee": "\uf0176", 1595 | "coffeeMaker": "\uf109F", 1596 | "coffeeOff": "\uf0FAA", 1597 | "coffeeOffOutline": "\uf0FAB", 1598 | "coffeeOutline": "\uf06CA", 1599 | "coffeeToGo": "\uf0177", 1600 | "coffeeToGoOutline": "\uf130E", 1601 | "coffin": "\uf0B7F", 1602 | "cog": "\uf0493", 1603 | "cogBox": "\uf0494", 1604 | "cogClockwise": "\uf11DD", 1605 | "cogCounterclockwise": "\uf11DE", 1606 | "cogOff": "\uf13CE", 1607 | "cogOffOutline": "\uf13CF", 1608 | "cogOutline": "\uf08BB", 1609 | "cogRefresh": "\uf145E", 1610 | "cogRefreshOutline": "\uf145F", 1611 | "cogSync": "\uf1460", 1612 | "cogSyncOutline": "\uf1461", 1613 | "cogTransfer": "\uf105B", 1614 | "cogTransferOutline": "\uf105C", 1615 | "cogs": "\uf08D6", 1616 | "collage": "\uf0640", 1617 | "collapseAll": "\uf0AA6", 1618 | "collapseAllOutline": "\uf0AA7", 1619 | "colorHelper": "\uf0179", 1620 | "comma": "\uf0E23", 1621 | "commaBox": "\uf0E2B", 1622 | "commaBoxOutline": "\uf0E24", 1623 | "commaCircle": "\uf0E25", 1624 | "commaCircleOutline": "\uf0E26", 1625 | "comment": "\uf017A", 1626 | "commentAccount": "\uf017B", 1627 | "commentAccountOutline": "\uf017C", 1628 | "commentAlert": "\uf017D", 1629 | "commentAlertOutline": "\uf017E", 1630 | "commentArrowLeft": "\uf09E1", 1631 | "commentArrowLeftOutline": "\uf09E2", 1632 | "commentArrowRight": "\uf09E3", 1633 | "commentArrowRightOutline": "\uf09E4", 1634 | "commentBookmark": "\uf15AE", 1635 | "commentBookmarkOutline": "\uf15AF", 1636 | "commentCheck": "\uf017F", 1637 | "commentCheckOutline": "\uf0180", 1638 | "commentEdit": "\uf11BF", 1639 | "commentEditOutline": "\uf12C4", 1640 | "commentEye": "\uf0A3A", 1641 | "commentEyeOutline": "\uf0A3B", 1642 | "commentFlash": "\uf15B0", 1643 | "commentFlashOutline": "\uf15B1", 1644 | "commentMinus": "\uf15DF", 1645 | "commentMinusOutline": "\uf15E0", 1646 | "commentMultiple": "\uf085F", 1647 | "commentMultipleOutline": "\uf0181", 1648 | "commentOff": "\uf15E1", 1649 | "commentOffOutline": "\uf15E2", 1650 | "commentOutline": "\uf0182", 1651 | "commentPlus": "\uf09E5", 1652 | "commentPlusOutline": "\uf0183", 1653 | "commentProcessing": "\uf0184", 1654 | "commentProcessingOutline": "\uf0185", 1655 | "commentQuestion": "\uf0817", 1656 | "commentQuestionOutline": "\uf0186", 1657 | "commentQuote": "\uf1021", 1658 | "commentQuoteOutline": "\uf1022", 1659 | "commentRemove": "\uf05DE", 1660 | "commentRemoveOutline": "\uf0187", 1661 | "commentSearch": "\uf0A3C", 1662 | "commentSearchOutline": "\uf0A3D", 1663 | "commentText": "\uf0188", 1664 | "commentTextMultiple": "\uf0860", 1665 | "commentTextMultipleOutline": "\uf0861", 1666 | "commentTextOutline": "\uf0189", 1667 | "compare": "\uf018A", 1668 | "compareHorizontal": "\uf1492", 1669 | "compareVertical": "\uf1493", 1670 | "compass": "\uf018B", 1671 | "compassOff": "\uf0B80", 1672 | "compassOffOutline": "\uf0B81", 1673 | "compassOutline": "\uf018C", 1674 | "compassRose": "\uf1382", 1675 | "concourseCi": "\uf10A0", 1676 | "connection": "\uf1616", 1677 | "console": "\uf018D", 1678 | "consoleLine": "\uf07B7", 1679 | "consoleNetwork": "\uf08A9", 1680 | "consoleNetworkOutline": "\uf0C60", 1681 | "consolidate": "\uf10D8", 1682 | "contactlessPayment": "\uf0D6A", 1683 | "contactlessPaymentCircle": "\uf0321", 1684 | "contactlessPaymentCircleOutline": "\uf0408", 1685 | "contacts": "\uf06CB", 1686 | "contactsOutline": "\uf05B8", 1687 | "contain": "\uf0A3E", 1688 | "containEnd": "\uf0A3F", 1689 | "containStart": "\uf0A40", 1690 | "contentCopy": "\uf018F", 1691 | "contentCut": "\uf0190", 1692 | "contentDuplicate": "\uf0191", 1693 | "contentPaste": "\uf0192", 1694 | "contentSave": "\uf0193", 1695 | "contentSaveAlert": "\uf0F42", 1696 | "contentSaveAlertOutline": "\uf0F43", 1697 | "contentSaveAll": "\uf0194", 1698 | "contentSaveAllOutline": "\uf0F44", 1699 | "contentSaveCog": "\uf145B", 1700 | "contentSaveCogOutline": "\uf145C", 1701 | "contentSaveEdit": "\uf0CFB", 1702 | "contentSaveEditOutline": "\uf0CFC", 1703 | "contentSaveMove": "\uf0E27", 1704 | "contentSaveMoveOutline": "\uf0E28", 1705 | "contentSaveOff": "\uf1643", 1706 | "contentSaveOffOutline": "\uf1644", 1707 | "contentSaveOutline": "\uf0818", 1708 | "contentSaveSettings": "\uf061B", 1709 | "contentSaveSettingsOutline": "\uf0B2E", 1710 | "contrast": "\uf0195", 1711 | "contrastBox": "\uf0196", 1712 | "contrastCircle": "\uf0197", 1713 | "controllerClassic": "\uf0B82", 1714 | "controllerClassicOutline": "\uf0B83", 1715 | "cookie": "\uf0198", 1716 | "cookieAlert": "\uf16D0", 1717 | "cookieAlertOutline": "\uf16D1", 1718 | "cookieCheck": "\uf16D2", 1719 | "cookieCheckOutline": "\uf16D3", 1720 | "cookieClock": "\uf16E4", 1721 | "cookieClockOutline": "\uf16E5", 1722 | "cookieCog": "\uf16D4", 1723 | "cookieCogOutline": "\uf16D5", 1724 | "cookieEdit": "\uf16E6", 1725 | "cookieEditOutline": "\uf16E7", 1726 | "cookieLock": "\uf16E8", 1727 | "cookieLockOutline": "\uf16E9", 1728 | "cookieMinus": "\uf16DA", 1729 | "cookieMinusOutline": "\uf16DB", 1730 | "cookieOff": "\uf16EA", 1731 | "cookieOffOutline": "\uf16EB", 1732 | "cookieOutline": "\uf16DE", 1733 | "cookiePlus": "\uf16D6", 1734 | "cookiePlusOutline": "\uf16D7", 1735 | "cookieRefresh": "\uf16EC", 1736 | "cookieRefreshOutline": "\uf16ED", 1737 | "cookieRemove": "\uf16D8", 1738 | "cookieRemoveOutline": "\uf16D9", 1739 | "cookieSettings": "\uf16DC", 1740 | "cookieSettingsOutline": "\uf16DD", 1741 | "coolantTemperature": "\uf03C8", 1742 | "copyright": "\uf05E6", 1743 | "cordova": "\uf0958", 1744 | "corn": "\uf07B8", 1745 | "cornOff": "\uf13EF", 1746 | "cosineWave": "\uf1479", 1747 | "counter": "\uf0199", 1748 | "cow": "\uf019A", 1749 | "cpu-32Bit": "\uf0EDF", 1750 | "cpu-64Bit": "\uf0EE0", 1751 | "crane": "\uf0862", 1752 | "creation": "\uf0674", 1753 | "creativeCommons": "\uf0D6B", 1754 | "creditCard": "\uf0FEF", 1755 | "creditCardCheck": "\uf13D0", 1756 | "creditCardCheckOutline": "\uf13D1", 1757 | "creditCardClock": "\uf0EE1", 1758 | "creditCardClockOutline": "\uf0EE2", 1759 | "creditCardMarker": "\uf06A8", 1760 | "creditCardMarkerOutline": "\uf0DBE", 1761 | "creditCardMinus": "\uf0FAC", 1762 | "creditCardMinusOutline": "\uf0FAD", 1763 | "creditCardMultiple": "\uf0FF0", 1764 | "creditCardMultipleOutline": "\uf019C", 1765 | "creditCardOff": "\uf0FF1", 1766 | "creditCardOffOutline": "\uf05E4", 1767 | "creditCardOutline": "\uf019B", 1768 | "creditCardPlus": "\uf0FF2", 1769 | "creditCardPlusOutline": "\uf0676", 1770 | "creditCardRefresh": "\uf1645", 1771 | "creditCardRefreshOutline": "\uf1646", 1772 | "creditCardRefund": "\uf0FF3", 1773 | "creditCardRefundOutline": "\uf0AA8", 1774 | "creditCardRemove": "\uf0FAE", 1775 | "creditCardRemoveOutline": "\uf0FAF", 1776 | "creditCardScan": "\uf0FF4", 1777 | "creditCardScanOutline": "\uf019D", 1778 | "creditCardSearch": "\uf1647", 1779 | "creditCardSearchOutline": "\uf1648", 1780 | "creditCardSettings": "\uf0FF5", 1781 | "creditCardSettingsOutline": "\uf08D7", 1782 | "creditCardSync": "\uf1649", 1783 | "creditCardSyncOutline": "\uf164A", 1784 | "creditCardWireless": "\uf0802", 1785 | "creditCardWirelessOff": "\uf057A", 1786 | "creditCardWirelessOffOutline": "\uf057B", 1787 | "creditCardWirelessOutline": "\uf0D6C", 1788 | "cricket": "\uf0D6D", 1789 | "crop": "\uf019E", 1790 | "cropFree": "\uf019F", 1791 | "cropLandscape": "\uf01A0", 1792 | "cropPortrait": "\uf01A1", 1793 | "cropRotate": "\uf0696", 1794 | "cropSquare": "\uf01A2", 1795 | "crosshairs": "\uf01A3", 1796 | "crosshairsGps": "\uf01A4", 1797 | "crosshairsOff": "\uf0F45", 1798 | "crosshairsQuestion": "\uf1136", 1799 | "crown": "\uf01A5", 1800 | "crownOutline": "\uf11D0", 1801 | "cryengine": "\uf0959", 1802 | "crystalBall": "\uf0B2F", 1803 | "cube": "\uf01A6", 1804 | "cubeOff": "\uf141C", 1805 | "cubeOffOutline": "\uf141D", 1806 | "cubeOutline": "\uf01A7", 1807 | "cubeScan": "\uf0B84", 1808 | "cubeSend": "\uf01A8", 1809 | "cubeUnfolded": "\uf01A9", 1810 | "cup": "\uf01AA", 1811 | "cupOff": "\uf05E5", 1812 | "cupOffOutline": "\uf137D", 1813 | "cupOutline": "\uf130F", 1814 | "cupWater": "\uf01AB", 1815 | "cupboard": "\uf0F46", 1816 | "cupboardOutline": "\uf0F47", 1817 | "cupcake": "\uf095A", 1818 | "curling": "\uf0863", 1819 | "currencyBdt": "\uf0864", 1820 | "currencyBrl": "\uf0B85", 1821 | "currencyBtc": "\uf01AC", 1822 | "currencyCny": "\uf07BA", 1823 | "currencyEth": "\uf07BB", 1824 | "currencyEur": "\uf01AD", 1825 | "currencyEurOff": "\uf1315", 1826 | "currencyGbp": "\uf01AE", 1827 | "currencyIls": "\uf0C61", 1828 | "currencyInr": "\uf01AF", 1829 | "currencyJpy": "\uf07BC", 1830 | "currencyKrw": "\uf07BD", 1831 | "currencyKzt": "\uf0865", 1832 | "currencyMnt": "\uf1512", 1833 | "currencyNgn": "\uf01B0", 1834 | "currencyPhp": "\uf09E6", 1835 | "currencyRial": "\uf0E9C", 1836 | "currencyRub": "\uf01B1", 1837 | "currencySign": "\uf07BE", 1838 | "currencyTry": "\uf01B2", 1839 | "currencyTwd": "\uf07BF", 1840 | "currencyUsd": "\uf01C1", 1841 | "currencyUsdCircle": "\uf116B", 1842 | "currencyUsdCircleOutline": "\uf0178", 1843 | "currencyUsdOff": "\uf067A", 1844 | "currentAc": "\uf1480", 1845 | "currentDc": "\uf095C", 1846 | "cursorDefault": "\uf01C0", 1847 | "cursorDefaultClick": "\uf0CFD", 1848 | "cursorDefaultClickOutline": "\uf0CFE", 1849 | "cursorDefaultGesture": "\uf1127", 1850 | "cursorDefaultGestureOutline": "\uf1128", 1851 | "cursorDefaultOutline": "\uf01BF", 1852 | "cursorMove": "\uf01BE", 1853 | "cursorPointer": "\uf01BD", 1854 | "cursorText": "\uf05E7", 1855 | "danceBallroom": "\uf15FB", 1856 | "dancePole": "\uf1578", 1857 | "dataMatrix": "\uf153C", 1858 | "dataMatrixEdit": "\uf153D", 1859 | "dataMatrixMinus": "\uf153E", 1860 | "dataMatrixPlus": "\uf153F", 1861 | "dataMatrixRemove": "\uf1540", 1862 | "dataMatrixScan": "\uf1541", 1863 | "database": "\uf01BC", 1864 | "databaseAlert": "\uf163A", 1865 | "databaseAlertOutline": "\uf1624", 1866 | "databaseArrowDown": "\uf163B", 1867 | "databaseArrowDownOutline": "\uf1625", 1868 | "databaseArrowLeft": "\uf163C", 1869 | "databaseArrowLeftOutline": "\uf1626", 1870 | "databaseArrowRight": "\uf163D", 1871 | "databaseArrowRightOutline": "\uf1627", 1872 | "databaseArrowUp": "\uf163E", 1873 | "databaseArrowUpOutline": "\uf1628", 1874 | "databaseCheck": "\uf0AA9", 1875 | "databaseCheckOutline": "\uf1629", 1876 | "databaseClock": "\uf163F", 1877 | "databaseClockOutline": "\uf162A", 1878 | "databaseCog": "\uf164B", 1879 | "databaseCogOutline": "\uf164C", 1880 | "databaseEdit": "\uf0B86", 1881 | "databaseEditOutline": "\uf162B", 1882 | "databaseExport": "\uf095E", 1883 | "databaseExportOutline": "\uf162C", 1884 | "databaseImport": "\uf095D", 1885 | "databaseImportOutline": "\uf162D", 1886 | "databaseLock": "\uf0AAA", 1887 | "databaseLockOutline": "\uf162E", 1888 | "databaseMarker": "\uf12F6", 1889 | "databaseMarkerOutline": "\uf162F", 1890 | "databaseMinus": "\uf01BB", 1891 | "databaseMinusOutline": "\uf1630", 1892 | "databaseOff": "\uf1640", 1893 | "databaseOffOutline": "\uf1631", 1894 | "databaseOutline": "\uf1632", 1895 | "databasePlus": "\uf01BA", 1896 | "databasePlusOutline": "\uf1633", 1897 | "databaseRefresh": "\uf05C2", 1898 | "databaseRefreshOutline": "\uf1634", 1899 | "databaseRemove": "\uf0D00", 1900 | "databaseRemoveOutline": "\uf1635", 1901 | "databaseSearch": "\uf0866", 1902 | "databaseSearchOutline": "\uf1636", 1903 | "databaseSettings": "\uf0D01", 1904 | "databaseSettingsOutline": "\uf1637", 1905 | "databaseSync": "\uf0CFF", 1906 | "databaseSyncOutline": "\uf1638", 1907 | "deathStar": "\uf08D8", 1908 | "deathStarVariant": "\uf08D9", 1909 | "deathlyHallows": "\uf0B87", 1910 | "debian": "\uf08DA", 1911 | "debugStepInto": "\uf01B9", 1912 | "debugStepOut": "\uf01B8", 1913 | "debugStepOver": "\uf01B7", 1914 | "decagram": "\uf076C", 1915 | "decagramOutline": "\uf076D", 1916 | "decimal": "\uf10A1", 1917 | "decimalComma": "\uf10A2", 1918 | "decimalCommaDecrease": "\uf10A3", 1919 | "decimalCommaIncrease": "\uf10A4", 1920 | "decimalDecrease": "\uf01B6", 1921 | "decimalIncrease": "\uf01B5", 1922 | "delete": "\uf01B4", 1923 | "deleteAlert": "\uf10A5", 1924 | "deleteAlertOutline": "\uf10A6", 1925 | "deleteCircle": "\uf0683", 1926 | "deleteCircleOutline": "\uf0B88", 1927 | "deleteClock": "\uf1556", 1928 | "deleteClockOutline": "\uf1557", 1929 | "deleteEmpty": "\uf06CC", 1930 | "deleteEmptyOutline": "\uf0E9D", 1931 | "deleteForever": "\uf05E8", 1932 | "deleteForeverOutline": "\uf0B89", 1933 | "deleteOff": "\uf10A7", 1934 | "deleteOffOutline": "\uf10A8", 1935 | "deleteOutline": "\uf09E7", 1936 | "deleteRestore": "\uf0819", 1937 | "deleteSweep": "\uf05E9", 1938 | "deleteSweepOutline": "\uf0C62", 1939 | "deleteVariant": "\uf01B3", 1940 | "delta": "\uf01C2", 1941 | "desk": "\uf1239", 1942 | "deskLamp": "\uf095F", 1943 | "deskphone": "\uf01C3", 1944 | "desktopClassic": "\uf07C0", 1945 | "desktopMac": "\uf01C4", 1946 | "desktopMacDashboard": "\uf09E8", 1947 | "desktopTower": "\uf01C5", 1948 | "desktopTowerMonitor": "\uf0AAB", 1949 | "details": "\uf01C6", 1950 | "devTo": "\uf0D6E", 1951 | "developerBoard": "\uf0697", 1952 | "deviantart": "\uf01C7", 1953 | "devices": "\uf0FB0", 1954 | "diabetes": "\uf1126", 1955 | "dialpad": "\uf061C", 1956 | "diameter": "\uf0C63", 1957 | "diameterOutline": "\uf0C64", 1958 | "diameterVariant": "\uf0C65", 1959 | "diamond": "\uf0B8A", 1960 | "diamondOutline": "\uf0B8B", 1961 | "diamondStone": "\uf01C8", 1962 | "dice-1": "\uf01CA", 1963 | "dice-1Outline": "\uf114A", 1964 | "dice-2": "\uf01CB", 1965 | "dice-2Outline": "\uf114B", 1966 | "dice-3": "\uf01CC", 1967 | "dice-3Outline": "\uf114C", 1968 | "dice-4": "\uf01CD", 1969 | "dice-4Outline": "\uf114D", 1970 | "dice-5": "\uf01CE", 1971 | "dice-5Outline": "\uf114E", 1972 | "dice-6": "\uf01CF", 1973 | "dice-6Outline": "\uf114F", 1974 | "diceD10": "\uf1153", 1975 | "diceD10Outline": "\uf076F", 1976 | "diceD12": "\uf1154", 1977 | "diceD12Outline": "\uf0867", 1978 | "diceD20": "\uf1155", 1979 | "diceD20Outline": "\uf05EA", 1980 | "diceD4": "\uf1150", 1981 | "diceD4Outline": "\uf05EB", 1982 | "diceD6": "\uf1151", 1983 | "diceD6Outline": "\uf05ED", 1984 | "diceD8": "\uf1152", 1985 | "diceD8Outline": "\uf05EC", 1986 | "diceMultiple": "\uf076E", 1987 | "diceMultipleOutline": "\uf1156", 1988 | "digitalOcean": "\uf1237", 1989 | "dipSwitch": "\uf07C1", 1990 | "directions": "\uf01D0", 1991 | "directionsFork": "\uf0641", 1992 | "disc": "\uf05EE", 1993 | "discAlert": "\uf01D1", 1994 | "discPlayer": "\uf0960", 1995 | "discord": "\uf066F", 1996 | "dishwasher": "\uf0AAC", 1997 | "dishwasherAlert": "\uf11B8", 1998 | "dishwasherOff": "\uf11B9", 1999 | "disqus": "\uf01D2", 2000 | "distributeHorizontalCenter": "\uf11C9", 2001 | "distributeHorizontalLeft": "\uf11C8", 2002 | "distributeHorizontalRight": "\uf11CA", 2003 | "distributeVerticalBottom": "\uf11CB", 2004 | "distributeVerticalCenter": "\uf11CC", 2005 | "distributeVerticalTop": "\uf11CD", 2006 | "divingFlippers": "\uf0DBF", 2007 | "divingHelmet": "\uf0DC0", 2008 | "divingScuba": "\uf0DC1", 2009 | "divingScubaFlag": "\uf0DC2", 2010 | "divingScubaTank": "\uf0DC3", 2011 | "divingScubaTankMultiple": "\uf0DC4", 2012 | "divingSnorkel": "\uf0DC5", 2013 | "division": "\uf01D4", 2014 | "divisionBox": "\uf01D5", 2015 | "dlna": "\uf0A41", 2016 | "dna": "\uf0684", 2017 | "dns": "\uf01D6", 2018 | "dnsOutline": "\uf0B8C", 2019 | "doNotDisturb": "\uf0698", 2020 | "doNotDisturbOff": "\uf0699", 2021 | "dockBottom": "\uf10A9", 2022 | "dockLeft": "\uf10AA", 2023 | "dockRight": "\uf10AB", 2024 | "dockTop": "\uf1513", 2025 | "dockWindow": "\uf10AC", 2026 | "docker": "\uf0868", 2027 | "doctor": "\uf0A42", 2028 | "dog": "\uf0A43", 2029 | "dogService": "\uf0AAD", 2030 | "dogSide": "\uf0A44", 2031 | "dogSideOff": "\uf16EE", 2032 | "dolby": "\uf06B3", 2033 | "dolly": "\uf0E9E", 2034 | "domain": "\uf01D7", 2035 | "domainOff": "\uf0D6F", 2036 | "domainPlus": "\uf10AD", 2037 | "domainRemove": "\uf10AE", 2038 | "domeLight": "\uf141E", 2039 | "dominoMask": "\uf1023", 2040 | "donkey": "\uf07C2", 2041 | "door": "\uf081A", 2042 | "doorClosed": "\uf081B", 2043 | "doorClosedLock": "\uf10AF", 2044 | "doorOpen": "\uf081C", 2045 | "doorbell": "\uf12E6", 2046 | "doorbellVideo": "\uf0869", 2047 | "dotNet": "\uf0AAE", 2048 | "dotsGrid": "\uf15FC", 2049 | "dotsHexagon": "\uf15FF", 2050 | "dotsHorizontal": "\uf01D8", 2051 | "dotsHorizontalCircle": "\uf07C3", 2052 | "dotsHorizontalCircleOutline": "\uf0B8D", 2053 | "dotsSquare": "\uf15FD", 2054 | "dotsTriangle": "\uf15FE", 2055 | "dotsVertical": "\uf01D9", 2056 | "dotsVerticalCircle": "\uf07C4", 2057 | "dotsVerticalCircleOutline": "\uf0B8E", 2058 | "douban": "\uf069A", 2059 | "download": "\uf01DA", 2060 | "downloadBox": "\uf1462", 2061 | "downloadBoxOutline": "\uf1463", 2062 | "downloadCircle": "\uf1464", 2063 | "downloadCircleOutline": "\uf1465", 2064 | "downloadLock": "\uf1320", 2065 | "downloadLockOutline": "\uf1321", 2066 | "downloadMultiple": "\uf09E9", 2067 | "downloadNetwork": "\uf06F4", 2068 | "downloadNetworkOutline": "\uf0C66", 2069 | "downloadOff": "\uf10B0", 2070 | "downloadOffOutline": "\uf10B1", 2071 | "downloadOutline": "\uf0B8F", 2072 | "drag": "\uf01DB", 2073 | "dragHorizontal": "\uf01DC", 2074 | "dragHorizontalVariant": "\uf12F0", 2075 | "dragVariant": "\uf0B90", 2076 | "dragVertical": "\uf01DD", 2077 | "dragVerticalVariant": "\uf12F1", 2078 | "dramaMasks": "\uf0D02", 2079 | "draw": "\uf0F49", 2080 | "drawing": "\uf01DE", 2081 | "drawingBox": "\uf01DF", 2082 | "dresser": "\uf0F4A", 2083 | "dresserOutline": "\uf0F4B", 2084 | "drone": "\uf01E2", 2085 | "dropbox": "\uf01E3", 2086 | "drupal": "\uf01E4", 2087 | "duck": "\uf01E5", 2088 | "dumbbell": "\uf01E6", 2089 | "dumpTruck": "\uf0C67", 2090 | "earHearing": "\uf07C5", 2091 | "earHearingOff": "\uf0A45", 2092 | "earth": "\uf01E7", 2093 | "earthArrowRight": "\uf1311", 2094 | "earthBox": "\uf06CD", 2095 | "earthBoxMinus": "\uf1407", 2096 | "earthBoxOff": "\uf06CE", 2097 | "earthBoxPlus": "\uf1406", 2098 | "earthBoxRemove": "\uf1408", 2099 | "earthMinus": "\uf1404", 2100 | "earthOff": "\uf01E8", 2101 | "earthPlus": "\uf1403", 2102 | "earthRemove": "\uf1405", 2103 | "egg": "\uf0AAF", 2104 | "eggEaster": "\uf0AB0", 2105 | "eggOff": "\uf13F0", 2106 | "eggOffOutline": "\uf13F1", 2107 | "eggOutline": "\uf13F2", 2108 | "eiffelTower": "\uf156B", 2109 | "eightTrack": "\uf09EA", 2110 | "eject": "\uf01EA", 2111 | "ejectOutline": "\uf0B91", 2112 | "electricSwitch": "\uf0E9F", 2113 | "electricSwitchClosed": "\uf10D9", 2114 | "electronFramework": "\uf1024", 2115 | "elephant": "\uf07C6", 2116 | "elevationDecline": "\uf01EB", 2117 | "elevationRise": "\uf01EC", 2118 | "elevator": "\uf01ED", 2119 | "elevatorDown": "\uf12C2", 2120 | "elevatorPassenger": "\uf1381", 2121 | "elevatorUp": "\uf12C1", 2122 | "ellipse": "\uf0EA0", 2123 | "ellipseOutline": "\uf0EA1", 2124 | "email": "\uf01EE", 2125 | "emailAlert": "\uf06CF", 2126 | "emailAlertOutline": "\uf0D42", 2127 | "emailBox": "\uf0D03", 2128 | "emailCheck": "\uf0AB1", 2129 | "emailCheckOutline": "\uf0AB2", 2130 | "emailEdit": "\uf0EE3", 2131 | "emailEditOutline": "\uf0EE4", 2132 | "emailLock": "\uf01F1", 2133 | "emailMarkAsUnread": "\uf0B92", 2134 | "emailMinus": "\uf0EE5", 2135 | "emailMinusOutline": "\uf0EE6", 2136 | "emailMultiple": "\uf0EE7", 2137 | "emailMultipleOutline": "\uf0EE8", 2138 | "emailNewsletter": "\uf0FB1", 2139 | "emailOff": "\uf13E3", 2140 | "emailOffOutline": "\uf13E4", 2141 | "emailOpen": "\uf01EF", 2142 | "emailOpenMultiple": "\uf0EE9", 2143 | "emailOpenMultipleOutline": "\uf0EEA", 2144 | "emailOpenOutline": "\uf05EF", 2145 | "emailOutline": "\uf01F0", 2146 | "emailPlus": "\uf09EB", 2147 | "emailPlusOutline": "\uf09EC", 2148 | "emailReceive": "\uf10DA", 2149 | "emailReceiveOutline": "\uf10DB", 2150 | "emailRemove": "\uf1661", 2151 | "emailRemoveOutline": "\uf1662", 2152 | "emailSearch": "\uf0961", 2153 | "emailSearchOutline": "\uf0962", 2154 | "emailSend": "\uf10DC", 2155 | "emailSendOutline": "\uf10DD", 2156 | "emailSync": "\uf12C7", 2157 | "emailSyncOutline": "\uf12C8", 2158 | "emailVariant": "\uf05F0", 2159 | "ember": "\uf0B30", 2160 | "emby": "\uf06B4", 2161 | "emoticon": "\uf0C68", 2162 | "emoticonAngry": "\uf0C69", 2163 | "emoticonAngryOutline": "\uf0C6A", 2164 | "emoticonConfused": "\uf10DE", 2165 | "emoticonConfusedOutline": "\uf10DF", 2166 | "emoticonCool": "\uf0C6B", 2167 | "emoticonCoolOutline": "\uf01F3", 2168 | "emoticonCry": "\uf0C6C", 2169 | "emoticonCryOutline": "\uf0C6D", 2170 | "emoticonDead": "\uf0C6E", 2171 | "emoticonDeadOutline": "\uf069B", 2172 | "emoticonDevil": "\uf0C6F", 2173 | "emoticonDevilOutline": "\uf01F4", 2174 | "emoticonExcited": "\uf0C70", 2175 | "emoticonExcitedOutline": "\uf069C", 2176 | "emoticonFrown": "\uf0F4C", 2177 | "emoticonFrownOutline": "\uf0F4D", 2178 | "emoticonHappy": "\uf0C71", 2179 | "emoticonHappyOutline": "\uf01F5", 2180 | "emoticonKiss": "\uf0C72", 2181 | "emoticonKissOutline": "\uf0C73", 2182 | "emoticonLol": "\uf1214", 2183 | "emoticonLolOutline": "\uf1215", 2184 | "emoticonNeutral": "\uf0C74", 2185 | "emoticonNeutralOutline": "\uf01F6", 2186 | "emoticonOutline": "\uf01F2", 2187 | "emoticonPoop": "\uf01F7", 2188 | "emoticonPoopOutline": "\uf0C75", 2189 | "emoticonSad": "\uf0C76", 2190 | "emoticonSadOutline": "\uf01F8", 2191 | "emoticonSick": "\uf157C", 2192 | "emoticonSickOutline": "\uf157D", 2193 | "emoticonTongue": "\uf01F9", 2194 | "emoticonTongueOutline": "\uf0C77", 2195 | "emoticonWink": "\uf0C78", 2196 | "emoticonWinkOutline": "\uf0C79", 2197 | "engine": "\uf01FA", 2198 | "engineOff": "\uf0A46", 2199 | "engineOffOutline": "\uf0A47", 2200 | "engineOutline": "\uf01FB", 2201 | "epsilon": "\uf10E0", 2202 | "equal": "\uf01FC", 2203 | "equalBox": "\uf01FD", 2204 | "equalizer": "\uf0EA2", 2205 | "equalizerOutline": "\uf0EA3", 2206 | "eraser": "\uf01FE", 2207 | "eraserVariant": "\uf0642", 2208 | "escalator": "\uf01FF", 2209 | "escalatorBox": "\uf1399", 2210 | "escalatorDown": "\uf12C0", 2211 | "escalatorUp": "\uf12BF", 2212 | "eslint": "\uf0C7A", 2213 | "et": "\uf0AB3", 2214 | "ethereum": "\uf086A", 2215 | "ethernet": "\uf0200", 2216 | "ethernetCable": "\uf0201", 2217 | "ethernetCableOff": "\uf0202", 2218 | "evPlugCcs1": "\uf1519", 2219 | "evPlugCcs2": "\uf151A", 2220 | "evPlugChademo": "\uf151B", 2221 | "evPlugTesla": "\uf151C", 2222 | "evPlugType1": "\uf151D", 2223 | "evPlugType2": "\uf151E", 2224 | "evStation": "\uf05F1", 2225 | "evernote": "\uf0204", 2226 | "excavator": "\uf1025", 2227 | "exclamation": "\uf0205", 2228 | "exclamationThick": "\uf1238", 2229 | "exitRun": "\uf0A48", 2230 | "exitToApp": "\uf0206", 2231 | "expandAll": "\uf0AB4", 2232 | "expandAllOutline": "\uf0AB5", 2233 | "expansionCard": "\uf08AE", 2234 | "expansionCardVariant": "\uf0FB2", 2235 | "exponent": "\uf0963", 2236 | "exponentBox": "\uf0964", 2237 | "export": "\uf0207", 2238 | "exportVariant": "\uf0B93", 2239 | "eye": "\uf0208", 2240 | "eyeCheck": "\uf0D04", 2241 | "eyeCheckOutline": "\uf0D05", 2242 | "eyeCircle": "\uf0B94", 2243 | "eyeCircleOutline": "\uf0B95", 2244 | "eyeMinus": "\uf1026", 2245 | "eyeMinusOutline": "\uf1027", 2246 | "eyeOff": "\uf0209", 2247 | "eyeOffOutline": "\uf06D1", 2248 | "eyeOutline": "\uf06D0", 2249 | "eyePlus": "\uf086B", 2250 | "eyePlusOutline": "\uf086C", 2251 | "eyeRemove": "\uf15E3", 2252 | "eyeRemoveOutline": "\uf15E4", 2253 | "eyeSettings": "\uf086D", 2254 | "eyeSettingsOutline": "\uf086E", 2255 | "eyedropper": "\uf020A", 2256 | "eyedropperMinus": "\uf13DD", 2257 | "eyedropperOff": "\uf13DF", 2258 | "eyedropperPlus": "\uf13DC", 2259 | "eyedropperRemove": "\uf13DE", 2260 | "eyedropperVariant": "\uf020B", 2261 | "face": "\uf0643", 2262 | "faceAgent": "\uf0D70", 2263 | "faceMask": "\uf1586", 2264 | "faceMaskOutline": "\uf1587", 2265 | "faceOutline": "\uf0B96", 2266 | "faceProfile": "\uf0644", 2267 | "faceProfileWoman": "\uf1076", 2268 | "faceRecognition": "\uf0C7B", 2269 | "faceShimmer": "\uf15CC", 2270 | "faceShimmerOutline": "\uf15CD", 2271 | "faceWoman": "\uf1077", 2272 | "faceWomanOutline": "\uf1078", 2273 | "faceWomanShimmer": "\uf15CE", 2274 | "faceWomanShimmerOutline": "\uf15CF", 2275 | "facebook": "\uf020C", 2276 | "facebookGaming": "\uf07DD", 2277 | "facebookMessenger": "\uf020E", 2278 | "facebookWorkplace": "\uf0B31", 2279 | "factory": "\uf020F", 2280 | "familyTree": "\uf160E", 2281 | "fan": "\uf0210", 2282 | "fanAlert": "\uf146C", 2283 | "fanAuto": "\uf171D", 2284 | "fanChevronDown": "\uf146D", 2285 | "fanChevronUp": "\uf146E", 2286 | "fanMinus": "\uf1470", 2287 | "fanOff": "\uf081D", 2288 | "fanPlus": "\uf146F", 2289 | "fanRemove": "\uf1471", 2290 | "fanSpeed-1": "\uf1472", 2291 | "fanSpeed-2": "\uf1473", 2292 | "fanSpeed-3": "\uf1474", 2293 | "fastForward": "\uf0211", 2294 | "fastForward-10": "\uf0D71", 2295 | "fastForward-30": "\uf0D06", 2296 | "fastForward-5": "\uf11F8", 2297 | "fastForward-60": "\uf160B", 2298 | "fastForwardOutline": "\uf06D2", 2299 | "fax": "\uf0212", 2300 | "feather": "\uf06D3", 2301 | "featureSearch": "\uf0A49", 2302 | "featureSearchOutline": "\uf0A4A", 2303 | "fedora": "\uf08DB", 2304 | "fencing": "\uf14C1", 2305 | "ferrisWheel": "\uf0EA4", 2306 | "ferry": "\uf0213", 2307 | "file": "\uf0214", 2308 | "fileAccount": "\uf073B", 2309 | "fileAccountOutline": "\uf1028", 2310 | "fileAlert": "\uf0A4B", 2311 | "fileAlertOutline": "\uf0A4C", 2312 | "fileCabinet": "\uf0AB6", 2313 | "fileCad": "\uf0EEB", 2314 | "fileCadBox": "\uf0EEC", 2315 | "fileCancel": "\uf0DC6", 2316 | "fileCancelOutline": "\uf0DC7", 2317 | "fileCertificate": "\uf1186", 2318 | "fileCertificateOutline": "\uf1187", 2319 | "fileChart": "\uf0215", 2320 | "fileChartOutline": "\uf1029", 2321 | "fileCheck": "\uf0216", 2322 | "fileCheckOutline": "\uf0E29", 2323 | "fileClock": "\uf12E1", 2324 | "fileClockOutline": "\uf12E2", 2325 | "fileCloud": "\uf0217", 2326 | "fileCloudOutline": "\uf102A", 2327 | "fileCode": "\uf022E", 2328 | "fileCodeOutline": "\uf102B", 2329 | "fileCog": "\uf107B", 2330 | "fileCogOutline": "\uf107C", 2331 | "fileCompare": "\uf08AA", 2332 | "fileDelimited": "\uf0218", 2333 | "fileDelimitedOutline": "\uf0EA5", 2334 | "fileDocument": "\uf0219", 2335 | "fileDocumentEdit": "\uf0DC8", 2336 | "fileDocumentEditOutline": "\uf0DC9", 2337 | "fileDocumentMultiple": "\uf1517", 2338 | "fileDocumentMultipleOutline": "\uf1518", 2339 | "fileDocumentOutline": "\uf09EE", 2340 | "fileDownload": "\uf0965", 2341 | "fileDownloadOutline": "\uf0966", 2342 | "fileEdit": "\uf11E7", 2343 | "fileEditOutline": "\uf11E8", 2344 | "fileExcel": "\uf021B", 2345 | "fileExcelBox": "\uf021C", 2346 | "fileExcelBoxOutline": "\uf102C", 2347 | "fileExcelOutline": "\uf102D", 2348 | "fileExport": "\uf021D", 2349 | "fileExportOutline": "\uf102E", 2350 | "fileEye": "\uf0DCA", 2351 | "fileEyeOutline": "\uf0DCB", 2352 | "fileFind": "\uf021E", 2353 | "fileFindOutline": "\uf0B97", 2354 | "fileHidden": "\uf0613", 2355 | "fileImage": "\uf021F", 2356 | "fileImageOutline": "\uf0EB0", 2357 | "fileImport": "\uf0220", 2358 | "fileImportOutline": "\uf102F", 2359 | "fileKey": "\uf1184", 2360 | "fileKeyOutline": "\uf1185", 2361 | "fileLink": "\uf1177", 2362 | "fileLinkOutline": "\uf1178", 2363 | "fileLock": "\uf0221", 2364 | "fileLockOutline": "\uf1030", 2365 | "fileMove": "\uf0AB9", 2366 | "fileMoveOutline": "\uf1031", 2367 | "fileMultiple": "\uf0222", 2368 | "fileMultipleOutline": "\uf1032", 2369 | "fileMusic": "\uf0223", 2370 | "fileMusicOutline": "\uf0E2A", 2371 | "fileOutline": "\uf0224", 2372 | "filePdf": "\uf0225", 2373 | "filePdfBox": "\uf0226", 2374 | "filePdfBoxOutline": "\uf0FB3", 2375 | "filePdfOutline": "\uf0E2D", 2376 | "filePercent": "\uf081E", 2377 | "filePercentOutline": "\uf1033", 2378 | "filePhone": "\uf1179", 2379 | "filePhoneOutline": "\uf117A", 2380 | "filePlus": "\uf0752", 2381 | "filePlusOutline": "\uf0EED", 2382 | "filePowerpoint": "\uf0227", 2383 | "filePowerpointBox": "\uf0228", 2384 | "filePowerpointBoxOutline": "\uf1034", 2385 | "filePowerpointOutline": "\uf1035", 2386 | "filePresentationBox": "\uf0229", 2387 | "fileQuestion": "\uf086F", 2388 | "fileQuestionOutline": "\uf1036", 2389 | "fileRefresh": "\uf0918", 2390 | "fileRefreshOutline": "\uf0541", 2391 | "fileRemove": "\uf0B98", 2392 | "fileRemoveOutline": "\uf1037", 2393 | "fileReplace": "\uf0B32", 2394 | "fileReplaceOutline": "\uf0B33", 2395 | "fileRestore": "\uf0670", 2396 | "fileRestoreOutline": "\uf1038", 2397 | "fileSearch": "\uf0C7C", 2398 | "fileSearchOutline": "\uf0C7D", 2399 | "fileSend": "\uf022A", 2400 | "fileSendOutline": "\uf1039", 2401 | "fileSettings": "\uf1079", 2402 | "fileSettingsOutline": "\uf107A", 2403 | "fileStar": "\uf103A", 2404 | "fileStarOutline": "\uf103B", 2405 | "fileSwap": "\uf0FB4", 2406 | "fileSwapOutline": "\uf0FB5", 2407 | "fileSync": "\uf1216", 2408 | "fileSyncOutline": "\uf1217", 2409 | "fileTable": "\uf0C7E", 2410 | "fileTableBox": "\uf10E1", 2411 | "fileTableBoxMultiple": "\uf10E2", 2412 | "fileTableBoxMultipleOutline": "\uf10E3", 2413 | "fileTableBoxOutline": "\uf10E4", 2414 | "fileTableOutline": "\uf0C7F", 2415 | "fileTree": "\uf0645", 2416 | "fileTreeOutline": "\uf13D2", 2417 | "fileUndo": "\uf08DC", 2418 | "fileUndoOutline": "\uf103C", 2419 | "fileUpload": "\uf0A4D", 2420 | "fileUploadOutline": "\uf0A4E", 2421 | "fileVideo": "\uf022B", 2422 | "fileVideoOutline": "\uf0E2C", 2423 | "fileWord": "\uf022C", 2424 | "fileWordBox": "\uf022D", 2425 | "fileWordBoxOutline": "\uf103D", 2426 | "fileWordOutline": "\uf103E", 2427 | "film": "\uf022F", 2428 | "filmstrip": "\uf0230", 2429 | "filmstripBox": "\uf0332", 2430 | "filmstripBoxMultiple": "\uf0D18", 2431 | "filmstripOff": "\uf0231", 2432 | "filter": "\uf0232", 2433 | "filterMenu": "\uf10E5", 2434 | "filterMenuOutline": "\uf10E6", 2435 | "filterMinus": "\uf0EEE", 2436 | "filterMinusOutline": "\uf0EEF", 2437 | "filterOff": "\uf14EF", 2438 | "filterOffOutline": "\uf14F0", 2439 | "filterOutline": "\uf0233", 2440 | "filterPlus": "\uf0EF0", 2441 | "filterPlusOutline": "\uf0EF1", 2442 | "filterRemove": "\uf0234", 2443 | "filterRemoveOutline": "\uf0235", 2444 | "filterVariant": "\uf0236", 2445 | "filterVariantMinus": "\uf1112", 2446 | "filterVariantPlus": "\uf1113", 2447 | "filterVariantRemove": "\uf103F", 2448 | "finance": "\uf081F", 2449 | "findReplace": "\uf06D4", 2450 | "fingerprint": "\uf0237", 2451 | "fingerprintOff": "\uf0EB1", 2452 | "fire": "\uf0238", 2453 | "fireAlert": "\uf15D7", 2454 | "fireExtinguisher": "\uf0EF2", 2455 | "fireHydrant": "\uf1137", 2456 | "fireHydrantAlert": "\uf1138", 2457 | "fireHydrantOff": "\uf1139", 2458 | "fireOff": "\uf1722", 2459 | "fireTruck": "\uf08AB", 2460 | "firebase": "\uf0967", 2461 | "firefox": "\uf0239", 2462 | "fireplace": "\uf0E2E", 2463 | "fireplaceOff": "\uf0E2F", 2464 | "firework": "\uf0E30", 2465 | "fireworkOff": "\uf1723", 2466 | "fish": "\uf023A", 2467 | "fishOff": "\uf13F3", 2468 | "fishbowl": "\uf0EF3", 2469 | "fishbowlOutline": "\uf0EF4", 2470 | "fitToPage": "\uf0EF5", 2471 | "fitToPageOutline": "\uf0EF6", 2472 | "flag": "\uf023B", 2473 | "flagCheckered": "\uf023C", 2474 | "flagMinus": "\uf0B99", 2475 | "flagMinusOutline": "\uf10B2", 2476 | "flagOutline": "\uf023D", 2477 | "flagPlus": "\uf0B9A", 2478 | "flagPlusOutline": "\uf10B3", 2479 | "flagRemove": "\uf0B9B", 2480 | "flagRemoveOutline": "\uf10B4", 2481 | "flagTriangle": "\uf023F", 2482 | "flagVariant": "\uf0240", 2483 | "flagVariantOutline": "\uf023E", 2484 | "flare": "\uf0D72", 2485 | "flash": "\uf0241", 2486 | "flashAlert": "\uf0EF7", 2487 | "flashAlertOutline": "\uf0EF8", 2488 | "flashAuto": "\uf0242", 2489 | "flashCircle": "\uf0820", 2490 | "flashOff": "\uf0243", 2491 | "flashOutline": "\uf06D5", 2492 | "flashRedEye": "\uf067B", 2493 | "flashlight": "\uf0244", 2494 | "flashlightOff": "\uf0245", 2495 | "flask": "\uf0093", 2496 | "flaskEmpty": "\uf0094", 2497 | "flaskEmptyMinus": "\uf123A", 2498 | "flaskEmptyMinusOutline": "\uf123B", 2499 | "flaskEmptyOff": "\uf13F4", 2500 | "flaskEmptyOffOutline": "\uf13F5", 2501 | "flaskEmptyOutline": "\uf0095", 2502 | "flaskEmptyPlus": "\uf123C", 2503 | "flaskEmptyPlusOutline": "\uf123D", 2504 | "flaskEmptyRemove": "\uf123E", 2505 | "flaskEmptyRemoveOutline": "\uf123F", 2506 | "flaskMinus": "\uf1240", 2507 | "flaskMinusOutline": "\uf1241", 2508 | "flaskOff": "\uf13F6", 2509 | "flaskOffOutline": "\uf13F7", 2510 | "flaskOutline": "\uf0096", 2511 | "flaskPlus": "\uf1242", 2512 | "flaskPlusOutline": "\uf1243", 2513 | "flaskRemove": "\uf1244", 2514 | "flaskRemoveOutline": "\uf1245", 2515 | "flaskRoundBottom": "\uf124B", 2516 | "flaskRoundBottomEmpty": "\uf124C", 2517 | "flaskRoundBottomEmptyOutline": "\uf124D", 2518 | "flaskRoundBottomOutline": "\uf124E", 2519 | "fleurDeLis": "\uf1303", 2520 | "flipHorizontal": "\uf10E7", 2521 | "flipToBack": "\uf0247", 2522 | "flipToFront": "\uf0248", 2523 | "flipVertical": "\uf10E8", 2524 | "floorLamp": "\uf08DD", 2525 | "floorLampDual": "\uf1040", 2526 | "floorLampVariant": "\uf1041", 2527 | "floorPlan": "\uf0821", 2528 | "floppy": "\uf0249", 2529 | "floppyVariant": "\uf09EF", 2530 | "flower": "\uf024A", 2531 | "flowerOutline": "\uf09F0", 2532 | "flowerPoppy": "\uf0D08", 2533 | "flowerTulip": "\uf09F1", 2534 | "flowerTulipOutline": "\uf09F2", 2535 | "focusAuto": "\uf0F4E", 2536 | "focusField": "\uf0F4F", 2537 | "focusFieldHorizontal": "\uf0F50", 2538 | "focusFieldVertical": "\uf0F51", 2539 | "folder": "\uf024B", 2540 | "folderAccount": "\uf024C", 2541 | "folderAccountOutline": "\uf0B9C", 2542 | "folderAlert": "\uf0DCC", 2543 | "folderAlertOutline": "\uf0DCD", 2544 | "folderClock": "\uf0ABA", 2545 | "folderClockOutline": "\uf0ABB", 2546 | "folderCog": "\uf107F", 2547 | "folderCogOutline": "\uf1080", 2548 | "folderDownload": "\uf024D", 2549 | "folderDownloadOutline": "\uf10E9", 2550 | "folderEdit": "\uf08DE", 2551 | "folderEditOutline": "\uf0DCE", 2552 | "folderGoogleDrive": "\uf024E", 2553 | "folderHeart": "\uf10EA", 2554 | "folderHeartOutline": "\uf10EB", 2555 | "folderHome": "\uf10B5", 2556 | "folderHomeOutline": "\uf10B6", 2557 | "folderImage": "\uf024F", 2558 | "folderInformation": "\uf10B7", 2559 | "folderInformationOutline": "\uf10B8", 2560 | "folderKey": "\uf08AC", 2561 | "folderKeyNetwork": "\uf08AD", 2562 | "folderKeyNetworkOutline": "\uf0C80", 2563 | "folderKeyOutline": "\uf10EC", 2564 | "folderLock": "\uf0250", 2565 | "folderLockOpen": "\uf0251", 2566 | "folderMarker": "\uf126D", 2567 | "folderMarkerOutline": "\uf126E", 2568 | "folderMove": "\uf0252", 2569 | "folderMoveOutline": "\uf1246", 2570 | "folderMultiple": "\uf0253", 2571 | "folderMultipleImage": "\uf0254", 2572 | "folderMultipleOutline": "\uf0255", 2573 | "folderMultiplePlus": "\uf147E", 2574 | "folderMultiplePlusOutline": "\uf147F", 2575 | "folderMusic": "\uf1359", 2576 | "folderMusicOutline": "\uf135A", 2577 | "folderNetwork": "\uf0870", 2578 | "folderNetworkOutline": "\uf0C81", 2579 | "folderOpen": "\uf0770", 2580 | "folderOpenOutline": "\uf0DCF", 2581 | "folderOutline": "\uf0256", 2582 | "folderPlus": "\uf0257", 2583 | "folderPlusOutline": "\uf0B9D", 2584 | "folderPound": "\uf0D09", 2585 | "folderPoundOutline": "\uf0D0A", 2586 | "folderRefresh": "\uf0749", 2587 | "folderRefreshOutline": "\uf0542", 2588 | "folderRemove": "\uf0258", 2589 | "folderRemoveOutline": "\uf0B9E", 2590 | "folderSearch": "\uf0968", 2591 | "folderSearchOutline": "\uf0969", 2592 | "folderSettings": "\uf107D", 2593 | "folderSettingsOutline": "\uf107E", 2594 | "folderStar": "\uf069D", 2595 | "folderStarMultiple": "\uf13D3", 2596 | "folderStarMultipleOutline": "\uf13D4", 2597 | "folderStarOutline": "\uf0B9F", 2598 | "folderSwap": "\uf0FB6", 2599 | "folderSwapOutline": "\uf0FB7", 2600 | "folderSync": "\uf0D0B", 2601 | "folderSyncOutline": "\uf0D0C", 2602 | "folderTable": "\uf12E3", 2603 | "folderTableOutline": "\uf12E4", 2604 | "folderText": "\uf0C82", 2605 | "folderTextOutline": "\uf0C83", 2606 | "folderUpload": "\uf0259", 2607 | "folderUploadOutline": "\uf10ED", 2608 | "folderZip": "\uf06EB", 2609 | "folderZipOutline": "\uf07B9", 2610 | "fontAwesome": "\uf003A", 2611 | "food": "\uf025A", 2612 | "foodApple": "\uf025B", 2613 | "foodAppleOutline": "\uf0C84", 2614 | "foodCroissant": "\uf07C8", 2615 | "foodDrumstick": "\uf141F", 2616 | "foodDrumstickOff": "\uf1468", 2617 | "foodDrumstickOffOutline": "\uf1469", 2618 | "foodDrumstickOutline": "\uf1420", 2619 | "foodForkDrink": "\uf05F2", 2620 | "foodHalal": "\uf1572", 2621 | "foodKosher": "\uf1573", 2622 | "foodOff": "\uf05F3", 2623 | "foodSteak": "\uf146A", 2624 | "foodSteakOff": "\uf146B", 2625 | "foodTurkey": "\uf171C", 2626 | "foodVariant": "\uf025C", 2627 | "foodVariantOff": "\uf13E5", 2628 | "footPrint": "\uf0F52", 2629 | "football": "\uf025D", 2630 | "footballAustralian": "\uf025E", 2631 | "footballHelmet": "\uf025F", 2632 | "forklift": "\uf07C9", 2633 | "formDropdown": "\uf1400", 2634 | "formSelect": "\uf1401", 2635 | "formTextarea": "\uf1095", 2636 | "formTextbox": "\uf060E", 2637 | "formTextboxLock": "\uf135D", 2638 | "formTextboxPassword": "\uf07F5", 2639 | "formatAlignBottom": "\uf0753", 2640 | "formatAlignCenter": "\uf0260", 2641 | "formatAlignJustify": "\uf0261", 2642 | "formatAlignLeft": "\uf0262", 2643 | "formatAlignMiddle": "\uf0754", 2644 | "formatAlignRight": "\uf0263", 2645 | "formatAlignTop": "\uf0755", 2646 | "formatAnnotationMinus": "\uf0ABC", 2647 | "formatAnnotationPlus": "\uf0646", 2648 | "formatBold": "\uf0264", 2649 | "formatClear": "\uf0265", 2650 | "formatColorFill": "\uf0266", 2651 | "formatColorHighlight": "\uf0E31", 2652 | "formatColorMarkerCancel": "\uf1313", 2653 | "formatColorText": "\uf069E", 2654 | "formatColumns": "\uf08DF", 2655 | "formatFloatCenter": "\uf0267", 2656 | "formatFloatLeft": "\uf0268", 2657 | "formatFloatNone": "\uf0269", 2658 | "formatFloatRight": "\uf026A", 2659 | "formatFont": "\uf06D6", 2660 | "formatFontSizeDecrease": "\uf09F3", 2661 | "formatFontSizeIncrease": "\uf09F4", 2662 | "formatHeader-1": "\uf026B", 2663 | "formatHeader-2": "\uf026C", 2664 | "formatHeader-3": "\uf026D", 2665 | "formatHeader-4": "\uf026E", 2666 | "formatHeader-5": "\uf026F", 2667 | "formatHeader-6": "\uf0270", 2668 | "formatHeaderDecrease": "\uf0271", 2669 | "formatHeaderEqual": "\uf0272", 2670 | "formatHeaderIncrease": "\uf0273", 2671 | "formatHeaderPound": "\uf0274", 2672 | "formatHorizontalAlignCenter": "\uf061E", 2673 | "formatHorizontalAlignLeft": "\uf061F", 2674 | "formatHorizontalAlignRight": "\uf0620", 2675 | "formatIndentDecrease": "\uf0275", 2676 | "formatIndentIncrease": "\uf0276", 2677 | "formatItalic": "\uf0277", 2678 | "formatLetterCase": "\uf0B34", 2679 | "formatLetterCaseLower": "\uf0B35", 2680 | "formatLetterCaseUpper": "\uf0B36", 2681 | "formatLetterEndsWith": "\uf0FB8", 2682 | "formatLetterMatches": "\uf0FB9", 2683 | "formatLetterStartsWith": "\uf0FBA", 2684 | "formatLineSpacing": "\uf0278", 2685 | "formatLineStyle": "\uf05C8", 2686 | "formatLineWeight": "\uf05C9", 2687 | "formatListBulleted": "\uf0279", 2688 | "formatListBulletedSquare": "\uf0DD0", 2689 | "formatListBulletedTriangle": "\uf0EB2", 2690 | "formatListBulletedType": "\uf027A", 2691 | "formatListCheckbox": "\uf096A", 2692 | "formatListChecks": "\uf0756", 2693 | "formatListNumbered": "\uf027B", 2694 | "formatListNumberedRtl": "\uf0D0D", 2695 | "formatListText": "\uf126F", 2696 | "formatOverline": "\uf0EB3", 2697 | "formatPageBreak": "\uf06D7", 2698 | "formatPaint": "\uf027C", 2699 | "formatParagraph": "\uf027D", 2700 | "formatPilcrow": "\uf06D8", 2701 | "formatQuoteClose": "\uf027E", 2702 | "formatQuoteCloseOutline": "\uf11A8", 2703 | "formatQuoteOpen": "\uf0757", 2704 | "formatQuoteOpenOutline": "\uf11A7", 2705 | "formatRotate-90": "\uf06AA", 2706 | "formatSection": "\uf069F", 2707 | "formatSize": "\uf027F", 2708 | "formatStrikethrough": "\uf0280", 2709 | "formatStrikethroughVariant": "\uf0281", 2710 | "formatSubscript": "\uf0282", 2711 | "formatSuperscript": "\uf0283", 2712 | "formatText": "\uf0284", 2713 | "formatTextRotationAngleDown": "\uf0FBB", 2714 | "formatTextRotationAngleUp": "\uf0FBC", 2715 | "formatTextRotationDown": "\uf0D73", 2716 | "formatTextRotationDownVertical": "\uf0FBD", 2717 | "formatTextRotationNone": "\uf0D74", 2718 | "formatTextRotationUp": "\uf0FBE", 2719 | "formatTextRotationVertical": "\uf0FBF", 2720 | "formatTextVariant": "\uf0E32", 2721 | "formatTextVariantOutline": "\uf150F", 2722 | "formatTextWrappingClip": "\uf0D0E", 2723 | "formatTextWrappingOverflow": "\uf0D0F", 2724 | "formatTextWrappingWrap": "\uf0D10", 2725 | "formatTextbox": "\uf0D11", 2726 | "formatTextdirectionLToR": "\uf0285", 2727 | "formatTextdirectionRToL": "\uf0286", 2728 | "formatTitle": "\uf05F4", 2729 | "formatUnderline": "\uf0287", 2730 | "formatVerticalAlignBottom": "\uf0621", 2731 | "formatVerticalAlignCenter": "\uf0622", 2732 | "formatVerticalAlignTop": "\uf0623", 2733 | "formatWrapInline": "\uf0288", 2734 | "formatWrapSquare": "\uf0289", 2735 | "formatWrapTight": "\uf028A", 2736 | "formatWrapTopBottom": "\uf028B", 2737 | "forum": "\uf028C", 2738 | "forumOutline": "\uf0822", 2739 | "forward": "\uf028D", 2740 | "forwardburger": "\uf0D75", 2741 | "fountain": "\uf096B", 2742 | "fountainPen": "\uf0D12", 2743 | "fountainPenTip": "\uf0D13", 2744 | "freebsd": "\uf08E0", 2745 | "frequentlyAskedQuestions": "\uf0EB4", 2746 | "fridge": "\uf0290", 2747 | "fridgeAlert": "\uf11B1", 2748 | "fridgeAlertOutline": "\uf11B2", 2749 | "fridgeBottom": "\uf0292", 2750 | "fridgeIndustrial": "\uf15EE", 2751 | "fridgeIndustrialAlert": "\uf15EF", 2752 | "fridgeIndustrialAlertOutline": "\uf15F0", 2753 | "fridgeIndustrialOff": "\uf15F1", 2754 | "fridgeIndustrialOffOutline": "\uf15F2", 2755 | "fridgeIndustrialOutline": "\uf15F3", 2756 | "fridgeOff": "\uf11AF", 2757 | "fridgeOffOutline": "\uf11B0", 2758 | "fridgeOutline": "\uf028F", 2759 | "fridgeTop": "\uf0291", 2760 | "fridgeVariant": "\uf15F4", 2761 | "fridgeVariantAlert": "\uf15F5", 2762 | "fridgeVariantAlertOutline": "\uf15F6", 2763 | "fridgeVariantOff": "\uf15F7", 2764 | "fridgeVariantOffOutline": "\uf15F8", 2765 | "fridgeVariantOutline": "\uf15F9", 2766 | "fruitCherries": "\uf1042", 2767 | "fruitCherriesOff": "\uf13F8", 2768 | "fruitCitrus": "\uf1043", 2769 | "fruitCitrusOff": "\uf13F9", 2770 | "fruitGrapes": "\uf1044", 2771 | "fruitGrapesOutline": "\uf1045", 2772 | "fruitPineapple": "\uf1046", 2773 | "fruitWatermelon": "\uf1047", 2774 | "fuel": "\uf07CA", 2775 | "fullscreen": "\uf0293", 2776 | "fullscreenExit": "\uf0294", 2777 | "function": "\uf0295", 2778 | "functionVariant": "\uf0871", 2779 | "furiganaHorizontal": "\uf1081", 2780 | "furiganaVertical": "\uf1082", 2781 | "fuse": "\uf0C85", 2782 | "fuseAlert": "\uf142D", 2783 | "fuseBlade": "\uf0C86", 2784 | "fuseOff": "\uf142C", 2785 | "gamepad": "\uf0296", 2786 | "gamepadCircle": "\uf0E33", 2787 | "gamepadCircleDown": "\uf0E34", 2788 | "gamepadCircleLeft": "\uf0E35", 2789 | "gamepadCircleOutline": "\uf0E36", 2790 | "gamepadCircleRight": "\uf0E37", 2791 | "gamepadCircleUp": "\uf0E38", 2792 | "gamepadDown": "\uf0E39", 2793 | "gamepadLeft": "\uf0E3A", 2794 | "gamepadRight": "\uf0E3B", 2795 | "gamepadRound": "\uf0E3C", 2796 | "gamepadRoundDown": "\uf0E3D", 2797 | "gamepadRoundLeft": "\uf0E3E", 2798 | "gamepadRoundOutline": "\uf0E3F", 2799 | "gamepadRoundRight": "\uf0E40", 2800 | "gamepadRoundUp": "\uf0E41", 2801 | "gamepadSquare": "\uf0EB5", 2802 | "gamepadSquareOutline": "\uf0EB6", 2803 | "gamepadUp": "\uf0E42", 2804 | "gamepadVariant": "\uf0297", 2805 | "gamepadVariantOutline": "\uf0EB7", 2806 | "gamma": "\uf10EE", 2807 | "gantryCrane": "\uf0DD1", 2808 | "garage": "\uf06D9", 2809 | "garageAlert": "\uf0872", 2810 | "garageAlertVariant": "\uf12D5", 2811 | "garageOpen": "\uf06DA", 2812 | "garageOpenVariant": "\uf12D4", 2813 | "garageVariant": "\uf12D3", 2814 | "gasCylinder": "\uf0647", 2815 | "gasStation": "\uf0298", 2816 | "gasStationOff": "\uf1409", 2817 | "gasStationOffOutline": "\uf140A", 2818 | "gasStationOutline": "\uf0EB8", 2819 | "gate": "\uf0299", 2820 | "gateAnd": "\uf08E1", 2821 | "gateArrowRight": "\uf1169", 2822 | "gateNand": "\uf08E2", 2823 | "gateNor": "\uf08E3", 2824 | "gateNot": "\uf08E4", 2825 | "gateOpen": "\uf116A", 2826 | "gateOr": "\uf08E5", 2827 | "gateXnor": "\uf08E6", 2828 | "gateXor": "\uf08E7", 2829 | "gatsby": "\uf0E43", 2830 | "gauge": "\uf029A", 2831 | "gaugeEmpty": "\uf0873", 2832 | "gaugeFull": "\uf0874", 2833 | "gaugeLow": "\uf0875", 2834 | "gavel": "\uf029B", 2835 | "genderFemale": "\uf029C", 2836 | "genderMale": "\uf029D", 2837 | "genderMaleFemale": "\uf029E", 2838 | "genderMaleFemaleVariant": "\uf113F", 2839 | "genderNonBinary": "\uf1140", 2840 | "genderTransgender": "\uf029F", 2841 | "gentoo": "\uf08E8", 2842 | "gesture": "\uf07CB", 2843 | "gestureDoubleTap": "\uf073C", 2844 | "gesturePinch": "\uf0ABD", 2845 | "gestureSpread": "\uf0ABE", 2846 | "gestureSwipe": "\uf0D76", 2847 | "gestureSwipeDown": "\uf073D", 2848 | "gestureSwipeHorizontal": "\uf0ABF", 2849 | "gestureSwipeLeft": "\uf073E", 2850 | "gestureSwipeRight": "\uf073F", 2851 | "gestureSwipeUp": "\uf0740", 2852 | "gestureSwipeVertical": "\uf0AC0", 2853 | "gestureTap": "\uf0741", 2854 | "gestureTapBox": "\uf12A9", 2855 | "gestureTapButton": "\uf12A8", 2856 | "gestureTapHold": "\uf0D77", 2857 | "gestureTwoDoubleTap": "\uf0742", 2858 | "gestureTwoTap": "\uf0743", 2859 | "ghost": "\uf02A0", 2860 | "ghostOff": "\uf09F5", 2861 | "ghostOffOutline": "\uf165C", 2862 | "ghostOutline": "\uf165D", 2863 | "gif": "\uf0D78", 2864 | "gift": "\uf0E44", 2865 | "giftOff": "\uf16EF", 2866 | "giftOffOutline": "\uf16F0", 2867 | "giftOpen": "\uf16F1", 2868 | "giftOpenOutline": "\uf16F2", 2869 | "giftOutline": "\uf02A1", 2870 | "git": "\uf02A2", 2871 | "github": "\uf02A4", 2872 | "gitlab": "\uf0BA0", 2873 | "glassCocktail": "\uf0356", 2874 | "glassCocktailOff": "\uf15E6", 2875 | "glassFlute": "\uf02A5", 2876 | "glassMug": "\uf02A6", 2877 | "glassMugOff": "\uf15E7", 2878 | "glassMugVariant": "\uf1116", 2879 | "glassMugVariantOff": "\uf15E8", 2880 | "glassPintOutline": "\uf130D", 2881 | "glassStange": "\uf02A7", 2882 | "glassTulip": "\uf02A8", 2883 | "glassWine": "\uf0876", 2884 | "glasses": "\uf02AA", 2885 | "globeLight": "\uf12D7", 2886 | "globeModel": "\uf08E9", 2887 | "gmail": "\uf02AB", 2888 | "gnome": "\uf02AC", 2889 | "goKart": "\uf0D79", 2890 | "goKartTrack": "\uf0D7A", 2891 | "gog": "\uf0BA1", 2892 | "gold": "\uf124F", 2893 | "golf": "\uf0823", 2894 | "golfCart": "\uf11A4", 2895 | "golfTee": "\uf1083", 2896 | "gondola": "\uf0686", 2897 | "goodreads": "\uf0D7B", 2898 | "google": "\uf02AD", 2899 | "googleAds": "\uf0C87", 2900 | "googleAnalytics": "\uf07CC", 2901 | "googleAssistant": "\uf07CD", 2902 | "googleCardboard": "\uf02AE", 2903 | "googleChrome": "\uf02AF", 2904 | "googleCircles": "\uf02B0", 2905 | "googleCirclesCommunities": "\uf02B1", 2906 | "googleCirclesExtended": "\uf02B2", 2907 | "googleCirclesGroup": "\uf02B3", 2908 | "googleClassroom": "\uf02C0", 2909 | "googleCloud": "\uf11F6", 2910 | "googleController": "\uf02B4", 2911 | "googleControllerOff": "\uf02B5", 2912 | "googleDownasaur": "\uf1362", 2913 | "googleDrive": "\uf02B6", 2914 | "googleEarth": "\uf02B7", 2915 | "googleFit": "\uf096C", 2916 | "googleGlass": "\uf02B8", 2917 | "googleHangouts": "\uf02C9", 2918 | "googleHome": "\uf0824", 2919 | "googleKeep": "\uf06DC", 2920 | "googleLens": "\uf09F6", 2921 | "googleMaps": "\uf05F5", 2922 | "googleMyBusiness": "\uf1048", 2923 | "googleNearby": "\uf02B9", 2924 | "googlePhotos": "\uf06DD", 2925 | "googlePlay": "\uf02BC", 2926 | "googlePlus": "\uf02BD", 2927 | "googlePodcast": "\uf0EB9", 2928 | "googleSpreadsheet": "\uf09F7", 2929 | "googleStreetView": "\uf0C88", 2930 | "googleTranslate": "\uf02BF", 2931 | "gradient": "\uf06A0", 2932 | "grain": "\uf0D7C", 2933 | "graph": "\uf1049", 2934 | "graphOutline": "\uf104A", 2935 | "graphql": "\uf0877", 2936 | "grass": "\uf1510", 2937 | "graveStone": "\uf0BA2", 2938 | "greasePencil": "\uf0648", 2939 | "greaterThan": "\uf096D", 2940 | "greaterThanOrEqual": "\uf096E", 2941 | "grid": "\uf02C1", 2942 | "gridLarge": "\uf0758", 2943 | "gridOff": "\uf02C2", 2944 | "grill": "\uf0E45", 2945 | "grillOutline": "\uf118A", 2946 | "group": "\uf02C3", 2947 | "guitarAcoustic": "\uf0771", 2948 | "guitarElectric": "\uf02C4", 2949 | "guitarPick": "\uf02C5", 2950 | "guitarPickOutline": "\uf02C6", 2951 | "guyFawkesMask": "\uf0825", 2952 | "hail": "\uf0AC1", 2953 | "hairDryer": "\uf10EF", 2954 | "hairDryerOutline": "\uf10F0", 2955 | "halloween": "\uf0BA3", 2956 | "hamburger": "\uf0685", 2957 | "hammer": "\uf08EA", 2958 | "hammerScrewdriver": "\uf1322", 2959 | "hammerWrench": "\uf1323", 2960 | "hand": "\uf0A4F", 2961 | "handHeart": "\uf10F1", 2962 | "handHeartOutline": "\uf157E", 2963 | "handLeft": "\uf0E46", 2964 | "handOkay": "\uf0A50", 2965 | "handPeace": "\uf0A51", 2966 | "handPeaceVariant": "\uf0A52", 2967 | "handPointingDown": "\uf0A53", 2968 | "handPointingLeft": "\uf0A54", 2969 | "handPointingRight": "\uf02C7", 2970 | "handPointingUp": "\uf0A55", 2971 | "handRight": "\uf0E47", 2972 | "handSaw": "\uf0E48", 2973 | "handWash": "\uf157F", 2974 | "handWashOutline": "\uf1580", 2975 | "handWater": "\uf139F", 2976 | "handball": "\uf0F53", 2977 | "handcuffs": "\uf113E", 2978 | "handshake": "\uf1218", 2979 | "handshakeOutline": "\uf15A1", 2980 | "hanger": "\uf02C8", 2981 | "hardHat": "\uf096F", 2982 | "harddisk": "\uf02CA", 2983 | "harddiskPlus": "\uf104B", 2984 | "harddiskRemove": "\uf104C", 2985 | "hatFedora": "\uf0BA4", 2986 | "hazardLights": "\uf0C89", 2987 | "hdr": "\uf0D7D", 2988 | "hdrOff": "\uf0D7E", 2989 | "head": "\uf135E", 2990 | "headAlert": "\uf1338", 2991 | "headAlertOutline": "\uf1339", 2992 | "headCheck": "\uf133A", 2993 | "headCheckOutline": "\uf133B", 2994 | "headCog": "\uf133C", 2995 | "headCogOutline": "\uf133D", 2996 | "headDotsHorizontal": "\uf133E", 2997 | "headDotsHorizontalOutline": "\uf133F", 2998 | "headFlash": "\uf1340", 2999 | "headFlashOutline": "\uf1341", 3000 | "headHeart": "\uf1342", 3001 | "headHeartOutline": "\uf1343", 3002 | "headLightbulb": "\uf1344", 3003 | "headLightbulbOutline": "\uf1345", 3004 | "headMinus": "\uf1346", 3005 | "headMinusOutline": "\uf1347", 3006 | "headOutline": "\uf135F", 3007 | "headPlus": "\uf1348", 3008 | "headPlusOutline": "\uf1349", 3009 | "headQuestion": "\uf134A", 3010 | "headQuestionOutline": "\uf134B", 3011 | "headRemove": "\uf134C", 3012 | "headRemoveOutline": "\uf134D", 3013 | "headSnowflake": "\uf134E", 3014 | "headSnowflakeOutline": "\uf134F", 3015 | "headSync": "\uf1350", 3016 | "headSyncOutline": "\uf1351", 3017 | "headphones": "\uf02CB", 3018 | "headphonesBluetooth": "\uf0970", 3019 | "headphonesBox": "\uf02CC", 3020 | "headphonesOff": "\uf07CE", 3021 | "headphonesSettings": "\uf02CD", 3022 | "headset": "\uf02CE", 3023 | "headsetDock": "\uf02CF", 3024 | "headsetOff": "\uf02D0", 3025 | "heart": "\uf02D1", 3026 | "heartBox": "\uf02D2", 3027 | "heartBoxOutline": "\uf02D3", 3028 | "heartBroken": "\uf02D4", 3029 | "heartBrokenOutline": "\uf0D14", 3030 | "heartCircle": "\uf0971", 3031 | "heartCircleOutline": "\uf0972", 3032 | "heartCog": "\uf1663", 3033 | "heartCogOutline": "\uf1664", 3034 | "heartFlash": "\uf0EF9", 3035 | "heartHalf": "\uf06DF", 3036 | "heartHalfFull": "\uf06DE", 3037 | "heartHalfOutline": "\uf06E0", 3038 | "heartMinus": "\uf142F", 3039 | "heartMinusOutline": "\uf1432", 3040 | "heartMultiple": "\uf0A56", 3041 | "heartMultipleOutline": "\uf0A57", 3042 | "heartOff": "\uf0759", 3043 | "heartOffOutline": "\uf1434", 3044 | "heartOutline": "\uf02D5", 3045 | "heartPlus": "\uf142E", 3046 | "heartPlusOutline": "\uf1431", 3047 | "heartPulse": "\uf05F6", 3048 | "heartRemove": "\uf1430", 3049 | "heartRemoveOutline": "\uf1433", 3050 | "heartSettings": "\uf1665", 3051 | "heartSettingsOutline": "\uf1666", 3052 | "helicopter": "\uf0AC2", 3053 | "help": "\uf02D6", 3054 | "helpBox": "\uf078B", 3055 | "helpCircle": "\uf02D7", 3056 | "helpCircleOutline": "\uf0625", 3057 | "helpNetwork": "\uf06F5", 3058 | "helpNetworkOutline": "\uf0C8A", 3059 | "helpRhombus": "\uf0BA5", 3060 | "helpRhombusOutline": "\uf0BA6", 3061 | "hexadecimal": "\uf12A7", 3062 | "hexagon": "\uf02D8", 3063 | "hexagonMultiple": "\uf06E1", 3064 | "hexagonMultipleOutline": "\uf10F2", 3065 | "hexagonOutline": "\uf02D9", 3066 | "hexagonSlice-1": "\uf0AC3", 3067 | "hexagonSlice-2": "\uf0AC4", 3068 | "hexagonSlice-3": "\uf0AC5", 3069 | "hexagonSlice-4": "\uf0AC6", 3070 | "hexagonSlice-5": "\uf0AC7", 3071 | "hexagonSlice-6": "\uf0AC8", 3072 | "hexagram": "\uf0AC9", 3073 | "hexagramOutline": "\uf0ACA", 3074 | "highDefinition": "\uf07CF", 3075 | "highDefinitionBox": "\uf0878", 3076 | "highway": "\uf05F7", 3077 | "hiking": "\uf0D7F", 3078 | "hinduism": "\uf0973", 3079 | "history": "\uf02DA", 3080 | "hockeyPuck": "\uf0879", 3081 | "hockeySticks": "\uf087A", 3082 | "hololens": "\uf02DB", 3083 | "home": "\uf02DC", 3084 | "homeAccount": "\uf0826", 3085 | "homeAlert": "\uf087B", 3086 | "homeAlertOutline": "\uf15D0", 3087 | "homeAnalytics": "\uf0EBA", 3088 | "homeAssistant": "\uf07D0", 3089 | "homeAutomation": "\uf07D1", 3090 | "homeCircle": "\uf07D2", 3091 | "homeCircleOutline": "\uf104D", 3092 | "homeCity": "\uf0D15", 3093 | "homeCityOutline": "\uf0D16", 3094 | "homeCurrencyUsd": "\uf08AF", 3095 | "homeEdit": "\uf1159", 3096 | "homeEditOutline": "\uf115A", 3097 | "homeExportOutline": "\uf0F9B", 3098 | "homeFlood": "\uf0EFA", 3099 | "homeFloor-0": "\uf0DD2", 3100 | "homeFloor-1": "\uf0D80", 3101 | "homeFloor-2": "\uf0D81", 3102 | "homeFloor-3": "\uf0D82", 3103 | "homeFloorA": "\uf0D83", 3104 | "homeFloorB": "\uf0D84", 3105 | "homeFloorG": "\uf0D85", 3106 | "homeFloorL": "\uf0D86", 3107 | "homeFloorNegative-1": "\uf0DD3", 3108 | "homeGroup": "\uf0DD4", 3109 | "homeHeart": "\uf0827", 3110 | "homeImportOutline": "\uf0F9C", 3111 | "homeLightbulb": "\uf1251", 3112 | "homeLightbulbOutline": "\uf1252", 3113 | "homeLock": "\uf08EB", 3114 | "homeLockOpen": "\uf08EC", 3115 | "homeMapMarker": "\uf05F8", 3116 | "homeMinus": "\uf0974", 3117 | "homeMinusOutline": "\uf13D5", 3118 | "homeModern": "\uf02DD", 3119 | "homeOutline": "\uf06A1", 3120 | "homePlus": "\uf0975", 3121 | "homePlusOutline": "\uf13D6", 3122 | "homeRemove": "\uf1247", 3123 | "homeRemoveOutline": "\uf13D7", 3124 | "homeRoof": "\uf112B", 3125 | "homeSearch": "\uf13B0", 3126 | "homeSearchOutline": "\uf13B1", 3127 | "homeThermometer": "\uf0F54", 3128 | "homeThermometerOutline": "\uf0F55", 3129 | "homeVariant": "\uf02DE", 3130 | "homeVariantOutline": "\uf0BA7", 3131 | "hook": "\uf06E2", 3132 | "hookOff": "\uf06E3", 3133 | "hops": "\uf02DF", 3134 | "horizontalRotateClockwise": "\uf10F3", 3135 | "horizontalRotateCounterclockwise": "\uf10F4", 3136 | "horse": "\uf15BF", 3137 | "horseHuman": "\uf15C0", 3138 | "horseVariant": "\uf15C1", 3139 | "horseshoe": "\uf0A58", 3140 | "hospital": "\uf0FF6", 3141 | "hospitalBox": "\uf02E0", 3142 | "hospitalBoxOutline": "\uf0FF7", 3143 | "hospitalBuilding": "\uf02E1", 3144 | "hospitalMarker": "\uf02E2", 3145 | "hotTub": "\uf0828", 3146 | "hours-24": "\uf1478", 3147 | "hubspot": "\uf0D17", 3148 | "hulu": "\uf0829", 3149 | "human": "\uf02E6", 3150 | "humanBabyChangingTable": "\uf138B", 3151 | "humanCane": "\uf1581", 3152 | "humanCapacityDecrease": "\uf159B", 3153 | "humanCapacityIncrease": "\uf159C", 3154 | "humanChild": "\uf02E7", 3155 | "humanEdit": "\uf14E8", 3156 | "humanFemale": "\uf0649", 3157 | "humanFemaleBoy": "\uf0A59", 3158 | "humanFemaleDance": "\uf15C9", 3159 | "humanFemaleFemale": "\uf0A5A", 3160 | "humanFemaleGirl": "\uf0A5B", 3161 | "humanGreeting": "\uf064A", 3162 | "humanGreetingProximity": "\uf159D", 3163 | "humanHandsdown": "\uf064B", 3164 | "humanHandsup": "\uf064C", 3165 | "humanMale": "\uf064D", 3166 | "humanMaleBoy": "\uf0A5C", 3167 | "humanMaleChild": "\uf138C", 3168 | "humanMaleFemale": "\uf02E8", 3169 | "humanMaleGirl": "\uf0A5D", 3170 | "humanMaleHeight": "\uf0EFB", 3171 | "humanMaleHeightVariant": "\uf0EFC", 3172 | "humanMaleMale": "\uf0A5E", 3173 | "humanPregnant": "\uf05CF", 3174 | "humanQueue": "\uf1571", 3175 | "humanScooter": "\uf11E9", 3176 | "humanWheelchair": "\uf138D", 3177 | "humbleBundle": "\uf0744", 3178 | "hvac": "\uf1352", 3179 | "hvacOff": "\uf159E", 3180 | "hydraulicOilLevel": "\uf1324", 3181 | "hydraulicOilTemperature": "\uf1325", 3182 | "hydroPower": "\uf12E5", 3183 | "iceCream": "\uf082A", 3184 | "iceCreamOff": "\uf0E52", 3185 | "icePop": "\uf0EFD", 3186 | "idCard": "\uf0FC0", 3187 | "identifier": "\uf0EFE", 3188 | "ideogramCjk": "\uf1331", 3189 | "ideogramCjkVariant": "\uf1332", 3190 | "iframe": "\uf0C8B", 3191 | "iframeArray": "\uf10F5", 3192 | "iframeArrayOutline": "\uf10F6", 3193 | "iframeBraces": "\uf10F7", 3194 | "iframeBracesOutline": "\uf10F8", 3195 | "iframeOutline": "\uf0C8C", 3196 | "iframeParentheses": "\uf10F9", 3197 | "iframeParenthesesOutline": "\uf10FA", 3198 | "iframeVariable": "\uf10FB", 3199 | "iframeVariableOutline": "\uf10FC", 3200 | "image": "\uf02E9", 3201 | "imageAlbum": "\uf02EA", 3202 | "imageArea": "\uf02EB", 3203 | "imageAreaClose": "\uf02EC", 3204 | "imageAutoAdjust": "\uf0FC1", 3205 | "imageBroken": "\uf02ED", 3206 | "imageBrokenVariant": "\uf02EE", 3207 | "imageEdit": "\uf11E3", 3208 | "imageEditOutline": "\uf11E4", 3209 | "imageFilterBlackWhite": "\uf02F0", 3210 | "imageFilterCenterFocus": "\uf02F1", 3211 | "imageFilterCenterFocusStrong": "\uf0EFF", 3212 | "imageFilterCenterFocusStrongOutline": "\uf0F00", 3213 | "imageFilterCenterFocusWeak": "\uf02F2", 3214 | "imageFilterDrama": "\uf02F3", 3215 | "imageFilterFrames": "\uf02F4", 3216 | "imageFilterHdr": "\uf02F5", 3217 | "imageFilterNone": "\uf02F6", 3218 | "imageFilterTiltShift": "\uf02F7", 3219 | "imageFilterVintage": "\uf02F8", 3220 | "imageFrame": "\uf0E49", 3221 | "imageMinus": "\uf1419", 3222 | "imageMove": "\uf09F8", 3223 | "imageMultiple": "\uf02F9", 3224 | "imageMultipleOutline": "\uf02EF", 3225 | "imageOff": "\uf082B", 3226 | "imageOffOutline": "\uf11D1", 3227 | "imageOutline": "\uf0976", 3228 | "imagePlus": "\uf087C", 3229 | "imageRemove": "\uf1418", 3230 | "imageSearch": "\uf0977", 3231 | "imageSearchOutline": "\uf0978", 3232 | "imageSizeSelectActual": "\uf0C8D", 3233 | "imageSizeSelectLarge": "\uf0C8E", 3234 | "imageSizeSelectSmall": "\uf0C8F", 3235 | "imageText": "\uf160D", 3236 | "import": "\uf02FA", 3237 | "inbox": "\uf0687", 3238 | "inboxArrowDown": "\uf02FB", 3239 | "inboxArrowDownOutline": "\uf1270", 3240 | "inboxArrowUp": "\uf03D1", 3241 | "inboxArrowUpOutline": "\uf1271", 3242 | "inboxFull": "\uf1272", 3243 | "inboxFullOutline": "\uf1273", 3244 | "inboxMultiple": "\uf08B0", 3245 | "inboxMultipleOutline": "\uf0BA8", 3246 | "inboxOutline": "\uf1274", 3247 | "inboxRemove": "\uf159F", 3248 | "inboxRemoveOutline": "\uf15A0", 3249 | "incognito": "\uf05F9", 3250 | "incognitoCircle": "\uf1421", 3251 | "incognitoCircleOff": "\uf1422", 3252 | "incognitoOff": "\uf0075", 3253 | "infinity": "\uf06E4", 3254 | "information": "\uf02FC", 3255 | "informationOutline": "\uf02FD", 3256 | "informationVariant": "\uf064E", 3257 | "instagram": "\uf02FE", 3258 | "instrumentTriangle": "\uf104E", 3259 | "invertColors": "\uf0301", 3260 | "invertColorsOff": "\uf0E4A", 3261 | "iobroker": "\uf12E8", 3262 | "ip": "\uf0A5F", 3263 | "ipNetwork": "\uf0A60", 3264 | "ipNetworkOutline": "\uf0C90", 3265 | "ipod": "\uf0C91", 3266 | "islam": "\uf0979", 3267 | "island": "\uf104F", 3268 | "ivBag": "\uf10B9", 3269 | "jabber": "\uf0DD5", 3270 | "jeepney": "\uf0302", 3271 | "jellyfish": "\uf0F01", 3272 | "jellyfishOutline": "\uf0F02", 3273 | "jira": "\uf0303", 3274 | "jquery": "\uf087D", 3275 | "jsfiddle": "\uf0304", 3276 | "judaism": "\uf097A", 3277 | "jumpRope": "\uf12FF", 3278 | "kabaddi": "\uf0D87", 3279 | "kangaroo": "\uf1558", 3280 | "karate": "\uf082C", 3281 | "keg": "\uf0305", 3282 | "kettle": "\uf05FA", 3283 | "kettleAlert": "\uf1317", 3284 | "kettleAlertOutline": "\uf1318", 3285 | "kettleOff": "\uf131B", 3286 | "kettleOffOutline": "\uf131C", 3287 | "kettleOutline": "\uf0F56", 3288 | "kettlePourOver": "\uf173C", 3289 | "kettleSteam": "\uf1319", 3290 | "kettleSteamOutline": "\uf131A", 3291 | "kettlebell": "\uf1300", 3292 | "key": "\uf0306", 3293 | "keyArrowRight": "\uf1312", 3294 | "keyChain": "\uf1574", 3295 | "keyChainVariant": "\uf1575", 3296 | "keyChange": "\uf0307", 3297 | "keyLink": "\uf119F", 3298 | "keyMinus": "\uf0308", 3299 | "keyOutline": "\uf0DD6", 3300 | "keyPlus": "\uf0309", 3301 | "keyRemove": "\uf030A", 3302 | "keyStar": "\uf119E", 3303 | "keyVariant": "\uf030B", 3304 | "keyWireless": "\uf0FC2", 3305 | "keyboard": "\uf030C", 3306 | "keyboardBackspace": "\uf030D", 3307 | "keyboardCaps": "\uf030E", 3308 | "keyboardClose": "\uf030F", 3309 | "keyboardEsc": "\uf12B7", 3310 | "keyboardF1": "\uf12AB", 3311 | "keyboardF10": "\uf12B4", 3312 | "keyboardF11": "\uf12B5", 3313 | "keyboardF12": "\uf12B6", 3314 | "keyboardF2": "\uf12AC", 3315 | "keyboardF3": "\uf12AD", 3316 | "keyboardF4": "\uf12AE", 3317 | "keyboardF5": "\uf12AF", 3318 | "keyboardF6": "\uf12B0", 3319 | "keyboardF7": "\uf12B1", 3320 | "keyboardF8": "\uf12B2", 3321 | "keyboardF9": "\uf12B3", 3322 | "keyboardOff": "\uf0310", 3323 | "keyboardOffOutline": "\uf0E4B", 3324 | "keyboardOutline": "\uf097B", 3325 | "keyboardReturn": "\uf0311", 3326 | "keyboardSettings": "\uf09F9", 3327 | "keyboardSettingsOutline": "\uf09FA", 3328 | "keyboardSpace": "\uf1050", 3329 | "keyboardTab": "\uf0312", 3330 | "keyboardVariant": "\uf0313", 3331 | "khanda": "\uf10FD", 3332 | "kickstarter": "\uf0745", 3333 | "klingon": "\uf135B", 3334 | "knife": "\uf09FB", 3335 | "knifeMilitary": "\uf09FC", 3336 | "koala": "\uf173F", 3337 | "kodi": "\uf0314", 3338 | "kubernetes": "\uf10FE", 3339 | "label": "\uf0315", 3340 | "labelMultiple": "\uf1375", 3341 | "labelMultipleOutline": "\uf1376", 3342 | "labelOff": "\uf0ACB", 3343 | "labelOffOutline": "\uf0ACC", 3344 | "labelOutline": "\uf0316", 3345 | "labelPercent": "\uf12EA", 3346 | "labelPercentOutline": "\uf12EB", 3347 | "labelVariant": "\uf0ACD", 3348 | "labelVariantOutline": "\uf0ACE", 3349 | "ladder": "\uf15A2", 3350 | "ladybug": "\uf082D", 3351 | "lambda": "\uf0627", 3352 | "lamp": "\uf06B5", 3353 | "lamps": "\uf1576", 3354 | "lan": "\uf0317", 3355 | "lanCheck": "\uf12AA", 3356 | "lanConnect": "\uf0318", 3357 | "lanDisconnect": "\uf0319", 3358 | "lanPending": "\uf031A", 3359 | "languageC": "\uf0671", 3360 | "languageCpp": "\uf0672", 3361 | "languageCsharp": "\uf031B", 3362 | "languageCss3": "\uf031C", 3363 | "languageFortran": "\uf121A", 3364 | "languageGo": "\uf07D3", 3365 | "languageHaskell": "\uf0C92", 3366 | "languageHtml5": "\uf031D", 3367 | "languageJava": "\uf0B37", 3368 | "languageJavascript": "\uf031E", 3369 | "languageKotlin": "\uf1219", 3370 | "languageLua": "\uf08B1", 3371 | "languageMarkdown": "\uf0354", 3372 | "languageMarkdownOutline": "\uf0F5B", 3373 | "languagePhp": "\uf031F", 3374 | "languagePython": "\uf0320", 3375 | "languageR": "\uf07D4", 3376 | "languageRuby": "\uf0D2D", 3377 | "languageRubyOnRails": "\uf0ACF", 3378 | "languageRust": "\uf1617", 3379 | "languageSwift": "\uf06E5", 3380 | "languageTypescript": "\uf06E6", 3381 | "languageXaml": "\uf0673", 3382 | "laptop": "\uf0322", 3383 | "laptopChromebook": "\uf0323", 3384 | "laptopMac": "\uf0324", 3385 | "laptopOff": "\uf06E7", 3386 | "laptopWindows": "\uf0325", 3387 | "laravel": "\uf0AD0", 3388 | "laserPointer": "\uf1484", 3389 | "lasso": "\uf0F03", 3390 | "lastpass": "\uf0446", 3391 | "latitude": "\uf0F57", 3392 | "launch": "\uf0327", 3393 | "lavaLamp": "\uf07D5", 3394 | "layers": "\uf0328", 3395 | "layersMinus": "\uf0E4C", 3396 | "layersOff": "\uf0329", 3397 | "layersOffOutline": "\uf09FD", 3398 | "layersOutline": "\uf09FE", 3399 | "layersPlus": "\uf0E4D", 3400 | "layersRemove": "\uf0E4E", 3401 | "layersSearch": "\uf1206", 3402 | "layersSearchOutline": "\uf1207", 3403 | "layersTriple": "\uf0F58", 3404 | "layersTripleOutline": "\uf0F59", 3405 | "leadPencil": "\uf064F", 3406 | "leaf": "\uf032A", 3407 | "leafMaple": "\uf0C93", 3408 | "leafMapleOff": "\uf12DA", 3409 | "leafOff": "\uf12D9", 3410 | "leak": "\uf0DD7", 3411 | "leakOff": "\uf0DD8", 3412 | "ledOff": "\uf032B", 3413 | "ledOn": "\uf032C", 3414 | "ledOutline": "\uf032D", 3415 | "ledStrip": "\uf07D6", 3416 | "ledStripVariant": "\uf1051", 3417 | "ledVariantOff": "\uf032E", 3418 | "ledVariantOn": "\uf032F", 3419 | "ledVariantOutline": "\uf0330", 3420 | "leek": "\uf117D", 3421 | "lessThan": "\uf097C", 3422 | "lessThanOrEqual": "\uf097D", 3423 | "library": "\uf0331", 3424 | "libraryShelves": "\uf0BA9", 3425 | "license": "\uf0FC3", 3426 | "lifebuoy": "\uf087E", 3427 | "lightSwitch": "\uf097E", 3428 | "lightbulb": "\uf0335", 3429 | "lightbulbCfl": "\uf1208", 3430 | "lightbulbCflOff": "\uf1209", 3431 | "lightbulbCflSpiral": "\uf1275", 3432 | "lightbulbCflSpiralOff": "\uf12C3", 3433 | "lightbulbGroup": "\uf1253", 3434 | "lightbulbGroupOff": "\uf12CD", 3435 | "lightbulbGroupOffOutline": "\uf12CE", 3436 | "lightbulbGroupOutline": "\uf1254", 3437 | "lightbulbMultiple": "\uf1255", 3438 | "lightbulbMultipleOff": "\uf12CF", 3439 | "lightbulbMultipleOffOutline": "\uf12D0", 3440 | "lightbulbMultipleOutline": "\uf1256", 3441 | "lightbulbOff": "\uf0E4F", 3442 | "lightbulbOffOutline": "\uf0E50", 3443 | "lightbulbOn": "\uf06E8", 3444 | "lightbulbOnOutline": "\uf06E9", 3445 | "lightbulbOutline": "\uf0336", 3446 | "lighthouse": "\uf09FF", 3447 | "lighthouseOn": "\uf0A00", 3448 | "lightningBolt": "\uf140B", 3449 | "lightningBoltOutline": "\uf140C", 3450 | "lingerie": "\uf1476", 3451 | "link": "\uf0337", 3452 | "linkBox": "\uf0D1A", 3453 | "linkBoxOutline": "\uf0D1B", 3454 | "linkBoxVariant": "\uf0D1C", 3455 | "linkBoxVariantOutline": "\uf0D1D", 3456 | "linkLock": "\uf10BA", 3457 | "linkOff": "\uf0338", 3458 | "linkPlus": "\uf0C94", 3459 | "linkVariant": "\uf0339", 3460 | "linkVariantMinus": "\uf10FF", 3461 | "linkVariantOff": "\uf033A", 3462 | "linkVariantPlus": "\uf1100", 3463 | "linkVariantRemove": "\uf1101", 3464 | "linkedin": "\uf033B", 3465 | "linux": "\uf033D", 3466 | "linuxMint": "\uf08ED", 3467 | "lipstick": "\uf13B5", 3468 | "listStatus": "\uf15AB", 3469 | "litecoin": "\uf0A61", 3470 | "loading": "\uf0772", 3471 | "locationEnter": "\uf0FC4", 3472 | "locationExit": "\uf0FC5", 3473 | "lock": "\uf033E", 3474 | "lockAlert": "\uf08EE", 3475 | "lockAlertOutline": "\uf15D1", 3476 | "lockCheck": "\uf139A", 3477 | "lockCheckOutline": "\uf16A8", 3478 | "lockClock": "\uf097F", 3479 | "lockMinus": "\uf16A9", 3480 | "lockMinusOutline": "\uf16AA", 3481 | "lockOff": "\uf1671", 3482 | "lockOffOutline": "\uf1672", 3483 | "lockOpen": "\uf033F", 3484 | "lockOpenAlert": "\uf139B", 3485 | "lockOpenAlertOutline": "\uf15D2", 3486 | "lockOpenCheck": "\uf139C", 3487 | "lockOpenCheckOutline": "\uf16AB", 3488 | "lockOpenMinus": "\uf16AC", 3489 | "lockOpenMinusOutline": "\uf16AD", 3490 | "lockOpenOutline": "\uf0340", 3491 | "lockOpenPlus": "\uf16AE", 3492 | "lockOpenPlusOutline": "\uf16AF", 3493 | "lockOpenRemove": "\uf16B0", 3494 | "lockOpenRemoveOutline": "\uf16B1", 3495 | "lockOpenVariant": "\uf0FC6", 3496 | "lockOpenVariantOutline": "\uf0FC7", 3497 | "lockOutline": "\uf0341", 3498 | "lockPattern": "\uf06EA", 3499 | "lockPlus": "\uf05FB", 3500 | "lockPlusOutline": "\uf16B2", 3501 | "lockQuestion": "\uf08EF", 3502 | "lockRemove": "\uf16B3", 3503 | "lockRemoveOutline": "\uf16B4", 3504 | "lockReset": "\uf0773", 3505 | "lockSmart": "\uf08B2", 3506 | "locker": "\uf07D7", 3507 | "lockerMultiple": "\uf07D8", 3508 | "login": "\uf0342", 3509 | "loginVariant": "\uf05FC", 3510 | "logout": "\uf0343", 3511 | "logoutVariant": "\uf05FD", 3512 | "longitude": "\uf0F5A", 3513 | "looks": "\uf0344", 3514 | "lotion": "\uf1582", 3515 | "lotionOutline": "\uf1583", 3516 | "lotionPlus": "\uf1584", 3517 | "lotionPlusOutline": "\uf1585", 3518 | "loupe": "\uf0345", 3519 | "lumx": "\uf0346", 3520 | "lungs": "\uf1084", 3521 | "magnet": "\uf0347", 3522 | "magnetOn": "\uf0348", 3523 | "magnify": "\uf0349", 3524 | "magnifyClose": "\uf0980", 3525 | "magnifyMinus": "\uf034A", 3526 | "magnifyMinusCursor": "\uf0A62", 3527 | "magnifyMinusOutline": "\uf06EC", 3528 | "magnifyPlus": "\uf034B", 3529 | "magnifyPlusCursor": "\uf0A63", 3530 | "magnifyPlusOutline": "\uf06ED", 3531 | "magnifyRemoveCursor": "\uf120C", 3532 | "magnifyRemoveOutline": "\uf120D", 3533 | "magnifyScan": "\uf1276", 3534 | "mail": "\uf0EBB", 3535 | "mailbox": "\uf06EE", 3536 | "mailboxOpen": "\uf0D88", 3537 | "mailboxOpenOutline": "\uf0D89", 3538 | "mailboxOpenUp": "\uf0D8A", 3539 | "mailboxOpenUpOutline": "\uf0D8B", 3540 | "mailboxOutline": "\uf0D8C", 3541 | "mailboxUp": "\uf0D8D", 3542 | "mailboxUpOutline": "\uf0D8E", 3543 | "manjaro": "\uf160A", 3544 | "map": "\uf034D", 3545 | "mapCheck": "\uf0EBC", 3546 | "mapCheckOutline": "\uf0EBD", 3547 | "mapClock": "\uf0D1E", 3548 | "mapClockOutline": "\uf0D1F", 3549 | "mapLegend": "\uf0A01", 3550 | "mapMarker": "\uf034E", 3551 | "mapMarkerAlert": "\uf0F05", 3552 | "mapMarkerAlertOutline": "\uf0F06", 3553 | "mapMarkerCheck": "\uf0C95", 3554 | "mapMarkerCheckOutline": "\uf12FB", 3555 | "mapMarkerCircle": "\uf034F", 3556 | "mapMarkerDistance": "\uf08F0", 3557 | "mapMarkerDown": "\uf1102", 3558 | "mapMarkerLeft": "\uf12DB", 3559 | "mapMarkerLeftOutline": "\uf12DD", 3560 | "mapMarkerMinus": "\uf0650", 3561 | "mapMarkerMinusOutline": "\uf12F9", 3562 | "mapMarkerMultiple": "\uf0350", 3563 | "mapMarkerMultipleOutline": "\uf1277", 3564 | "mapMarkerOff": "\uf0351", 3565 | "mapMarkerOffOutline": "\uf12FD", 3566 | "mapMarkerOutline": "\uf07D9", 3567 | "mapMarkerPath": "\uf0D20", 3568 | "mapMarkerPlus": "\uf0651", 3569 | "mapMarkerPlusOutline": "\uf12F8", 3570 | "mapMarkerQuestion": "\uf0F07", 3571 | "mapMarkerQuestionOutline": "\uf0F08", 3572 | "mapMarkerRadius": "\uf0352", 3573 | "mapMarkerRadiusOutline": "\uf12FC", 3574 | "mapMarkerRemove": "\uf0F09", 3575 | "mapMarkerRemoveOutline": "\uf12FA", 3576 | "mapMarkerRemoveVariant": "\uf0F0A", 3577 | "mapMarkerRight": "\uf12DC", 3578 | "mapMarkerRightOutline": "\uf12DE", 3579 | "mapMarkerStar": "\uf1608", 3580 | "mapMarkerStarOutline": "\uf1609", 3581 | "mapMarkerUp": "\uf1103", 3582 | "mapMinus": "\uf0981", 3583 | "mapOutline": "\uf0982", 3584 | "mapPlus": "\uf0983", 3585 | "mapSearch": "\uf0984", 3586 | "mapSearchOutline": "\uf0985", 3587 | "mapbox": "\uf0BAA", 3588 | "margin": "\uf0353", 3589 | "marker": "\uf0652", 3590 | "markerCancel": "\uf0DD9", 3591 | "markerCheck": "\uf0355", 3592 | "mastodon": "\uf0AD1", 3593 | "materialDesign": "\uf0986", 3594 | "materialUi": "\uf0357", 3595 | "mathCompass": "\uf0358", 3596 | "mathCos": "\uf0C96", 3597 | "mathIntegral": "\uf0FC8", 3598 | "mathIntegralBox": "\uf0FC9", 3599 | "mathLog": "\uf1085", 3600 | "mathNorm": "\uf0FCA", 3601 | "mathNormBox": "\uf0FCB", 3602 | "mathSin": "\uf0C97", 3603 | "mathTan": "\uf0C98", 3604 | "matrix": "\uf0628", 3605 | "medal": "\uf0987", 3606 | "medalOutline": "\uf1326", 3607 | "medicalBag": "\uf06EF", 3608 | "meditation": "\uf117B", 3609 | "memory": "\uf035B", 3610 | "menu": "\uf035C", 3611 | "menuDown": "\uf035D", 3612 | "menuDownOutline": "\uf06B6", 3613 | "menuLeft": "\uf035E", 3614 | "menuLeftOutline": "\uf0A02", 3615 | "menuOpen": "\uf0BAB", 3616 | "menuRight": "\uf035F", 3617 | "menuRightOutline": "\uf0A03", 3618 | "menuSwap": "\uf0A64", 3619 | "menuSwapOutline": "\uf0A65", 3620 | "menuUp": "\uf0360", 3621 | "menuUpOutline": "\uf06B7", 3622 | "merge": "\uf0F5C", 3623 | "message": "\uf0361", 3624 | "messageAlert": "\uf0362", 3625 | "messageAlertOutline": "\uf0A04", 3626 | "messageArrowLeft": "\uf12F2", 3627 | "messageArrowLeftOutline": "\uf12F3", 3628 | "messageArrowRight": "\uf12F4", 3629 | "messageArrowRightOutline": "\uf12F5", 3630 | "messageBookmark": "\uf15AC", 3631 | "messageBookmarkOutline": "\uf15AD", 3632 | "messageBulleted": "\uf06A2", 3633 | "messageBulletedOff": "\uf06A3", 3634 | "messageCog": "\uf06F1", 3635 | "messageCogOutline": "\uf1172", 3636 | "messageDraw": "\uf0363", 3637 | "messageFlash": "\uf15A9", 3638 | "messageFlashOutline": "\uf15AA", 3639 | "messageImage": "\uf0364", 3640 | "messageImageOutline": "\uf116C", 3641 | "messageLock": "\uf0FCC", 3642 | "messageLockOutline": "\uf116D", 3643 | "messageMinus": "\uf116E", 3644 | "messageMinusOutline": "\uf116F", 3645 | "messageOff": "\uf164D", 3646 | "messageOffOutline": "\uf164E", 3647 | "messageOutline": "\uf0365", 3648 | "messagePlus": "\uf0653", 3649 | "messagePlusOutline": "\uf10BB", 3650 | "messageProcessing": "\uf0366", 3651 | "messageProcessingOutline": "\uf1170", 3652 | "messageQuestion": "\uf173A", 3653 | "messageQuestionOutline": "\uf173B", 3654 | "messageReply": "\uf0367", 3655 | "messageReplyOutline": "\uf173D", 3656 | "messageReplyText": "\uf0368", 3657 | "messageReplyTextOutline": "\uf173E", 3658 | "messageSettings": "\uf06F0", 3659 | "messageSettingsOutline": "\uf1171", 3660 | "messageText": "\uf0369", 3661 | "messageTextClock": "\uf1173", 3662 | "messageTextClockOutline": "\uf1174", 3663 | "messageTextLock": "\uf0FCD", 3664 | "messageTextLockOutline": "\uf1175", 3665 | "messageTextOutline": "\uf036A", 3666 | "messageVideo": "\uf036B", 3667 | "meteor": "\uf0629", 3668 | "metronome": "\uf07DA", 3669 | "metronomeTick": "\uf07DB", 3670 | "microSd": "\uf07DC", 3671 | "microphone": "\uf036C", 3672 | "microphoneMinus": "\uf08B3", 3673 | "microphoneOff": "\uf036D", 3674 | "microphoneOutline": "\uf036E", 3675 | "microphonePlus": "\uf08B4", 3676 | "microphoneSettings": "\uf036F", 3677 | "microphoneVariant": "\uf0370", 3678 | "microphoneVariantOff": "\uf0371", 3679 | "microscope": "\uf0654", 3680 | "microsoft": "\uf0372", 3681 | "microsoftAccess": "\uf138E", 3682 | "microsoftAzure": "\uf0805", 3683 | "microsoftAzureDevops": "\uf0FD5", 3684 | "microsoftBing": "\uf00A4", 3685 | "microsoftDynamics-365": "\uf0988", 3686 | "microsoftEdge": "\uf01E9", 3687 | "microsoftEdgeLegacy": "\uf1250", 3688 | "microsoftExcel": "\uf138F", 3689 | "microsoftInternetExplorer": "\uf0300", 3690 | "microsoftOffice": "\uf03C6", 3691 | "microsoftOnedrive": "\uf03CA", 3692 | "microsoftOnenote": "\uf0747", 3693 | "microsoftOutlook": "\uf0D22", 3694 | "microsoftPowerpoint": "\uf1390", 3695 | "microsoftSharepoint": "\uf1391", 3696 | "microsoftTeams": "\uf02BB", 3697 | "microsoftVisualStudio": "\uf0610", 3698 | "microsoftVisualStudioCode": "\uf0A1E", 3699 | "microsoftWindows": "\uf05B3", 3700 | "microsoftWindowsClassic": "\uf0A21", 3701 | "microsoftWord": "\uf1392", 3702 | "microsoftXbox": "\uf05B9", 3703 | "microsoftXboxController": "\uf05BA", 3704 | "microsoftXboxControllerBatteryAlert": "\uf074B", 3705 | "microsoftXboxControllerBatteryCharging": "\uf0A22", 3706 | "microsoftXboxControllerBatteryEmpty": "\uf074C", 3707 | "microsoftXboxControllerBatteryFull": "\uf074D", 3708 | "microsoftXboxControllerBatteryLow": "\uf074E", 3709 | "microsoftXboxControllerBatteryMedium": "\uf074F", 3710 | "microsoftXboxControllerBatteryUnknown": "\uf0750", 3711 | "microsoftXboxControllerMenu": "\uf0E6F", 3712 | "microsoftXboxControllerOff": "\uf05BB", 3713 | "microsoftXboxControllerView": "\uf0E70", 3714 | "microsoftYammer": "\uf0789", 3715 | "microwave": "\uf0C99", 3716 | "microwaveOff": "\uf1423", 3717 | "middleware": "\uf0F5D", 3718 | "middlewareOutline": "\uf0F5E", 3719 | "midi": "\uf08F1", 3720 | "midiPort": "\uf08F2", 3721 | "mine": "\uf0DDA", 3722 | "minecraft": "\uf0373", 3723 | "miniSd": "\uf0A05", 3724 | "minidisc": "\uf0A06", 3725 | "minus": "\uf0374", 3726 | "minusBox": "\uf0375", 3727 | "minusBoxMultiple": "\uf1141", 3728 | "minusBoxMultipleOutline": "\uf1142", 3729 | "minusBoxOutline": "\uf06F2", 3730 | "minusCircle": "\uf0376", 3731 | "minusCircleMultiple": "\uf035A", 3732 | "minusCircleMultipleOutline": "\uf0AD3", 3733 | "minusCircleOff": "\uf1459", 3734 | "minusCircleOffOutline": "\uf145A", 3735 | "minusCircleOutline": "\uf0377", 3736 | "minusNetwork": "\uf0378", 3737 | "minusNetworkOutline": "\uf0C9A", 3738 | "minusThick": "\uf1639", 3739 | "mirror": "\uf11FD", 3740 | "mixedMartialArts": "\uf0D8F", 3741 | "mixedReality": "\uf087F", 3742 | "molecule": "\uf0BAC", 3743 | "moleculeCo": "\uf12FE", 3744 | "moleculeCo2": "\uf07E4", 3745 | "monitor": "\uf0379", 3746 | "monitorCellphone": "\uf0989", 3747 | "monitorCellphoneStar": "\uf098A", 3748 | "monitorClean": "\uf1104", 3749 | "monitorDashboard": "\uf0A07", 3750 | "monitorEdit": "\uf12C6", 3751 | "monitorEye": "\uf13B4", 3752 | "monitorLock": "\uf0DDB", 3753 | "monitorMultiple": "\uf037A", 3754 | "monitorOff": "\uf0D90", 3755 | "monitorScreenshot": "\uf0E51", 3756 | "monitorShare": "\uf1483", 3757 | "monitorSpeaker": "\uf0F5F", 3758 | "monitorSpeakerOff": "\uf0F60", 3759 | "monitorStar": "\uf0DDC", 3760 | "moonFirstQuarter": "\uf0F61", 3761 | "moonFull": "\uf0F62", 3762 | "moonLastQuarter": "\uf0F63", 3763 | "moonNew": "\uf0F64", 3764 | "moonWaningCrescent": "\uf0F65", 3765 | "moonWaningGibbous": "\uf0F66", 3766 | "moonWaxingCrescent": "\uf0F67", 3767 | "moonWaxingGibbous": "\uf0F68", 3768 | "moped": "\uf1086", 3769 | "mopedElectric": "\uf15B7", 3770 | "mopedElectricOutline": "\uf15B8", 3771 | "mopedOutline": "\uf15B9", 3772 | "more": "\uf037B", 3773 | "motherHeart": "\uf1314", 3774 | "motherNurse": "\uf0D21", 3775 | "motion": "\uf15B2", 3776 | "motionOutline": "\uf15B3", 3777 | "motionPause": "\uf1590", 3778 | "motionPauseOutline": "\uf1592", 3779 | "motionPlay": "\uf158F", 3780 | "motionPlayOutline": "\uf1591", 3781 | "motionSensor": "\uf0D91", 3782 | "motionSensorOff": "\uf1435", 3783 | "motorbike": "\uf037C", 3784 | "motorbikeElectric": "\uf15BA", 3785 | "mouse": "\uf037D", 3786 | "mouseBluetooth": "\uf098B", 3787 | "mouseMoveDown": "\uf1550", 3788 | "mouseMoveUp": "\uf1551", 3789 | "mouseMoveVertical": "\uf1552", 3790 | "mouseOff": "\uf037E", 3791 | "mouseVariant": "\uf037F", 3792 | "mouseVariantOff": "\uf0380", 3793 | "moveResize": "\uf0655", 3794 | "moveResizeVariant": "\uf0656", 3795 | "movie": "\uf0381", 3796 | "movieCheck": "\uf16F3", 3797 | "movieCheckOutline": "\uf16F4", 3798 | "movieCog": "\uf16F5", 3799 | "movieCogOutline": "\uf16F6", 3800 | "movieEdit": "\uf1122", 3801 | "movieEditOutline": "\uf1123", 3802 | "movieFilter": "\uf1124", 3803 | "movieFilterOutline": "\uf1125", 3804 | "movieMinus": "\uf16F7", 3805 | "movieMinusOutline": "\uf16F8", 3806 | "movieOff": "\uf16F9", 3807 | "movieOffOutline": "\uf16FA", 3808 | "movieOpen": "\uf0FCE", 3809 | "movieOpenCheck": "\uf16FB", 3810 | "movieOpenCheckOutline": "\uf16FC", 3811 | "movieOpenCog": "\uf16FD", 3812 | "movieOpenCogOutline": "\uf16FE", 3813 | "movieOpenEdit": "\uf16FF", 3814 | "movieOpenEditOutline": "\uf1700", 3815 | "movieOpenMinus": "\uf1701", 3816 | "movieOpenMinusOutline": "\uf1702", 3817 | "movieOpenOff": "\uf1703", 3818 | "movieOpenOffOutline": "\uf1704", 3819 | "movieOpenOutline": "\uf0FCF", 3820 | "movieOpenPlay": "\uf1705", 3821 | "movieOpenPlayOutline": "\uf1706", 3822 | "movieOpenPlus": "\uf1707", 3823 | "movieOpenPlusOutline": "\uf1708", 3824 | "movieOpenRemove": "\uf1709", 3825 | "movieOpenRemoveOutline": "\uf170A", 3826 | "movieOpenSettings": "\uf170B", 3827 | "movieOpenSettingsOutline": "\uf170C", 3828 | "movieOpenStar": "\uf170D", 3829 | "movieOpenStarOutline": "\uf170E", 3830 | "movieOutline": "\uf0DDD", 3831 | "moviePlay": "\uf170F", 3832 | "moviePlayOutline": "\uf1710", 3833 | "moviePlus": "\uf1711", 3834 | "moviePlusOutline": "\uf1712", 3835 | "movieRemove": "\uf1713", 3836 | "movieRemoveOutline": "\uf1714", 3837 | "movieRoll": "\uf07DE", 3838 | "movieSearch": "\uf11D2", 3839 | "movieSearchOutline": "\uf11D3", 3840 | "movieSettings": "\uf1715", 3841 | "movieSettingsOutline": "\uf1716", 3842 | "movieStar": "\uf1717", 3843 | "movieStarOutline": "\uf1718", 3844 | "mower": "\uf166F", 3845 | "mowerBag": "\uf1670", 3846 | "muffin": "\uf098C", 3847 | "multiplication": "\uf0382", 3848 | "multiplicationBox": "\uf0383", 3849 | "mushroom": "\uf07DF", 3850 | "mushroomOff": "\uf13FA", 3851 | "mushroomOffOutline": "\uf13FB", 3852 | "mushroomOutline": "\uf07E0", 3853 | "music": "\uf075A", 3854 | "musicAccidentalDoubleFlat": "\uf0F69", 3855 | "musicAccidentalDoubleSharp": "\uf0F6A", 3856 | "musicAccidentalFlat": "\uf0F6B", 3857 | "musicAccidentalNatural": "\uf0F6C", 3858 | "musicAccidentalSharp": "\uf0F6D", 3859 | "musicBox": "\uf0384", 3860 | "musicBoxMultiple": "\uf0333", 3861 | "musicBoxMultipleOutline": "\uf0F04", 3862 | "musicBoxOutline": "\uf0385", 3863 | "musicCircle": "\uf0386", 3864 | "musicCircleOutline": "\uf0AD4", 3865 | "musicClefAlto": "\uf0F6E", 3866 | "musicClefBass": "\uf0F6F", 3867 | "musicClefTreble": "\uf0F70", 3868 | "musicNote": "\uf0387", 3869 | "musicNoteBluetooth": "\uf05FE", 3870 | "musicNoteBluetoothOff": "\uf05FF", 3871 | "musicNoteEighth": "\uf0388", 3872 | "musicNoteEighthDotted": "\uf0F71", 3873 | "musicNoteHalf": "\uf0389", 3874 | "musicNoteHalfDotted": "\uf0F72", 3875 | "musicNoteOff": "\uf038A", 3876 | "musicNoteOffOutline": "\uf0F73", 3877 | "musicNoteOutline": "\uf0F74", 3878 | "musicNotePlus": "\uf0DDE", 3879 | "musicNoteQuarter": "\uf038B", 3880 | "musicNoteQuarterDotted": "\uf0F75", 3881 | "musicNoteSixteenth": "\uf038C", 3882 | "musicNoteSixteenthDotted": "\uf0F76", 3883 | "musicNoteWhole": "\uf038D", 3884 | "musicNoteWholeDotted": "\uf0F77", 3885 | "musicOff": "\uf075B", 3886 | "musicRestEighth": "\uf0F78", 3887 | "musicRestHalf": "\uf0F79", 3888 | "musicRestQuarter": "\uf0F7A", 3889 | "musicRestSixteenth": "\uf0F7B", 3890 | "musicRestWhole": "\uf0F7C", 3891 | "mustache": "\uf15DE", 3892 | "nail": "\uf0DDF", 3893 | "nas": "\uf08F3", 3894 | "nativescript": "\uf0880", 3895 | "nature": "\uf038E", 3896 | "naturePeople": "\uf038F", 3897 | "navigation": "\uf0390", 3898 | "navigationOutline": "\uf1607", 3899 | "nearMe": "\uf05CD", 3900 | "necklace": "\uf0F0B", 3901 | "needle": "\uf0391", 3902 | "netflix": "\uf0746", 3903 | "network": "\uf06F3", 3904 | "networkOff": "\uf0C9B", 3905 | "networkOffOutline": "\uf0C9C", 3906 | "networkOutline": "\uf0C9D", 3907 | "networkStrength-1": "\uf08F4", 3908 | "networkStrength-1Alert": "\uf08F5", 3909 | "networkStrength-2": "\uf08F6", 3910 | "networkStrength-2Alert": "\uf08F7", 3911 | "networkStrength-3": "\uf08F8", 3912 | "networkStrength-3Alert": "\uf08F9", 3913 | "networkStrength-4": "\uf08FA", 3914 | "networkStrength-4Alert": "\uf08FB", 3915 | "networkStrengthOff": "\uf08FC", 3916 | "networkStrengthOffOutline": "\uf08FD", 3917 | "networkStrengthOutline": "\uf08FE", 3918 | "newBox": "\uf0394", 3919 | "newspaper": "\uf0395", 3920 | "newspaperMinus": "\uf0F0C", 3921 | "newspaperPlus": "\uf0F0D", 3922 | "newspaperVariant": "\uf1001", 3923 | "newspaperVariantMultiple": "\uf1002", 3924 | "newspaperVariantMultipleOutline": "\uf1003", 3925 | "newspaperVariantOutline": "\uf1004", 3926 | "nfc": "\uf0396", 3927 | "nfcSearchVariant": "\uf0E53", 3928 | "nfcTap": "\uf0397", 3929 | "nfcVariant": "\uf0398", 3930 | "nfcVariantOff": "\uf0E54", 3931 | "ninja": "\uf0774", 3932 | "nintendoGameBoy": "\uf1393", 3933 | "nintendoSwitch": "\uf07E1", 3934 | "nintendoWii": "\uf05AB", 3935 | "nintendoWiiu": "\uf072D", 3936 | "nix": "\uf1105", 3937 | "nodejs": "\uf0399", 3938 | "noodles": "\uf117E", 3939 | "notEqual": "\uf098D", 3940 | "notEqualVariant": "\uf098E", 3941 | "note": "\uf039A", 3942 | "noteMinus": "\uf164F", 3943 | "noteMinusOutline": "\uf1650", 3944 | "noteMultiple": "\uf06B8", 3945 | "noteMultipleOutline": "\uf06B9", 3946 | "noteOutline": "\uf039B", 3947 | "notePlus": "\uf039C", 3948 | "notePlusOutline": "\uf039D", 3949 | "noteRemove": "\uf1651", 3950 | "noteRemoveOutline": "\uf1652", 3951 | "noteSearch": "\uf1653", 3952 | "noteSearchOutline": "\uf1654", 3953 | "noteText": "\uf039E", 3954 | "noteTextOutline": "\uf11D7", 3955 | "notebook": "\uf082E", 3956 | "notebookCheck": "\uf14F5", 3957 | "notebookCheckOutline": "\uf14F6", 3958 | "notebookEdit": "\uf14E7", 3959 | "notebookEditOutline": "\uf14E9", 3960 | "notebookMinus": "\uf1610", 3961 | "notebookMinusOutline": "\uf1611", 3962 | "notebookMultiple": "\uf0E55", 3963 | "notebookOutline": "\uf0EBF", 3964 | "notebookPlus": "\uf1612", 3965 | "notebookPlusOutline": "\uf1613", 3966 | "notebookRemove": "\uf1614", 3967 | "notebookRemoveOutline": "\uf1615", 3968 | "notificationClearAll": "\uf039F", 3969 | "npm": "\uf06F7", 3970 | "nuke": "\uf06A4", 3971 | "null": "\uf07E2", 3972 | "numeric": "\uf03A0", 3973 | "numeric-0": "\uf0B39", 3974 | "numeric-0Box": "\uf03A1", 3975 | "numeric-0BoxMultiple": "\uf0F0E", 3976 | "numeric-0BoxMultipleOutline": "\uf03A2", 3977 | "numeric-0BoxOutline": "\uf03A3", 3978 | "numeric-0Circle": "\uf0C9E", 3979 | "numeric-0CircleOutline": "\uf0C9F", 3980 | "numeric-1": "\uf0B3A", 3981 | "numeric-1Box": "\uf03A4", 3982 | "numeric-1BoxMultiple": "\uf0F0F", 3983 | "numeric-1BoxMultipleOutline": "\uf03A5", 3984 | "numeric-1BoxOutline": "\uf03A6", 3985 | "numeric-1Circle": "\uf0CA0", 3986 | "numeric-1CircleOutline": "\uf0CA1", 3987 | "numeric-10": "\uf0FE9", 3988 | "numeric-10Box": "\uf0F7D", 3989 | "numeric-10BoxMultiple": "\uf0FEA", 3990 | "numeric-10BoxMultipleOutline": "\uf0FEB", 3991 | "numeric-10BoxOutline": "\uf0F7E", 3992 | "numeric-10Circle": "\uf0FEC", 3993 | "numeric-10CircleOutline": "\uf0FED", 3994 | "numeric-2": "\uf0B3B", 3995 | "numeric-2Box": "\uf03A7", 3996 | "numeric-2BoxMultiple": "\uf0F10", 3997 | "numeric-2BoxMultipleOutline": "\uf03A8", 3998 | "numeric-2BoxOutline": "\uf03A9", 3999 | "numeric-2Circle": "\uf0CA2", 4000 | "numeric-2CircleOutline": "\uf0CA3", 4001 | "numeric-3": "\uf0B3C", 4002 | "numeric-3Box": "\uf03AA", 4003 | "numeric-3BoxMultiple": "\uf0F11", 4004 | "numeric-3BoxMultipleOutline": "\uf03AB", 4005 | "numeric-3BoxOutline": "\uf03AC", 4006 | "numeric-3Circle": "\uf0CA4", 4007 | "numeric-3CircleOutline": "\uf0CA5", 4008 | "numeric-4": "\uf0B3D", 4009 | "numeric-4Box": "\uf03AD", 4010 | "numeric-4BoxMultiple": "\uf0F12", 4011 | "numeric-4BoxMultipleOutline": "\uf03B2", 4012 | "numeric-4BoxOutline": "\uf03AE", 4013 | "numeric-4Circle": "\uf0CA6", 4014 | "numeric-4CircleOutline": "\uf0CA7", 4015 | "numeric-5": "\uf0B3E", 4016 | "numeric-5Box": "\uf03B1", 4017 | "numeric-5BoxMultiple": "\uf0F13", 4018 | "numeric-5BoxMultipleOutline": "\uf03AF", 4019 | "numeric-5BoxOutline": "\uf03B0", 4020 | "numeric-5Circle": "\uf0CA8", 4021 | "numeric-5CircleOutline": "\uf0CA9", 4022 | "numeric-6": "\uf0B3F", 4023 | "numeric-6Box": "\uf03B3", 4024 | "numeric-6BoxMultiple": "\uf0F14", 4025 | "numeric-6BoxMultipleOutline": "\uf03B4", 4026 | "numeric-6BoxOutline": "\uf03B5", 4027 | "numeric-6Circle": "\uf0CAA", 4028 | "numeric-6CircleOutline": "\uf0CAB", 4029 | "numeric-7": "\uf0B40", 4030 | "numeric-7Box": "\uf03B6", 4031 | "numeric-7BoxMultiple": "\uf0F15", 4032 | "numeric-7BoxMultipleOutline": "\uf03B7", 4033 | "numeric-7BoxOutline": "\uf03B8", 4034 | "numeric-7Circle": "\uf0CAC", 4035 | "numeric-7CircleOutline": "\uf0CAD", 4036 | "numeric-8": "\uf0B41", 4037 | "numeric-8Box": "\uf03B9", 4038 | "numeric-8BoxMultiple": "\uf0F16", 4039 | "numeric-8BoxMultipleOutline": "\uf03BA", 4040 | "numeric-8BoxOutline": "\uf03BB", 4041 | "numeric-8Circle": "\uf0CAE", 4042 | "numeric-8CircleOutline": "\uf0CAF", 4043 | "numeric-9": "\uf0B42", 4044 | "numeric-9Box": "\uf03BC", 4045 | "numeric-9BoxMultiple": "\uf0F17", 4046 | "numeric-9BoxMultipleOutline": "\uf03BD", 4047 | "numeric-9BoxOutline": "\uf03BE", 4048 | "numeric-9Circle": "\uf0CB0", 4049 | "numeric-9CircleOutline": "\uf0CB1", 4050 | "numeric-9Plus": "\uf0FEE", 4051 | "numeric-9PlusBox": "\uf03BF", 4052 | "numeric-9PlusBoxMultiple": "\uf0F18", 4053 | "numeric-9PlusBoxMultipleOutline": "\uf03C0", 4054 | "numeric-9PlusBoxOutline": "\uf03C1", 4055 | "numeric-9PlusCircle": "\uf0CB2", 4056 | "numeric-9PlusCircleOutline": "\uf0CB3", 4057 | "numericNegative-1": "\uf1052", 4058 | "numericPositive-1": "\uf15CB", 4059 | "nut": "\uf06F8", 4060 | "nutrition": "\uf03C2", 4061 | "nuxt": "\uf1106", 4062 | "oar": "\uf067C", 4063 | "ocarina": "\uf0DE0", 4064 | "oci": "\uf12E9", 4065 | "ocr": "\uf113A", 4066 | "octagon": "\uf03C3", 4067 | "octagonOutline": "\uf03C4", 4068 | "octagram": "\uf06F9", 4069 | "octagramOutline": "\uf0775", 4070 | "odnoklassniki": "\uf03C5", 4071 | "offer": "\uf121B", 4072 | "officeBuilding": "\uf0991", 4073 | "officeBuildingMarker": "\uf1520", 4074 | "officeBuildingMarkerOutline": "\uf1521", 4075 | "officeBuildingOutline": "\uf151F", 4076 | "oil": "\uf03C7", 4077 | "oilLamp": "\uf0F19", 4078 | "oilLevel": "\uf1053", 4079 | "oilTemperature": "\uf0FF8", 4080 | "omega": "\uf03C9", 4081 | "oneUp": "\uf0BAD", 4082 | "onepassword": "\uf0881", 4083 | "opacity": "\uf05CC", 4084 | "openInApp": "\uf03CB", 4085 | "openInNew": "\uf03CC", 4086 | "openSourceInitiative": "\uf0BAE", 4087 | "openid": "\uf03CD", 4088 | "opera": "\uf03CE", 4089 | "orbit": "\uf0018", 4090 | "orbitVariant": "\uf15DB", 4091 | "orderAlphabeticalAscending": "\uf020D", 4092 | "orderAlphabeticalDescending": "\uf0D07", 4093 | "orderBoolAscending": "\uf02BE", 4094 | "orderBoolAscendingVariant": "\uf098F", 4095 | "orderBoolDescending": "\uf1384", 4096 | "orderBoolDescendingVariant": "\uf0990", 4097 | "orderNumericAscending": "\uf0545", 4098 | "orderNumericDescending": "\uf0546", 4099 | "origin": "\uf0B43", 4100 | "ornament": "\uf03CF", 4101 | "ornamentVariant": "\uf03D0", 4102 | "outdoorLamp": "\uf1054", 4103 | "overscan": "\uf1005", 4104 | "owl": "\uf03D2", 4105 | "pacMan": "\uf0BAF", 4106 | "package": "\uf03D3", 4107 | "packageDown": "\uf03D4", 4108 | "packageUp": "\uf03D5", 4109 | "packageVariant": "\uf03D6", 4110 | "packageVariantClosed": "\uf03D7", 4111 | "pageFirst": "\uf0600", 4112 | "pageLast": "\uf0601", 4113 | "pageLayoutBody": "\uf06FA", 4114 | "pageLayoutFooter": "\uf06FB", 4115 | "pageLayoutHeader": "\uf06FC", 4116 | "pageLayoutHeaderFooter": "\uf0F7F", 4117 | "pageLayoutSidebarLeft": "\uf06FD", 4118 | "pageLayoutSidebarRight": "\uf06FE", 4119 | "pageNext": "\uf0BB0", 4120 | "pageNextOutline": "\uf0BB1", 4121 | "pagePrevious": "\uf0BB2", 4122 | "pagePreviousOutline": "\uf0BB3", 4123 | "pail": "\uf1417", 4124 | "pailMinus": "\uf1437", 4125 | "pailMinusOutline": "\uf143C", 4126 | "pailOff": "\uf1439", 4127 | "pailOffOutline": "\uf143E", 4128 | "pailOutline": "\uf143A", 4129 | "pailPlus": "\uf1436", 4130 | "pailPlusOutline": "\uf143B", 4131 | "pailRemove": "\uf1438", 4132 | "pailRemoveOutline": "\uf143D", 4133 | "palette": "\uf03D8", 4134 | "paletteAdvanced": "\uf03D9", 4135 | "paletteOutline": "\uf0E0C", 4136 | "paletteSwatch": "\uf08B5", 4137 | "paletteSwatchOutline": "\uf135C", 4138 | "palmTree": "\uf1055", 4139 | "pan": "\uf0BB4", 4140 | "panBottomLeft": "\uf0BB5", 4141 | "panBottomRight": "\uf0BB6", 4142 | "panDown": "\uf0BB7", 4143 | "panHorizontal": "\uf0BB8", 4144 | "panLeft": "\uf0BB9", 4145 | "panRight": "\uf0BBA", 4146 | "panTopLeft": "\uf0BBB", 4147 | "panTopRight": "\uf0BBC", 4148 | "panUp": "\uf0BBD", 4149 | "panVertical": "\uf0BBE", 4150 | "panda": "\uf03DA", 4151 | "pandora": "\uf03DB", 4152 | "panorama": "\uf03DC", 4153 | "panoramaFisheye": "\uf03DD", 4154 | "panoramaHorizontal": "\uf03DE", 4155 | "panoramaVertical": "\uf03DF", 4156 | "panoramaWideAngle": "\uf03E0", 4157 | "paperCutVertical": "\uf03E1", 4158 | "paperRoll": "\uf1157", 4159 | "paperRollOutline": "\uf1158", 4160 | "paperclip": "\uf03E2", 4161 | "parachute": "\uf0CB4", 4162 | "parachuteOutline": "\uf0CB5", 4163 | "parking": "\uf03E3", 4164 | "partyPopper": "\uf1056", 4165 | "passport": "\uf07E3", 4166 | "passportBiometric": "\uf0DE1", 4167 | "pasta": "\uf1160", 4168 | "patioHeater": "\uf0F80", 4169 | "patreon": "\uf0882", 4170 | "pause": "\uf03E4", 4171 | "pauseCircle": "\uf03E5", 4172 | "pauseCircleOutline": "\uf03E6", 4173 | "pauseOctagon": "\uf03E7", 4174 | "pauseOctagonOutline": "\uf03E8", 4175 | "paw": "\uf03E9", 4176 | "pawOff": "\uf0657", 4177 | "pawOffOutline": "\uf1676", 4178 | "pawOutline": "\uf1675", 4179 | "pdfBox": "\uf0E56", 4180 | "peace": "\uf0884", 4181 | "peanut": "\uf0FFC", 4182 | "peanutOff": "\uf0FFD", 4183 | "peanutOffOutline": "\uf0FFF", 4184 | "peanutOutline": "\uf0FFE", 4185 | "pen": "\uf03EA", 4186 | "penLock": "\uf0DE2", 4187 | "penMinus": "\uf0DE3", 4188 | "penOff": "\uf0DE4", 4189 | "penPlus": "\uf0DE5", 4190 | "penRemove": "\uf0DE6", 4191 | "pencil": "\uf03EB", 4192 | "pencilBox": "\uf03EC", 4193 | "pencilBoxMultiple": "\uf1144", 4194 | "pencilBoxMultipleOutline": "\uf1145", 4195 | "pencilBoxOutline": "\uf03ED", 4196 | "pencilCircle": "\uf06FF", 4197 | "pencilCircleOutline": "\uf0776", 4198 | "pencilLock": "\uf03EE", 4199 | "pencilLockOutline": "\uf0DE7", 4200 | "pencilMinus": "\uf0DE8", 4201 | "pencilMinusOutline": "\uf0DE9", 4202 | "pencilOff": "\uf03EF", 4203 | "pencilOffOutline": "\uf0DEA", 4204 | "pencilOutline": "\uf0CB6", 4205 | "pencilPlus": "\uf0DEB", 4206 | "pencilPlusOutline": "\uf0DEC", 4207 | "pencilRemove": "\uf0DED", 4208 | "pencilRemoveOutline": "\uf0DEE", 4209 | "pencilRuler": "\uf1353", 4210 | "penguin": "\uf0EC0", 4211 | "pentagon": "\uf0701", 4212 | "pentagonOutline": "\uf0700", 4213 | "pentagram": "\uf1667", 4214 | "percent": "\uf03F0", 4215 | "percentOutline": "\uf1278", 4216 | "periodicTable": "\uf08B6", 4217 | "perspectiveLess": "\uf0D23", 4218 | "perspectiveMore": "\uf0D24", 4219 | "pharmacy": "\uf03F1", 4220 | "phone": "\uf03F2", 4221 | "phoneAlert": "\uf0F1A", 4222 | "phoneAlertOutline": "\uf118E", 4223 | "phoneBluetooth": "\uf03F3", 4224 | "phoneBluetoothOutline": "\uf118F", 4225 | "phoneCancel": "\uf10BC", 4226 | "phoneCancelOutline": "\uf1190", 4227 | "phoneCheck": "\uf11A9", 4228 | "phoneCheckOutline": "\uf11AA", 4229 | "phoneClassic": "\uf0602", 4230 | "phoneClassicOff": "\uf1279", 4231 | "phoneDial": "\uf1559", 4232 | "phoneDialOutline": "\uf155A", 4233 | "phoneForward": "\uf03F4", 4234 | "phoneForwardOutline": "\uf1191", 4235 | "phoneHangup": "\uf03F5", 4236 | "phoneHangupOutline": "\uf1192", 4237 | "phoneInTalk": "\uf03F6", 4238 | "phoneInTalkOutline": "\uf1182", 4239 | "phoneIncoming": "\uf03F7", 4240 | "phoneIncomingOutline": "\uf1193", 4241 | "phoneLock": "\uf03F8", 4242 | "phoneLockOutline": "\uf1194", 4243 | "phoneLog": "\uf03F9", 4244 | "phoneLogOutline": "\uf1195", 4245 | "phoneMessage": "\uf1196", 4246 | "phoneMessageOutline": "\uf1197", 4247 | "phoneMinus": "\uf0658", 4248 | "phoneMinusOutline": "\uf1198", 4249 | "phoneMissed": "\uf03FA", 4250 | "phoneMissedOutline": "\uf11A5", 4251 | "phoneOff": "\uf0DEF", 4252 | "phoneOffOutline": "\uf11A6", 4253 | "phoneOutgoing": "\uf03FB", 4254 | "phoneOutgoingOutline": "\uf1199", 4255 | "phoneOutline": "\uf0DF0", 4256 | "phonePaused": "\uf03FC", 4257 | "phonePausedOutline": "\uf119A", 4258 | "phonePlus": "\uf0659", 4259 | "phonePlusOutline": "\uf119B", 4260 | "phoneRemove": "\uf152F", 4261 | "phoneRemoveOutline": "\uf1530", 4262 | "phoneReturn": "\uf082F", 4263 | "phoneReturnOutline": "\uf119C", 4264 | "phoneRing": "\uf11AB", 4265 | "phoneRingOutline": "\uf11AC", 4266 | "phoneRotateLandscape": "\uf0885", 4267 | "phoneRotatePortrait": "\uf0886", 4268 | "phoneSettings": "\uf03FD", 4269 | "phoneSettingsOutline": "\uf119D", 4270 | "phoneVoip": "\uf03FE", 4271 | "pi": "\uf03FF", 4272 | "piBox": "\uf0400", 4273 | "piHole": "\uf0DF1", 4274 | "piano": "\uf067D", 4275 | "pickaxe": "\uf08B7", 4276 | "pictureInPictureBottomRight": "\uf0E57", 4277 | "pictureInPictureBottomRightOutline": "\uf0E58", 4278 | "pictureInPictureTopRight": "\uf0E59", 4279 | "pictureInPictureTopRightOutline": "\uf0E5A", 4280 | "pier": "\uf0887", 4281 | "pierCrane": "\uf0888", 4282 | "pig": "\uf0401", 4283 | "pigVariant": "\uf1006", 4284 | "pigVariantOutline": "\uf1678", 4285 | "piggyBank": "\uf1007", 4286 | "piggyBankOutline": "\uf1679", 4287 | "pill": "\uf0402", 4288 | "pillar": "\uf0702", 4289 | "pin": "\uf0403", 4290 | "pinOff": "\uf0404", 4291 | "pinOffOutline": "\uf0930", 4292 | "pinOutline": "\uf0931", 4293 | "pineTree": "\uf0405", 4294 | "pineTreeBox": "\uf0406", 4295 | "pineTreeFire": "\uf141A", 4296 | "pinterest": "\uf0407", 4297 | "pinwheel": "\uf0AD5", 4298 | "pinwheelOutline": "\uf0AD6", 4299 | "pipe": "\uf07E5", 4300 | "pipeDisconnected": "\uf07E6", 4301 | "pipeLeak": "\uf0889", 4302 | "pipeWrench": "\uf1354", 4303 | "pirate": "\uf0A08", 4304 | "pistol": "\uf0703", 4305 | "piston": "\uf088A", 4306 | "pitchfork": "\uf1553", 4307 | "pizza": "\uf0409", 4308 | "play": "\uf040A", 4309 | "playBox": "\uf127A", 4310 | "playBoxMultiple": "\uf0D19", 4311 | "playBoxMultipleOutline": "\uf13E6", 4312 | "playBoxOutline": "\uf040B", 4313 | "playCircle": "\uf040C", 4314 | "playCircleOutline": "\uf040D", 4315 | "playNetwork": "\uf088B", 4316 | "playNetworkOutline": "\uf0CB7", 4317 | "playOutline": "\uf0F1B", 4318 | "playPause": "\uf040E", 4319 | "playProtectedContent": "\uf040F", 4320 | "playSpeed": "\uf08FF", 4321 | "playlistCheck": "\uf05C7", 4322 | "playlistEdit": "\uf0900", 4323 | "playlistMinus": "\uf0410", 4324 | "playlistMusic": "\uf0CB8", 4325 | "playlistMusicOutline": "\uf0CB9", 4326 | "playlistPlay": "\uf0411", 4327 | "playlistPlus": "\uf0412", 4328 | "playlistRemove": "\uf0413", 4329 | "playlistStar": "\uf0DF2", 4330 | "plex": "\uf06BA", 4331 | "plus": "\uf0415", 4332 | "plusBox": "\uf0416", 4333 | "plusBoxMultiple": "\uf0334", 4334 | "plusBoxMultipleOutline": "\uf1143", 4335 | "plusBoxOutline": "\uf0704", 4336 | "plusCircle": "\uf0417", 4337 | "plusCircleMultiple": "\uf034C", 4338 | "plusCircleMultipleOutline": "\uf0418", 4339 | "plusCircleOutline": "\uf0419", 4340 | "plusMinus": "\uf0992", 4341 | "plusMinusBox": "\uf0993", 4342 | "plusMinusVariant": "\uf14C9", 4343 | "plusNetwork": "\uf041A", 4344 | "plusNetworkOutline": "\uf0CBA", 4345 | "plusOne": "\uf041B", 4346 | "plusOutline": "\uf0705", 4347 | "plusThick": "\uf11EC", 4348 | "podcast": "\uf0994", 4349 | "podium": "\uf0D25", 4350 | "podiumBronze": "\uf0D26", 4351 | "podiumGold": "\uf0D27", 4352 | "podiumSilver": "\uf0D28", 4353 | "pointOfSale": "\uf0D92", 4354 | "pokeball": "\uf041D", 4355 | "pokemonGo": "\uf0A09", 4356 | "pokerChip": "\uf0830", 4357 | "polaroid": "\uf041E", 4358 | "policeBadge": "\uf1167", 4359 | "policeBadgeOutline": "\uf1168", 4360 | "poll": "\uf041F", 4361 | "pollBox": "\uf0420", 4362 | "pollBoxOutline": "\uf127B", 4363 | "polo": "\uf14C3", 4364 | "polymer": "\uf0421", 4365 | "pool": "\uf0606", 4366 | "popcorn": "\uf0422", 4367 | "post": "\uf1008", 4368 | "postOutline": "\uf1009", 4369 | "postageStamp": "\uf0CBB", 4370 | "pot": "\uf02E5", 4371 | "potMix": "\uf065B", 4372 | "potMixOutline": "\uf0677", 4373 | "potOutline": "\uf02FF", 4374 | "potSteam": "\uf065A", 4375 | "potSteamOutline": "\uf0326", 4376 | "pound": "\uf0423", 4377 | "poundBox": "\uf0424", 4378 | "poundBoxOutline": "\uf117F", 4379 | "power": "\uf0425", 4380 | "powerCycle": "\uf0901", 4381 | "powerOff": "\uf0902", 4382 | "powerOn": "\uf0903", 4383 | "powerPlug": "\uf06A5", 4384 | "powerPlugOff": "\uf06A6", 4385 | "powerPlugOffOutline": "\uf1424", 4386 | "powerPlugOutline": "\uf1425", 4387 | "powerSettings": "\uf0426", 4388 | "powerSleep": "\uf0904", 4389 | "powerSocket": "\uf0427", 4390 | "powerSocketAu": "\uf0905", 4391 | "powerSocketDe": "\uf1107", 4392 | "powerSocketEu": "\uf07E7", 4393 | "powerSocketFr": "\uf1108", 4394 | "powerSocketIt": "\uf14FF", 4395 | "powerSocketJp": "\uf1109", 4396 | "powerSocketUk": "\uf07E8", 4397 | "powerSocketUs": "\uf07E9", 4398 | "powerStandby": "\uf0906", 4399 | "powershell": "\uf0A0A", 4400 | "prescription": "\uf0706", 4401 | "presentation": "\uf0428", 4402 | "presentationPlay": "\uf0429", 4403 | "pretzel": "\uf1562", 4404 | "printer": "\uf042A", 4405 | "printer-3d": "\uf042B", 4406 | "printer-3dNozzle": "\uf0E5B", 4407 | "printer-3dNozzleAlert": "\uf11C0", 4408 | "printer-3dNozzleAlertOutline": "\uf11C1", 4409 | "printer-3dNozzleOutline": "\uf0E5C", 4410 | "printerAlert": "\uf042C", 4411 | "printerCheck": "\uf1146", 4412 | "printerEye": "\uf1458", 4413 | "printerOff": "\uf0E5D", 4414 | "printerPos": "\uf1057", 4415 | "printerSearch": "\uf1457", 4416 | "printerSettings": "\uf0707", 4417 | "printerWireless": "\uf0A0B", 4418 | "priorityHigh": "\uf0603", 4419 | "priorityLow": "\uf0604", 4420 | "professionalHexagon": "\uf042D", 4421 | "progressAlert": "\uf0CBC", 4422 | "progressCheck": "\uf0995", 4423 | "progressClock": "\uf0996", 4424 | "progressClose": "\uf110A", 4425 | "progressDownload": "\uf0997", 4426 | "progressQuestion": "\uf1522", 4427 | "progressUpload": "\uf0998", 4428 | "progressWrench": "\uf0CBD", 4429 | "projector": "\uf042E", 4430 | "projectorScreen": "\uf042F", 4431 | "projectorScreenOutline": "\uf1724", 4432 | "propaneTank": "\uf1357", 4433 | "propaneTankOutline": "\uf1358", 4434 | "protocol": "\uf0FD8", 4435 | "publish": "\uf06A7", 4436 | "pulse": "\uf0430", 4437 | "pump": "\uf1402", 4438 | "pumpkin": "\uf0BBF", 4439 | "purse": "\uf0F1C", 4440 | "purseOutline": "\uf0F1D", 4441 | "puzzle": "\uf0431", 4442 | "puzzleCheck": "\uf1426", 4443 | "puzzleCheckOutline": "\uf1427", 4444 | "puzzleEdit": "\uf14D3", 4445 | "puzzleEditOutline": "\uf14D9", 4446 | "puzzleHeart": "\uf14D4", 4447 | "puzzleHeartOutline": "\uf14DA", 4448 | "puzzleMinus": "\uf14D1", 4449 | "puzzleMinusOutline": "\uf14D7", 4450 | "puzzleOutline": "\uf0A66", 4451 | "puzzlePlus": "\uf14D0", 4452 | "puzzlePlusOutline": "\uf14D6", 4453 | "puzzleRemove": "\uf14D2", 4454 | "puzzleRemoveOutline": "\uf14D8", 4455 | "puzzleStar": "\uf14D5", 4456 | "puzzleStarOutline": "\uf14DB", 4457 | "qi": "\uf0999", 4458 | "qqchat": "\uf0605", 4459 | "qrcode": "\uf0432", 4460 | "qrcodeEdit": "\uf08B8", 4461 | "qrcodeMinus": "\uf118C", 4462 | "qrcodePlus": "\uf118B", 4463 | "qrcodeRemove": "\uf118D", 4464 | "qrcodeScan": "\uf0433", 4465 | "quadcopter": "\uf0434", 4466 | "qualityHigh": "\uf0435", 4467 | "qualityLow": "\uf0A0C", 4468 | "qualityMedium": "\uf0A0D", 4469 | "quora": "\uf0D29", 4470 | "rabbit": "\uf0907", 4471 | "racingHelmet": "\uf0D93", 4472 | "racquetball": "\uf0D94", 4473 | "radar": "\uf0437", 4474 | "radiator": "\uf0438", 4475 | "radiatorDisabled": "\uf0AD7", 4476 | "radiatorOff": "\uf0AD8", 4477 | "radio": "\uf0439", 4478 | "radioAm": "\uf0CBE", 4479 | "radioFm": "\uf0CBF", 4480 | "radioHandheld": "\uf043A", 4481 | "radioOff": "\uf121C", 4482 | "radioTower": "\uf043B", 4483 | "radioactive": "\uf043C", 4484 | "radioactiveOff": "\uf0EC1", 4485 | "radioboxBlank": "\uf043D", 4486 | "radioboxMarked": "\uf043E", 4487 | "radiologyBox": "\uf14C5", 4488 | "radiologyBoxOutline": "\uf14C6", 4489 | "radius": "\uf0CC0", 4490 | "radiusOutline": "\uf0CC1", 4491 | "railroadLight": "\uf0F1E", 4492 | "rake": "\uf1544", 4493 | "raspberryPi": "\uf043F", 4494 | "rayEnd": "\uf0440", 4495 | "rayEndArrow": "\uf0441", 4496 | "rayStart": "\uf0442", 4497 | "rayStartArrow": "\uf0443", 4498 | "rayStartEnd": "\uf0444", 4499 | "rayStartVertexEnd": "\uf15D8", 4500 | "rayVertex": "\uf0445", 4501 | "react": "\uf0708", 4502 | "read": "\uf0447", 4503 | "receipt": "\uf0449", 4504 | "record": "\uf044A", 4505 | "recordCircle": "\uf0EC2", 4506 | "recordCircleOutline": "\uf0EC3", 4507 | "recordPlayer": "\uf099A", 4508 | "recordRec": "\uf044B", 4509 | "rectangle": "\uf0E5E", 4510 | "rectangleOutline": "\uf0E5F", 4511 | "recycle": "\uf044C", 4512 | "recycleVariant": "\uf139D", 4513 | "reddit": "\uf044D", 4514 | "redhat": "\uf111B", 4515 | "redo": "\uf044E", 4516 | "redoVariant": "\uf044F", 4517 | "reflectHorizontal": "\uf0A0E", 4518 | "reflectVertical": "\uf0A0F", 4519 | "refresh": "\uf0450", 4520 | "refreshCircle": "\uf1377", 4521 | "regex": "\uf0451", 4522 | "registeredTrademark": "\uf0A67", 4523 | "reiterate": "\uf1588", 4524 | "relationManyToMany": "\uf1496", 4525 | "relationManyToOne": "\uf1497", 4526 | "relationManyToOneOrMany": "\uf1498", 4527 | "relationManyToOnlyOne": "\uf1499", 4528 | "relationManyToZeroOrMany": "\uf149A", 4529 | "relationManyToZeroOrOne": "\uf149B", 4530 | "relationOneOrManyToMany": "\uf149C", 4531 | "relationOneOrManyToOne": "\uf149D", 4532 | "relationOneOrManyToOneOrMany": "\uf149E", 4533 | "relationOneOrManyToOnlyOne": "\uf149F", 4534 | "relationOneOrManyToZeroOrMany": "\uf14A0", 4535 | "relationOneOrManyToZeroOrOne": "\uf14A1", 4536 | "relationOneToMany": "\uf14A2", 4537 | "relationOneToOne": "\uf14A3", 4538 | "relationOneToOneOrMany": "\uf14A4", 4539 | "relationOneToOnlyOne": "\uf14A5", 4540 | "relationOneToZeroOrMany": "\uf14A6", 4541 | "relationOneToZeroOrOne": "\uf14A7", 4542 | "relationOnlyOneToMany": "\uf14A8", 4543 | "relationOnlyOneToOne": "\uf14A9", 4544 | "relationOnlyOneToOneOrMany": "\uf14AA", 4545 | "relationOnlyOneToOnlyOne": "\uf14AB", 4546 | "relationOnlyOneToZeroOrMany": "\uf14AC", 4547 | "relationOnlyOneToZeroOrOne": "\uf14AD", 4548 | "relationZeroOrManyToMany": "\uf14AE", 4549 | "relationZeroOrManyToOne": "\uf14AF", 4550 | "relationZeroOrManyToOneOrMany": "\uf14B0", 4551 | "relationZeroOrManyToOnlyOne": "\uf14B1", 4552 | "relationZeroOrManyToZeroOrMany": "\uf14B2", 4553 | "relationZeroOrManyToZeroOrOne": "\uf14B3", 4554 | "relationZeroOrOneToMany": "\uf14B4", 4555 | "relationZeroOrOneToOne": "\uf14B5", 4556 | "relationZeroOrOneToOneOrMany": "\uf14B6", 4557 | "relationZeroOrOneToOnlyOne": "\uf14B7", 4558 | "relationZeroOrOneToZeroOrMany": "\uf14B8", 4559 | "relationZeroOrOneToZeroOrOne": "\uf14B9", 4560 | "relativeScale": "\uf0452", 4561 | "reload": "\uf0453", 4562 | "reloadAlert": "\uf110B", 4563 | "reminder": "\uf088C", 4564 | "remote": "\uf0454", 4565 | "remoteDesktop": "\uf08B9", 4566 | "remoteOff": "\uf0EC4", 4567 | "remoteTv": "\uf0EC5", 4568 | "remoteTvOff": "\uf0EC6", 4569 | "renameBox": "\uf0455", 4570 | "reorderHorizontal": "\uf0688", 4571 | "reorderVertical": "\uf0689", 4572 | "repeat": "\uf0456", 4573 | "repeatOff": "\uf0457", 4574 | "repeatOnce": "\uf0458", 4575 | "replay": "\uf0459", 4576 | "reply": "\uf045A", 4577 | "replyAll": "\uf045B", 4578 | "replyAllOutline": "\uf0F1F", 4579 | "replyCircle": "\uf11AE", 4580 | "replyOutline": "\uf0F20", 4581 | "reproduction": "\uf045C", 4582 | "resistor": "\uf0B44", 4583 | "resistorNodes": "\uf0B45", 4584 | "resize": "\uf0A68", 4585 | "resizeBottomRight": "\uf045D", 4586 | "responsive": "\uf045E", 4587 | "restart": "\uf0709", 4588 | "restartAlert": "\uf110C", 4589 | "restartOff": "\uf0D95", 4590 | "restore": "\uf099B", 4591 | "restoreAlert": "\uf110D", 4592 | "rewind": "\uf045F", 4593 | "rewind-10": "\uf0D2A", 4594 | "rewind-30": "\uf0D96", 4595 | "rewind-5": "\uf11F9", 4596 | "rewind-60": "\uf160C", 4597 | "rewindOutline": "\uf070A", 4598 | "rhombus": "\uf070B", 4599 | "rhombusMedium": "\uf0A10", 4600 | "rhombusMediumOutline": "\uf14DC", 4601 | "rhombusOutline": "\uf070C", 4602 | "rhombusSplit": "\uf0A11", 4603 | "rhombusSplitOutline": "\uf14DD", 4604 | "ribbon": "\uf0460", 4605 | "rice": "\uf07EA", 4606 | "rickshaw": "\uf15BB", 4607 | "rickshawElectric": "\uf15BC", 4608 | "ring": "\uf07EB", 4609 | "rivet": "\uf0E60", 4610 | "road": "\uf0461", 4611 | "roadVariant": "\uf0462", 4612 | "robber": "\uf1058", 4613 | "robot": "\uf06A9", 4614 | "robotAngry": "\uf169D", 4615 | "robotAngryOutline": "\uf169E", 4616 | "robotConfused": "\uf169F", 4617 | "robotConfusedOutline": "\uf16A0", 4618 | "robotDead": "\uf16A1", 4619 | "robotDeadOutline": "\uf16A2", 4620 | "robotExcited": "\uf16A3", 4621 | "robotExcitedOutline": "\uf16A4", 4622 | "robotHappy": "\uf1719", 4623 | "robotHappyOutline": "\uf171A", 4624 | "robotIndustrial": "\uf0B46", 4625 | "robotLove": "\uf16A5", 4626 | "robotLoveOutline": "\uf16A6", 4627 | "robotMower": "\uf11F7", 4628 | "robotMowerOutline": "\uf11F3", 4629 | "robotOff": "\uf16A7", 4630 | "robotOffOutline": "\uf167B", 4631 | "robotOutline": "\uf167A", 4632 | "robotVacuum": "\uf070D", 4633 | "robotVacuumVariant": "\uf0908", 4634 | "rocket": "\uf0463", 4635 | "rocketLaunch": "\uf14DE", 4636 | "rocketLaunchOutline": "\uf14DF", 4637 | "rocketOutline": "\uf13AF", 4638 | "rodent": "\uf1327", 4639 | "rollerSkate": "\uf0D2B", 4640 | "rollerSkateOff": "\uf0145", 4641 | "rollerblade": "\uf0D2C", 4642 | "rollerbladeOff": "\uf002E", 4643 | "rollupjs": "\uf0BC0", 4644 | "romanNumeral-1": "\uf1088", 4645 | "romanNumeral-10": "\uf1091", 4646 | "romanNumeral-2": "\uf1089", 4647 | "romanNumeral-3": "\uf108A", 4648 | "romanNumeral-4": "\uf108B", 4649 | "romanNumeral-5": "\uf108C", 4650 | "romanNumeral-6": "\uf108D", 4651 | "romanNumeral-7": "\uf108E", 4652 | "romanNumeral-8": "\uf108F", 4653 | "romanNumeral-9": "\uf1090", 4654 | "roomService": "\uf088D", 4655 | "roomServiceOutline": "\uf0D97", 4656 | "rotate-3d": "\uf0EC7", 4657 | "rotate-3dVariant": "\uf0464", 4658 | "rotateLeft": "\uf0465", 4659 | "rotateLeftVariant": "\uf0466", 4660 | "rotateOrbit": "\uf0D98", 4661 | "rotateRight": "\uf0467", 4662 | "rotateRightVariant": "\uf0468", 4663 | "roundedCorner": "\uf0607", 4664 | "router": "\uf11E2", 4665 | "routerNetwork": "\uf1087", 4666 | "routerWireless": "\uf0469", 4667 | "routerWirelessOff": "\uf15A3", 4668 | "routerWirelessSettings": "\uf0A69", 4669 | "routes": "\uf046A", 4670 | "routesClock": "\uf1059", 4671 | "rowing": "\uf0608", 4672 | "rss": "\uf046B", 4673 | "rssBox": "\uf046C", 4674 | "rssOff": "\uf0F21", 4675 | "rug": "\uf1475", 4676 | "rugby": "\uf0D99", 4677 | "ruler": "\uf046D", 4678 | "rulerSquare": "\uf0CC2", 4679 | "rulerSquareCompass": "\uf0EBE", 4680 | "run": "\uf070E", 4681 | "runFast": "\uf046E", 4682 | "rvTruck": "\uf11D4", 4683 | "sack": "\uf0D2E", 4684 | "sackPercent": "\uf0D2F", 4685 | "safe": "\uf0A6A", 4686 | "safeSquare": "\uf127C", 4687 | "safeSquareOutline": "\uf127D", 4688 | "safetyGoggles": "\uf0D30", 4689 | "sailBoat": "\uf0EC8", 4690 | "sale": "\uf046F", 4691 | "salesforce": "\uf088E", 4692 | "sass": "\uf07EC", 4693 | "satellite": "\uf0470", 4694 | "satelliteUplink": "\uf0909", 4695 | "satelliteVariant": "\uf0471", 4696 | "sausage": "\uf08BA", 4697 | "sawBlade": "\uf0E61", 4698 | "sawtoothWave": "\uf147A", 4699 | "saxophone": "\uf0609", 4700 | "scale": "\uf0472", 4701 | "scaleBalance": "\uf05D1", 4702 | "scaleBathroom": "\uf0473", 4703 | "scaleOff": "\uf105A", 4704 | "scanHelper": "\uf13D8", 4705 | "scanner": "\uf06AB", 4706 | "scannerOff": "\uf090A", 4707 | "scatterPlot": "\uf0EC9", 4708 | "scatterPlotOutline": "\uf0ECA", 4709 | "school": "\uf0474", 4710 | "schoolOutline": "\uf1180", 4711 | "scissorsCutting": "\uf0A6B", 4712 | "scooter": "\uf15BD", 4713 | "scooterElectric": "\uf15BE", 4714 | "scoreboard": "\uf127E", 4715 | "scoreboardOutline": "\uf127F", 4716 | "screenRotation": "\uf0475", 4717 | "screenRotationLock": "\uf0478", 4718 | "screwFlatTop": "\uf0DF3", 4719 | "screwLag": "\uf0DF4", 4720 | "screwMachineFlatTop": "\uf0DF5", 4721 | "screwMachineRoundTop": "\uf0DF6", 4722 | "screwRoundTop": "\uf0DF7", 4723 | "screwdriver": "\uf0476", 4724 | "script": "\uf0BC1", 4725 | "scriptOutline": "\uf0477", 4726 | "scriptText": "\uf0BC2", 4727 | "scriptTextKey": "\uf1725", 4728 | "scriptTextKeyOutline": "\uf1726", 4729 | "scriptTextOutline": "\uf0BC3", 4730 | "scriptTextPlay": "\uf1727", 4731 | "scriptTextPlayOutline": "\uf1728", 4732 | "sd": "\uf0479", 4733 | "seal": "\uf047A", 4734 | "sealVariant": "\uf0FD9", 4735 | "searchWeb": "\uf070F", 4736 | "seat": "\uf0CC3", 4737 | "seatFlat": "\uf047B", 4738 | "seatFlatAngled": "\uf047C", 4739 | "seatIndividualSuite": "\uf047D", 4740 | "seatLegroomExtra": "\uf047E", 4741 | "seatLegroomNormal": "\uf047F", 4742 | "seatLegroomReduced": "\uf0480", 4743 | "seatOutline": "\uf0CC4", 4744 | "seatPassenger": "\uf1249", 4745 | "seatReclineExtra": "\uf0481", 4746 | "seatReclineNormal": "\uf0482", 4747 | "seatbelt": "\uf0CC5", 4748 | "security": "\uf0483", 4749 | "securityNetwork": "\uf0484", 4750 | "seed": "\uf0E62", 4751 | "seedOff": "\uf13FD", 4752 | "seedOffOutline": "\uf13FE", 4753 | "seedOutline": "\uf0E63", 4754 | "seesaw": "\uf15A4", 4755 | "segment": "\uf0ECB", 4756 | "select": "\uf0485", 4757 | "selectAll": "\uf0486", 4758 | "selectColor": "\uf0D31", 4759 | "selectCompare": "\uf0AD9", 4760 | "selectDrag": "\uf0A6C", 4761 | "selectGroup": "\uf0F82", 4762 | "selectInverse": "\uf0487", 4763 | "selectMarker": "\uf1280", 4764 | "selectMultiple": "\uf1281", 4765 | "selectMultipleMarker": "\uf1282", 4766 | "selectOff": "\uf0488", 4767 | "selectPlace": "\uf0FDA", 4768 | "selectSearch": "\uf1204", 4769 | "selection": "\uf0489", 4770 | "selectionDrag": "\uf0A6D", 4771 | "selectionEllipse": "\uf0D32", 4772 | "selectionEllipseArrowInside": "\uf0F22", 4773 | "selectionMarker": "\uf1283", 4774 | "selectionMultiple": "\uf1285", 4775 | "selectionMultipleMarker": "\uf1284", 4776 | "selectionOff": "\uf0777", 4777 | "selectionSearch": "\uf1205", 4778 | "semanticWeb": "\uf1316", 4779 | "send": "\uf048A", 4780 | "sendCheck": "\uf1161", 4781 | "sendCheckOutline": "\uf1162", 4782 | "sendCircle": "\uf0DF8", 4783 | "sendCircleOutline": "\uf0DF9", 4784 | "sendClock": "\uf1163", 4785 | "sendClockOutline": "\uf1164", 4786 | "sendLock": "\uf07ED", 4787 | "sendLockOutline": "\uf1166", 4788 | "sendOutline": "\uf1165", 4789 | "serialPort": "\uf065C", 4790 | "server": "\uf048B", 4791 | "serverMinus": "\uf048C", 4792 | "serverNetwork": "\uf048D", 4793 | "serverNetworkOff": "\uf048E", 4794 | "serverOff": "\uf048F", 4795 | "serverPlus": "\uf0490", 4796 | "serverRemove": "\uf0491", 4797 | "serverSecurity": "\uf0492", 4798 | "setAll": "\uf0778", 4799 | "setCenter": "\uf0779", 4800 | "setCenterRight": "\uf077A", 4801 | "setLeft": "\uf077B", 4802 | "setLeftCenter": "\uf077C", 4803 | "setLeftRight": "\uf077D", 4804 | "setMerge": "\uf14E0", 4805 | "setNone": "\uf077E", 4806 | "setRight": "\uf077F", 4807 | "setSplit": "\uf14E1", 4808 | "setSquare": "\uf145D", 4809 | "setTopBox": "\uf099F", 4810 | "settingsHelper": "\uf0A6E", 4811 | "shaker": "\uf110E", 4812 | "shakerOutline": "\uf110F", 4813 | "shape": "\uf0831", 4814 | "shapeCirclePlus": "\uf065D", 4815 | "shapeOutline": "\uf0832", 4816 | "shapeOvalPlus": "\uf11FA", 4817 | "shapePlus": "\uf0495", 4818 | "shapePolygonPlus": "\uf065E", 4819 | "shapeRectanglePlus": "\uf065F", 4820 | "shapeSquarePlus": "\uf0660", 4821 | "shapeSquareRoundedPlus": "\uf14FA", 4822 | "share": "\uf0496", 4823 | "shareAll": "\uf11F4", 4824 | "shareAllOutline": "\uf11F5", 4825 | "shareCircle": "\uf11AD", 4826 | "shareOff": "\uf0F23", 4827 | "shareOffOutline": "\uf0F24", 4828 | "shareOutline": "\uf0932", 4829 | "shareVariant": "\uf0497", 4830 | "shareVariantOutline": "\uf1514", 4831 | "sharkFin": "\uf1673", 4832 | "sharkFinOutline": "\uf1674", 4833 | "sheep": "\uf0CC6", 4834 | "shield": "\uf0498", 4835 | "shieldAccount": "\uf088F", 4836 | "shieldAccountOutline": "\uf0A12", 4837 | "shieldAccountVariant": "\uf15A7", 4838 | "shieldAccountVariantOutline": "\uf15A8", 4839 | "shieldAirplane": "\uf06BB", 4840 | "shieldAirplaneOutline": "\uf0CC7", 4841 | "shieldAlert": "\uf0ECC", 4842 | "shieldAlertOutline": "\uf0ECD", 4843 | "shieldBug": "\uf13DA", 4844 | "shieldBugOutline": "\uf13DB", 4845 | "shieldCar": "\uf0F83", 4846 | "shieldCheck": "\uf0565", 4847 | "shieldCheckOutline": "\uf0CC8", 4848 | "shieldCross": "\uf0CC9", 4849 | "shieldCrossOutline": "\uf0CCA", 4850 | "shieldEdit": "\uf11A0", 4851 | "shieldEditOutline": "\uf11A1", 4852 | "shieldHalf": "\uf1360", 4853 | "shieldHalfFull": "\uf0780", 4854 | "shieldHome": "\uf068A", 4855 | "shieldHomeOutline": "\uf0CCB", 4856 | "shieldKey": "\uf0BC4", 4857 | "shieldKeyOutline": "\uf0BC5", 4858 | "shieldLinkVariant": "\uf0D33", 4859 | "shieldLinkVariantOutline": "\uf0D34", 4860 | "shieldLock": "\uf099D", 4861 | "shieldLockOutline": "\uf0CCC", 4862 | "shieldOff": "\uf099E", 4863 | "shieldOffOutline": "\uf099C", 4864 | "shieldOutline": "\uf0499", 4865 | "shieldPlus": "\uf0ADA", 4866 | "shieldPlusOutline": "\uf0ADB", 4867 | "shieldRefresh": "\uf00AA", 4868 | "shieldRefreshOutline": "\uf01E0", 4869 | "shieldRemove": "\uf0ADC", 4870 | "shieldRemoveOutline": "\uf0ADD", 4871 | "shieldSearch": "\uf0D9A", 4872 | "shieldStar": "\uf113B", 4873 | "shieldStarOutline": "\uf113C", 4874 | "shieldSun": "\uf105D", 4875 | "shieldSunOutline": "\uf105E", 4876 | "shieldSync": "\uf11A2", 4877 | "shieldSyncOutline": "\uf11A3", 4878 | "shipWheel": "\uf0833", 4879 | "shoeBallet": "\uf15CA", 4880 | "shoeCleat": "\uf15C7", 4881 | "shoeFormal": "\uf0B47", 4882 | "shoeHeel": "\uf0B48", 4883 | "shoePrint": "\uf0DFA", 4884 | "shoeSneaker": "\uf15C8", 4885 | "shopping": "\uf049A", 4886 | "shoppingMusic": "\uf049B", 4887 | "shoppingOutline": "\uf11D5", 4888 | "shoppingSearch": "\uf0F84", 4889 | "shore": "\uf14F9", 4890 | "shovel": "\uf0710", 4891 | "shovelOff": "\uf0711", 4892 | "shower": "\uf09A0", 4893 | "showerHead": "\uf09A1", 4894 | "shredder": "\uf049C", 4895 | "shuffle": "\uf049D", 4896 | "shuffleDisabled": "\uf049E", 4897 | "shuffleVariant": "\uf049F", 4898 | "shuriken": "\uf137F", 4899 | "sigma": "\uf04A0", 4900 | "sigmaLower": "\uf062B", 4901 | "signCaution": "\uf04A1", 4902 | "signDirection": "\uf0781", 4903 | "signDirectionMinus": "\uf1000", 4904 | "signDirectionPlus": "\uf0FDC", 4905 | "signDirectionRemove": "\uf0FDD", 4906 | "signPole": "\uf14F8", 4907 | "signRealEstate": "\uf1118", 4908 | "signText": "\uf0782", 4909 | "signal": "\uf04A2", 4910 | "signal-2g": "\uf0712", 4911 | "signal-3g": "\uf0713", 4912 | "signal-4g": "\uf0714", 4913 | "signal-5g": "\uf0A6F", 4914 | "signalCellular-1": "\uf08BC", 4915 | "signalCellular-2": "\uf08BD", 4916 | "signalCellular-3": "\uf08BE", 4917 | "signalCellularOutline": "\uf08BF", 4918 | "signalDistanceVariant": "\uf0E64", 4919 | "signalHspa": "\uf0715", 4920 | "signalHspaPlus": "\uf0716", 4921 | "signalOff": "\uf0783", 4922 | "signalVariant": "\uf060A", 4923 | "signature": "\uf0DFB", 4924 | "signatureFreehand": "\uf0DFC", 4925 | "signatureImage": "\uf0DFD", 4926 | "signatureText": "\uf0DFE", 4927 | "silo": "\uf0B49", 4928 | "silverware": "\uf04A3", 4929 | "silverwareClean": "\uf0FDE", 4930 | "silverwareFork": "\uf04A4", 4931 | "silverwareForkKnife": "\uf0A70", 4932 | "silverwareSpoon": "\uf04A5", 4933 | "silverwareVariant": "\uf04A6", 4934 | "sim": "\uf04A7", 4935 | "simAlert": "\uf04A8", 4936 | "simAlertOutline": "\uf15D3", 4937 | "simOff": "\uf04A9", 4938 | "simOffOutline": "\uf15D4", 4939 | "simOutline": "\uf15D5", 4940 | "simpleIcons": "\uf131D", 4941 | "sinaWeibo": "\uf0ADF", 4942 | "sineWave": "\uf095B", 4943 | "sitemap": "\uf04AA", 4944 | "sizeL": "\uf13A6", 4945 | "sizeM": "\uf13A5", 4946 | "sizeS": "\uf13A4", 4947 | "sizeXl": "\uf13A7", 4948 | "sizeXs": "\uf13A3", 4949 | "sizeXxl": "\uf13A8", 4950 | "sizeXxs": "\uf13A2", 4951 | "sizeXxxl": "\uf13A9", 4952 | "skate": "\uf0D35", 4953 | "skateboard": "\uf14C2", 4954 | "skewLess": "\uf0D36", 4955 | "skewMore": "\uf0D37", 4956 | "ski": "\uf1304", 4957 | "skiCrossCountry": "\uf1305", 4958 | "skiWater": "\uf1306", 4959 | "skipBackward": "\uf04AB", 4960 | "skipBackwardOutline": "\uf0F25", 4961 | "skipForward": "\uf04AC", 4962 | "skipForwardOutline": "\uf0F26", 4963 | "skipNext": "\uf04AD", 4964 | "skipNextCircle": "\uf0661", 4965 | "skipNextCircleOutline": "\uf0662", 4966 | "skipNextOutline": "\uf0F27", 4967 | "skipPrevious": "\uf04AE", 4968 | "skipPreviousCircle": "\uf0663", 4969 | "skipPreviousCircleOutline": "\uf0664", 4970 | "skipPreviousOutline": "\uf0F28", 4971 | "skull": "\uf068C", 4972 | "skullCrossbones": "\uf0BC6", 4973 | "skullCrossbonesOutline": "\uf0BC7", 4974 | "skullOutline": "\uf0BC8", 4975 | "skullScan": "\uf14C7", 4976 | "skullScanOutline": "\uf14C8", 4977 | "skype": "\uf04AF", 4978 | "skypeBusiness": "\uf04B0", 4979 | "slack": "\uf04B1", 4980 | "slashForward": "\uf0FDF", 4981 | "slashForwardBox": "\uf0FE0", 4982 | "sleep": "\uf04B2", 4983 | "sleepOff": "\uf04B3", 4984 | "slide": "\uf15A5", 4985 | "slopeDownhill": "\uf0DFF", 4986 | "slopeUphill": "\uf0E00", 4987 | "slotMachine": "\uf1114", 4988 | "slotMachineOutline": "\uf1115", 4989 | "smartCard": "\uf10BD", 4990 | "smartCardOutline": "\uf10BE", 4991 | "smartCardReader": "\uf10BF", 4992 | "smartCardReaderOutline": "\uf10C0", 4993 | "smog": "\uf0A71", 4994 | "smokeDetector": "\uf0392", 4995 | "smoking": "\uf04B4", 4996 | "smokingOff": "\uf04B5", 4997 | "smokingPipe": "\uf140D", 4998 | "smokingPipeOff": "\uf1428", 4999 | "snail": "\uf1677", 5000 | "snake": "\uf150E", 5001 | "snapchat": "\uf04B6", 5002 | "snowboard": "\uf1307", 5003 | "snowflake": "\uf0717", 5004 | "snowflakeAlert": "\uf0F29", 5005 | "snowflakeMelt": "\uf12CB", 5006 | "snowflakeOff": "\uf14E3", 5007 | "snowflakeVariant": "\uf0F2A", 5008 | "snowman": "\uf04B7", 5009 | "soccer": "\uf04B8", 5010 | "soccerField": "\uf0834", 5011 | "socialDistance-2Meters": "\uf1579", 5012 | "socialDistance-6Feet": "\uf157A", 5013 | "sofa": "\uf04B9", 5014 | "sofaOutline": "\uf156D", 5015 | "sofaSingle": "\uf156E", 5016 | "sofaSingleOutline": "\uf156F", 5017 | "solarPanel": "\uf0D9B", 5018 | "solarPanelLarge": "\uf0D9C", 5019 | "solarPower": "\uf0A72", 5020 | "solderingIron": "\uf1092", 5021 | "solid": "\uf068D", 5022 | "sonyPlaystation": "\uf0414", 5023 | "sort": "\uf04BA", 5024 | "sortAlphabeticalAscending": "\uf05BD", 5025 | "sortAlphabeticalAscendingVariant": "\uf1148", 5026 | "sortAlphabeticalDescending": "\uf05BF", 5027 | "sortAlphabeticalDescendingVariant": "\uf1149", 5028 | "sortAlphabeticalVariant": "\uf04BB", 5029 | "sortAscending": "\uf04BC", 5030 | "sortBoolAscending": "\uf1385", 5031 | "sortBoolAscendingVariant": "\uf1386", 5032 | "sortBoolDescending": "\uf1387", 5033 | "sortBoolDescendingVariant": "\uf1388", 5034 | "sortCalendarAscending": "\uf1547", 5035 | "sortCalendarDescending": "\uf1548", 5036 | "sortClockAscending": "\uf1549", 5037 | "sortClockAscendingOutline": "\uf154A", 5038 | "sortClockDescending": "\uf154B", 5039 | "sortClockDescendingOutline": "\uf154C", 5040 | "sortDescending": "\uf04BD", 5041 | "sortNumericAscending": "\uf1389", 5042 | "sortNumericAscendingVariant": "\uf090D", 5043 | "sortNumericDescending": "\uf138A", 5044 | "sortNumericDescendingVariant": "\uf0AD2", 5045 | "sortNumericVariant": "\uf04BE", 5046 | "sortReverseVariant": "\uf033C", 5047 | "sortVariant": "\uf04BF", 5048 | "sortVariantLock": "\uf0CCD", 5049 | "sortVariantLockOpen": "\uf0CCE", 5050 | "sortVariantRemove": "\uf1147", 5051 | "soundcloud": "\uf04C0", 5052 | "sourceBranch": "\uf062C", 5053 | "sourceBranchCheck": "\uf14CF", 5054 | "sourceBranchMinus": "\uf14CB", 5055 | "sourceBranchPlus": "\uf14CA", 5056 | "sourceBranchRefresh": "\uf14CD", 5057 | "sourceBranchRemove": "\uf14CC", 5058 | "sourceBranchSync": "\uf14CE", 5059 | "sourceCommit": "\uf0718", 5060 | "sourceCommitEnd": "\uf0719", 5061 | "sourceCommitEndLocal": "\uf071A", 5062 | "sourceCommitLocal": "\uf071B", 5063 | "sourceCommitNextLocal": "\uf071C", 5064 | "sourceCommitStart": "\uf071D", 5065 | "sourceCommitStartNextLocal": "\uf071E", 5066 | "sourceFork": "\uf04C1", 5067 | "sourceMerge": "\uf062D", 5068 | "sourcePull": "\uf04C2", 5069 | "sourceRepository": "\uf0CCF", 5070 | "sourceRepositoryMultiple": "\uf0CD0", 5071 | "soySauce": "\uf07EE", 5072 | "soySauceOff": "\uf13FC", 5073 | "spa": "\uf0CD1", 5074 | "spaOutline": "\uf0CD2", 5075 | "spaceInvaders": "\uf0BC9", 5076 | "spaceStation": "\uf1383", 5077 | "spade": "\uf0E65", 5078 | "sparkles": "\uf1545", 5079 | "speaker": "\uf04C3", 5080 | "speakerBluetooth": "\uf09A2", 5081 | "speakerMultiple": "\uf0D38", 5082 | "speakerOff": "\uf04C4", 5083 | "speakerWireless": "\uf071F", 5084 | "speedometer": "\uf04C5", 5085 | "speedometerMedium": "\uf0F85", 5086 | "speedometerSlow": "\uf0F86", 5087 | "spellcheck": "\uf04C6", 5088 | "spider": "\uf11EA", 5089 | "spiderThread": "\uf11EB", 5090 | "spiderWeb": "\uf0BCA", 5091 | "spiritLevel": "\uf14F1", 5092 | "spoonSugar": "\uf1429", 5093 | "spotify": "\uf04C7", 5094 | "spotlight": "\uf04C8", 5095 | "spotlightBeam": "\uf04C9", 5096 | "spray": "\uf0665", 5097 | "sprayBottle": "\uf0AE0", 5098 | "sprinkler": "\uf105F", 5099 | "sprinklerVariant": "\uf1060", 5100 | "sprout": "\uf0E66", 5101 | "sproutOutline": "\uf0E67", 5102 | "square": "\uf0764", 5103 | "squareCircle": "\uf1500", 5104 | "squareEditOutline": "\uf090C", 5105 | "squareMedium": "\uf0A13", 5106 | "squareMediumOutline": "\uf0A14", 5107 | "squareOff": "\uf12EE", 5108 | "squareOffOutline": "\uf12EF", 5109 | "squareOutline": "\uf0763", 5110 | "squareRoot": "\uf0784", 5111 | "squareRootBox": "\uf09A3", 5112 | "squareRounded": "\uf14FB", 5113 | "squareRoundedOutline": "\uf14FC", 5114 | "squareSmall": "\uf0A15", 5115 | "squareWave": "\uf147B", 5116 | "squeegee": "\uf0AE1", 5117 | "ssh": "\uf08C0", 5118 | "stackExchange": "\uf060B", 5119 | "stackOverflow": "\uf04CC", 5120 | "stackpath": "\uf0359", 5121 | "stadium": "\uf0FF9", 5122 | "stadiumVariant": "\uf0720", 5123 | "stairs": "\uf04CD", 5124 | "stairsBox": "\uf139E", 5125 | "stairsDown": "\uf12BE", 5126 | "stairsUp": "\uf12BD", 5127 | "stamper": "\uf0D39", 5128 | "standardDefinition": "\uf07EF", 5129 | "star": "\uf04CE", 5130 | "starBox": "\uf0A73", 5131 | "starBoxMultiple": "\uf1286", 5132 | "starBoxMultipleOutline": "\uf1287", 5133 | "starBoxOutline": "\uf0A74", 5134 | "starCheck": "\uf1566", 5135 | "starCheckOutline": "\uf156A", 5136 | "starCircle": "\uf04CF", 5137 | "starCircleOutline": "\uf09A4", 5138 | "starCog": "\uf1668", 5139 | "starCogOutline": "\uf1669", 5140 | "starFace": "\uf09A5", 5141 | "starFourPoints": "\uf0AE2", 5142 | "starFourPointsOutline": "\uf0AE3", 5143 | "starHalf": "\uf0246", 5144 | "starHalfFull": "\uf04D0", 5145 | "starMinus": "\uf1564", 5146 | "starMinusOutline": "\uf1568", 5147 | "starOff": "\uf04D1", 5148 | "starOffOutline": "\uf155B", 5149 | "starOutline": "\uf04D2", 5150 | "starPlus": "\uf1563", 5151 | "starPlusOutline": "\uf1567", 5152 | "starRemove": "\uf1565", 5153 | "starRemoveOutline": "\uf1569", 5154 | "starSettings": "\uf166A", 5155 | "starSettingsOutline": "\uf166B", 5156 | "starShooting": "\uf1741", 5157 | "starShootingOutline": "\uf1742", 5158 | "starThreePoints": "\uf0AE4", 5159 | "starThreePointsOutline": "\uf0AE5", 5160 | "stateMachine": "\uf11EF", 5161 | "steam": "\uf04D3", 5162 | "steering": "\uf04D4", 5163 | "steeringOff": "\uf090E", 5164 | "stepBackward": "\uf04D5", 5165 | "stepBackward-2": "\uf04D6", 5166 | "stepForward": "\uf04D7", 5167 | "stepForward-2": "\uf04D8", 5168 | "stethoscope": "\uf04D9", 5169 | "sticker": "\uf1364", 5170 | "stickerAlert": "\uf1365", 5171 | "stickerAlertOutline": "\uf1366", 5172 | "stickerCheck": "\uf1367", 5173 | "stickerCheckOutline": "\uf1368", 5174 | "stickerCircleOutline": "\uf05D0", 5175 | "stickerEmoji": "\uf0785", 5176 | "stickerMinus": "\uf1369", 5177 | "stickerMinusOutline": "\uf136A", 5178 | "stickerOutline": "\uf136B", 5179 | "stickerPlus": "\uf136C", 5180 | "stickerPlusOutline": "\uf136D", 5181 | "stickerRemove": "\uf136E", 5182 | "stickerRemoveOutline": "\uf136F", 5183 | "stocking": "\uf04DA", 5184 | "stomach": "\uf1093", 5185 | "stop": "\uf04DB", 5186 | "stopCircle": "\uf0666", 5187 | "stopCircleOutline": "\uf0667", 5188 | "store": "\uf04DC", 5189 | "store-24Hour": "\uf04DD", 5190 | "storeMinus": "\uf165E", 5191 | "storeOutline": "\uf1361", 5192 | "storePlus": "\uf165F", 5193 | "storeRemove": "\uf1660", 5194 | "storefront": "\uf07C7", 5195 | "storefrontOutline": "\uf10C1", 5196 | "stove": "\uf04DE", 5197 | "strategy": "\uf11D6", 5198 | "stretchToPage": "\uf0F2B", 5199 | "stretchToPageOutline": "\uf0F2C", 5200 | "stringLights": "\uf12BA", 5201 | "stringLightsOff": "\uf12BB", 5202 | "subdirectoryArrowLeft": "\uf060C", 5203 | "subdirectoryArrowRight": "\uf060D", 5204 | "submarine": "\uf156C", 5205 | "subtitles": "\uf0A16", 5206 | "subtitlesOutline": "\uf0A17", 5207 | "subway": "\uf06AC", 5208 | "subwayAlertVariant": "\uf0D9D", 5209 | "subwayVariant": "\uf04DF", 5210 | "summit": "\uf0786", 5211 | "sunglasses": "\uf04E0", 5212 | "surroundSound": "\uf05C5", 5213 | "surroundSound-2-0": "\uf07F0", 5214 | "surroundSound-2-1": "\uf1729", 5215 | "surroundSound-3-1": "\uf07F1", 5216 | "surroundSound-5-1": "\uf07F2", 5217 | "surroundSound-5-1-2": "\uf172A", 5218 | "surroundSound-7-1": "\uf07F3", 5219 | "svg": "\uf0721", 5220 | "swapHorizontal": "\uf04E1", 5221 | "swapHorizontalBold": "\uf0BCD", 5222 | "swapHorizontalCircle": "\uf0FE1", 5223 | "swapHorizontalCircleOutline": "\uf0FE2", 5224 | "swapHorizontalVariant": "\uf08C1", 5225 | "swapVertical": "\uf04E2", 5226 | "swapVerticalBold": "\uf0BCE", 5227 | "swapVerticalCircle": "\uf0FE3", 5228 | "swapVerticalCircleOutline": "\uf0FE4", 5229 | "swapVerticalVariant": "\uf08C2", 5230 | "swim": "\uf04E3", 5231 | "switch": "\uf04E4", 5232 | "sword": "\uf04E5", 5233 | "swordCross": "\uf0787", 5234 | "syllabaryHangul": "\uf1333", 5235 | "syllabaryHiragana": "\uf1334", 5236 | "syllabaryKatakana": "\uf1335", 5237 | "syllabaryKatakanaHalfwidth": "\uf1336", 5238 | "symbol": "\uf1501", 5239 | "symfony": "\uf0AE6", 5240 | "sync": "\uf04E6", 5241 | "syncAlert": "\uf04E7", 5242 | "syncCircle": "\uf1378", 5243 | "syncOff": "\uf04E8", 5244 | "tab": "\uf04E9", 5245 | "tabMinus": "\uf0B4B", 5246 | "tabPlus": "\uf075C", 5247 | "tabRemove": "\uf0B4C", 5248 | "tabUnselected": "\uf04EA", 5249 | "table": "\uf04EB", 5250 | "tableAccount": "\uf13B9", 5251 | "tableAlert": "\uf13BA", 5252 | "tableArrowDown": "\uf13BB", 5253 | "tableArrowLeft": "\uf13BC", 5254 | "tableArrowRight": "\uf13BD", 5255 | "tableArrowUp": "\uf13BE", 5256 | "tableBorder": "\uf0A18", 5257 | "tableCancel": "\uf13BF", 5258 | "tableChair": "\uf1061", 5259 | "tableCheck": "\uf13C0", 5260 | "tableClock": "\uf13C1", 5261 | "tableCog": "\uf13C2", 5262 | "tableColumn": "\uf0835", 5263 | "tableColumnPlusAfter": "\uf04EC", 5264 | "tableColumnPlusBefore": "\uf04ED", 5265 | "tableColumnRemove": "\uf04EE", 5266 | "tableColumnWidth": "\uf04EF", 5267 | "tableEdit": "\uf04F0", 5268 | "tableEye": "\uf1094", 5269 | "tableEyeOff": "\uf13C3", 5270 | "tableFurniture": "\uf05BC", 5271 | "tableHeadersEye": "\uf121D", 5272 | "tableHeadersEyeOff": "\uf121E", 5273 | "tableHeart": "\uf13C4", 5274 | "tableKey": "\uf13C5", 5275 | "tableLarge": "\uf04F1", 5276 | "tableLargePlus": "\uf0F87", 5277 | "tableLargeRemove": "\uf0F88", 5278 | "tableLock": "\uf13C6", 5279 | "tableMergeCells": "\uf09A6", 5280 | "tableMinus": "\uf13C7", 5281 | "tableMultiple": "\uf13C8", 5282 | "tableNetwork": "\uf13C9", 5283 | "tableOfContents": "\uf0836", 5284 | "tableOff": "\uf13CA", 5285 | "tablePicnic": "\uf1743", 5286 | "tablePlus": "\uf0A75", 5287 | "tableRefresh": "\uf13A0", 5288 | "tableRemove": "\uf0A76", 5289 | "tableRow": "\uf0837", 5290 | "tableRowHeight": "\uf04F2", 5291 | "tableRowPlusAfter": "\uf04F3", 5292 | "tableRowPlusBefore": "\uf04F4", 5293 | "tableRowRemove": "\uf04F5", 5294 | "tableSearch": "\uf090F", 5295 | "tableSettings": "\uf0838", 5296 | "tableSplitCell": "\uf142A", 5297 | "tableStar": "\uf13CB", 5298 | "tableSync": "\uf13A1", 5299 | "tableTennis": "\uf0E68", 5300 | "tablet": "\uf04F6", 5301 | "tabletAndroid": "\uf04F7", 5302 | "tabletCellphone": "\uf09A7", 5303 | "tabletDashboard": "\uf0ECE", 5304 | "tabletIpad": "\uf04F8", 5305 | "taco": "\uf0762", 5306 | "tag": "\uf04F9", 5307 | "tagArrowDown": "\uf172B", 5308 | "tagArrowDownOutline": "\uf172C", 5309 | "tagArrowLeft": "\uf172D", 5310 | "tagArrowLeftOutline": "\uf172E", 5311 | "tagArrowRight": "\uf172F", 5312 | "tagArrowRightOutline": "\uf1730", 5313 | "tagArrowUp": "\uf1731", 5314 | "tagArrowUpOutline": "\uf1732", 5315 | "tagFaces": "\uf04FA", 5316 | "tagHeart": "\uf068B", 5317 | "tagHeartOutline": "\uf0BCF", 5318 | "tagMinus": "\uf0910", 5319 | "tagMinusOutline": "\uf121F", 5320 | "tagMultiple": "\uf04FB", 5321 | "tagMultipleOutline": "\uf12F7", 5322 | "tagOff": "\uf1220", 5323 | "tagOffOutline": "\uf1221", 5324 | "tagOutline": "\uf04FC", 5325 | "tagPlus": "\uf0722", 5326 | "tagPlusOutline": "\uf1222", 5327 | "tagRemove": "\uf0723", 5328 | "tagRemoveOutline": "\uf1223", 5329 | "tagText": "\uf1224", 5330 | "tagTextOutline": "\uf04FD", 5331 | "tailwind": "\uf13FF", 5332 | "tank": "\uf0D3A", 5333 | "tankerTruck": "\uf0FE5", 5334 | "tapeDrive": "\uf16DF", 5335 | "tapeMeasure": "\uf0B4D", 5336 | "target": "\uf04FE", 5337 | "targetAccount": "\uf0BD0", 5338 | "targetVariant": "\uf0A77", 5339 | "taxi": "\uf04FF", 5340 | "tea": "\uf0D9E", 5341 | "teaOutline": "\uf0D9F", 5342 | "teach": "\uf0890", 5343 | "teamviewer": "\uf0500", 5344 | "telegram": "\uf0501", 5345 | "telescope": "\uf0B4E", 5346 | "television": "\uf0502", 5347 | "televisionAmbientLight": "\uf1356", 5348 | "televisionBox": "\uf0839", 5349 | "televisionClassic": "\uf07F4", 5350 | "televisionClassicOff": "\uf083A", 5351 | "televisionClean": "\uf1110", 5352 | "televisionGuide": "\uf0503", 5353 | "televisionOff": "\uf083B", 5354 | "televisionPause": "\uf0F89", 5355 | "televisionPlay": "\uf0ECF", 5356 | "televisionStop": "\uf0F8A", 5357 | "temperatureCelsius": "\uf0504", 5358 | "temperatureFahrenheit": "\uf0505", 5359 | "temperatureKelvin": "\uf0506", 5360 | "tennis": "\uf0DA0", 5361 | "tennisBall": "\uf0507", 5362 | "tent": "\uf0508", 5363 | "terraform": "\uf1062", 5364 | "terrain": "\uf0509", 5365 | "testTube": "\uf0668", 5366 | "testTubeEmpty": "\uf0911", 5367 | "testTubeOff": "\uf0912", 5368 | "text": "\uf09A8", 5369 | "textAccount": "\uf1570", 5370 | "textBox": "\uf021A", 5371 | "textBoxCheck": "\uf0EA6", 5372 | "textBoxCheckOutline": "\uf0EA7", 5373 | "textBoxMinus": "\uf0EA8", 5374 | "textBoxMinusOutline": "\uf0EA9", 5375 | "textBoxMultiple": "\uf0AB7", 5376 | "textBoxMultipleOutline": "\uf0AB8", 5377 | "textBoxOutline": "\uf09ED", 5378 | "textBoxPlus": "\uf0EAA", 5379 | "textBoxPlusOutline": "\uf0EAB", 5380 | "textBoxRemove": "\uf0EAC", 5381 | "textBoxRemoveOutline": "\uf0EAD", 5382 | "textBoxSearch": "\uf0EAE", 5383 | "textBoxSearchOutline": "\uf0EAF", 5384 | "textRecognition": "\uf113D", 5385 | "textSearch": "\uf13B8", 5386 | "textShadow": "\uf0669", 5387 | "textShort": "\uf09A9", 5388 | "textSubject": "\uf09AA", 5389 | "textToSpeech": "\uf050A", 5390 | "textToSpeechOff": "\uf050B", 5391 | "texture": "\uf050C", 5392 | "textureBox": "\uf0FE6", 5393 | "theater": "\uf050D", 5394 | "themeLightDark": "\uf050E", 5395 | "thermometer": "\uf050F", 5396 | "thermometerAlert": "\uf0E01", 5397 | "thermometerChevronDown": "\uf0E02", 5398 | "thermometerChevronUp": "\uf0E03", 5399 | "thermometerHigh": "\uf10C2", 5400 | "thermometerLines": "\uf0510", 5401 | "thermometerLow": "\uf10C3", 5402 | "thermometerMinus": "\uf0E04", 5403 | "thermometerOff": "\uf1531", 5404 | "thermometerPlus": "\uf0E05", 5405 | "thermostat": "\uf0393", 5406 | "thermostatBox": "\uf0891", 5407 | "thoughtBubble": "\uf07F6", 5408 | "thoughtBubbleOutline": "\uf07F7", 5409 | "thumbDown": "\uf0511", 5410 | "thumbDownOutline": "\uf0512", 5411 | "thumbUp": "\uf0513", 5412 | "thumbUpOutline": "\uf0514", 5413 | "thumbsUpDown": "\uf0515", 5414 | "ticket": "\uf0516", 5415 | "ticketAccount": "\uf0517", 5416 | "ticketConfirmation": "\uf0518", 5417 | "ticketConfirmationOutline": "\uf13AA", 5418 | "ticketOutline": "\uf0913", 5419 | "ticketPercent": "\uf0724", 5420 | "ticketPercentOutline": "\uf142B", 5421 | "tie": "\uf0519", 5422 | "tilde": "\uf0725", 5423 | "timelapse": "\uf051A", 5424 | "timeline": "\uf0BD1", 5425 | "timelineAlert": "\uf0F95", 5426 | "timelineAlertOutline": "\uf0F98", 5427 | "timelineCheck": "\uf1532", 5428 | "timelineCheckOutline": "\uf1533", 5429 | "timelineClock": "\uf11FB", 5430 | "timelineClockOutline": "\uf11FC", 5431 | "timelineHelp": "\uf0F99", 5432 | "timelineHelpOutline": "\uf0F9A", 5433 | "timelineMinus": "\uf1534", 5434 | "timelineMinusOutline": "\uf1535", 5435 | "timelineOutline": "\uf0BD2", 5436 | "timelinePlus": "\uf0F96", 5437 | "timelinePlusOutline": "\uf0F97", 5438 | "timelineRemove": "\uf1536", 5439 | "timelineRemoveOutline": "\uf1537", 5440 | "timelineText": "\uf0BD3", 5441 | "timelineTextOutline": "\uf0BD4", 5442 | "timer": "\uf13AB", 5443 | "timer-10": "\uf051C", 5444 | "timer-3": "\uf051D", 5445 | "timerOff": "\uf13AC", 5446 | "timerOffOutline": "\uf051E", 5447 | "timerOutline": "\uf051B", 5448 | "timerSand": "\uf051F", 5449 | "timerSandEmpty": "\uf06AD", 5450 | "timerSandFull": "\uf078C", 5451 | "timetable": "\uf0520", 5452 | "toaster": "\uf1063", 5453 | "toasterOff": "\uf11B7", 5454 | "toasterOven": "\uf0CD3", 5455 | "toggleSwitch": "\uf0521", 5456 | "toggleSwitchOff": "\uf0522", 5457 | "toggleSwitchOffOutline": "\uf0A19", 5458 | "toggleSwitchOutline": "\uf0A1A", 5459 | "toilet": "\uf09AB", 5460 | "toolbox": "\uf09AC", 5461 | "toolboxOutline": "\uf09AD", 5462 | "tools": "\uf1064", 5463 | "tooltip": "\uf0523", 5464 | "tooltipAccount": "\uf000C", 5465 | "tooltipCheck": "\uf155C", 5466 | "tooltipCheckOutline": "\uf155D", 5467 | "tooltipEdit": "\uf0524", 5468 | "tooltipEditOutline": "\uf12C5", 5469 | "tooltipImage": "\uf0525", 5470 | "tooltipImageOutline": "\uf0BD5", 5471 | "tooltipMinus": "\uf155E", 5472 | "tooltipMinusOutline": "\uf155F", 5473 | "tooltipOutline": "\uf0526", 5474 | "tooltipPlus": "\uf0BD6", 5475 | "tooltipPlusOutline": "\uf0527", 5476 | "tooltipRemove": "\uf1560", 5477 | "tooltipRemoveOutline": "\uf1561", 5478 | "tooltipText": "\uf0528", 5479 | "tooltipTextOutline": "\uf0BD7", 5480 | "tooth": "\uf08C3", 5481 | "toothOutline": "\uf0529", 5482 | "toothbrush": "\uf1129", 5483 | "toothbrushElectric": "\uf112C", 5484 | "toothbrushPaste": "\uf112A", 5485 | "torch": "\uf1606", 5486 | "tortoise": "\uf0D3B", 5487 | "toslink": "\uf12B8", 5488 | "tournament": "\uf09AE", 5489 | "towTruck": "\uf083C", 5490 | "towerBeach": "\uf0681", 5491 | "towerFire": "\uf0682", 5492 | "toyBrick": "\uf1288", 5493 | "toyBrickMarker": "\uf1289", 5494 | "toyBrickMarkerOutline": "\uf128A", 5495 | "toyBrickMinus": "\uf128B", 5496 | "toyBrickMinusOutline": "\uf128C", 5497 | "toyBrickOutline": "\uf128D", 5498 | "toyBrickPlus": "\uf128E", 5499 | "toyBrickPlusOutline": "\uf128F", 5500 | "toyBrickRemove": "\uf1290", 5501 | "toyBrickRemoveOutline": "\uf1291", 5502 | "toyBrickSearch": "\uf1292", 5503 | "toyBrickSearchOutline": "\uf1293", 5504 | "trackLight": "\uf0914", 5505 | "trackpad": "\uf07F8", 5506 | "trackpadLock": "\uf0933", 5507 | "tractor": "\uf0892", 5508 | "tractorVariant": "\uf14C4", 5509 | "trademark": "\uf0A78", 5510 | "trafficCone": "\uf137C", 5511 | "trafficLight": "\uf052B", 5512 | "train": "\uf052C", 5513 | "trainCar": "\uf0BD8", 5514 | "trainCarPassenger": "\uf1733", 5515 | "trainCarPassengerDoor": "\uf1734", 5516 | "trainCarPassengerDoorOpen": "\uf1735", 5517 | "trainCarPassengerVariant": "\uf1736", 5518 | "trainVariant": "\uf08C4", 5519 | "tram": "\uf052D", 5520 | "tramSide": "\uf0FE7", 5521 | "transcribe": "\uf052E", 5522 | "transcribeClose": "\uf052F", 5523 | "transfer": "\uf1065", 5524 | "transferDown": "\uf0DA1", 5525 | "transferLeft": "\uf0DA2", 5526 | "transferRight": "\uf0530", 5527 | "transferUp": "\uf0DA3", 5528 | "transitConnection": "\uf0D3C", 5529 | "transitConnectionHorizontal": "\uf1546", 5530 | "transitConnectionVariant": "\uf0D3D", 5531 | "transitDetour": "\uf0F8B", 5532 | "transitSkip": "\uf1515", 5533 | "transitTransfer": "\uf06AE", 5534 | "transition": "\uf0915", 5535 | "transitionMasked": "\uf0916", 5536 | "translate": "\uf05CA", 5537 | "translateOff": "\uf0E06", 5538 | "transmissionTower": "\uf0D3E", 5539 | "trashCan": "\uf0A79", 5540 | "trashCanOutline": "\uf0A7A", 5541 | "tray": "\uf1294", 5542 | "trayAlert": "\uf1295", 5543 | "trayFull": "\uf1296", 5544 | "trayMinus": "\uf1297", 5545 | "trayPlus": "\uf1298", 5546 | "trayRemove": "\uf1299", 5547 | "treasureChest": "\uf0726", 5548 | "tree": "\uf0531", 5549 | "treeOutline": "\uf0E69", 5550 | "trello": "\uf0532", 5551 | "trendingDown": "\uf0533", 5552 | "trendingNeutral": "\uf0534", 5553 | "trendingUp": "\uf0535", 5554 | "triangle": "\uf0536", 5555 | "triangleOutline": "\uf0537", 5556 | "triangleWave": "\uf147C", 5557 | "triforce": "\uf0BD9", 5558 | "trophy": "\uf0538", 5559 | "trophyAward": "\uf0539", 5560 | "trophyBroken": "\uf0DA4", 5561 | "trophyOutline": "\uf053A", 5562 | "trophyVariant": "\uf053B", 5563 | "trophyVariantOutline": "\uf053C", 5564 | "truck": "\uf053D", 5565 | "truckCheck": "\uf0CD4", 5566 | "truckCheckOutline": "\uf129A", 5567 | "truckDelivery": "\uf053E", 5568 | "truckDeliveryOutline": "\uf129B", 5569 | "truckFast": "\uf0788", 5570 | "truckFastOutline": "\uf129C", 5571 | "truckOutline": "\uf129D", 5572 | "truckTrailer": "\uf0727", 5573 | "trumpet": "\uf1096", 5574 | "tshirtCrew": "\uf0A7B", 5575 | "tshirtCrewOutline": "\uf053F", 5576 | "tshirtV": "\uf0A7C", 5577 | "tshirtVOutline": "\uf0540", 5578 | "tumbleDryer": "\uf0917", 5579 | "tumbleDryerAlert": "\uf11BA", 5580 | "tumbleDryerOff": "\uf11BB", 5581 | "tune": "\uf062E", 5582 | "tuneVariant": "\uf1542", 5583 | "tuneVertical": "\uf066A", 5584 | "tuneVerticalVariant": "\uf1543", 5585 | "turkey": "\uf171B", 5586 | "turnstile": "\uf0CD5", 5587 | "turnstileOutline": "\uf0CD6", 5588 | "turtle": "\uf0CD7", 5589 | "twitch": "\uf0543", 5590 | "twitter": "\uf0544", 5591 | "twitterRetweet": "\uf0547", 5592 | "twoFactorAuthentication": "\uf09AF", 5593 | "typewriter": "\uf0F2D", 5594 | "ubisoft": "\uf0BDA", 5595 | "ubuntu": "\uf0548", 5596 | "ufo": "\uf10C4", 5597 | "ufoOutline": "\uf10C5", 5598 | "ultraHighDefinition": "\uf07F9", 5599 | "umbraco": "\uf0549", 5600 | "umbrella": "\uf054A", 5601 | "umbrellaClosed": "\uf09B0", 5602 | "umbrellaClosedOutline": "\uf13E2", 5603 | "umbrellaClosedVariant": "\uf13E1", 5604 | "umbrellaOutline": "\uf054B", 5605 | "undo": "\uf054C", 5606 | "undoVariant": "\uf054D", 5607 | "unfoldLessHorizontal": "\uf054E", 5608 | "unfoldLessVertical": "\uf0760", 5609 | "unfoldMoreHorizontal": "\uf054F", 5610 | "unfoldMoreVertical": "\uf0761", 5611 | "ungroup": "\uf0550", 5612 | "unicode": "\uf0ED0", 5613 | "unicorn": "\uf15C2", 5614 | "unicornVariant": "\uf15C3", 5615 | "unicycle": "\uf15E5", 5616 | "unity": "\uf06AF", 5617 | "unreal": "\uf09B1", 5618 | "untappd": "\uf0551", 5619 | "update": "\uf06B0", 5620 | "upload": "\uf0552", 5621 | "uploadLock": "\uf1373", 5622 | "uploadLockOutline": "\uf1374", 5623 | "uploadMultiple": "\uf083D", 5624 | "uploadNetwork": "\uf06F6", 5625 | "uploadNetworkOutline": "\uf0CD8", 5626 | "uploadOff": "\uf10C6", 5627 | "uploadOffOutline": "\uf10C7", 5628 | "uploadOutline": "\uf0E07", 5629 | "usb": "\uf0553", 5630 | "usbFlashDrive": "\uf129E", 5631 | "usbFlashDriveOutline": "\uf129F", 5632 | "usbPort": "\uf11F0", 5633 | "valve": "\uf1066", 5634 | "valveClosed": "\uf1067", 5635 | "valveOpen": "\uf1068", 5636 | "vanPassenger": "\uf07FA", 5637 | "vanUtility": "\uf07FB", 5638 | "vanish": "\uf07FC", 5639 | "vanishQuarter": "\uf1554", 5640 | "vanityLight": "\uf11E1", 5641 | "variable": "\uf0AE7", 5642 | "variableBox": "\uf1111", 5643 | "vectorArrangeAbove": "\uf0554", 5644 | "vectorArrangeBelow": "\uf0555", 5645 | "vectorBezier": "\uf0AE8", 5646 | "vectorCircle": "\uf0556", 5647 | "vectorCircleVariant": "\uf0557", 5648 | "vectorCombine": "\uf0558", 5649 | "vectorCurve": "\uf0559", 5650 | "vectorDifference": "\uf055A", 5651 | "vectorDifferenceAb": "\uf055B", 5652 | "vectorDifferenceBa": "\uf055C", 5653 | "vectorEllipse": "\uf0893", 5654 | "vectorIntersection": "\uf055D", 5655 | "vectorLine": "\uf055E", 5656 | "vectorLink": "\uf0FE8", 5657 | "vectorPoint": "\uf055F", 5658 | "vectorPolygon": "\uf0560", 5659 | "vectorPolyline": "\uf0561", 5660 | "vectorPolylineEdit": "\uf1225", 5661 | "vectorPolylineMinus": "\uf1226", 5662 | "vectorPolylinePlus": "\uf1227", 5663 | "vectorPolylineRemove": "\uf1228", 5664 | "vectorRadius": "\uf074A", 5665 | "vectorRectangle": "\uf05C6", 5666 | "vectorSelection": "\uf0562", 5667 | "vectorSquare": "\uf0001", 5668 | "vectorTriangle": "\uf0563", 5669 | "vectorUnion": "\uf0564", 5670 | "vhs": "\uf0A1B", 5671 | "vibrate": "\uf0566", 5672 | "vibrateOff": "\uf0CD9", 5673 | "video": "\uf0567", 5674 | "video-3d": "\uf07FD", 5675 | "video-3dOff": "\uf13D9", 5676 | "video-3dVariant": "\uf0ED1", 5677 | "video-4kBox": "\uf083E", 5678 | "videoAccount": "\uf0919", 5679 | "videoBox": "\uf00FD", 5680 | "videoBoxOff": "\uf00FE", 5681 | "videoCheck": "\uf1069", 5682 | "videoCheckOutline": "\uf106A", 5683 | "videoHighDefinition": "\uf152E", 5684 | "videoImage": "\uf091A", 5685 | "videoInputAntenna": "\uf083F", 5686 | "videoInputComponent": "\uf0840", 5687 | "videoInputHdmi": "\uf0841", 5688 | "videoInputScart": "\uf0F8C", 5689 | "videoInputSvideo": "\uf0842", 5690 | "videoMinus": "\uf09B2", 5691 | "videoMinusOutline": "\uf02BA", 5692 | "videoOff": "\uf0568", 5693 | "videoOffOutline": "\uf0BDB", 5694 | "videoOutline": "\uf0BDC", 5695 | "videoPlus": "\uf09B3", 5696 | "videoPlusOutline": "\uf01D3", 5697 | "videoStabilization": "\uf091B", 5698 | "videoSwitch": "\uf0569", 5699 | "videoSwitchOutline": "\uf0790", 5700 | "videoVintage": "\uf0A1C", 5701 | "videoWireless": "\uf0ED2", 5702 | "videoWirelessOutline": "\uf0ED3", 5703 | "viewAgenda": "\uf056A", 5704 | "viewAgendaOutline": "\uf11D8", 5705 | "viewArray": "\uf056B", 5706 | "viewArrayOutline": "\uf1485", 5707 | "viewCarousel": "\uf056C", 5708 | "viewCarouselOutline": "\uf1486", 5709 | "viewColumn": "\uf056D", 5710 | "viewColumnOutline": "\uf1487", 5711 | "viewComfy": "\uf0E6A", 5712 | "viewComfyOutline": "\uf1488", 5713 | "viewCompact": "\uf0E6B", 5714 | "viewCompactOutline": "\uf0E6C", 5715 | "viewDashboard": "\uf056E", 5716 | "viewDashboardOutline": "\uf0A1D", 5717 | "viewDashboardVariant": "\uf0843", 5718 | "viewDashboardVariantOutline": "\uf1489", 5719 | "viewDay": "\uf056F", 5720 | "viewDayOutline": "\uf148A", 5721 | "viewGrid": "\uf0570", 5722 | "viewGridOutline": "\uf11D9", 5723 | "viewGridPlus": "\uf0F8D", 5724 | "viewGridPlusOutline": "\uf11DA", 5725 | "viewHeadline": "\uf0571", 5726 | "viewList": "\uf0572", 5727 | "viewListOutline": "\uf148B", 5728 | "viewModule": "\uf0573", 5729 | "viewModuleOutline": "\uf148C", 5730 | "viewParallel": "\uf0728", 5731 | "viewParallelOutline": "\uf148D", 5732 | "viewQuilt": "\uf0574", 5733 | "viewQuiltOutline": "\uf148E", 5734 | "viewSequential": "\uf0729", 5735 | "viewSequentialOutline": "\uf148F", 5736 | "viewSplitHorizontal": "\uf0BCB", 5737 | "viewSplitVertical": "\uf0BCC", 5738 | "viewStream": "\uf0575", 5739 | "viewStreamOutline": "\uf1490", 5740 | "viewWeek": "\uf0576", 5741 | "viewWeekOutline": "\uf1491", 5742 | "vimeo": "\uf0577", 5743 | "violin": "\uf060F", 5744 | "virtualReality": "\uf0894", 5745 | "virus": "\uf13B6", 5746 | "virusOutline": "\uf13B7", 5747 | "vk": "\uf0579", 5748 | "vlc": "\uf057C", 5749 | "voiceOff": "\uf0ED4", 5750 | "voicemail": "\uf057D", 5751 | "volleyball": "\uf09B4", 5752 | "volumeHigh": "\uf057E", 5753 | "volumeLow": "\uf057F", 5754 | "volumeMedium": "\uf0580", 5755 | "volumeMinus": "\uf075E", 5756 | "volumeMute": "\uf075F", 5757 | "volumeOff": "\uf0581", 5758 | "volumePlus": "\uf075D", 5759 | "volumeSource": "\uf1120", 5760 | "volumeVariantOff": "\uf0E08", 5761 | "volumeVibrate": "\uf1121", 5762 | "vote": "\uf0A1F", 5763 | "voteOutline": "\uf0A20", 5764 | "vpn": "\uf0582", 5765 | "vuejs": "\uf0844", 5766 | "vuetify": "\uf0E6D", 5767 | "walk": "\uf0583", 5768 | "wall": "\uf07FE", 5769 | "wallSconce": "\uf091C", 5770 | "wallSconceFlat": "\uf091D", 5771 | "wallSconceFlatVariant": "\uf041C", 5772 | "wallSconceRound": "\uf0748", 5773 | "wallSconceRoundVariant": "\uf091E", 5774 | "wallet": "\uf0584", 5775 | "walletGiftcard": "\uf0585", 5776 | "walletMembership": "\uf0586", 5777 | "walletOutline": "\uf0BDD", 5778 | "walletPlus": "\uf0F8E", 5779 | "walletPlusOutline": "\uf0F8F", 5780 | "walletTravel": "\uf0587", 5781 | "wallpaper": "\uf0E09", 5782 | "wan": "\uf0588", 5783 | "wardrobe": "\uf0F90", 5784 | "wardrobeOutline": "\uf0F91", 5785 | "warehouse": "\uf0F81", 5786 | "washingMachine": "\uf072A", 5787 | "washingMachineAlert": "\uf11BC", 5788 | "washingMachineOff": "\uf11BD", 5789 | "watch": "\uf0589", 5790 | "watchExport": "\uf058A", 5791 | "watchExportVariant": "\uf0895", 5792 | "watchImport": "\uf058B", 5793 | "watchImportVariant": "\uf0896", 5794 | "watchVariant": "\uf0897", 5795 | "watchVibrate": "\uf06B1", 5796 | "watchVibrateOff": "\uf0CDA", 5797 | "water": "\uf058C", 5798 | "waterAlert": "\uf1502", 5799 | "waterAlertOutline": "\uf1503", 5800 | "waterBoiler": "\uf0F92", 5801 | "waterBoilerAlert": "\uf11B3", 5802 | "waterBoilerOff": "\uf11B4", 5803 | "waterCheck": "\uf1504", 5804 | "waterCheckOutline": "\uf1505", 5805 | "waterMinus": "\uf1506", 5806 | "waterMinusOutline": "\uf1507", 5807 | "waterOff": "\uf058D", 5808 | "waterOffOutline": "\uf1508", 5809 | "waterOutline": "\uf0E0A", 5810 | "waterPercent": "\uf058E", 5811 | "waterPercentAlert": "\uf1509", 5812 | "waterPlus": "\uf150A", 5813 | "waterPlusOutline": "\uf150B", 5814 | "waterPolo": "\uf12A0", 5815 | "waterPump": "\uf058F", 5816 | "waterPumpOff": "\uf0F93", 5817 | "waterRemove": "\uf150C", 5818 | "waterRemoveOutline": "\uf150D", 5819 | "waterWell": "\uf106B", 5820 | "waterWellOutline": "\uf106C", 5821 | "wateringCan": "\uf1481", 5822 | "wateringCanOutline": "\uf1482", 5823 | "watermark": "\uf0612", 5824 | "wave": "\uf0F2E", 5825 | "waveform": "\uf147D", 5826 | "waves": "\uf078D", 5827 | "waze": "\uf0BDE", 5828 | "weatherCloudy": "\uf0590", 5829 | "weatherCloudyAlert": "\uf0F2F", 5830 | "weatherCloudyArrowRight": "\uf0E6E", 5831 | "weatherFog": "\uf0591", 5832 | "weatherHail": "\uf0592", 5833 | "weatherHazy": "\uf0F30", 5834 | "weatherHurricane": "\uf0898", 5835 | "weatherLightning": "\uf0593", 5836 | "weatherLightningRainy": "\uf067E", 5837 | "weatherNight": "\uf0594", 5838 | "weatherNightPartlyCloudy": "\uf0F31", 5839 | "weatherPartlyCloudy": "\uf0595", 5840 | "weatherPartlyLightning": "\uf0F32", 5841 | "weatherPartlyRainy": "\uf0F33", 5842 | "weatherPartlySnowy": "\uf0F34", 5843 | "weatherPartlySnowyRainy": "\uf0F35", 5844 | "weatherPouring": "\uf0596", 5845 | "weatherRainy": "\uf0597", 5846 | "weatherSnowy": "\uf0598", 5847 | "weatherSnowyHeavy": "\uf0F36", 5848 | "weatherSnowyRainy": "\uf067F", 5849 | "weatherSunny": "\uf0599", 5850 | "weatherSunnyAlert": "\uf0F37", 5851 | "weatherSunnyOff": "\uf14E4", 5852 | "weatherSunset": "\uf059A", 5853 | "weatherSunsetDown": "\uf059B", 5854 | "weatherSunsetUp": "\uf059C", 5855 | "weatherTornado": "\uf0F38", 5856 | "weatherWindy": "\uf059D", 5857 | "weatherWindyVariant": "\uf059E", 5858 | "web": "\uf059F", 5859 | "webBox": "\uf0F94", 5860 | "webClock": "\uf124A", 5861 | "webcam": "\uf05A0", 5862 | "webcamOff": "\uf1737", 5863 | "webhook": "\uf062F", 5864 | "webpack": "\uf072B", 5865 | "webrtc": "\uf1248", 5866 | "wechat": "\uf0611", 5867 | "weight": "\uf05A1", 5868 | "weightGram": "\uf0D3F", 5869 | "weightKilogram": "\uf05A2", 5870 | "weightLifter": "\uf115D", 5871 | "weightPound": "\uf09B5", 5872 | "whatsapp": "\uf05A3", 5873 | "wheelBarrow": "\uf14F2", 5874 | "wheelchairAccessibility": "\uf05A4", 5875 | "whistle": "\uf09B6", 5876 | "whistleOutline": "\uf12BC", 5877 | "whiteBalanceAuto": "\uf05A5", 5878 | "whiteBalanceIncandescent": "\uf05A6", 5879 | "whiteBalanceIridescent": "\uf05A7", 5880 | "whiteBalanceSunny": "\uf05A8", 5881 | "widgets": "\uf072C", 5882 | "widgetsOutline": "\uf1355", 5883 | "wifi": "\uf05A9", 5884 | "wifiAlert": "\uf16B5", 5885 | "wifiArrowDown": "\uf16B6", 5886 | "wifiArrowLeft": "\uf16B7", 5887 | "wifiArrowLeftRight": "\uf16B8", 5888 | "wifiArrowRight": "\uf16B9", 5889 | "wifiArrowUp": "\uf16BA", 5890 | "wifiArrowUpDown": "\uf16BB", 5891 | "wifiCancel": "\uf16BC", 5892 | "wifiCheck": "\uf16BD", 5893 | "wifiCog": "\uf16BE", 5894 | "wifiLock": "\uf16BF", 5895 | "wifiLockOpen": "\uf16C0", 5896 | "wifiMarker": "\uf16C1", 5897 | "wifiMinus": "\uf16C2", 5898 | "wifiOff": "\uf05AA", 5899 | "wifiPlus": "\uf16C3", 5900 | "wifiRefresh": "\uf16C4", 5901 | "wifiRemove": "\uf16C5", 5902 | "wifiSettings": "\uf16C6", 5903 | "wifiStar": "\uf0E0B", 5904 | "wifiStrength-1": "\uf091F", 5905 | "wifiStrength-1Alert": "\uf0920", 5906 | "wifiStrength-1Lock": "\uf0921", 5907 | "wifiStrength-1LockOpen": "\uf16CB", 5908 | "wifiStrength-2": "\uf0922", 5909 | "wifiStrength-2Alert": "\uf0923", 5910 | "wifiStrength-2Lock": "\uf0924", 5911 | "wifiStrength-2LockOpen": "\uf16CC", 5912 | "wifiStrength-3": "\uf0925", 5913 | "wifiStrength-3Alert": "\uf0926", 5914 | "wifiStrength-3Lock": "\uf0927", 5915 | "wifiStrength-3LockOpen": "\uf16CD", 5916 | "wifiStrength-4": "\uf0928", 5917 | "wifiStrength-4Alert": "\uf0929", 5918 | "wifiStrength-4Lock": "\uf092A", 5919 | "wifiStrength-4LockOpen": "\uf16CE", 5920 | "wifiStrengthAlertOutline": "\uf092B", 5921 | "wifiStrengthLockOpenOutline": "\uf16CF", 5922 | "wifiStrengthLockOutline": "\uf092C", 5923 | "wifiStrengthOff": "\uf092D", 5924 | "wifiStrengthOffOutline": "\uf092E", 5925 | "wifiStrengthOutline": "\uf092F", 5926 | "wifiSync": "\uf16C7", 5927 | "wikipedia": "\uf05AC", 5928 | "windTurbine": "\uf0DA5", 5929 | "windowClose": "\uf05AD", 5930 | "windowClosed": "\uf05AE", 5931 | "windowClosedVariant": "\uf11DB", 5932 | "windowMaximize": "\uf05AF", 5933 | "windowMinimize": "\uf05B0", 5934 | "windowOpen": "\uf05B1", 5935 | "windowOpenVariant": "\uf11DC", 5936 | "windowRestore": "\uf05B2", 5937 | "windowShutter": "\uf111C", 5938 | "windowShutterAlert": "\uf111D", 5939 | "windowShutterOpen": "\uf111E", 5940 | "windsock": "\uf15FA", 5941 | "wiper": "\uf0AE9", 5942 | "wiperWash": "\uf0DA6", 5943 | "wizardHat": "\uf1477", 5944 | "wordpress": "\uf05B4", 5945 | "wrap": "\uf05B6", 5946 | "wrapDisabled": "\uf0BDF", 5947 | "wrench": "\uf05B7", 5948 | "wrenchOutline": "\uf0BE0", 5949 | "xamarin": "\uf0845", 5950 | "xamarinOutline": "\uf0846", 5951 | "xing": "\uf05BE", 5952 | "xml": "\uf05C0", 5953 | "xmpp": "\uf07FF", 5954 | "yCombinator": "\uf0624", 5955 | "yahoo": "\uf0B4F", 5956 | "yeast": "\uf05C1", 5957 | "yinYang": "\uf0680", 5958 | "yoga": "\uf117C", 5959 | "youtube": "\uf05C3", 5960 | "youtubeGaming": "\uf0848", 5961 | "youtubeStudio": "\uf0847", 5962 | "youtubeSubscription": "\uf0D40", 5963 | "youtubeTv": "\uf0448", 5964 | "yurt": "\uf1516", 5965 | "zWave": "\uf0AEA", 5966 | "zend": "\uf0AEB", 5967 | "zigbee": "\uf0D41", 5968 | "zipBox": "\uf05C4", 5969 | "zipBoxOutline": "\uf0FFA", 5970 | "zipDisk": "\uf0A23", 5971 | "zodiacAquarius": "\uf0A7D", 5972 | "zodiacAries": "\uf0A7E", 5973 | "zodiacCancer": "\uf0A7F", 5974 | "zodiacCapricorn": "\uf0A80", 5975 | "zodiacGemini": "\uf0A81", 5976 | "zodiacLeo": "\uf0A82", 5977 | "zodiacLibra": "\uf0A83", 5978 | "zodiacPisces": "\uf0A84", 5979 | "zodiacSagittarius": "\uf0A85", 5980 | "zodiacScorpio": "\uf0A86", 5981 | "zodiacTaurus": "\uf0A87", 5982 | "zodiacVirgo": "\uf0A88" 5983 | } 5984 | --------------------------------------------------------------------------------