@akemona-org/strapi-plugin-content-type-builder 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +19 -0
- package/admin/src/InjectedComponents/ContentManager/EditSettingViewButton.js +76 -0
- package/admin/src/InjectedComponents/ContentManager/EditViewLink.js +44 -0
- package/admin/src/assets/images/logo.svg +1 -0
- package/admin/src/components/AllowedTypesSelect/MenuList.js +115 -0
- package/admin/src/components/AllowedTypesSelect/Text.js +26 -0
- package/admin/src/components/AllowedTypesSelect/index.js +55 -0
- package/admin/src/components/AttributeOption/Button.js +50 -0
- package/admin/src/components/AttributeOption/Card.js +26 -0
- package/admin/src/components/AttributeOption/index.js +127 -0
- package/admin/src/components/BooleanBox/CT.js +21 -0
- package/admin/src/components/BooleanBox/Enumeration.js +10 -0
- package/admin/src/components/BooleanBox/EnumerationWrapper.js +14 -0
- package/admin/src/components/BooleanBox/Label.js +9 -0
- package/admin/src/components/BooleanBox/ST.js +21 -0
- package/admin/src/components/BooleanBox/Wrapper.js +75 -0
- package/admin/src/components/BooleanBox/icons/CTSelected.js +136 -0
- package/admin/src/components/BooleanBox/icons/CTUnselected.js +136 -0
- package/admin/src/components/BooleanBox/icons/STSelected.js +80 -0
- package/admin/src/components/BooleanBox/icons/STUnselected.js +76 -0
- package/admin/src/components/BooleanBox/index.js +103 -0
- package/admin/src/components/CheckboxWithDescription/Wrapper.js +12 -0
- package/admin/src/components/CheckboxWithDescription/index.js +40 -0
- package/admin/src/components/ComponentCard/Close.js +12 -0
- package/admin/src/components/ComponentCard/Wrapper.js +84 -0
- package/admin/src/components/ComponentCard/index.js +62 -0
- package/admin/src/components/ComponentIconPicker/Cell.js +40 -0
- package/admin/src/components/ComponentIconPicker/CellRenderer.js +36 -0
- package/admin/src/components/ComponentIconPicker/Search.js +12 -0
- package/admin/src/components/ComponentIconPicker/SearchWrapper.js +34 -0
- package/admin/src/components/ComponentIconPicker/Wrapper.js +60 -0
- package/admin/src/components/ComponentIconPicker/index.js +143 -0
- package/admin/src/components/ComponentList/index.js +78 -0
- package/admin/src/components/ComponentSelect/Category.js +20 -0
- package/admin/src/components/ComponentSelect/CategoryName.js +11 -0
- package/admin/src/components/ComponentSelect/MenuList.js +110 -0
- package/admin/src/components/ComponentSelect/MultipleMenuList.js +271 -0
- package/admin/src/components/ComponentSelect/Value.js +83 -0
- package/admin/src/components/ComponentSelect/index.js +83 -0
- package/admin/src/components/ComponentSelect/utils/HasSomeSubArray.js +5 -0
- package/admin/src/components/ComponentSelect/utils/hasSubArray.js +5 -0
- package/admin/src/components/CreatableSelect/index.js +58 -0
- package/admin/src/components/CustomCheckbox/StyledCustomCheckbox.js +25 -0
- package/admin/src/components/CustomCheckbox/index.js +71 -0
- package/admin/src/components/CustomLink/P.js +17 -0
- package/admin/src/components/CustomLink/StyledCustomLink.js +20 -0
- package/admin/src/components/CustomLink/index.js +31 -0
- package/admin/src/components/DynamicZoneList/ComponentButton.js +39 -0
- package/admin/src/components/DynamicZoneList/index.js +124 -0
- package/admin/src/components/HeaderModalNavContainer/index.js +25 -0
- package/admin/src/components/HeaderNavLink/Wrapper.js +21 -0
- package/admin/src/components/HeaderNavLink/index.js +50 -0
- package/admin/src/components/List/List.js +131 -0
- package/admin/src/components/List/index.js +295 -0
- package/admin/src/components/ListButton/index.js +9 -0
- package/admin/src/components/ListHeader/Title.js +19 -0
- package/admin/src/components/ListHeader/Wrapper.js +24 -0
- package/admin/src/components/ListHeader/index.js +37 -0
- package/admin/src/components/ListRow/Wrapper.js +76 -0
- package/admin/src/components/ListRow/index.js +334 -0
- package/admin/src/components/ModalHeader/ComponentIcon.js +21 -0
- package/admin/src/components/ModalHeader/ComponentInfos.js +22 -0
- package/admin/src/components/ModalHeader/ComponentInfosWrapper.js +9 -0
- package/admin/src/components/ModalHeader/DropdownInfos.js +50 -0
- package/admin/src/components/ModalHeader/Icon.js +26 -0
- package/admin/src/components/ModalHeader/IconWrapper.js +11 -0
- package/admin/src/components/ModalHeader/Item.js +19 -0
- package/admin/src/components/ModalHeader/Menu.js +8 -0
- package/admin/src/components/ModalHeader/Toggle.js +14 -0
- package/admin/src/components/ModalHeader/Wrapper.js +12 -0
- package/admin/src/components/ModalHeader/index.js +105 -0
- package/admin/src/components/RelationForm/Wrapper.js +9 -0
- package/admin/src/components/RelationForm/index.js +66 -0
- package/admin/src/components/RelationFormBox/Wrapper.js +34 -0
- package/admin/src/components/RelationFormBox/index.js +85 -0
- package/admin/src/components/RelationFormNaturePicker/Wrapper.js +53 -0
- package/admin/src/components/RelationFormNaturePicker/index.js +112 -0
- package/admin/src/components/RelationTargetPicker/Item.js +62 -0
- package/admin/src/components/RelationTargetPicker/Wrapper.js +89 -0
- package/admin/src/components/RelationTargetPicker/index.js +88 -0
- package/admin/src/components/SelectCheckbox/index.js +8 -0
- package/admin/src/components/SelectMenuSubUl/ToggleUl.js +23 -0
- package/admin/src/components/SelectMenuSubUl/index.js +23 -0
- package/admin/src/components/SelectMenuUl/index.js +66 -0
- package/admin/src/components/Td/index.js +37 -0
- package/admin/src/components/UpperFirst/index.js +14 -0
- package/admin/src/components/WrapperSelect/index.js +89 -0
- package/admin/src/containers/App/Wrapper.js +14 -0
- package/admin/src/containers/App/index.js +39 -0
- package/admin/src/containers/App/utils/icons.json +962 -0
- package/admin/src/containers/DataManagerProvider/constants.js +15 -0
- package/admin/src/containers/DataManagerProvider/index.js +610 -0
- package/admin/src/containers/DataManagerProvider/reducer.js +461 -0
- package/admin/src/containers/DataManagerProvider/selectors.js +25 -0
- package/admin/src/containers/DataManagerProvider/utils/cleanData.js +167 -0
- package/admin/src/containers/DataManagerProvider/utils/createDataObject.js +8 -0
- package/admin/src/containers/DataManagerProvider/utils/createModifiedDataSchema.js +91 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveComponentsFromSchema.js +55 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveComponentsThatHaveComponents.js +35 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveNestedComponents.js +34 -0
- package/admin/src/containers/DataManagerProvider/utils/retrieveSpecificInfoFromComponents.js +12 -0
- package/admin/src/containers/FormModal/CustomButton.js +12 -0
- package/admin/src/containers/FormModal/attributes/advancedForm.js +269 -0
- package/admin/src/containers/FormModal/attributes/attributeOptions.js +99 -0
- package/admin/src/containers/FormModal/attributes/baseForm.js +322 -0
- package/admin/src/containers/FormModal/attributes/commonBaseForm.js +7 -0
- package/admin/src/containers/FormModal/attributes/form.js +9 -0
- package/admin/src/containers/FormModal/attributes/index.js +4 -0
- package/admin/src/containers/FormModal/attributes/nameField.js +19 -0
- package/admin/src/containers/FormModal/attributes/types.js +309 -0
- package/admin/src/containers/FormModal/attributes/uiHelpers.js +11 -0
- package/admin/src/containers/FormModal/attributes/validation/common.js +151 -0
- package/admin/src/containers/FormModal/category/createCategorySchema.js +28 -0
- package/admin/src/containers/FormModal/category/form.js +27 -0
- package/admin/src/containers/FormModal/category/index.js +3 -0
- package/admin/src/containers/FormModal/category/regex.js +3 -0
- package/admin/src/containers/FormModal/component/componentField.js +25 -0
- package/admin/src/containers/FormModal/component/createComponentSchema.js +49 -0
- package/admin/src/containers/FormModal/component/form.js +67 -0
- package/admin/src/containers/FormModal/component/index.js +4 -0
- package/admin/src/containers/FormModal/constants.js +11 -0
- package/admin/src/containers/FormModal/contentType/createContentTypeSchema.js +44 -0
- package/admin/src/containers/FormModal/contentType/form.js +116 -0
- package/admin/src/containers/FormModal/contentType/index.js +2 -0
- package/admin/src/containers/FormModal/dynamicZone/form.js +45 -0
- package/admin/src/containers/FormModal/dynamicZone/index.js +2 -0
- package/admin/src/containers/FormModal/forms/index.js +164 -0
- package/admin/src/containers/FormModal/index.js +1552 -0
- package/admin/src/containers/FormModal/reducer.js +293 -0
- package/admin/src/containers/FormModal/selectors.js +24 -0
- package/admin/src/containers/FormModal/utils/canEditContentType.js +19 -0
- package/admin/src/containers/FormModal/utils/createHeadersArray.js +37 -0
- package/admin/src/containers/FormModal/utils/createHeadersObjectFromArray.js +27 -0
- package/admin/src/containers/FormModal/utils/createUid.js +17 -0
- package/admin/src/containers/FormModal/utils/getAttributesToDisplay.js +35 -0
- package/admin/src/containers/FormModal/utils/getModalTitleSubHeader.js +25 -0
- package/admin/src/containers/FormModal/utils/getNextSearch.js +17 -0
- package/admin/src/containers/FormModal/utils/index.js +6 -0
- package/admin/src/containers/FormModal/utils/relations.js +9 -0
- package/admin/src/containers/FormModal/utils/staticData.js +43 -0
- package/admin/src/containers/Initializer/index.js +26 -0
- package/admin/src/containers/LeftMenu/Wrapper.js +14 -0
- package/admin/src/containers/LeftMenu/index.js +220 -0
- package/admin/src/containers/ListView/Wrapper.js +16 -0
- package/admin/src/containers/ListView/index.js +322 -0
- package/admin/src/containers/NotFoundPage/index.js +20 -0
- package/admin/src/containers/RecursivePath/index.js +22 -0
- package/admin/src/contexts/DataManagerContext.js +5 -0
- package/admin/src/contexts/ListViewContext.js +5 -0
- package/admin/src/hooks/useDataManager.js +6 -0
- package/admin/src/hooks/useListView.js +6 -0
- package/admin/src/icons/Curve.js +26 -0
- package/admin/src/icons/ManyToMany.js +98 -0
- package/admin/src/icons/ManyToOne.js +64 -0
- package/admin/src/icons/ManyWay.js +36 -0
- package/admin/src/icons/OneToMany.js +65 -0
- package/admin/src/icons/OneToOne.js +47 -0
- package/admin/src/icons/OneWay.js +38 -0
- package/admin/src/index.js +83 -0
- package/admin/src/lifecycles.js +13 -0
- package/admin/src/permissions.js +9 -0
- package/admin/src/pluginId.js +5 -0
- package/admin/src/reducers.js +10 -0
- package/admin/src/translations/ar.json +48 -0
- package/admin/src/translations/cs.json +151 -0
- package/admin/src/translations/de.json +187 -0
- package/admin/src/translations/dk.json +181 -0
- package/admin/src/translations/en.json +188 -0
- package/admin/src/translations/es.json +188 -0
- package/admin/src/translations/fr.json +87 -0
- package/admin/src/translations/id.json +187 -0
- package/admin/src/translations/index.js +51 -0
- package/admin/src/translations/it.json +187 -0
- package/admin/src/translations/ja.json +50 -0
- package/admin/src/translations/ko.json +57 -0
- package/admin/src/translations/ms.json +179 -0
- package/admin/src/translations/nl.json +171 -0
- package/admin/src/translations/pl.json +152 -0
- package/admin/src/translations/pt-BR.json +51 -0
- package/admin/src/translations/pt.json +51 -0
- package/admin/src/translations/ru.json +188 -0
- package/admin/src/translations/sk.json +186 -0
- package/admin/src/translations/th.json +181 -0
- package/admin/src/translations/tr.json +51 -0
- package/admin/src/translations/uk.json +180 -0
- package/admin/src/translations/zh-Hans.json +188 -0
- package/admin/src/translations/zh.json +178 -0
- package/admin/src/utils/convertAttrObjToArray.js +7 -0
- package/admin/src/utils/formAPI.js +112 -0
- package/admin/src/utils/getAttributeDisplayedType.js +31 -0
- package/admin/src/utils/getComponents.js +31 -0
- package/admin/src/utils/getTrad.js +5 -0
- package/admin/src/utils/makeSearch.js +15 -0
- package/admin/src/utils/makeUnique.js +3 -0
- package/config/functions/bootstrap.js +14 -0
- package/config/routes.json +144 -0
- package/controllers/Builder.js +7 -0
- package/controllers/ComponentCategories.js +43 -0
- package/controllers/Components.js +152 -0
- package/controllers/Connections.js +9 -0
- package/controllers/ContentTypes.js +143 -0
- package/controllers/validation/common.js +118 -0
- package/controllers/validation/component-category.js +21 -0
- package/controllers/validation/component.js +89 -0
- package/controllers/validation/content-type.js +161 -0
- package/controllers/validation/data-transform.js +32 -0
- package/controllers/validation/model-schema.js +91 -0
- package/controllers/validation/relations.js +56 -0
- package/controllers/validation/types.js +277 -0
- package/package.json +63 -0
- package/services/Builder.js +7 -0
- package/services/ComponentCategories.js +88 -0
- package/services/Components.js +103 -0
- package/services/ContentTypes.js +263 -0
- package/services/api-handler.js +158 -0
- package/services/constants.js +59 -0
- package/services/schema-builder/component-builder.js +137 -0
- package/services/schema-builder/content-type-builder.js +256 -0
- package/services/schema-builder/index.js +196 -0
- package/services/schema-builder/schema-handler.js +297 -0
- package/utils/attributes.js +154 -0
- package/utils/helpers.js +31 -0
|
@@ -0,0 +1,962 @@
|
|
|
1
|
+
[
|
|
2
|
+
"ad",
|
|
3
|
+
"address-book",
|
|
4
|
+
"address-card",
|
|
5
|
+
"adjust",
|
|
6
|
+
"air-freshener",
|
|
7
|
+
"align-center",
|
|
8
|
+
"align-justify",
|
|
9
|
+
"align-left",
|
|
10
|
+
"align-right",
|
|
11
|
+
"allergies",
|
|
12
|
+
"ambulance",
|
|
13
|
+
"american-sign-language-interpreting",
|
|
14
|
+
"anchor",
|
|
15
|
+
"angle-double-down",
|
|
16
|
+
"angle-double-left",
|
|
17
|
+
"angle-double-right",
|
|
18
|
+
"angle-double-up",
|
|
19
|
+
"angle-down",
|
|
20
|
+
"angle-left",
|
|
21
|
+
"angle-right",
|
|
22
|
+
"angle-up",
|
|
23
|
+
"angry",
|
|
24
|
+
"ankh",
|
|
25
|
+
"apple-alt",
|
|
26
|
+
"archive",
|
|
27
|
+
"archway",
|
|
28
|
+
"arrow-alt-circle-down",
|
|
29
|
+
"arrow-alt-circle-left",
|
|
30
|
+
"arrow-alt-circle-right",
|
|
31
|
+
"arrow-alt-circle-up",
|
|
32
|
+
"arrow-circle-down",
|
|
33
|
+
"arrow-circle-left",
|
|
34
|
+
"arrow-circle-right",
|
|
35
|
+
"arrow-circle-up",
|
|
36
|
+
"arrow-down",
|
|
37
|
+
"arrow-left",
|
|
38
|
+
"arrow-right",
|
|
39
|
+
"arrow-up",
|
|
40
|
+
"arrows-alt",
|
|
41
|
+
"arrows-alt-h",
|
|
42
|
+
"arrows-alt-v",
|
|
43
|
+
"assistive-listening-systems",
|
|
44
|
+
"asterisk",
|
|
45
|
+
"at",
|
|
46
|
+
"atlas",
|
|
47
|
+
"atom",
|
|
48
|
+
"audio-description",
|
|
49
|
+
"award",
|
|
50
|
+
"baby",
|
|
51
|
+
"baby-carriage",
|
|
52
|
+
"backspace",
|
|
53
|
+
"backward",
|
|
54
|
+
"bacon",
|
|
55
|
+
"balance-scale",
|
|
56
|
+
"balance-scale-left",
|
|
57
|
+
"balance-scale-right",
|
|
58
|
+
"ban",
|
|
59
|
+
"band-aid",
|
|
60
|
+
"barcode",
|
|
61
|
+
"bars",
|
|
62
|
+
"baseball-ball",
|
|
63
|
+
"basketball-ball",
|
|
64
|
+
"bath",
|
|
65
|
+
"battery-empty",
|
|
66
|
+
"battery-full",
|
|
67
|
+
"battery-half",
|
|
68
|
+
"battery-quarter",
|
|
69
|
+
"battery-three-quarters",
|
|
70
|
+
"bed",
|
|
71
|
+
"beer",
|
|
72
|
+
"bell",
|
|
73
|
+
"bell-slash",
|
|
74
|
+
"bezier-curve",
|
|
75
|
+
"bible",
|
|
76
|
+
"bicycle",
|
|
77
|
+
"biking",
|
|
78
|
+
"binoculars",
|
|
79
|
+
"biohazard",
|
|
80
|
+
"birthday-cake",
|
|
81
|
+
"blender",
|
|
82
|
+
"blender-phone",
|
|
83
|
+
"blind",
|
|
84
|
+
"blog",
|
|
85
|
+
"bold",
|
|
86
|
+
"bolt",
|
|
87
|
+
"bomb",
|
|
88
|
+
"bone",
|
|
89
|
+
"bong",
|
|
90
|
+
"book",
|
|
91
|
+
"book-dead",
|
|
92
|
+
"book-medical",
|
|
93
|
+
"book-open",
|
|
94
|
+
"book-reader",
|
|
95
|
+
"bookmark",
|
|
96
|
+
"border-all",
|
|
97
|
+
"border-none",
|
|
98
|
+
"border-style",
|
|
99
|
+
"bowling-ball",
|
|
100
|
+
"box",
|
|
101
|
+
"box-open",
|
|
102
|
+
"boxes",
|
|
103
|
+
"braille",
|
|
104
|
+
"brain",
|
|
105
|
+
"bread-slice",
|
|
106
|
+
"briefcase",
|
|
107
|
+
"briefcase-medical",
|
|
108
|
+
"broadcast-tower",
|
|
109
|
+
"broom",
|
|
110
|
+
"brush",
|
|
111
|
+
"bug",
|
|
112
|
+
"building",
|
|
113
|
+
"bullhorn",
|
|
114
|
+
"bullseye",
|
|
115
|
+
"burn",
|
|
116
|
+
"bus",
|
|
117
|
+
"bus-alt",
|
|
118
|
+
"business-time",
|
|
119
|
+
"calculator",
|
|
120
|
+
"calendar",
|
|
121
|
+
"calendar-alt",
|
|
122
|
+
"calendar-check",
|
|
123
|
+
"calendar-day",
|
|
124
|
+
"calendar-minus",
|
|
125
|
+
"calendar-plus",
|
|
126
|
+
"calendar-times",
|
|
127
|
+
"calendar-week",
|
|
128
|
+
"camera",
|
|
129
|
+
"camera-retro",
|
|
130
|
+
"campground",
|
|
131
|
+
"candy-cane",
|
|
132
|
+
"cannabis",
|
|
133
|
+
"capsules",
|
|
134
|
+
"car",
|
|
135
|
+
"car-alt",
|
|
136
|
+
"car-battery",
|
|
137
|
+
"car-crash",
|
|
138
|
+
"car-side",
|
|
139
|
+
"caret-down",
|
|
140
|
+
"caret-left",
|
|
141
|
+
"caret-right",
|
|
142
|
+
"caret-square-down",
|
|
143
|
+
"caret-square-left",
|
|
144
|
+
"caret-square-right",
|
|
145
|
+
"caret-square-up",
|
|
146
|
+
"caret-up",
|
|
147
|
+
"carrot",
|
|
148
|
+
"cart-arrow-down",
|
|
149
|
+
"cart-plus",
|
|
150
|
+
"cash-register",
|
|
151
|
+
"cat",
|
|
152
|
+
"certificate",
|
|
153
|
+
"chair",
|
|
154
|
+
"chalkboard",
|
|
155
|
+
"chalkboard-teacher",
|
|
156
|
+
"charging-station",
|
|
157
|
+
"chart-area",
|
|
158
|
+
"chart-bar",
|
|
159
|
+
"chart-line",
|
|
160
|
+
"chart-pie",
|
|
161
|
+
"check",
|
|
162
|
+
"check-circle",
|
|
163
|
+
"check-double",
|
|
164
|
+
"check-square",
|
|
165
|
+
"cheese",
|
|
166
|
+
"chess",
|
|
167
|
+
"chess-bishop",
|
|
168
|
+
"chess-board",
|
|
169
|
+
"chess-king",
|
|
170
|
+
"chess-knight",
|
|
171
|
+
"chess-pawn",
|
|
172
|
+
"chess-queen",
|
|
173
|
+
"chess-rook",
|
|
174
|
+
"chevron-circle-down",
|
|
175
|
+
"chevron-circle-left",
|
|
176
|
+
"chevron-circle-right",
|
|
177
|
+
"chevron-circle-up",
|
|
178
|
+
"chevron-down",
|
|
179
|
+
"chevron-left",
|
|
180
|
+
"chevron-right",
|
|
181
|
+
"chevron-up",
|
|
182
|
+
"child",
|
|
183
|
+
"church",
|
|
184
|
+
"circle",
|
|
185
|
+
"circle-notch",
|
|
186
|
+
"city",
|
|
187
|
+
"clinic-medical",
|
|
188
|
+
"clipboard",
|
|
189
|
+
"clipboard-check",
|
|
190
|
+
"clipboard-list",
|
|
191
|
+
"clock",
|
|
192
|
+
"clone",
|
|
193
|
+
"closed-captioning",
|
|
194
|
+
"cloud",
|
|
195
|
+
"cloud-download-alt",
|
|
196
|
+
"cloud-meatball",
|
|
197
|
+
"cloud-moon",
|
|
198
|
+
"cloud-moon-rain",
|
|
199
|
+
"cloud-rain",
|
|
200
|
+
"cloud-showers-heavy",
|
|
201
|
+
"cloud-sun",
|
|
202
|
+
"cloud-sun-rain",
|
|
203
|
+
"cloud-upload-alt",
|
|
204
|
+
"cocktail",
|
|
205
|
+
"code",
|
|
206
|
+
"code-branch",
|
|
207
|
+
"coffee",
|
|
208
|
+
"cog",
|
|
209
|
+
"cogs",
|
|
210
|
+
"coins",
|
|
211
|
+
"columns",
|
|
212
|
+
"comment",
|
|
213
|
+
"comment-alt",
|
|
214
|
+
"comment-dollar",
|
|
215
|
+
"comment-dots",
|
|
216
|
+
"comment-medical",
|
|
217
|
+
"comment-slash",
|
|
218
|
+
"comments",
|
|
219
|
+
"comments-dollar",
|
|
220
|
+
"compact-disc",
|
|
221
|
+
"compass",
|
|
222
|
+
"compress",
|
|
223
|
+
"compress-arrows-alt",
|
|
224
|
+
"concierge-bell",
|
|
225
|
+
"cookie",
|
|
226
|
+
"cookie-bite",
|
|
227
|
+
"copy",
|
|
228
|
+
"copyright",
|
|
229
|
+
"couch",
|
|
230
|
+
"credit-card",
|
|
231
|
+
"crop",
|
|
232
|
+
"crop-alt",
|
|
233
|
+
"cross",
|
|
234
|
+
"crosshairs",
|
|
235
|
+
"crow",
|
|
236
|
+
"crown",
|
|
237
|
+
"crutch",
|
|
238
|
+
"cube",
|
|
239
|
+
"cubes",
|
|
240
|
+
"cut",
|
|
241
|
+
"database",
|
|
242
|
+
"deaf",
|
|
243
|
+
"democrat",
|
|
244
|
+
"desktop",
|
|
245
|
+
"dharmachakra",
|
|
246
|
+
"diagnoses",
|
|
247
|
+
"dice",
|
|
248
|
+
"dice-d20",
|
|
249
|
+
"dice-d6",
|
|
250
|
+
"dice-five",
|
|
251
|
+
"dice-four",
|
|
252
|
+
"dice-one",
|
|
253
|
+
"dice-six",
|
|
254
|
+
"dice-three",
|
|
255
|
+
"dice-two",
|
|
256
|
+
"digital-tachograph",
|
|
257
|
+
"directions",
|
|
258
|
+
"divide",
|
|
259
|
+
"dizzy",
|
|
260
|
+
"dna",
|
|
261
|
+
"dog",
|
|
262
|
+
"dollar-sign",
|
|
263
|
+
"dolly",
|
|
264
|
+
"dolly-flatbed",
|
|
265
|
+
"donate",
|
|
266
|
+
"door-closed",
|
|
267
|
+
"door-open",
|
|
268
|
+
"dot-circle",
|
|
269
|
+
"dove",
|
|
270
|
+
"download",
|
|
271
|
+
"drafting-compass",
|
|
272
|
+
"dragon",
|
|
273
|
+
"draw-polygon",
|
|
274
|
+
"drum",
|
|
275
|
+
"drum-steelpan",
|
|
276
|
+
"drumstick-bite",
|
|
277
|
+
"dumbbell",
|
|
278
|
+
"dumpster",
|
|
279
|
+
"dumpster-fire",
|
|
280
|
+
"dungeon",
|
|
281
|
+
"edit",
|
|
282
|
+
"egg",
|
|
283
|
+
"eject",
|
|
284
|
+
"ellipsis-h",
|
|
285
|
+
"ellipsis-v",
|
|
286
|
+
"envelope",
|
|
287
|
+
"envelope-open",
|
|
288
|
+
"envelope-open-text",
|
|
289
|
+
"envelope-square",
|
|
290
|
+
"equals",
|
|
291
|
+
"eraser",
|
|
292
|
+
"ethernet",
|
|
293
|
+
"euro-sign",
|
|
294
|
+
"exchange-alt",
|
|
295
|
+
"exclamation",
|
|
296
|
+
"exclamation-circle",
|
|
297
|
+
"exclamation-triangle",
|
|
298
|
+
"expand",
|
|
299
|
+
"expand-arrows-alt",
|
|
300
|
+
"external-link-alt",
|
|
301
|
+
"external-link-square-alt",
|
|
302
|
+
"eye",
|
|
303
|
+
"eye-dropper",
|
|
304
|
+
"eye-slash",
|
|
305
|
+
"fan",
|
|
306
|
+
"fast-backward",
|
|
307
|
+
"fast-forward",
|
|
308
|
+
"fax",
|
|
309
|
+
"feather",
|
|
310
|
+
"feather-alt",
|
|
311
|
+
"female",
|
|
312
|
+
"fighter-jet",
|
|
313
|
+
"file",
|
|
314
|
+
"file-alt",
|
|
315
|
+
"file-archive",
|
|
316
|
+
"file-audio",
|
|
317
|
+
"file-code",
|
|
318
|
+
"file-contract",
|
|
319
|
+
"file-csv",
|
|
320
|
+
"file-download",
|
|
321
|
+
"file-excel",
|
|
322
|
+
"file-export",
|
|
323
|
+
"file-image",
|
|
324
|
+
"file-import",
|
|
325
|
+
"file-invoice",
|
|
326
|
+
"file-invoice-dollar",
|
|
327
|
+
"file-medical",
|
|
328
|
+
"file-medical-alt",
|
|
329
|
+
"file-pdf",
|
|
330
|
+
"file-powerpoint",
|
|
331
|
+
"file-prescription",
|
|
332
|
+
"file-signature",
|
|
333
|
+
"file-upload",
|
|
334
|
+
"file-video",
|
|
335
|
+
"file-word",
|
|
336
|
+
"fill",
|
|
337
|
+
"fill-drip",
|
|
338
|
+
"film",
|
|
339
|
+
"filter",
|
|
340
|
+
"fingerprint",
|
|
341
|
+
"fire",
|
|
342
|
+
"fire-alt",
|
|
343
|
+
"fire-extinguisher",
|
|
344
|
+
"first-aid",
|
|
345
|
+
"fish",
|
|
346
|
+
"fist-raised",
|
|
347
|
+
"flag",
|
|
348
|
+
"flag-checkered",
|
|
349
|
+
"flag-usa",
|
|
350
|
+
"flask",
|
|
351
|
+
"flushed",
|
|
352
|
+
"folder",
|
|
353
|
+
"folder-minus",
|
|
354
|
+
"folder-open",
|
|
355
|
+
"folder-plus",
|
|
356
|
+
"font",
|
|
357
|
+
"football-ball",
|
|
358
|
+
"forward",
|
|
359
|
+
"frog",
|
|
360
|
+
"frown",
|
|
361
|
+
"frown-open",
|
|
362
|
+
"funnel-dollar",
|
|
363
|
+
"futbol",
|
|
364
|
+
"gamepad",
|
|
365
|
+
"gas-pump",
|
|
366
|
+
"gavel",
|
|
367
|
+
"gem",
|
|
368
|
+
"genderless",
|
|
369
|
+
"ghost",
|
|
370
|
+
"gift",
|
|
371
|
+
"gifts",
|
|
372
|
+
"glass-cheers",
|
|
373
|
+
"glass-martini",
|
|
374
|
+
"glass-martini-alt",
|
|
375
|
+
"glass-whiskey",
|
|
376
|
+
"glasses",
|
|
377
|
+
"globe",
|
|
378
|
+
"globe-africa",
|
|
379
|
+
"globe-americas",
|
|
380
|
+
"globe-asia",
|
|
381
|
+
"globe-europe",
|
|
382
|
+
"golf-ball",
|
|
383
|
+
"gopuram",
|
|
384
|
+
"graduation-cap",
|
|
385
|
+
"greater-than",
|
|
386
|
+
"greater-than-equal",
|
|
387
|
+
"grimace",
|
|
388
|
+
"grin",
|
|
389
|
+
"grin-alt",
|
|
390
|
+
"grin-beam",
|
|
391
|
+
"grin-beam-sweat",
|
|
392
|
+
"grin-hearts",
|
|
393
|
+
"grin-squint",
|
|
394
|
+
"grin-squint-tears",
|
|
395
|
+
"grin-stars",
|
|
396
|
+
"grin-tears",
|
|
397
|
+
"grin-tongue",
|
|
398
|
+
"grin-tongue-squint",
|
|
399
|
+
"grin-tongue-wink",
|
|
400
|
+
"grin-wink",
|
|
401
|
+
"grip-horizontal",
|
|
402
|
+
"grip-lines",
|
|
403
|
+
"grip-lines-vertical",
|
|
404
|
+
"grip-vertical",
|
|
405
|
+
"guitar",
|
|
406
|
+
"h-square",
|
|
407
|
+
"hamburger",
|
|
408
|
+
"hammer",
|
|
409
|
+
"hamsa",
|
|
410
|
+
"hand-holding",
|
|
411
|
+
"hand-holding-heart",
|
|
412
|
+
"hand-holding-usd",
|
|
413
|
+
"hand-lizard",
|
|
414
|
+
"hand-middle-finger",
|
|
415
|
+
"hand-paper",
|
|
416
|
+
"hand-peace",
|
|
417
|
+
"hand-point-down",
|
|
418
|
+
"hand-point-left",
|
|
419
|
+
"hand-point-right",
|
|
420
|
+
"hand-point-up",
|
|
421
|
+
"hand-pointer",
|
|
422
|
+
"hand-rock",
|
|
423
|
+
"hand-scissors",
|
|
424
|
+
"hand-spock",
|
|
425
|
+
"hands",
|
|
426
|
+
"hands-helping",
|
|
427
|
+
"handshake",
|
|
428
|
+
"hanukiah",
|
|
429
|
+
"hard-hat",
|
|
430
|
+
"hashtag",
|
|
431
|
+
"hat-cowboy",
|
|
432
|
+
"hat-cowboy-side",
|
|
433
|
+
"hat-wizard",
|
|
434
|
+
"haykal",
|
|
435
|
+
"hdd",
|
|
436
|
+
"heading",
|
|
437
|
+
"headphones",
|
|
438
|
+
"headphones-alt",
|
|
439
|
+
"headset",
|
|
440
|
+
"heart",
|
|
441
|
+
"heart-broken",
|
|
442
|
+
"heartbeat",
|
|
443
|
+
"helicopter",
|
|
444
|
+
"highlighter",
|
|
445
|
+
"hiking",
|
|
446
|
+
"hippo",
|
|
447
|
+
"history",
|
|
448
|
+
"hockey-puck",
|
|
449
|
+
"holly-berry",
|
|
450
|
+
"home",
|
|
451
|
+
"horse",
|
|
452
|
+
"horse-head",
|
|
453
|
+
"hospital",
|
|
454
|
+
"hospital-alt",
|
|
455
|
+
"hospital-symbol",
|
|
456
|
+
"hot-tub",
|
|
457
|
+
"hotdog",
|
|
458
|
+
"hotel",
|
|
459
|
+
"hourglass",
|
|
460
|
+
"hourglass-end",
|
|
461
|
+
"hourglass-half",
|
|
462
|
+
"hourglass-start",
|
|
463
|
+
"house-damage",
|
|
464
|
+
"hryvnia",
|
|
465
|
+
"i-cursor",
|
|
466
|
+
"ice-cream",
|
|
467
|
+
"icicles",
|
|
468
|
+
"icons",
|
|
469
|
+
"id-badge",
|
|
470
|
+
"id-card",
|
|
471
|
+
"id-card-alt",
|
|
472
|
+
"igloo",
|
|
473
|
+
"image",
|
|
474
|
+
"images",
|
|
475
|
+
"inbox",
|
|
476
|
+
"indent",
|
|
477
|
+
"industry",
|
|
478
|
+
"infinity",
|
|
479
|
+
"info",
|
|
480
|
+
"info-circle",
|
|
481
|
+
"italic",
|
|
482
|
+
"jedi",
|
|
483
|
+
"joint",
|
|
484
|
+
"journal-whills",
|
|
485
|
+
"kaaba",
|
|
486
|
+
"key",
|
|
487
|
+
"keyboard",
|
|
488
|
+
"khanda",
|
|
489
|
+
"kiss",
|
|
490
|
+
"kiss-beam",
|
|
491
|
+
"kiss-wink-heart",
|
|
492
|
+
"kiwi-bird",
|
|
493
|
+
"landmark",
|
|
494
|
+
"language",
|
|
495
|
+
"laptop",
|
|
496
|
+
"laptop-code",
|
|
497
|
+
"laptop-medical",
|
|
498
|
+
"laugh",
|
|
499
|
+
"laugh-beam",
|
|
500
|
+
"laugh-squint",
|
|
501
|
+
"laugh-wink",
|
|
502
|
+
"layer-group",
|
|
503
|
+
"leaf",
|
|
504
|
+
"lemon",
|
|
505
|
+
"less-than",
|
|
506
|
+
"less-than-equal",
|
|
507
|
+
"level-down-alt",
|
|
508
|
+
"level-up-alt",
|
|
509
|
+
"life-ring",
|
|
510
|
+
"lightbulb",
|
|
511
|
+
"link",
|
|
512
|
+
"lira-sign",
|
|
513
|
+
"list",
|
|
514
|
+
"list-alt",
|
|
515
|
+
"list-ol",
|
|
516
|
+
"list-ul",
|
|
517
|
+
"location-arrow",
|
|
518
|
+
"lock",
|
|
519
|
+
"lock-open",
|
|
520
|
+
"long-arrow-alt-down",
|
|
521
|
+
"long-arrow-alt-left",
|
|
522
|
+
"long-arrow-alt-right",
|
|
523
|
+
"long-arrow-alt-up",
|
|
524
|
+
"low-vision",
|
|
525
|
+
"luggage-cart",
|
|
526
|
+
"magic",
|
|
527
|
+
"magnet",
|
|
528
|
+
"mail-bulk",
|
|
529
|
+
"male",
|
|
530
|
+
"map",
|
|
531
|
+
"map-marked",
|
|
532
|
+
"map-marked-alt",
|
|
533
|
+
"map-marker",
|
|
534
|
+
"map-marker-alt",
|
|
535
|
+
"map-pin",
|
|
536
|
+
"map-signs",
|
|
537
|
+
"marker",
|
|
538
|
+
"mars",
|
|
539
|
+
"mars-double",
|
|
540
|
+
"mars-stroke",
|
|
541
|
+
"mars-stroke-h",
|
|
542
|
+
"mars-stroke-v",
|
|
543
|
+
"mask",
|
|
544
|
+
"medal",
|
|
545
|
+
"medkit",
|
|
546
|
+
"meh",
|
|
547
|
+
"meh-blank",
|
|
548
|
+
"meh-rolling-eyes",
|
|
549
|
+
"memory",
|
|
550
|
+
"menorah",
|
|
551
|
+
"mercury",
|
|
552
|
+
"meteor",
|
|
553
|
+
"microchip",
|
|
554
|
+
"microphone",
|
|
555
|
+
"microphone-alt",
|
|
556
|
+
"microphone-alt-slash",
|
|
557
|
+
"microphone-slash",
|
|
558
|
+
"microscope",
|
|
559
|
+
"minus",
|
|
560
|
+
"minus-circle",
|
|
561
|
+
"minus-square",
|
|
562
|
+
"mitten",
|
|
563
|
+
"mobile",
|
|
564
|
+
"mobile-alt",
|
|
565
|
+
"money-bill",
|
|
566
|
+
"money-bill-alt",
|
|
567
|
+
"money-bill-wave",
|
|
568
|
+
"money-bill-wave-alt",
|
|
569
|
+
"money-check",
|
|
570
|
+
"money-check-alt",
|
|
571
|
+
"monument",
|
|
572
|
+
"moon",
|
|
573
|
+
"mortar-pestle",
|
|
574
|
+
"mosque",
|
|
575
|
+
"motorcycle",
|
|
576
|
+
"mountain",
|
|
577
|
+
"mouse",
|
|
578
|
+
"mouse-pointer",
|
|
579
|
+
"mug-hot",
|
|
580
|
+
"music",
|
|
581
|
+
"network-wired",
|
|
582
|
+
"neuter",
|
|
583
|
+
"newspaper",
|
|
584
|
+
"not-equal",
|
|
585
|
+
"notes-medical",
|
|
586
|
+
"object-group",
|
|
587
|
+
"object-ungroup",
|
|
588
|
+
"oil-can",
|
|
589
|
+
"om",
|
|
590
|
+
"otter",
|
|
591
|
+
"outdent",
|
|
592
|
+
"pager",
|
|
593
|
+
"paint-brush",
|
|
594
|
+
"paint-roller",
|
|
595
|
+
"palette",
|
|
596
|
+
"pallet",
|
|
597
|
+
"paper-plane",
|
|
598
|
+
"paperclip",
|
|
599
|
+
"parachute-box",
|
|
600
|
+
"paragraph",
|
|
601
|
+
"parking",
|
|
602
|
+
"passport",
|
|
603
|
+
"pastafarianism",
|
|
604
|
+
"paste",
|
|
605
|
+
"pause",
|
|
606
|
+
"pause-circle",
|
|
607
|
+
"paw",
|
|
608
|
+
"peace",
|
|
609
|
+
"pen",
|
|
610
|
+
"pen-alt",
|
|
611
|
+
"pen-fancy",
|
|
612
|
+
"pen-nib",
|
|
613
|
+
"pen-square",
|
|
614
|
+
"pencil-alt",
|
|
615
|
+
"pencil-ruler",
|
|
616
|
+
"people-carry",
|
|
617
|
+
"pepper-hot",
|
|
618
|
+
"percent",
|
|
619
|
+
"percentage",
|
|
620
|
+
"person-booth",
|
|
621
|
+
"phone",
|
|
622
|
+
"phone-alt",
|
|
623
|
+
"phone-slash",
|
|
624
|
+
"phone-square",
|
|
625
|
+
"phone-square-alt",
|
|
626
|
+
"phone-volume",
|
|
627
|
+
"photo-video",
|
|
628
|
+
"piggy-bank",
|
|
629
|
+
"pills",
|
|
630
|
+
"pizza-slice",
|
|
631
|
+
"place-of-worship",
|
|
632
|
+
"plane",
|
|
633
|
+
"plane-arrival",
|
|
634
|
+
"plane-departure",
|
|
635
|
+
"play",
|
|
636
|
+
"play-circle",
|
|
637
|
+
"plug",
|
|
638
|
+
"plus",
|
|
639
|
+
"plus-circle",
|
|
640
|
+
"plus-square",
|
|
641
|
+
"podcast",
|
|
642
|
+
"poll",
|
|
643
|
+
"poll-h",
|
|
644
|
+
"poo",
|
|
645
|
+
"poo-storm",
|
|
646
|
+
"poop",
|
|
647
|
+
"portrait",
|
|
648
|
+
"pound-sign",
|
|
649
|
+
"power-off",
|
|
650
|
+
"pray",
|
|
651
|
+
"praying-hands",
|
|
652
|
+
"prescription",
|
|
653
|
+
"prescription-bottle",
|
|
654
|
+
"prescription-bottle-alt",
|
|
655
|
+
"print",
|
|
656
|
+
"procedures",
|
|
657
|
+
"project-diagram",
|
|
658
|
+
"puzzle-piece",
|
|
659
|
+
"qrcode",
|
|
660
|
+
"question",
|
|
661
|
+
"question-circle",
|
|
662
|
+
"quidditch",
|
|
663
|
+
"quote-left",
|
|
664
|
+
"quote-right",
|
|
665
|
+
"quran",
|
|
666
|
+
"radiation",
|
|
667
|
+
"radiation-alt",
|
|
668
|
+
"rainbow",
|
|
669
|
+
"random",
|
|
670
|
+
"receipt",
|
|
671
|
+
"record-vinyl",
|
|
672
|
+
"recycle",
|
|
673
|
+
"redo",
|
|
674
|
+
"redo-alt",
|
|
675
|
+
"registered",
|
|
676
|
+
"remove-format",
|
|
677
|
+
"reply",
|
|
678
|
+
"reply-all",
|
|
679
|
+
"republican",
|
|
680
|
+
"restroom",
|
|
681
|
+
"retweet",
|
|
682
|
+
"ribbon",
|
|
683
|
+
"ring",
|
|
684
|
+
"road",
|
|
685
|
+
"robot",
|
|
686
|
+
"rocket",
|
|
687
|
+
"route",
|
|
688
|
+
"rss",
|
|
689
|
+
"rss-square",
|
|
690
|
+
"ruble-sign",
|
|
691
|
+
"ruler",
|
|
692
|
+
"ruler-combined",
|
|
693
|
+
"ruler-horizontal",
|
|
694
|
+
"ruler-vertical",
|
|
695
|
+
"running",
|
|
696
|
+
"rupee-sign",
|
|
697
|
+
"sad-cry",
|
|
698
|
+
"sad-tear",
|
|
699
|
+
"satellite",
|
|
700
|
+
"satellite-dish",
|
|
701
|
+
"save",
|
|
702
|
+
"school",
|
|
703
|
+
"screwdriver",
|
|
704
|
+
"scroll",
|
|
705
|
+
"sd-card",
|
|
706
|
+
"search",
|
|
707
|
+
"search-dollar",
|
|
708
|
+
"search-location",
|
|
709
|
+
"search-minus",
|
|
710
|
+
"search-plus",
|
|
711
|
+
"seedling",
|
|
712
|
+
"server",
|
|
713
|
+
"shapes",
|
|
714
|
+
"share",
|
|
715
|
+
"share-alt",
|
|
716
|
+
"share-alt-square",
|
|
717
|
+
"share-square",
|
|
718
|
+
"shekel-sign",
|
|
719
|
+
"shield-alt",
|
|
720
|
+
"ship",
|
|
721
|
+
"shipping-fast",
|
|
722
|
+
"shoe-prints",
|
|
723
|
+
"shopping-bag",
|
|
724
|
+
"shopping-basket",
|
|
725
|
+
"shopping-cart",
|
|
726
|
+
"shower",
|
|
727
|
+
"shuttle-van",
|
|
728
|
+
"sign",
|
|
729
|
+
"sign-in-alt",
|
|
730
|
+
"sign-language",
|
|
731
|
+
"sign-out-alt",
|
|
732
|
+
"signal",
|
|
733
|
+
"signature",
|
|
734
|
+
"sim-card",
|
|
735
|
+
"sitemap",
|
|
736
|
+
"skating",
|
|
737
|
+
"skiing",
|
|
738
|
+
"skiing-nordic",
|
|
739
|
+
"skull",
|
|
740
|
+
"skull-crossbones",
|
|
741
|
+
"slash",
|
|
742
|
+
"sleigh",
|
|
743
|
+
"sliders-h",
|
|
744
|
+
"smile",
|
|
745
|
+
"smile-beam",
|
|
746
|
+
"smile-wink",
|
|
747
|
+
"smog",
|
|
748
|
+
"smoking",
|
|
749
|
+
"smoking-ban",
|
|
750
|
+
"sms",
|
|
751
|
+
"snowboarding",
|
|
752
|
+
"snowflake",
|
|
753
|
+
"snowman",
|
|
754
|
+
"snowplow",
|
|
755
|
+
"socks",
|
|
756
|
+
"solar-panel",
|
|
757
|
+
"sort",
|
|
758
|
+
"sort-alpha-down",
|
|
759
|
+
"sort-alpha-down-alt",
|
|
760
|
+
"sort-alpha-up",
|
|
761
|
+
"sort-alpha-up-alt",
|
|
762
|
+
"sort-amount-down",
|
|
763
|
+
"sort-amount-down-alt",
|
|
764
|
+
"sort-amount-up",
|
|
765
|
+
"sort-amount-up-alt",
|
|
766
|
+
"sort-down",
|
|
767
|
+
"sort-numeric-down",
|
|
768
|
+
"sort-numeric-down-alt",
|
|
769
|
+
"sort-numeric-up",
|
|
770
|
+
"sort-numeric-up-alt",
|
|
771
|
+
"sort-up",
|
|
772
|
+
"spa",
|
|
773
|
+
"space-shuttle",
|
|
774
|
+
"spell-check",
|
|
775
|
+
"spider",
|
|
776
|
+
"spinner",
|
|
777
|
+
"splotch",
|
|
778
|
+
"spray-can",
|
|
779
|
+
"square",
|
|
780
|
+
"square-full",
|
|
781
|
+
"square-root-alt",
|
|
782
|
+
"stamp",
|
|
783
|
+
"star",
|
|
784
|
+
"star-and-crescent",
|
|
785
|
+
"star-half",
|
|
786
|
+
"star-half-alt",
|
|
787
|
+
"star-of-david",
|
|
788
|
+
"star-of-life",
|
|
789
|
+
"step-backward",
|
|
790
|
+
"step-forward",
|
|
791
|
+
"stethoscope",
|
|
792
|
+
"sticky-note",
|
|
793
|
+
"stop",
|
|
794
|
+
"stop-circle",
|
|
795
|
+
"stopwatch",
|
|
796
|
+
"store",
|
|
797
|
+
"store-alt",
|
|
798
|
+
"stream",
|
|
799
|
+
"street-view",
|
|
800
|
+
"strikethrough",
|
|
801
|
+
"stroopwafel",
|
|
802
|
+
"subscript",
|
|
803
|
+
"subway",
|
|
804
|
+
"suitcase",
|
|
805
|
+
"suitcase-rolling",
|
|
806
|
+
"sun",
|
|
807
|
+
"superscript",
|
|
808
|
+
"surprise",
|
|
809
|
+
"swatchbook",
|
|
810
|
+
"swimmer",
|
|
811
|
+
"swimming-pool",
|
|
812
|
+
"synagogue",
|
|
813
|
+
"sync",
|
|
814
|
+
"sync-alt",
|
|
815
|
+
"syringe",
|
|
816
|
+
"table",
|
|
817
|
+
"table-tennis",
|
|
818
|
+
"tablet",
|
|
819
|
+
"tablet-alt",
|
|
820
|
+
"tablets",
|
|
821
|
+
"tachometer-alt",
|
|
822
|
+
"tag",
|
|
823
|
+
"tags",
|
|
824
|
+
"tape",
|
|
825
|
+
"tasks",
|
|
826
|
+
"taxi",
|
|
827
|
+
"teeth",
|
|
828
|
+
"teeth-open",
|
|
829
|
+
"temperature-high",
|
|
830
|
+
"temperature-low",
|
|
831
|
+
"tenge",
|
|
832
|
+
"terminal",
|
|
833
|
+
"text-height",
|
|
834
|
+
"text-width",
|
|
835
|
+
"th",
|
|
836
|
+
"th-large",
|
|
837
|
+
"th-list",
|
|
838
|
+
"theater-masks",
|
|
839
|
+
"thermometer",
|
|
840
|
+
"thermometer-empty",
|
|
841
|
+
"thermometer-full",
|
|
842
|
+
"thermometer-half",
|
|
843
|
+
"thermometer-quarter",
|
|
844
|
+
"thermometer-three-quarters",
|
|
845
|
+
"thumbs-down",
|
|
846
|
+
"thumbs-up",
|
|
847
|
+
"thumbtack",
|
|
848
|
+
"ticket-alt",
|
|
849
|
+
"times",
|
|
850
|
+
"times-circle",
|
|
851
|
+
"tint",
|
|
852
|
+
"tint-slash",
|
|
853
|
+
"tired",
|
|
854
|
+
"toggle-off",
|
|
855
|
+
"toggle-on",
|
|
856
|
+
"toilet",
|
|
857
|
+
"toilet-paper",
|
|
858
|
+
"toolbox",
|
|
859
|
+
"tools",
|
|
860
|
+
"tooth",
|
|
861
|
+
"torah",
|
|
862
|
+
"torii-gate",
|
|
863
|
+
"tractor",
|
|
864
|
+
"trademark",
|
|
865
|
+
"traffic-light",
|
|
866
|
+
"train",
|
|
867
|
+
"tram",
|
|
868
|
+
"transgender",
|
|
869
|
+
"transgender-alt",
|
|
870
|
+
"trash",
|
|
871
|
+
"trash-alt",
|
|
872
|
+
"trash-restore",
|
|
873
|
+
"trash-restore-alt",
|
|
874
|
+
"tree",
|
|
875
|
+
"trophy",
|
|
876
|
+
"truck",
|
|
877
|
+
"truck-loading",
|
|
878
|
+
"truck-monster",
|
|
879
|
+
"truck-moving",
|
|
880
|
+
"truck-pickup",
|
|
881
|
+
"tshirt",
|
|
882
|
+
"tty",
|
|
883
|
+
"tv",
|
|
884
|
+
"umbrella",
|
|
885
|
+
"umbrella-beach",
|
|
886
|
+
"underline",
|
|
887
|
+
"undo",
|
|
888
|
+
"undo-alt",
|
|
889
|
+
"universal-access",
|
|
890
|
+
"university",
|
|
891
|
+
"unlink",
|
|
892
|
+
"unlock",
|
|
893
|
+
"unlock-alt",
|
|
894
|
+
"upload",
|
|
895
|
+
"user",
|
|
896
|
+
"user-alt",
|
|
897
|
+
"user-alt-slash",
|
|
898
|
+
"user-astronaut",
|
|
899
|
+
"user-check",
|
|
900
|
+
"user-circle",
|
|
901
|
+
"user-clock",
|
|
902
|
+
"user-cog",
|
|
903
|
+
"user-edit",
|
|
904
|
+
"user-friends",
|
|
905
|
+
"user-graduate",
|
|
906
|
+
"user-injured",
|
|
907
|
+
"user-lock",
|
|
908
|
+
"user-md",
|
|
909
|
+
"user-minus",
|
|
910
|
+
"user-ninja",
|
|
911
|
+
"user-nurse",
|
|
912
|
+
"user-plus",
|
|
913
|
+
"user-secret",
|
|
914
|
+
"user-shield",
|
|
915
|
+
"user-slash",
|
|
916
|
+
"user-tag",
|
|
917
|
+
"user-tie",
|
|
918
|
+
"user-times",
|
|
919
|
+
"users",
|
|
920
|
+
"users-cog",
|
|
921
|
+
"utensil-spoon",
|
|
922
|
+
"utensils",
|
|
923
|
+
"vector-square",
|
|
924
|
+
"venus",
|
|
925
|
+
"venus-double",
|
|
926
|
+
"venus-mars",
|
|
927
|
+
"vial",
|
|
928
|
+
"vials",
|
|
929
|
+
"video",
|
|
930
|
+
"video-slash",
|
|
931
|
+
"vihara",
|
|
932
|
+
"voicemail",
|
|
933
|
+
"volleyball-ball",
|
|
934
|
+
"volume-down",
|
|
935
|
+
"volume-mute",
|
|
936
|
+
"volume-off",
|
|
937
|
+
"volume-up",
|
|
938
|
+
"vote-yea",
|
|
939
|
+
"vr-cardboard",
|
|
940
|
+
"walking",
|
|
941
|
+
"wallet",
|
|
942
|
+
"warehouse",
|
|
943
|
+
"water",
|
|
944
|
+
"wave-square",
|
|
945
|
+
"weight",
|
|
946
|
+
"weight-hanging",
|
|
947
|
+
"wheelchair",
|
|
948
|
+
"wifi",
|
|
949
|
+
"wind",
|
|
950
|
+
"window-close",
|
|
951
|
+
"window-maximize",
|
|
952
|
+
"window-minimize",
|
|
953
|
+
"window-restore",
|
|
954
|
+
"wine-bottle",
|
|
955
|
+
"wine-glass",
|
|
956
|
+
"wine-glass-alt",
|
|
957
|
+
"won-sign",
|
|
958
|
+
"wrench",
|
|
959
|
+
"x-ray",
|
|
960
|
+
"yen-sign",
|
|
961
|
+
"yin-yang"
|
|
962
|
+
]
|