motor-admin 0.1.92 → 0.1.98
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/motor/icons_controller.rb +2 -2
- data/config/locales/en.yml +4 -0
- data/config/locales/es.yml +4 -0
- data/lib/motor/version.rb +1 -1
- data/ui/dist/fonts/{ionicons.woff2 → ionicons-1a64b9a9a172d067c820.woff2} +0 -0
- data/ui/dist/icons/ad-2.svg.gz +0 -0
- data/ui/dist/icons/affiliate.svg.gz +0 -0
- data/ui/dist/icons/angle.svg.gz +0 -0
- data/ui/dist/icons/apple.svg.gz +0 -0
- data/ui/dist/icons/border-style-2.svg.gz +0 -0
- data/ui/dist/icons/bottle.svg.gz +0 -0
- data/ui/dist/icons/box-model-2.svg.gz +0 -0
- data/ui/dist/icons/brand-javascript.svg.gz +0 -0
- data/ui/dist/icons/brand-vercel.svg.gz +0 -0
- data/ui/dist/icons/candy.svg.gz +0 -0
- data/ui/dist/icons/car-crane.svg.gz +0 -0
- data/ui/dist/icons/cheese.svg.gz +0 -0
- data/ui/dist/icons/coffee.svg.gz +0 -0
- data/ui/dist/icons/cookie.svg.gz +0 -0
- data/ui/dist/icons/crane.svg.gz +0 -0
- data/ui/dist/icons/cup.svg.gz +0 -0
- data/ui/dist/icons/dog-bowl.svg.gz +0 -0
- data/ui/dist/icons/fence.svg.gz +0 -0
- data/ui/dist/icons/fish.svg.gz +0 -0
- data/ui/dist/icons/lemon.svg.gz +0 -0
- data/ui/dist/icons/list-numbers.svg.gz +0 -0
- data/ui/dist/icons/meat.svg.gz +0 -0
- data/ui/dist/icons/microphone-2.svg.gz +0 -0
- data/ui/dist/icons/milk.svg.gz +0 -0
- data/ui/dist/icons/mushroom.svg.gz +0 -0
- data/ui/dist/icons/pepper.svg.gz +0 -0
- data/ui/dist/icons/pizza.svg.gz +0 -0
- data/ui/dist/icons/radio.svg.gz +0 -0
- data/ui/dist/icons/salt.svg.gz +0 -0
- data/ui/dist/icons/sausage.svg.gz +0 -0
- data/ui/dist/icons/sort-ascending-letters.svg.gz +0 -0
- data/ui/dist/icons/sort-ascending-numbers.svg.gz +0 -0
- data/ui/dist/icons/sort-descending-letters.svg.gz +0 -0
- data/ui/dist/icons/sort-descending-numbers.svg.gz +0 -0
- data/ui/dist/icons/soup.svg.gz +0 -0
- data/ui/dist/icons/sunrise.svg.gz +0 -0
- data/ui/dist/icons/sunset.svg.gz +0 -0
- data/ui/dist/icons/transfer-in.svg.gz +0 -0
- data/ui/dist/icons/transfer-out.svg.gz +0 -0
- data/ui/dist/icons/{vector-beizer.svg.gz → vector-bezier.svg.gz} +0 -0
- data/ui/dist/icons/vocabulary.svg.gz +0 -0
- data/ui/dist/main-f3598c513153eb56a058.css.gz +0 -0
- data/ui/dist/main-f3598c513153eb56a058.js.gz +0 -0
- data/ui/dist/manifest.json +1347 -1277
- metadata +43 -7
- data/ui/dist/icons/sunshine.svg.gz +0 -0
- data/ui/dist/main-69f743d211b7997bcec9.css.gz +0 -0
- data/ui/dist/main-69f743d211b7997bcec9.js.gz +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8148a84813c872a15091afc0364ac44fe269833bec29d09c2c96529638cf144b
|
4
|
+
data.tar.gz: bb1a9b70aa193343c14d3d4dbbce56bb1dd03da74b398f5ea22cdf2b6610e7b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3026ea9b82f811681722a37b59a3237c873743829f5c66c52bfa279ad4c9ad5516ab125410b1189c3ff07b1167e424a802fc381230651ab7574305811c2b283d
|
7
|
+
data.tar.gz: 56a23276fddcfe5d0460abc8e8f465cdb4aec729fd0db46bad197d124c70a2d8f7d6757eeb705b91e792ca33c198442dd97a882f52ba58e9cb244ac59cc878ca
|
@@ -9,10 +9,10 @@ module Motor
|
|
9
9
|
def index
|
10
10
|
data = CACHE_STORE.fetch('icons') do
|
11
11
|
Motor::Assets.icons.map do |icon|
|
12
|
-
svg = Motor::Assets.load_asset(
|
12
|
+
svg = Motor::Assets.load_asset(icon, gzip: !Motor.development?)
|
13
13
|
svg = ActiveSupport::Gzip.decompress(svg) unless Motor.development?
|
14
14
|
|
15
|
-
[icon, svg]
|
15
|
+
[icon.split('/').last, svg]
|
16
16
|
end
|
17
17
|
end
|
18
18
|
|
data/config/locales/en.yml
CHANGED
data/config/locales/es.yml
CHANGED
@@ -252,6 +252,10 @@ es:
|
|
252
252
|
there_are_unsaved_changes_from: "Hay cambios sin guardar de %{timestamp}"
|
253
253
|
clear: Quitar
|
254
254
|
restore: Restaurar
|
255
|
+
more: Más
|
256
|
+
add_text: Añadir Texto
|
257
|
+
edit_text: Editar Texto
|
258
|
+
open_in_markdown_editor: Abrir en el editor de markdown
|
255
259
|
i:
|
256
260
|
locale: es
|
257
261
|
select:
|
data/lib/motor/version.rb
CHANGED
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/ui/dist/icons/pizza.svg.gz
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/ui/dist/icons/sunset.svg.gz
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/ui/dist/manifest.json
CHANGED
@@ -1,2539 +1,2609 @@
|
|
1
1
|
{
|
2
|
-
".
|
3
|
-
"
|
4
|
-
"
|
5
|
-
"
|
6
|
-
"
|
7
|
-
"
|
8
|
-
"
|
9
|
-
"activity.svg": "icons/activity.svg",
|
10
|
-
"ad.svg": "icons/ad.svg",
|
11
|
-
"adjustments-alt.svg": "icons/adjustments-alt.svg",
|
12
|
-
"adjustments-horizontal.svg": "icons/adjustments-horizontal.svg",
|
13
|
-
"adjustments.svg": "icons/adjustments.svg",
|
14
|
-
"aerial-lift.svg": "icons/aerial-lift.svg",
|
15
|
-
"affiliate.svg": "icons/affiliate.svg",
|
16
|
-
"alarm.svg": "icons/alarm.svg",
|
17
|
-
"alert-circle.svg": "icons/alert-circle.svg",
|
18
|
-
"alert-octagon.svg": "icons/alert-octagon.svg",
|
19
|
-
"alert-triangle.svg": "icons/alert-triangle.svg",
|
20
|
-
"alien.svg": "icons/alien.svg",
|
21
|
-
"align-center.svg": "icons/align-center.svg",
|
22
|
-
"align-justified.svg": "icons/align-justified.svg",
|
23
|
-
"align-left.svg": "icons/align-left.svg",
|
24
|
-
"align-right.svg": "icons/align-right.svg",
|
25
|
-
"ambulance.svg": "icons/ambulance.svg",
|
26
|
-
"anchor.svg": "icons/anchor.svg",
|
27
|
-
"antenna-bars-1.svg": "icons/antenna-bars-1.svg",
|
28
|
-
"antenna-bars-2.svg": "icons/antenna-bars-2.svg",
|
29
|
-
"antenna-bars-3.svg": "icons/antenna-bars-3.svg",
|
30
|
-
"antenna-bars-4.svg": "icons/antenna-bars-4.svg",
|
31
|
-
"antenna-bars-5.svg": "icons/antenna-bars-5.svg",
|
32
|
-
"aperture.svg": "icons/aperture.svg",
|
33
|
-
"apps.svg": "icons/apps.svg",
|
34
|
-
"archive.svg": "icons/archive.svg",
|
35
|
-
"arrow-back-up.svg": "icons/arrow-back-up.svg",
|
36
|
-
"arrow-back.svg": "icons/arrow-back.svg",
|
37
|
-
"arrow-bar-down.svg": "icons/arrow-bar-down.svg",
|
38
|
-
"arrow-bar-left.svg": "icons/arrow-bar-left.svg",
|
39
|
-
"arrow-bar-right.svg": "icons/arrow-bar-right.svg",
|
40
|
-
"arrow-bar-to-down.svg": "icons/arrow-bar-to-down.svg",
|
41
|
-
"arrow-bar-to-left.svg": "icons/arrow-bar-to-left.svg",
|
42
|
-
"arrow-bar-to-right.svg": "icons/arrow-bar-to-right.svg",
|
43
|
-
"arrow-bar-to-up.svg": "icons/arrow-bar-to-up.svg",
|
44
|
-
"arrow-bar-up.svg": "icons/arrow-bar-up.svg",
|
45
|
-
"arrow-big-down.svg": "icons/arrow-big-down.svg",
|
46
|
-
"arrow-big-left.svg": "icons/arrow-big-left.svg",
|
47
|
-
"arrow-big-right.svg": "icons/arrow-big-right.svg",
|
48
|
-
"arrow-big-top.svg": "icons/arrow-big-top.svg",
|
49
|
-
"arrow-bottom-bar.svg": "icons/arrow-bottom-bar.svg",
|
50
|
-
"arrow-bottom-circle.svg": "icons/arrow-bottom-circle.svg",
|
51
|
-
"arrow-bottom-square.svg": "icons/arrow-bottom-square.svg",
|
52
|
-
"arrow-bottom-tail.svg": "icons/arrow-bottom-tail.svg",
|
53
|
-
"arrow-down-circle.svg": "icons/arrow-down-circle.svg",
|
54
|
-
"arrow-down-left-circle.svg": "icons/arrow-down-left-circle.svg",
|
55
|
-
"arrow-down-left.svg": "icons/arrow-down-left.svg",
|
56
|
-
"arrow-down-right-circle.svg": "icons/arrow-down-right-circle.svg",
|
57
|
-
"arrow-down-right.svg": "icons/arrow-down-right.svg",
|
58
|
-
"arrow-down.svg": "icons/arrow-down.svg",
|
59
|
-
"arrow-forward-up.svg": "icons/arrow-forward-up.svg",
|
60
|
-
"arrow-forward.svg": "icons/arrow-forward.svg",
|
61
|
-
"arrow-left-bar.svg": "icons/arrow-left-bar.svg",
|
62
|
-
"arrow-left-circle.svg": "icons/arrow-left-circle.svg",
|
63
|
-
"arrow-left-square.svg": "icons/arrow-left-square.svg",
|
64
|
-
"arrow-left-tail.svg": "icons/arrow-left-tail.svg",
|
65
|
-
"arrow-left.svg": "icons/arrow-left.svg",
|
66
|
-
"arrow-loop-left.svg": "icons/arrow-loop-left.svg",
|
67
|
-
"arrow-loop-right.svg": "icons/arrow-loop-right.svg",
|
68
|
-
"arrow-narrow-down.svg": "icons/arrow-narrow-down.svg",
|
69
|
-
"arrow-narrow-left.svg": "icons/arrow-narrow-left.svg",
|
70
|
-
"arrow-narrow-right.svg": "icons/arrow-narrow-right.svg",
|
71
|
-
"arrow-narrow-up.svg": "icons/arrow-narrow-up.svg",
|
72
|
-
"arrow-ramp-left.svg": "icons/arrow-ramp-left.svg",
|
73
|
-
"arrow-ramp-right.svg": "icons/arrow-ramp-right.svg",
|
74
|
-
"arrow-right-bar.svg": "icons/arrow-right-bar.svg",
|
75
|
-
"arrow-right-circle.svg": "icons/arrow-right-circle.svg",
|
76
|
-
"arrow-right-square.svg": "icons/arrow-right-square.svg",
|
77
|
-
"arrow-right-tail.svg": "icons/arrow-right-tail.svg",
|
78
|
-
"arrow-right.svg": "icons/arrow-right.svg",
|
79
|
-
"arrow-top-bar.svg": "icons/arrow-top-bar.svg",
|
80
|
-
"arrow-top-circle.svg": "icons/arrow-top-circle.svg",
|
81
|
-
"arrow-top-square.svg": "icons/arrow-top-square.svg",
|
82
|
-
"arrow-top-tail.svg": "icons/arrow-top-tail.svg",
|
83
|
-
"arrow-up-circle.svg": "icons/arrow-up-circle.svg",
|
84
|
-
"arrow-up-left-circle.svg": "icons/arrow-up-left-circle.svg",
|
85
|
-
"arrow-up-left.svg": "icons/arrow-up-left.svg",
|
86
|
-
"arrow-up-right-circle.svg": "icons/arrow-up-right-circle.svg",
|
87
|
-
"arrow-up-right.svg": "icons/arrow-up-right.svg",
|
88
|
-
"arrow-up.svg": "icons/arrow-up.svg",
|
89
|
-
"arrow-wave-left-down.svg": "icons/arrow-wave-left-down.svg",
|
90
|
-
"arrow-wave-left-up.svg": "icons/arrow-wave-left-up.svg",
|
91
|
-
"arrow-wave-right-down.svg": "icons/arrow-wave-right-down.svg",
|
92
|
-
"arrow-wave-right-up.svg": "icons/arrow-wave-right-up.svg",
|
93
|
-
"arrows-diagonal-2.svg": "icons/arrows-diagonal-2.svg",
|
94
|
-
"arrows-diagonal.svg": "icons/arrows-diagonal.svg",
|
95
|
-
"arrows-double-ne-sw.svg": "icons/arrows-double-ne-sw.svg",
|
96
|
-
"arrows-double-nw-se.svg": "icons/arrows-double-nw-se.svg",
|
97
|
-
"arrows-double-se-nw.svg": "icons/arrows-double-se-nw.svg",
|
98
|
-
"arrows-double-sw-ne.svg": "icons/arrows-double-sw-ne.svg",
|
99
|
-
"arrows-down-up.svg": "icons/arrows-down-up.svg",
|
100
|
-
"arrows-down.svg": "icons/arrows-down.svg",
|
101
|
-
"arrows-horizontal.svg": "icons/arrows-horizontal.svg",
|
102
|
-
"arrows-join-2.svg": "icons/arrows-join-2.svg",
|
103
|
-
"arrows-join.svg": "icons/arrows-join.svg",
|
104
|
-
"arrows-left-down.svg": "icons/arrows-left-down.svg",
|
105
|
-
"arrows-left-right.svg": "icons/arrows-left-right.svg",
|
106
|
-
"arrows-left.svg": "icons/arrows-left.svg",
|
107
|
-
"arrows-maximize.svg": "icons/arrows-maximize.svg",
|
108
|
-
"arrows-minimize.svg": "icons/arrows-minimize.svg",
|
109
|
-
"arrows-right-down.svg": "icons/arrows-right-down.svg",
|
110
|
-
"arrows-right-left.svg": "icons/arrows-right-left.svg",
|
111
|
-
"arrows-right.svg": "icons/arrows-right.svg",
|
112
|
-
"arrows-sort.svg": "icons/arrows-sort.svg",
|
113
|
-
"arrows-split-2.svg": "icons/arrows-split-2.svg",
|
114
|
-
"arrows-split.svg": "icons/arrows-split.svg",
|
115
|
-
"arrows-up-down.svg": "icons/arrows-up-down.svg",
|
116
|
-
"arrows-up-left.svg": "icons/arrows-up-left.svg",
|
117
|
-
"arrows-up-right.svg": "icons/arrows-up-right.svg",
|
118
|
-
"arrows-up.svg": "icons/arrows-up.svg",
|
119
|
-
"arrows-vertical.svg": "icons/arrows-vertical.svg",
|
120
|
-
"artboard.svg": "icons/artboard.svg",
|
121
|
-
"aspect-ratio.svg": "icons/aspect-ratio.svg",
|
122
|
-
"at.svg": "icons/at.svg",
|
123
|
-
"atom-2.svg": "icons/atom-2.svg",
|
124
|
-
"atom.svg": "icons/atom.svg",
|
125
|
-
"award.svg": "icons/award.svg",
|
126
|
-
"backhoe.svg": "icons/backhoe.svg",
|
127
|
-
"backspace.svg": "icons/backspace.svg",
|
128
|
-
"ball-american-football.svg": "icons/ball-american-football.svg",
|
129
|
-
"ball-basketball.svg": "icons/ball-basketball.svg",
|
130
|
-
"ball-bowling.svg": "icons/ball-bowling.svg",
|
131
|
-
"ball-football-off.svg": "icons/ball-football-off.svg",
|
132
|
-
"ball-football.svg": "icons/ball-football.svg",
|
133
|
-
"ball-tennis.svg": "icons/ball-tennis.svg",
|
134
|
-
"ball-volleyball.svg": "icons/ball-volleyball.svg",
|
135
|
-
"ban.svg": "icons/ban.svg",
|
136
|
-
"bandage.svg": "icons/bandage.svg",
|
137
|
-
"barcode.svg": "icons/barcode.svg",
|
138
|
-
"basket.svg": "icons/basket.svg",
|
139
|
-
"battery-1.svg": "icons/battery-1.svg",
|
140
|
-
"battery-2.svg": "icons/battery-2.svg",
|
141
|
-
"battery-3.svg": "icons/battery-3.svg",
|
142
|
-
"battery-4.svg": "icons/battery-4.svg",
|
143
|
-
"battery-automotive.svg": "icons/battery-automotive.svg",
|
144
|
-
"battery-charging.svg": "icons/battery-charging.svg",
|
145
|
-
"battery-off.svg": "icons/battery-off.svg",
|
146
|
-
"battery.svg": "icons/battery.svg",
|
147
|
-
"bed.svg": "icons/bed.svg",
|
148
|
-
"bell-minus.svg": "icons/bell-minus.svg",
|
149
|
-
"bell-off.svg": "icons/bell-off.svg",
|
150
|
-
"bell-plus.svg": "icons/bell-plus.svg",
|
151
|
-
"bell-ringing-2.svg": "icons/bell-ringing-2.svg",
|
152
|
-
"bell-ringing.svg": "icons/bell-ringing.svg",
|
153
|
-
"bell-x.svg": "icons/bell-x.svg",
|
154
|
-
"bell.svg": "icons/bell.svg",
|
155
|
-
"bike.svg": "icons/bike.svg",
|
156
|
-
"binary.svg": "icons/binary.svg",
|
157
|
-
"biohazard.svg": "icons/biohazard.svg",
|
158
|
-
"blockquote.svg": "icons/blockquote.svg",
|
159
|
-
"bluetooth-connected.svg": "icons/bluetooth-connected.svg",
|
160
|
-
"bluetooth-off.svg": "icons/bluetooth-off.svg",
|
161
|
-
"bluetooth.svg": "icons/bluetooth.svg",
|
162
|
-
"bold.svg": "icons/bold.svg",
|
163
|
-
"bolt-off.svg": "icons/bolt-off.svg",
|
164
|
-
"bolt.svg": "icons/bolt.svg",
|
165
|
-
"bone.svg": "icons/bone.svg",
|
166
|
-
"book.svg": "icons/book.svg",
|
167
|
-
"bookmark-off.svg": "icons/bookmark-off.svg",
|
168
|
-
"bookmark.svg": "icons/bookmark.svg",
|
169
|
-
"bookmarks.svg": "icons/bookmarks.svg",
|
170
|
-
"border-all.svg": "icons/border-all.svg",
|
171
|
-
"border-bottom.svg": "icons/border-bottom.svg",
|
172
|
-
"border-horizontal.svg": "icons/border-horizontal.svg",
|
173
|
-
"border-inner.svg": "icons/border-inner.svg",
|
174
|
-
"border-left.svg": "icons/border-left.svg",
|
175
|
-
"border-none.svg": "icons/border-none.svg",
|
176
|
-
"border-outer.svg": "icons/border-outer.svg",
|
177
|
-
"border-radius.svg": "icons/border-radius.svg",
|
178
|
-
"border-right.svg": "icons/border-right.svg",
|
179
|
-
"border-style.svg": "icons/border-style.svg",
|
180
|
-
"border-top.svg": "icons/border-top.svg",
|
181
|
-
"border-vertical.svg": "icons/border-vertical.svg",
|
182
|
-
"box-margin.svg": "icons/box-margin.svg",
|
183
|
-
"box-model.svg": "icons/box-model.svg",
|
184
|
-
"box-multiple-0.svg": "icons/box-multiple-0.svg",
|
185
|
-
"box-multiple-1.svg": "icons/box-multiple-1.svg",
|
186
|
-
"box-multiple-2.svg": "icons/box-multiple-2.svg",
|
187
|
-
"box-multiple-3.svg": "icons/box-multiple-3.svg",
|
188
|
-
"box-multiple-4.svg": "icons/box-multiple-4.svg",
|
189
|
-
"box-multiple-5.svg": "icons/box-multiple-5.svg",
|
190
|
-
"box-multiple-6.svg": "icons/box-multiple-6.svg",
|
191
|
-
"box-multiple-7.svg": "icons/box-multiple-7.svg",
|
192
|
-
"box-multiple-8.svg": "icons/box-multiple-8.svg",
|
193
|
-
"box-multiple-9.svg": "icons/box-multiple-9.svg",
|
194
|
-
"box-multiple.svg": "icons/box-multiple.svg",
|
195
|
-
"box-padding.svg": "icons/box-padding.svg",
|
196
|
-
"box.svg": "icons/box.svg",
|
197
|
-
"braces.svg": "icons/braces.svg",
|
198
|
-
"brackets.svg": "icons/brackets.svg",
|
199
|
-
"brand-airbnb.svg": "icons/brand-airbnb.svg",
|
200
|
-
"brand-android.svg": "icons/brand-android.svg",
|
201
|
-
"brand-apple-arcade.svg": "icons/brand-apple-arcade.svg",
|
202
|
-
"brand-apple.svg": "icons/brand-apple.svg",
|
203
|
-
"brand-appstore.svg": "icons/brand-appstore.svg",
|
204
|
-
"brand-asana.svg": "icons/brand-asana.svg",
|
205
|
-
"brand-behance.svg": "icons/brand-behance.svg",
|
206
|
-
"brand-bing.svg": "icons/brand-bing.svg",
|
207
|
-
"brand-bitbucket.svg": "icons/brand-bitbucket.svg",
|
208
|
-
"brand-booking.svg": "icons/brand-booking.svg",
|
209
|
-
"brand-chrome.svg": "icons/brand-chrome.svg",
|
210
|
-
"brand-codepen.svg": "icons/brand-codepen.svg",
|
211
|
-
"brand-codesandbox.svg": "icons/brand-codesandbox.svg",
|
212
|
-
"brand-css3.svg": "icons/brand-css3.svg",
|
213
|
-
"brand-deviantart.svg": "icons/brand-deviantart.svg",
|
214
|
-
"brand-discord.svg": "icons/brand-discord.svg",
|
215
|
-
"brand-disqus.svg": "icons/brand-disqus.svg",
|
216
|
-
"brand-docker.svg": "icons/brand-docker.svg",
|
217
|
-
"brand-dribbble.svg": "icons/brand-dribbble.svg",
|
218
|
-
"brand-edge.svg": "icons/brand-edge.svg",
|
219
|
-
"brand-facebook.svg": "icons/brand-facebook.svg",
|
220
|
-
"brand-figma.svg": "icons/brand-figma.svg",
|
221
|
-
"brand-firefox.svg": "icons/brand-firefox.svg",
|
222
|
-
"brand-flickr.svg": "icons/brand-flickr.svg",
|
223
|
-
"brand-foursquare.svg": "icons/brand-foursquare.svg",
|
224
|
-
"brand-framer.svg": "icons/brand-framer.svg",
|
225
|
-
"brand-github.svg": "icons/brand-github.svg",
|
226
|
-
"brand-gitlab.svg": "icons/brand-gitlab.svg",
|
227
|
-
"brand-google-analytics.svg": "icons/brand-google-analytics.svg",
|
228
|
-
"brand-google-drive.svg": "icons/brand-google-drive.svg",
|
229
|
-
"brand-google-play.svg": "icons/brand-google-play.svg",
|
230
|
-
"brand-google.svg": "icons/brand-google.svg",
|
231
|
-
"brand-gravatar.svg": "icons/brand-gravatar.svg",
|
232
|
-
"brand-hipchat.svg": "icons/brand-hipchat.svg",
|
233
|
-
"brand-html5.svg": "icons/brand-html5.svg",
|
234
|
-
"brand-instagram.svg": "icons/brand-instagram.svg",
|
235
|
-
"brand-kickstarter.svg": "icons/brand-kickstarter.svg",
|
236
|
-
"brand-kotlin.svg": "icons/brand-kotlin.svg",
|
237
|
-
"brand-linkedin.svg": "icons/brand-linkedin.svg",
|
238
|
-
"brand-medium.svg": "icons/brand-medium.svg",
|
239
|
-
"brand-messenger.svg": "icons/brand-messenger.svg",
|
240
|
-
"brand-netflix.svg": "icons/brand-netflix.svg",
|
241
|
-
"brand-open-source.svg": "icons/brand-open-source.svg",
|
242
|
-
"brand-opera.svg": "icons/brand-opera.svg",
|
243
|
-
"brand-pagekit.svg": "icons/brand-pagekit.svg",
|
244
|
-
"brand-patreon.svg": "icons/brand-patreon.svg",
|
245
|
-
"brand-paypal.svg": "icons/brand-paypal.svg",
|
246
|
-
"brand-pinterest.svg": "icons/brand-pinterest.svg",
|
247
|
-
"brand-pocket.svg": "icons/brand-pocket.svg",
|
248
|
-
"brand-producthunt.svg": "icons/brand-producthunt.svg",
|
249
|
-
"brand-python.svg": "icons/brand-python.svg",
|
250
|
-
"brand-reddit.svg": "icons/brand-reddit.svg",
|
251
|
-
"brand-safari.svg": "icons/brand-safari.svg",
|
252
|
-
"brand-sass.svg": "icons/brand-sass.svg",
|
253
|
-
"brand-sentry.svg": "icons/brand-sentry.svg",
|
254
|
-
"brand-shazam.svg": "icons/brand-shazam.svg",
|
255
|
-
"brand-sketch.svg": "icons/brand-sketch.svg",
|
256
|
-
"brand-skype.svg": "icons/brand-skype.svg",
|
257
|
-
"brand-slack.svg": "icons/brand-slack.svg",
|
258
|
-
"brand-snapchat.svg": "icons/brand-snapchat.svg",
|
259
|
-
"brand-soundcloud.svg": "icons/brand-soundcloud.svg",
|
260
|
-
"brand-spotify.svg": "icons/brand-spotify.svg",
|
261
|
-
"brand-steam.svg": "icons/brand-steam.svg",
|
262
|
-
"brand-stripe.svg": "icons/brand-stripe.svg",
|
263
|
-
"brand-tabler.svg": "icons/brand-tabler.svg",
|
264
|
-
"brand-tailwind.svg": "icons/brand-tailwind.svg",
|
265
|
-
"brand-telegram.svg": "icons/brand-telegram.svg",
|
266
|
-
"brand-tidal.svg": "icons/brand-tidal.svg",
|
267
|
-
"brand-tiktok.svg": "icons/brand-tiktok.svg",
|
268
|
-
"brand-tinder.svg": "icons/brand-tinder.svg",
|
269
|
-
"brand-tumblr.svg": "icons/brand-tumblr.svg",
|
270
|
-
"brand-twitch.svg": "icons/brand-twitch.svg",
|
271
|
-
"brand-twitter.svg": "icons/brand-twitter.svg",
|
272
|
-
"brand-unsplash.svg": "icons/brand-unsplash.svg",
|
273
|
-
"brand-vimeo.svg": "icons/brand-vimeo.svg",
|
274
|
-
"brand-vk.svg": "icons/brand-vk.svg",
|
275
|
-
"brand-whatsapp.svg": "icons/brand-whatsapp.svg",
|
276
|
-
"brand-windows.svg": "icons/brand-windows.svg",
|
277
|
-
"brand-yahoo.svg": "icons/brand-yahoo.svg",
|
278
|
-
"brand-ycombinator.svg": "icons/brand-ycombinator.svg",
|
279
|
-
"brand-youtube.svg": "icons/brand-youtube.svg",
|
280
|
-
"briefcase.svg": "icons/briefcase.svg",
|
281
|
-
"brightness-2.svg": "icons/brightness-2.svg",
|
282
|
-
"brightness-down.svg": "icons/brightness-down.svg",
|
283
|
-
"brightness-half.svg": "icons/brightness-half.svg",
|
284
|
-
"brightness-up.svg": "icons/brightness-up.svg",
|
285
|
-
"brightness.svg": "icons/brightness.svg",
|
286
|
-
"browser.svg": "icons/browser.svg",
|
287
|
-
"brush.svg": "icons/brush.svg",
|
288
|
-
"bucket.svg": "icons/bucket.svg",
|
289
|
-
"bug.svg": "icons/bug.svg",
|
290
|
-
"building-arch.svg": "icons/building-arch.svg",
|
291
|
-
"building-bank.svg": "icons/building-bank.svg",
|
292
|
-
"building-bridge-2.svg": "icons/building-bridge-2.svg",
|
293
|
-
"building-bridge.svg": "icons/building-bridge.svg",
|
294
|
-
"building-carousel.svg": "icons/building-carousel.svg",
|
295
|
-
"building-castle.svg": "icons/building-castle.svg",
|
296
|
-
"building-church.svg": "icons/building-church.svg",
|
297
|
-
"building-community.svg": "icons/building-community.svg",
|
298
|
-
"building-cottage.svg": "icons/building-cottage.svg",
|
299
|
-
"building-factory.svg": "icons/building-factory.svg",
|
300
|
-
"building-fortress.svg": "icons/building-fortress.svg",
|
301
|
-
"building-hospital.svg": "icons/building-hospital.svg",
|
302
|
-
"building-lighthouse.svg": "icons/building-lighthouse.svg",
|
303
|
-
"building-monument.svg": "icons/building-monument.svg",
|
304
|
-
"building-pavilon.svg": "icons/building-pavilon.svg",
|
305
|
-
"building-skyscraper.svg": "icons/building-skyscraper.svg",
|
306
|
-
"building-store.svg": "icons/building-store.svg",
|
307
|
-
"building-warehouse.svg": "icons/building-warehouse.svg",
|
308
|
-
"building.svg": "icons/building.svg",
|
309
|
-
"bulb-off.svg": "icons/bulb-off.svg",
|
310
|
-
"bulb.svg": "icons/bulb.svg",
|
311
|
-
"bulldozer.svg": "icons/bulldozer.svg",
|
312
|
-
"bus.svg": "icons/bus.svg",
|
313
|
-
"businessplan.svg": "icons/businessplan.svg",
|
314
|
-
"calculator.svg": "icons/calculator.svg",
|
315
|
-
"calendar-event.svg": "icons/calendar-event.svg",
|
316
|
-
"calendar-minus.svg": "icons/calendar-minus.svg",
|
317
|
-
"calendar-off.svg": "icons/calendar-off.svg",
|
318
|
-
"calendar-plus.svg": "icons/calendar-plus.svg",
|
319
|
-
"calendar-stats.svg": "icons/calendar-stats.svg",
|
320
|
-
"calendar-time.svg": "icons/calendar-time.svg",
|
321
|
-
"calendar.svg": "icons/calendar.svg",
|
322
|
-
"camera-minus.svg": "icons/camera-minus.svg",
|
323
|
-
"camera-off.svg": "icons/camera-off.svg",
|
324
|
-
"camera-plus.svg": "icons/camera-plus.svg",
|
325
|
-
"camera-rotate.svg": "icons/camera-rotate.svg",
|
326
|
-
"camera-selfie.svg": "icons/camera-selfie.svg",
|
327
|
-
"camera.svg": "icons/camera.svg",
|
328
|
-
"capture.svg": "icons/capture.svg",
|
329
|
-
"car.svg": "icons/car.svg",
|
330
|
-
"caravan.svg": "icons/caravan.svg",
|
331
|
-
"cardboards.svg": "icons/cardboards.svg",
|
332
|
-
"caret-down.svg": "icons/caret-down.svg",
|
333
|
-
"caret-left.svg": "icons/caret-left.svg",
|
334
|
-
"caret-right.svg": "icons/caret-right.svg",
|
335
|
-
"caret-up.svg": "icons/caret-up.svg",
|
336
|
-
"cash-banknote-off.svg": "icons/cash-banknote-off.svg",
|
337
|
-
"cash-banknote.svg": "icons/cash-banknote.svg",
|
338
|
-
"cash.svg": "icons/cash.svg",
|
339
|
-
"cast.svg": "icons/cast.svg",
|
340
|
-
"ce.svg": "icons/ce.svg",
|
341
|
-
"certificate.svg": "icons/certificate.svg",
|
342
|
-
"charging-pile.svg": "icons/charging-pile.svg",
|
343
|
-
"chart-arcs-3.svg": "icons/chart-arcs-3.svg",
|
344
|
-
"chart-arcs.svg": "icons/chart-arcs.svg",
|
345
|
-
"chart-area-line.svg": "icons/chart-area-line.svg",
|
346
|
-
"chart-area.svg": "icons/chart-area.svg",
|
347
|
-
"chart-arrows-vertical.svg": "icons/chart-arrows-vertical.svg",
|
348
|
-
"chart-arrows.svg": "icons/chart-arrows.svg",
|
349
|
-
"chart-bar.svg": "icons/chart-bar.svg",
|
350
|
-
"chart-bubble.svg": "icons/chart-bubble.svg",
|
351
|
-
"chart-candle.svg": "icons/chart-candle.svg",
|
352
|
-
"chart-circles.svg": "icons/chart-circles.svg",
|
353
|
-
"chart-donut-2.svg": "icons/chart-donut-2.svg",
|
354
|
-
"chart-donut-3.svg": "icons/chart-donut-3.svg",
|
355
|
-
"chart-donut-4.svg": "icons/chart-donut-4.svg",
|
356
|
-
"chart-donut.svg": "icons/chart-donut.svg",
|
357
|
-
"chart-dots.svg": "icons/chart-dots.svg",
|
358
|
-
"chart-infographic.svg": "icons/chart-infographic.svg",
|
359
|
-
"chart-line.svg": "icons/chart-line.svg",
|
360
|
-
"chart-pie-2.svg": "icons/chart-pie-2.svg",
|
361
|
-
"chart-pie-3.svg": "icons/chart-pie-3.svg",
|
362
|
-
"chart-pie-4.svg": "icons/chart-pie-4.svg",
|
363
|
-
"chart-pie.svg": "icons/chart-pie.svg",
|
364
|
-
"chart-radar.svg": "icons/chart-radar.svg",
|
365
|
-
"check.svg": "icons/check.svg",
|
366
|
-
"checkbox.svg": "icons/checkbox.svg",
|
367
|
-
"checks.svg": "icons/checks.svg",
|
368
|
-
"chevron-down-left.svg": "icons/chevron-down-left.svg",
|
369
|
-
"chevron-down-right.svg": "icons/chevron-down-right.svg",
|
370
|
-
"chevron-down.svg": "icons/chevron-down.svg",
|
371
|
-
"chevron-left.svg": "icons/chevron-left.svg",
|
372
|
-
"chevron-right.svg": "icons/chevron-right.svg",
|
373
|
-
"chevron-up-left.svg": "icons/chevron-up-left.svg",
|
374
|
-
"chevron-up-right.svg": "icons/chevron-up-right.svg",
|
375
|
-
"chevron-up.svg": "icons/chevron-up.svg",
|
376
|
-
"chevrons-down-left.svg": "icons/chevrons-down-left.svg",
|
377
|
-
"chevrons-down-right.svg": "icons/chevrons-down-right.svg",
|
378
|
-
"chevrons-down.svg": "icons/chevrons-down.svg",
|
379
|
-
"chevrons-left.svg": "icons/chevrons-left.svg",
|
380
|
-
"chevrons-right.svg": "icons/chevrons-right.svg",
|
381
|
-
"chevrons-up-left.svg": "icons/chevrons-up-left.svg",
|
382
|
-
"chevrons-up-right.svg": "icons/chevrons-up-right.svg",
|
383
|
-
"chevrons-up.svg": "icons/chevrons-up.svg",
|
384
|
-
"christmas-tree.svg": "icons/christmas-tree.svg",
|
385
|
-
"circle-0.svg": "icons/circle-0.svg",
|
386
|
-
"circle-1.svg": "icons/circle-1.svg",
|
387
|
-
"circle-2.svg": "icons/circle-2.svg",
|
388
|
-
"circle-3.svg": "icons/circle-3.svg",
|
389
|
-
"circle-4.svg": "icons/circle-4.svg",
|
390
|
-
"circle-5.svg": "icons/circle-5.svg",
|
391
|
-
"circle-6.svg": "icons/circle-6.svg",
|
392
|
-
"circle-7.svg": "icons/circle-7.svg",
|
393
|
-
"circle-8.svg": "icons/circle-8.svg",
|
394
|
-
"circle-9.svg": "icons/circle-9.svg",
|
395
|
-
"circle-check.svg": "icons/circle-check.svg",
|
396
|
-
"circle-dashed.svg": "icons/circle-dashed.svg",
|
397
|
-
"circle-dotted.svg": "icons/circle-dotted.svg",
|
398
|
-
"circle-half-vertical.svg": "icons/circle-half-vertical.svg",
|
399
|
-
"circle-half.svg": "icons/circle-half.svg",
|
400
|
-
"circle-minus.svg": "icons/circle-minus.svg",
|
401
|
-
"circle-off.svg": "icons/circle-off.svg",
|
402
|
-
"circle-plus.svg": "icons/circle-plus.svg",
|
403
|
-
"circle-square.svg": "icons/circle-square.svg",
|
404
|
-
"circle-x.svg": "icons/circle-x.svg",
|
405
|
-
"circle.svg": "icons/circle.svg",
|
406
|
-
"circles.svg": "icons/circles.svg",
|
407
|
-
"clear-all.svg": "icons/clear-all.svg",
|
408
|
-
"clear-formatting.svg": "icons/clear-formatting.svg",
|
409
|
-
"click.svg": "icons/click.svg",
|
410
|
-
"clipboard-check.svg": "icons/clipboard-check.svg",
|
411
|
-
"clipboard-list.svg": "icons/clipboard-list.svg",
|
412
|
-
"clipboard-x.svg": "icons/clipboard-x.svg",
|
413
|
-
"clipboard.svg": "icons/clipboard.svg",
|
414
|
-
"clock.svg": "icons/clock.svg",
|
415
|
-
"cloud-download.svg": "icons/cloud-download.svg",
|
416
|
-
"cloud-fog.svg": "icons/cloud-fog.svg",
|
417
|
-
"cloud-off.svg": "icons/cloud-off.svg",
|
418
|
-
"cloud-rain.svg": "icons/cloud-rain.svg",
|
419
|
-
"cloud-snow.svg": "icons/cloud-snow.svg",
|
420
|
-
"cloud-storm.svg": "icons/cloud-storm.svg",
|
421
|
-
"cloud-upload.svg": "icons/cloud-upload.svg",
|
422
|
-
"cloud.svg": "icons/cloud.svg",
|
423
|
-
"code-minus.svg": "icons/code-minus.svg",
|
424
|
-
"code-plus.svg": "icons/code-plus.svg",
|
425
|
-
"code.svg": "icons/code.svg",
|
426
|
-
"coin.svg": "icons/coin.svg",
|
427
|
-
"color-picker.svg": "icons/color-picker.svg",
|
428
|
-
"color-swatch.svg": "icons/color-swatch.svg",
|
429
|
-
"column-insert-left.svg": "icons/column-insert-left.svg",
|
430
|
-
"column-insert-right.svg": "icons/column-insert-right.svg",
|
431
|
-
"columns.svg": "icons/columns.svg",
|
432
|
-
"comet.svg": "icons/comet.svg",
|
433
|
-
"command.svg": "icons/command.svg",
|
434
|
-
"compass.svg": "icons/compass.svg",
|
435
|
-
"confetti.svg": "icons/confetti.svg",
|
436
|
-
"container.svg": "icons/container.svg",
|
437
|
-
"contrast.svg": "icons/contrast.svg",
|
438
|
-
"copy.svg": "icons/copy.svg",
|
439
|
-
"copyleft.svg": "icons/copyleft.svg",
|
440
|
-
"copyright.svg": "icons/copyright.svg",
|
441
|
-
"corner-down-left-double.svg": "icons/corner-down-left-double.svg",
|
442
|
-
"corner-down-left.svg": "icons/corner-down-left.svg",
|
443
|
-
"corner-down-right-double.svg": "icons/corner-down-right-double.svg",
|
444
|
-
"corner-down-right.svg": "icons/corner-down-right.svg",
|
445
|
-
"corner-left-down-double.svg": "icons/corner-left-down-double.svg",
|
446
|
-
"corner-left-down.svg": "icons/corner-left-down.svg",
|
447
|
-
"corner-left-up-double.svg": "icons/corner-left-up-double.svg",
|
448
|
-
"corner-left-up.svg": "icons/corner-left-up.svg",
|
449
|
-
"corner-right-down-double.svg": "icons/corner-right-down-double.svg",
|
450
|
-
"corner-right-down.svg": "icons/corner-right-down.svg",
|
451
|
-
"corner-right-up-double.svg": "icons/corner-right-up-double.svg",
|
452
|
-
"corner-right-up.svg": "icons/corner-right-up.svg",
|
453
|
-
"corner-up-left-double.svg": "icons/corner-up-left-double.svg",
|
454
|
-
"corner-up-left.svg": "icons/corner-up-left.svg",
|
455
|
-
"corner-up-right-double.svg": "icons/corner-up-right-double.svg",
|
456
|
-
"corner-up-right.svg": "icons/corner-up-right.svg",
|
457
|
-
"credit-card-off.svg": "icons/credit-card-off.svg",
|
458
|
-
"credit-card.svg": "icons/credit-card.svg",
|
459
|
-
"crop.svg": "icons/crop.svg",
|
460
|
-
"crosshair.svg": "icons/crosshair.svg",
|
461
|
-
"crown-off.svg": "icons/crown-off.svg",
|
462
|
-
"crown.svg": "icons/crown.svg",
|
463
|
-
"curly-loop.svg": "icons/curly-loop.svg",
|
464
|
-
"currency-bahraini.svg": "icons/currency-bahraini.svg",
|
465
|
-
"currency-bath.svg": "icons/currency-bath.svg",
|
466
|
-
"currency-bitcoin.svg": "icons/currency-bitcoin.svg",
|
467
|
-
"currency-cent.svg": "icons/currency-cent.svg",
|
468
|
-
"currency-dinar.svg": "icons/currency-dinar.svg",
|
469
|
-
"currency-dirham.svg": "icons/currency-dirham.svg",
|
470
|
-
"currency-dollar-australian.svg": "icons/currency-dollar-australian.svg",
|
471
|
-
"currency-dollar-canadian.svg": "icons/currency-dollar-canadian.svg",
|
472
|
-
"currency-dollar-singapore.svg": "icons/currency-dollar-singapore.svg",
|
473
|
-
"currency-dollar.svg": "icons/currency-dollar.svg",
|
474
|
-
"currency-ethereum.svg": "icons/currency-ethereum.svg",
|
475
|
-
"currency-euro.svg": "icons/currency-euro.svg",
|
476
|
-
"currency-forint.svg": "icons/currency-forint.svg",
|
477
|
-
"currency-frank.svg": "icons/currency-frank.svg",
|
478
|
-
"currency-krone-czech.svg": "icons/currency-krone-czech.svg",
|
479
|
-
"currency-krone-danish.svg": "icons/currency-krone-danish.svg",
|
480
|
-
"currency-krone-swedish.svg": "icons/currency-krone-swedish.svg",
|
481
|
-
"currency-leu.svg": "icons/currency-leu.svg",
|
482
|
-
"currency-lira.svg": "icons/currency-lira.svg",
|
483
|
-
"currency-litecoin.svg": "icons/currency-litecoin.svg",
|
484
|
-
"currency-naira.svg": "icons/currency-naira.svg",
|
485
|
-
"currency-pound.svg": "icons/currency-pound.svg",
|
486
|
-
"currency-real.svg": "icons/currency-real.svg",
|
487
|
-
"currency-renminbi.svg": "icons/currency-renminbi.svg",
|
488
|
-
"currency-ripple.svg": "icons/currency-ripple.svg",
|
489
|
-
"currency-riyal.svg": "icons/currency-riyal.svg",
|
490
|
-
"currency-rubel.svg": "icons/currency-rubel.svg",
|
491
|
-
"currency-rupee.svg": "icons/currency-rupee.svg",
|
492
|
-
"currency-shekel.svg": "icons/currency-shekel.svg",
|
493
|
-
"currency-taka.svg": "icons/currency-taka.svg",
|
494
|
-
"currency-tugrik.svg": "icons/currency-tugrik.svg",
|
495
|
-
"currency-won.svg": "icons/currency-won.svg",
|
496
|
-
"currency-yen.svg": "icons/currency-yen.svg",
|
497
|
-
"currency-zloty.svg": "icons/currency-zloty.svg",
|
498
|
-
"current-location.svg": "icons/current-location.svg",
|
499
|
-
"cursor-text.svg": "icons/cursor-text.svg",
|
500
|
-
"cut.svg": "icons/cut.svg",
|
501
|
-
"dashboard.svg": "icons/dashboard.svg",
|
502
|
-
"database-export.svg": "icons/database-export.svg",
|
503
|
-
"database-import.svg": "icons/database-import.svg",
|
504
|
-
"database-off.svg": "icons/database-off.svg",
|
505
|
-
"database.svg": "icons/database.svg",
|
506
|
-
"details.svg": "icons/details.svg",
|
507
|
-
"device-analytics.svg": "icons/device-analytics.svg",
|
508
|
-
"device-audio-tape.svg": "icons/device-audio-tape.svg",
|
509
|
-
"device-cctv.svg": "icons/device-cctv.svg",
|
510
|
-
"device-computer-camera-off.svg": "icons/device-computer-camera-off.svg",
|
511
|
-
"device-computer-camera.svg": "icons/device-computer-camera.svg",
|
512
|
-
"device-desktop-analytics.svg": "icons/device-desktop-analytics.svg",
|
513
|
-
"device-desktop-off.svg": "icons/device-desktop-off.svg",
|
514
|
-
"device-desktop.svg": "icons/device-desktop.svg",
|
515
|
-
"device-floppy.svg": "icons/device-floppy.svg",
|
516
|
-
"device-gamepad.svg": "icons/device-gamepad.svg",
|
517
|
-
"device-laptop.svg": "icons/device-laptop.svg",
|
518
|
-
"device-mobile-message.svg": "icons/device-mobile-message.svg",
|
519
|
-
"device-mobile-rotated.svg": "icons/device-mobile-rotated.svg",
|
520
|
-
"device-mobile-vibration.svg": "icons/device-mobile-vibration.svg",
|
521
|
-
"device-mobile.svg": "icons/device-mobile.svg",
|
522
|
-
"device-speaker.svg": "icons/device-speaker.svg",
|
523
|
-
"device-tablet.svg": "icons/device-tablet.svg",
|
524
|
-
"device-tv.svg": "icons/device-tv.svg",
|
525
|
-
"device-watch.svg": "icons/device-watch.svg",
|
526
|
-
"devices-2.svg": "icons/devices-2.svg",
|
527
|
-
"devices-pc.svg": "icons/devices-pc.svg",
|
528
|
-
"devices.svg": "icons/devices.svg",
|
529
|
-
"diamond.svg": "icons/diamond.svg",
|
530
|
-
"dice.svg": "icons/dice.svg",
|
531
|
-
"dimensions.svg": "icons/dimensions.svg",
|
532
|
-
"direction-horizontal.svg": "icons/direction-horizontal.svg",
|
533
|
-
"direction.svg": "icons/direction.svg",
|
534
|
-
"directions.svg": "icons/directions.svg",
|
535
|
-
"disabled-2.svg": "icons/disabled-2.svg",
|
536
|
-
"disabled.svg": "icons/disabled.svg",
|
537
|
-
"disc.svg": "icons/disc.svg",
|
538
|
-
"discount-2.svg": "icons/discount-2.svg",
|
539
|
-
"discount.svg": "icons/discount.svg",
|
540
|
-
"divide.svg": "icons/divide.svg",
|
541
|
-
"dna.svg": "icons/dna.svg",
|
542
|
-
"dots-circle-horizontal.svg": "icons/dots-circle-horizontal.svg",
|
543
|
-
"dots-diagonal-2.svg": "icons/dots-diagonal-2.svg",
|
544
|
-
"dots-diagonal.svg": "icons/dots-diagonal.svg",
|
545
|
-
"dots-vertical.svg": "icons/dots-vertical.svg",
|
546
|
-
"dots.svg": "icons/dots.svg",
|
547
|
-
"download.svg": "icons/download.svg",
|
548
|
-
"drag-drop-2.svg": "icons/drag-drop-2.svg",
|
549
|
-
"drag-drop.svg": "icons/drag-drop.svg",
|
550
|
-
"drone-off.svg": "icons/drone-off.svg",
|
551
|
-
"drone.svg": "icons/drone.svg",
|
552
|
-
"droplet-filled-2.svg": "icons/droplet-filled-2.svg",
|
553
|
-
"droplet-filled.svg": "icons/droplet-filled.svg",
|
554
|
-
"droplet-half-2.svg": "icons/droplet-half-2.svg",
|
555
|
-
"droplet-half.svg": "icons/droplet-half.svg",
|
556
|
-
"droplet-off.svg": "icons/droplet-off.svg",
|
557
|
-
"droplet.svg": "icons/droplet.svg",
|
558
|
-
"ear-off.svg": "icons/ear-off.svg",
|
559
|
-
"ear.svg": "icons/ear.svg",
|
560
|
-
"edit-circle.svg": "icons/edit-circle.svg",
|
561
|
-
"edit.svg": "icons/edit.svg",
|
562
|
-
"egg.svg": "icons/egg.svg",
|
563
|
-
"emphasis.svg": "icons/emphasis.svg",
|
564
|
-
"equal-not.svg": "icons/equal-not.svg",
|
565
|
-
"equal.svg": "icons/equal.svg",
|
566
|
-
"eraser.svg": "icons/eraser.svg",
|
567
|
-
"exchange.svg": "icons/exchange.svg",
|
568
|
-
"exposure.svg": "icons/exposure.svg",
|
569
|
-
"external-link.svg": "icons/external-link.svg",
|
570
|
-
"eye-check.svg": "icons/eye-check.svg",
|
571
|
-
"eye-off.svg": "icons/eye-off.svg",
|
572
|
-
"eye.svg": "icons/eye.svg",
|
573
|
-
"eyeglass-2.svg": "icons/eyeglass-2.svg",
|
574
|
-
"eyeglass.svg": "icons/eyeglass.svg",
|
575
|
-
"face-id.svg": "icons/face-id.svg",
|
576
|
-
"fall.svg": "icons/fall.svg",
|
577
|
-
"feather.svg": "icons/feather.svg",
|
578
|
-
"file-alert.svg": "icons/file-alert.svg",
|
579
|
-
"file-analytics.svg": "icons/file-analytics.svg",
|
580
|
-
"file-certificate.svg": "icons/file-certificate.svg",
|
581
|
-
"file-check.svg": "icons/file-check.svg",
|
582
|
-
"file-code-2.svg": "icons/file-code-2.svg",
|
583
|
-
"file-code.svg": "icons/file-code.svg",
|
584
|
-
"file-diff.svg": "icons/file-diff.svg",
|
585
|
-
"file-dislike.svg": "icons/file-dislike.svg",
|
586
|
-
"file-download.svg": "icons/file-download.svg",
|
587
|
-
"file-export.svg": "icons/file-export.svg",
|
588
|
-
"file-horizontal.svg": "icons/file-horizontal.svg",
|
589
|
-
"file-import.svg": "icons/file-import.svg",
|
590
|
-
"file-info.svg": "icons/file-info.svg",
|
591
|
-
"file-invoice.svg": "icons/file-invoice.svg",
|
592
|
-
"file-like.svg": "icons/file-like.svg",
|
593
|
-
"file-minus.svg": "icons/file-minus.svg",
|
594
|
-
"file-music.svg": "icons/file-music.svg",
|
595
|
-
"file-off.svg": "icons/file-off.svg",
|
596
|
-
"file-phone.svg": "icons/file-phone.svg",
|
597
|
-
"file-plus.svg": "icons/file-plus.svg",
|
598
|
-
"file-report.svg": "icons/file-report.svg",
|
599
|
-
"file-search.svg": "icons/file-search.svg",
|
600
|
-
"file-shredder.svg": "icons/file-shredder.svg",
|
601
|
-
"file-symlink.svg": "icons/file-symlink.svg",
|
602
|
-
"file-text.svg": "icons/file-text.svg",
|
603
|
-
"file-upload.svg": "icons/file-upload.svg",
|
604
|
-
"file-x.svg": "icons/file-x.svg",
|
605
|
-
"file-zip.svg": "icons/file-zip.svg",
|
606
|
-
"file.svg": "icons/file.svg",
|
607
|
-
"files-off.svg": "icons/files-off.svg",
|
608
|
-
"files.svg": "icons/files.svg",
|
609
|
-
"filter-off.svg": "icons/filter-off.svg",
|
610
|
-
"filter.svg": "icons/filter.svg",
|
611
|
-
"fingerprint.svg": "icons/fingerprint.svg",
|
612
|
-
"firetruck.svg": "icons/firetruck.svg",
|
613
|
-
"flag-2.svg": "icons/flag-2.svg",
|
614
|
-
"flag-3.svg": "icons/flag-3.svg",
|
615
|
-
"flag.svg": "icons/flag.svg",
|
616
|
-
"flame.svg": "icons/flame.svg",
|
617
|
-
"flare.svg": "icons/flare.svg",
|
618
|
-
"flask.svg": "icons/flask.svg",
|
619
|
-
"flip-horizontal.svg": "icons/flip-horizontal.svg",
|
620
|
-
"flip-vertical.svg": "icons/flip-vertical.svg",
|
621
|
-
"float-center.svg": "icons/float-center.svg",
|
622
|
-
"float-left.svg": "icons/float-left.svg",
|
623
|
-
"float-none.svg": "icons/float-none.svg",
|
624
|
-
"float-right.svg": "icons/float-right.svg",
|
625
|
-
"focus-2.svg": "icons/focus-2.svg",
|
626
|
-
"focus.svg": "icons/focus.svg",
|
627
|
-
"fold-down.svg": "icons/fold-down.svg",
|
628
|
-
"fold-up.svg": "icons/fold-up.svg",
|
629
|
-
"fold.svg": "icons/fold.svg",
|
630
|
-
"folder-minus.svg": "icons/folder-minus.svg",
|
631
|
-
"folder-off.svg": "icons/folder-off.svg",
|
632
|
-
"folder-plus.svg": "icons/folder-plus.svg",
|
633
|
-
"folder-x.svg": "icons/folder-x.svg",
|
634
|
-
"folder.svg": "icons/folder.svg",
|
635
|
-
"folders.svg": "icons/folders.svg",
|
636
|
-
"fonts/ionicons.eot?v=3.0.0-alpha.3": "fonts/ionicons.eot",
|
637
|
-
"fonts/ionicons.eot?v=3.0.0-alpha.3#iefix": "fonts/ionicons.eot",
|
638
|
-
"fonts/ionicons.svg.gz": "fonts/ionicons.svg.gz",
|
639
|
-
"fonts/ionicons.svg?v=3.0.0-alpha.3#Ionicons": "fonts/ionicons.svg",
|
640
|
-
"fonts/ionicons.ttf?v=3.0.0-alpha.3": "fonts/ionicons.ttf",
|
641
|
-
"fonts/ionicons.woff2?v=3.0.0-alpha.3": "fonts/ionicons.woff2",
|
642
|
-
"fonts/ionicons.woff?v=3.0.0-alpha.3": "fonts/ionicons.woff",
|
643
|
-
"forbid-2.svg": "icons/forbid-2.svg",
|
644
|
-
"forbid.svg": "icons/forbid.svg",
|
645
|
-
"forklift.svg": "icons/forklift.svg",
|
646
|
-
"forms.svg": "icons/forms.svg",
|
647
|
-
"frame.svg": "icons/frame.svg",
|
648
|
-
"friends.svg": "icons/friends.svg",
|
649
|
-
"gas-station.svg": "icons/gas-station.svg",
|
650
|
-
"gauge.svg": "icons/gauge.svg",
|
651
|
-
"geometry.svg": "icons/geometry.svg",
|
652
|
-
"ghost.svg": "icons/ghost.svg",
|
653
|
-
"gift.svg": "icons/gift.svg",
|
654
|
-
"git-branch.svg": "icons/git-branch.svg",
|
655
|
-
"git-commit.svg": "icons/git-commit.svg",
|
656
|
-
"git-compare.svg": "icons/git-compare.svg",
|
657
|
-
"git-fork.svg": "icons/git-fork.svg",
|
658
|
-
"git-merge.svg": "icons/git-merge.svg",
|
659
|
-
"git-pull-request.svg": "icons/git-pull-request.svg",
|
660
|
-
"glass-full.svg": "icons/glass-full.svg",
|
661
|
-
"glass-off.svg": "icons/glass-off.svg",
|
662
|
-
"glass.svg": "icons/glass.svg",
|
663
|
-
"globe.svg": "icons/globe.svg",
|
664
|
-
"golf.svg": "icons/golf.svg",
|
665
|
-
"gps.svg": "icons/gps.svg",
|
666
|
-
"grain.svg": "icons/grain.svg",
|
667
|
-
"grid-dots.svg": "icons/grid-dots.svg",
|
668
|
-
"grip-horizontal.svg": "icons/grip-horizontal.svg",
|
669
|
-
"grip-vertical.svg": "icons/grip-vertical.svg",
|
670
|
-
"growth.svg": "icons/growth.svg",
|
671
|
-
"h-1.svg": "icons/h-1.svg",
|
672
|
-
"h-2.svg": "icons/h-2.svg",
|
673
|
-
"h-3.svg": "icons/h-3.svg",
|
674
|
-
"h-4.svg": "icons/h-4.svg",
|
675
|
-
"h-5.svg": "icons/h-5.svg",
|
676
|
-
"h-6.svg": "icons/h-6.svg",
|
677
|
-
"hand-finger.svg": "icons/hand-finger.svg",
|
678
|
-
"hand-little-finger.svg": "icons/hand-little-finger.svg",
|
679
|
-
"hand-middle-finger.svg": "icons/hand-middle-finger.svg",
|
680
|
-
"hand-off.svg": "icons/hand-off.svg",
|
681
|
-
"hand-ring-finger.svg": "icons/hand-ring-finger.svg",
|
682
|
-
"hand-rock.svg": "icons/hand-rock.svg",
|
683
|
-
"hand-stop.svg": "icons/hand-stop.svg",
|
684
|
-
"hand-three-fingers.svg": "icons/hand-three-fingers.svg",
|
685
|
-
"hand-two-fingers.svg": "icons/hand-two-fingers.svg",
|
686
|
-
"hanger.svg": "icons/hanger.svg",
|
687
|
-
"hash.svg": "icons/hash.svg",
|
688
|
-
"heading.svg": "icons/heading.svg",
|
689
|
-
"headphones-off.svg": "icons/headphones-off.svg",
|
690
|
-
"headphones.svg": "icons/headphones.svg",
|
691
|
-
"headset.svg": "icons/headset.svg",
|
692
|
-
"heart-broken.svg": "icons/heart-broken.svg",
|
693
|
-
"heart.svg": "icons/heart.svg",
|
694
|
-
"helicopter-landing.svg": "icons/helicopter-landing.svg",
|
695
|
-
"helicopter.svg": "icons/helicopter.svg",
|
696
|
-
"help.svg": "icons/help.svg",
|
697
|
-
"hexagon-off.svg": "icons/hexagon-off.svg",
|
698
|
-
"hexagon.svg": "icons/hexagon.svg",
|
699
|
-
"hierarchy-2.svg": "icons/hierarchy-2.svg",
|
700
|
-
"hierarchy.svg": "icons/hierarchy.svg",
|
701
|
-
"history.svg": "icons/history.svg",
|
702
|
-
"home-2.svg": "icons/home-2.svg",
|
703
|
-
"home.svg": "icons/home.svg",
|
704
|
-
"ice-cream-2.svg": "icons/ice-cream-2.svg",
|
705
|
-
"ice-cream.svg": "icons/ice-cream.svg",
|
2
|
+
"fonts/ionicons-5e922efbe77ab761f446.svg.gz": "fonts/ionicons-5e922efbe77ab761f446.svg.gz",
|
3
|
+
"fonts/ionicons.eot?v=3.0.0-alpha.3": "fonts/ionicons-8e11c7277d2293e3de4b.eot",
|
4
|
+
"fonts/ionicons.svg?v=3.0.0-alpha.3": "fonts/ionicons-5e922efbe77ab761f446.svg",
|
5
|
+
"fonts/ionicons.ttf?v=3.0.0-alpha.3": "fonts/ionicons-effb8ffd6b53d3e5c7c7.ttf",
|
6
|
+
"fonts/ionicons.woff2?v=3.0.0-alpha.3": "fonts/ionicons-1a64b9a9a172d067c820.woff2",
|
7
|
+
"fonts/ionicons.woff?v=3.0.0-alpha.3": "fonts/ionicons-0cc255909b7ddee8d0b5.woff",
|
8
|
+
"icons/2fa.svg": "icons/2fa.svg",
|
706
9
|
"icons/2fa.svg.gz": "icons/2fa.svg.gz",
|
10
|
+
"icons/3d-cube-sphere.svg": "icons/3d-cube-sphere.svg",
|
707
11
|
"icons/3d-cube-sphere.svg.gz": "icons/3d-cube-sphere.svg.gz",
|
12
|
+
"icons/a-b.svg": "icons/a-b.svg",
|
708
13
|
"icons/a-b.svg.gz": "icons/a-b.svg.gz",
|
14
|
+
"icons/access-point-off.svg": "icons/access-point-off.svg",
|
709
15
|
"icons/access-point-off.svg.gz": "icons/access-point-off.svg.gz",
|
16
|
+
"icons/access-point.svg": "icons/access-point.svg",
|
710
17
|
"icons/access-point.svg.gz": "icons/access-point.svg.gz",
|
18
|
+
"icons/accessible.svg": "icons/accessible.svg",
|
711
19
|
"icons/accessible.svg.gz": "icons/accessible.svg.gz",
|
20
|
+
"icons/activity.svg": "icons/activity.svg",
|
712
21
|
"icons/activity.svg.gz": "icons/activity.svg.gz",
|
22
|
+
"icons/ad-2.svg": "icons/ad-2.svg",
|
23
|
+
"icons/ad-2.svg.gz": "icons/ad-2.svg.gz",
|
24
|
+
"icons/ad.svg": "icons/ad.svg",
|
713
25
|
"icons/ad.svg.gz": "icons/ad.svg.gz",
|
26
|
+
"icons/adjustments-alt.svg": "icons/adjustments-alt.svg",
|
714
27
|
"icons/adjustments-alt.svg.gz": "icons/adjustments-alt.svg.gz",
|
28
|
+
"icons/adjustments-horizontal.svg": "icons/adjustments-horizontal.svg",
|
715
29
|
"icons/adjustments-horizontal.svg.gz": "icons/adjustments-horizontal.svg.gz",
|
30
|
+
"icons/adjustments.svg": "icons/adjustments.svg",
|
716
31
|
"icons/adjustments.svg.gz": "icons/adjustments.svg.gz",
|
32
|
+
"icons/aerial-lift.svg": "icons/aerial-lift.svg",
|
717
33
|
"icons/aerial-lift.svg.gz": "icons/aerial-lift.svg.gz",
|
34
|
+
"icons/affiliate.svg": "icons/affiliate.svg",
|
718
35
|
"icons/affiliate.svg.gz": "icons/affiliate.svg.gz",
|
36
|
+
"icons/alarm.svg": "icons/alarm.svg",
|
719
37
|
"icons/alarm.svg.gz": "icons/alarm.svg.gz",
|
38
|
+
"icons/alert-circle.svg": "icons/alert-circle.svg",
|
720
39
|
"icons/alert-circle.svg.gz": "icons/alert-circle.svg.gz",
|
40
|
+
"icons/alert-octagon.svg": "icons/alert-octagon.svg",
|
721
41
|
"icons/alert-octagon.svg.gz": "icons/alert-octagon.svg.gz",
|
42
|
+
"icons/alert-triangle.svg": "icons/alert-triangle.svg",
|
722
43
|
"icons/alert-triangle.svg.gz": "icons/alert-triangle.svg.gz",
|
44
|
+
"icons/alien.svg": "icons/alien.svg",
|
723
45
|
"icons/alien.svg.gz": "icons/alien.svg.gz",
|
46
|
+
"icons/align-center.svg": "icons/align-center.svg",
|
724
47
|
"icons/align-center.svg.gz": "icons/align-center.svg.gz",
|
48
|
+
"icons/align-justified.svg": "icons/align-justified.svg",
|
725
49
|
"icons/align-justified.svg.gz": "icons/align-justified.svg.gz",
|
50
|
+
"icons/align-left.svg": "icons/align-left.svg",
|
726
51
|
"icons/align-left.svg.gz": "icons/align-left.svg.gz",
|
52
|
+
"icons/align-right.svg": "icons/align-right.svg",
|
727
53
|
"icons/align-right.svg.gz": "icons/align-right.svg.gz",
|
54
|
+
"icons/ambulance.svg": "icons/ambulance.svg",
|
728
55
|
"icons/ambulance.svg.gz": "icons/ambulance.svg.gz",
|
56
|
+
"icons/anchor.svg": "icons/anchor.svg",
|
729
57
|
"icons/anchor.svg.gz": "icons/anchor.svg.gz",
|
58
|
+
"icons/angle.svg": "icons/angle.svg",
|
59
|
+
"icons/angle.svg.gz": "icons/angle.svg.gz",
|
60
|
+
"icons/antenna-bars-1.svg": "icons/antenna-bars-1.svg",
|
730
61
|
"icons/antenna-bars-1.svg.gz": "icons/antenna-bars-1.svg.gz",
|
62
|
+
"icons/antenna-bars-2.svg": "icons/antenna-bars-2.svg",
|
731
63
|
"icons/antenna-bars-2.svg.gz": "icons/antenna-bars-2.svg.gz",
|
64
|
+
"icons/antenna-bars-3.svg": "icons/antenna-bars-3.svg",
|
732
65
|
"icons/antenna-bars-3.svg.gz": "icons/antenna-bars-3.svg.gz",
|
66
|
+
"icons/antenna-bars-4.svg": "icons/antenna-bars-4.svg",
|
733
67
|
"icons/antenna-bars-4.svg.gz": "icons/antenna-bars-4.svg.gz",
|
68
|
+
"icons/antenna-bars-5.svg": "icons/antenna-bars-5.svg",
|
734
69
|
"icons/antenna-bars-5.svg.gz": "icons/antenna-bars-5.svg.gz",
|
70
|
+
"icons/aperture.svg": "icons/aperture.svg",
|
735
71
|
"icons/aperture.svg.gz": "icons/aperture.svg.gz",
|
72
|
+
"icons/apple.svg": "icons/apple.svg",
|
73
|
+
"icons/apple.svg.gz": "icons/apple.svg.gz",
|
74
|
+
"icons/apps.svg": "icons/apps.svg",
|
736
75
|
"icons/apps.svg.gz": "icons/apps.svg.gz",
|
76
|
+
"icons/archive.svg": "icons/archive.svg",
|
737
77
|
"icons/archive.svg.gz": "icons/archive.svg.gz",
|
78
|
+
"icons/arrow-back-up.svg": "icons/arrow-back-up.svg",
|
738
79
|
"icons/arrow-back-up.svg.gz": "icons/arrow-back-up.svg.gz",
|
80
|
+
"icons/arrow-back.svg": "icons/arrow-back.svg",
|
739
81
|
"icons/arrow-back.svg.gz": "icons/arrow-back.svg.gz",
|
82
|
+
"icons/arrow-bar-down.svg": "icons/arrow-bar-down.svg",
|
740
83
|
"icons/arrow-bar-down.svg.gz": "icons/arrow-bar-down.svg.gz",
|
84
|
+
"icons/arrow-bar-left.svg": "icons/arrow-bar-left.svg",
|
741
85
|
"icons/arrow-bar-left.svg.gz": "icons/arrow-bar-left.svg.gz",
|
86
|
+
"icons/arrow-bar-right.svg": "icons/arrow-bar-right.svg",
|
742
87
|
"icons/arrow-bar-right.svg.gz": "icons/arrow-bar-right.svg.gz",
|
88
|
+
"icons/arrow-bar-to-down.svg": "icons/arrow-bar-to-down.svg",
|
743
89
|
"icons/arrow-bar-to-down.svg.gz": "icons/arrow-bar-to-down.svg.gz",
|
90
|
+
"icons/arrow-bar-to-left.svg": "icons/arrow-bar-to-left.svg",
|
744
91
|
"icons/arrow-bar-to-left.svg.gz": "icons/arrow-bar-to-left.svg.gz",
|
92
|
+
"icons/arrow-bar-to-right.svg": "icons/arrow-bar-to-right.svg",
|
745
93
|
"icons/arrow-bar-to-right.svg.gz": "icons/arrow-bar-to-right.svg.gz",
|
94
|
+
"icons/arrow-bar-to-up.svg": "icons/arrow-bar-to-up.svg",
|
746
95
|
"icons/arrow-bar-to-up.svg.gz": "icons/arrow-bar-to-up.svg.gz",
|
96
|
+
"icons/arrow-bar-up.svg": "icons/arrow-bar-up.svg",
|
747
97
|
"icons/arrow-bar-up.svg.gz": "icons/arrow-bar-up.svg.gz",
|
98
|
+
"icons/arrow-big-down.svg": "icons/arrow-big-down.svg",
|
748
99
|
"icons/arrow-big-down.svg.gz": "icons/arrow-big-down.svg.gz",
|
100
|
+
"icons/arrow-big-left.svg": "icons/arrow-big-left.svg",
|
749
101
|
"icons/arrow-big-left.svg.gz": "icons/arrow-big-left.svg.gz",
|
102
|
+
"icons/arrow-big-right.svg": "icons/arrow-big-right.svg",
|
750
103
|
"icons/arrow-big-right.svg.gz": "icons/arrow-big-right.svg.gz",
|
104
|
+
"icons/arrow-big-top.svg": "icons/arrow-big-top.svg",
|
751
105
|
"icons/arrow-big-top.svg.gz": "icons/arrow-big-top.svg.gz",
|
106
|
+
"icons/arrow-bottom-bar.svg": "icons/arrow-bottom-bar.svg",
|
752
107
|
"icons/arrow-bottom-bar.svg.gz": "icons/arrow-bottom-bar.svg.gz",
|
108
|
+
"icons/arrow-bottom-circle.svg": "icons/arrow-bottom-circle.svg",
|
753
109
|
"icons/arrow-bottom-circle.svg.gz": "icons/arrow-bottom-circle.svg.gz",
|
110
|
+
"icons/arrow-bottom-square.svg": "icons/arrow-bottom-square.svg",
|
754
111
|
"icons/arrow-bottom-square.svg.gz": "icons/arrow-bottom-square.svg.gz",
|
112
|
+
"icons/arrow-bottom-tail.svg": "icons/arrow-bottom-tail.svg",
|
755
113
|
"icons/arrow-bottom-tail.svg.gz": "icons/arrow-bottom-tail.svg.gz",
|
114
|
+
"icons/arrow-down-circle.svg": "icons/arrow-down-circle.svg",
|
756
115
|
"icons/arrow-down-circle.svg.gz": "icons/arrow-down-circle.svg.gz",
|
116
|
+
"icons/arrow-down-left-circle.svg": "icons/arrow-down-left-circle.svg",
|
757
117
|
"icons/arrow-down-left-circle.svg.gz": "icons/arrow-down-left-circle.svg.gz",
|
118
|
+
"icons/arrow-down-left.svg": "icons/arrow-down-left.svg",
|
758
119
|
"icons/arrow-down-left.svg.gz": "icons/arrow-down-left.svg.gz",
|
120
|
+
"icons/arrow-down-right-circle.svg": "icons/arrow-down-right-circle.svg",
|
759
121
|
"icons/arrow-down-right-circle.svg.gz": "icons/arrow-down-right-circle.svg.gz",
|
122
|
+
"icons/arrow-down-right.svg": "icons/arrow-down-right.svg",
|
760
123
|
"icons/arrow-down-right.svg.gz": "icons/arrow-down-right.svg.gz",
|
124
|
+
"icons/arrow-down.svg": "icons/arrow-down.svg",
|
761
125
|
"icons/arrow-down.svg.gz": "icons/arrow-down.svg.gz",
|
126
|
+
"icons/arrow-forward-up.svg": "icons/arrow-forward-up.svg",
|
762
127
|
"icons/arrow-forward-up.svg.gz": "icons/arrow-forward-up.svg.gz",
|
128
|
+
"icons/arrow-forward.svg": "icons/arrow-forward.svg",
|
763
129
|
"icons/arrow-forward.svg.gz": "icons/arrow-forward.svg.gz",
|
130
|
+
"icons/arrow-left-bar.svg": "icons/arrow-left-bar.svg",
|
764
131
|
"icons/arrow-left-bar.svg.gz": "icons/arrow-left-bar.svg.gz",
|
132
|
+
"icons/arrow-left-circle.svg": "icons/arrow-left-circle.svg",
|
765
133
|
"icons/arrow-left-circle.svg.gz": "icons/arrow-left-circle.svg.gz",
|
134
|
+
"icons/arrow-left-square.svg": "icons/arrow-left-square.svg",
|
766
135
|
"icons/arrow-left-square.svg.gz": "icons/arrow-left-square.svg.gz",
|
136
|
+
"icons/arrow-left-tail.svg": "icons/arrow-left-tail.svg",
|
767
137
|
"icons/arrow-left-tail.svg.gz": "icons/arrow-left-tail.svg.gz",
|
138
|
+
"icons/arrow-left.svg": "icons/arrow-left.svg",
|
768
139
|
"icons/arrow-left.svg.gz": "icons/arrow-left.svg.gz",
|
140
|
+
"icons/arrow-loop-left.svg": "icons/arrow-loop-left.svg",
|
769
141
|
"icons/arrow-loop-left.svg.gz": "icons/arrow-loop-left.svg.gz",
|
142
|
+
"icons/arrow-loop-right.svg": "icons/arrow-loop-right.svg",
|
770
143
|
"icons/arrow-loop-right.svg.gz": "icons/arrow-loop-right.svg.gz",
|
144
|
+
"icons/arrow-narrow-down.svg": "icons/arrow-narrow-down.svg",
|
771
145
|
"icons/arrow-narrow-down.svg.gz": "icons/arrow-narrow-down.svg.gz",
|
146
|
+
"icons/arrow-narrow-left.svg": "icons/arrow-narrow-left.svg",
|
772
147
|
"icons/arrow-narrow-left.svg.gz": "icons/arrow-narrow-left.svg.gz",
|
148
|
+
"icons/arrow-narrow-right.svg": "icons/arrow-narrow-right.svg",
|
773
149
|
"icons/arrow-narrow-right.svg.gz": "icons/arrow-narrow-right.svg.gz",
|
150
|
+
"icons/arrow-narrow-up.svg": "icons/arrow-narrow-up.svg",
|
774
151
|
"icons/arrow-narrow-up.svg.gz": "icons/arrow-narrow-up.svg.gz",
|
152
|
+
"icons/arrow-ramp-left.svg": "icons/arrow-ramp-left.svg",
|
775
153
|
"icons/arrow-ramp-left.svg.gz": "icons/arrow-ramp-left.svg.gz",
|
154
|
+
"icons/arrow-ramp-right.svg": "icons/arrow-ramp-right.svg",
|
776
155
|
"icons/arrow-ramp-right.svg.gz": "icons/arrow-ramp-right.svg.gz",
|
156
|
+
"icons/arrow-right-bar.svg": "icons/arrow-right-bar.svg",
|
777
157
|
"icons/arrow-right-bar.svg.gz": "icons/arrow-right-bar.svg.gz",
|
158
|
+
"icons/arrow-right-circle.svg": "icons/arrow-right-circle.svg",
|
778
159
|
"icons/arrow-right-circle.svg.gz": "icons/arrow-right-circle.svg.gz",
|
160
|
+
"icons/arrow-right-square.svg": "icons/arrow-right-square.svg",
|
779
161
|
"icons/arrow-right-square.svg.gz": "icons/arrow-right-square.svg.gz",
|
162
|
+
"icons/arrow-right-tail.svg": "icons/arrow-right-tail.svg",
|
780
163
|
"icons/arrow-right-tail.svg.gz": "icons/arrow-right-tail.svg.gz",
|
164
|
+
"icons/arrow-right.svg": "icons/arrow-right.svg",
|
781
165
|
"icons/arrow-right.svg.gz": "icons/arrow-right.svg.gz",
|
166
|
+
"icons/arrow-top-bar.svg": "icons/arrow-top-bar.svg",
|
782
167
|
"icons/arrow-top-bar.svg.gz": "icons/arrow-top-bar.svg.gz",
|
168
|
+
"icons/arrow-top-circle.svg": "icons/arrow-top-circle.svg",
|
783
169
|
"icons/arrow-top-circle.svg.gz": "icons/arrow-top-circle.svg.gz",
|
170
|
+
"icons/arrow-top-square.svg": "icons/arrow-top-square.svg",
|
784
171
|
"icons/arrow-top-square.svg.gz": "icons/arrow-top-square.svg.gz",
|
172
|
+
"icons/arrow-top-tail.svg": "icons/arrow-top-tail.svg",
|
785
173
|
"icons/arrow-top-tail.svg.gz": "icons/arrow-top-tail.svg.gz",
|
174
|
+
"icons/arrow-up-circle.svg": "icons/arrow-up-circle.svg",
|
786
175
|
"icons/arrow-up-circle.svg.gz": "icons/arrow-up-circle.svg.gz",
|
176
|
+
"icons/arrow-up-left-circle.svg": "icons/arrow-up-left-circle.svg",
|
787
177
|
"icons/arrow-up-left-circle.svg.gz": "icons/arrow-up-left-circle.svg.gz",
|
178
|
+
"icons/arrow-up-left.svg": "icons/arrow-up-left.svg",
|
788
179
|
"icons/arrow-up-left.svg.gz": "icons/arrow-up-left.svg.gz",
|
180
|
+
"icons/arrow-up-right-circle.svg": "icons/arrow-up-right-circle.svg",
|
789
181
|
"icons/arrow-up-right-circle.svg.gz": "icons/arrow-up-right-circle.svg.gz",
|
182
|
+
"icons/arrow-up-right.svg": "icons/arrow-up-right.svg",
|
790
183
|
"icons/arrow-up-right.svg.gz": "icons/arrow-up-right.svg.gz",
|
184
|
+
"icons/arrow-up.svg": "icons/arrow-up.svg",
|
791
185
|
"icons/arrow-up.svg.gz": "icons/arrow-up.svg.gz",
|
186
|
+
"icons/arrow-wave-left-down.svg": "icons/arrow-wave-left-down.svg",
|
792
187
|
"icons/arrow-wave-left-down.svg.gz": "icons/arrow-wave-left-down.svg.gz",
|
188
|
+
"icons/arrow-wave-left-up.svg": "icons/arrow-wave-left-up.svg",
|
793
189
|
"icons/arrow-wave-left-up.svg.gz": "icons/arrow-wave-left-up.svg.gz",
|
190
|
+
"icons/arrow-wave-right-down.svg": "icons/arrow-wave-right-down.svg",
|
794
191
|
"icons/arrow-wave-right-down.svg.gz": "icons/arrow-wave-right-down.svg.gz",
|
192
|
+
"icons/arrow-wave-right-up.svg": "icons/arrow-wave-right-up.svg",
|
795
193
|
"icons/arrow-wave-right-up.svg.gz": "icons/arrow-wave-right-up.svg.gz",
|
194
|
+
"icons/arrows-diagonal-2.svg": "icons/arrows-diagonal-2.svg",
|
796
195
|
"icons/arrows-diagonal-2.svg.gz": "icons/arrows-diagonal-2.svg.gz",
|
196
|
+
"icons/arrows-diagonal.svg": "icons/arrows-diagonal.svg",
|
797
197
|
"icons/arrows-diagonal.svg.gz": "icons/arrows-diagonal.svg.gz",
|
198
|
+
"icons/arrows-double-ne-sw.svg": "icons/arrows-double-ne-sw.svg",
|
798
199
|
"icons/arrows-double-ne-sw.svg.gz": "icons/arrows-double-ne-sw.svg.gz",
|
200
|
+
"icons/arrows-double-nw-se.svg": "icons/arrows-double-nw-se.svg",
|
799
201
|
"icons/arrows-double-nw-se.svg.gz": "icons/arrows-double-nw-se.svg.gz",
|
202
|
+
"icons/arrows-double-se-nw.svg": "icons/arrows-double-se-nw.svg",
|
800
203
|
"icons/arrows-double-se-nw.svg.gz": "icons/arrows-double-se-nw.svg.gz",
|
204
|
+
"icons/arrows-double-sw-ne.svg": "icons/arrows-double-sw-ne.svg",
|
801
205
|
"icons/arrows-double-sw-ne.svg.gz": "icons/arrows-double-sw-ne.svg.gz",
|
206
|
+
"icons/arrows-down-up.svg": "icons/arrows-down-up.svg",
|
802
207
|
"icons/arrows-down-up.svg.gz": "icons/arrows-down-up.svg.gz",
|
208
|
+
"icons/arrows-down.svg": "icons/arrows-down.svg",
|
803
209
|
"icons/arrows-down.svg.gz": "icons/arrows-down.svg.gz",
|
210
|
+
"icons/arrows-horizontal.svg": "icons/arrows-horizontal.svg",
|
804
211
|
"icons/arrows-horizontal.svg.gz": "icons/arrows-horizontal.svg.gz",
|
212
|
+
"icons/arrows-join-2.svg": "icons/arrows-join-2.svg",
|
805
213
|
"icons/arrows-join-2.svg.gz": "icons/arrows-join-2.svg.gz",
|
214
|
+
"icons/arrows-join.svg": "icons/arrows-join.svg",
|
806
215
|
"icons/arrows-join.svg.gz": "icons/arrows-join.svg.gz",
|
216
|
+
"icons/arrows-left-down.svg": "icons/arrows-left-down.svg",
|
807
217
|
"icons/arrows-left-down.svg.gz": "icons/arrows-left-down.svg.gz",
|
218
|
+
"icons/arrows-left-right.svg": "icons/arrows-left-right.svg",
|
808
219
|
"icons/arrows-left-right.svg.gz": "icons/arrows-left-right.svg.gz",
|
220
|
+
"icons/arrows-left.svg": "icons/arrows-left.svg",
|
809
221
|
"icons/arrows-left.svg.gz": "icons/arrows-left.svg.gz",
|
222
|
+
"icons/arrows-maximize.svg": "icons/arrows-maximize.svg",
|
810
223
|
"icons/arrows-maximize.svg.gz": "icons/arrows-maximize.svg.gz",
|
224
|
+
"icons/arrows-minimize.svg": "icons/arrows-minimize.svg",
|
811
225
|
"icons/arrows-minimize.svg.gz": "icons/arrows-minimize.svg.gz",
|
226
|
+
"icons/arrows-right-down.svg": "icons/arrows-right-down.svg",
|
812
227
|
"icons/arrows-right-down.svg.gz": "icons/arrows-right-down.svg.gz",
|
228
|
+
"icons/arrows-right-left.svg": "icons/arrows-right-left.svg",
|
813
229
|
"icons/arrows-right-left.svg.gz": "icons/arrows-right-left.svg.gz",
|
230
|
+
"icons/arrows-right.svg": "icons/arrows-right.svg",
|
814
231
|
"icons/arrows-right.svg.gz": "icons/arrows-right.svg.gz",
|
232
|
+
"icons/arrows-sort.svg": "icons/arrows-sort.svg",
|
815
233
|
"icons/arrows-sort.svg.gz": "icons/arrows-sort.svg.gz",
|
234
|
+
"icons/arrows-split-2.svg": "icons/arrows-split-2.svg",
|
816
235
|
"icons/arrows-split-2.svg.gz": "icons/arrows-split-2.svg.gz",
|
236
|
+
"icons/arrows-split.svg": "icons/arrows-split.svg",
|
817
237
|
"icons/arrows-split.svg.gz": "icons/arrows-split.svg.gz",
|
238
|
+
"icons/arrows-up-down.svg": "icons/arrows-up-down.svg",
|
818
239
|
"icons/arrows-up-down.svg.gz": "icons/arrows-up-down.svg.gz",
|
240
|
+
"icons/arrows-up-left.svg": "icons/arrows-up-left.svg",
|
819
241
|
"icons/arrows-up-left.svg.gz": "icons/arrows-up-left.svg.gz",
|
242
|
+
"icons/arrows-up-right.svg": "icons/arrows-up-right.svg",
|
820
243
|
"icons/arrows-up-right.svg.gz": "icons/arrows-up-right.svg.gz",
|
244
|
+
"icons/arrows-up.svg": "icons/arrows-up.svg",
|
821
245
|
"icons/arrows-up.svg.gz": "icons/arrows-up.svg.gz",
|
246
|
+
"icons/arrows-vertical.svg": "icons/arrows-vertical.svg",
|
822
247
|
"icons/arrows-vertical.svg.gz": "icons/arrows-vertical.svg.gz",
|
248
|
+
"icons/artboard.svg": "icons/artboard.svg",
|
823
249
|
"icons/artboard.svg.gz": "icons/artboard.svg.gz",
|
250
|
+
"icons/aspect-ratio.svg": "icons/aspect-ratio.svg",
|
824
251
|
"icons/aspect-ratio.svg.gz": "icons/aspect-ratio.svg.gz",
|
252
|
+
"icons/at.svg": "icons/at.svg",
|
825
253
|
"icons/at.svg.gz": "icons/at.svg.gz",
|
254
|
+
"icons/atom-2.svg": "icons/atom-2.svg",
|
826
255
|
"icons/atom-2.svg.gz": "icons/atom-2.svg.gz",
|
256
|
+
"icons/atom.svg": "icons/atom.svg",
|
827
257
|
"icons/atom.svg.gz": "icons/atom.svg.gz",
|
258
|
+
"icons/award.svg": "icons/award.svg",
|
828
259
|
"icons/award.svg.gz": "icons/award.svg.gz",
|
260
|
+
"icons/backhoe.svg": "icons/backhoe.svg",
|
829
261
|
"icons/backhoe.svg.gz": "icons/backhoe.svg.gz",
|
262
|
+
"icons/backspace.svg": "icons/backspace.svg",
|
830
263
|
"icons/backspace.svg.gz": "icons/backspace.svg.gz",
|
264
|
+
"icons/ball-american-football.svg": "icons/ball-american-football.svg",
|
831
265
|
"icons/ball-american-football.svg.gz": "icons/ball-american-football.svg.gz",
|
266
|
+
"icons/ball-basketball.svg": "icons/ball-basketball.svg",
|
832
267
|
"icons/ball-basketball.svg.gz": "icons/ball-basketball.svg.gz",
|
268
|
+
"icons/ball-bowling.svg": "icons/ball-bowling.svg",
|
833
269
|
"icons/ball-bowling.svg.gz": "icons/ball-bowling.svg.gz",
|
270
|
+
"icons/ball-football-off.svg": "icons/ball-football-off.svg",
|
834
271
|
"icons/ball-football-off.svg.gz": "icons/ball-football-off.svg.gz",
|
272
|
+
"icons/ball-football.svg": "icons/ball-football.svg",
|
835
273
|
"icons/ball-football.svg.gz": "icons/ball-football.svg.gz",
|
274
|
+
"icons/ball-tennis.svg": "icons/ball-tennis.svg",
|
836
275
|
"icons/ball-tennis.svg.gz": "icons/ball-tennis.svg.gz",
|
276
|
+
"icons/ball-volleyball.svg": "icons/ball-volleyball.svg",
|
837
277
|
"icons/ball-volleyball.svg.gz": "icons/ball-volleyball.svg.gz",
|
278
|
+
"icons/ban.svg": "icons/ban.svg",
|
838
279
|
"icons/ban.svg.gz": "icons/ban.svg.gz",
|
280
|
+
"icons/bandage.svg": "icons/bandage.svg",
|
839
281
|
"icons/bandage.svg.gz": "icons/bandage.svg.gz",
|
282
|
+
"icons/barcode.svg": "icons/barcode.svg",
|
840
283
|
"icons/barcode.svg.gz": "icons/barcode.svg.gz",
|
284
|
+
"icons/basket.svg": "icons/basket.svg",
|
841
285
|
"icons/basket.svg.gz": "icons/basket.svg.gz",
|
286
|
+
"icons/battery-1.svg": "icons/battery-1.svg",
|
842
287
|
"icons/battery-1.svg.gz": "icons/battery-1.svg.gz",
|
288
|
+
"icons/battery-2.svg": "icons/battery-2.svg",
|
843
289
|
"icons/battery-2.svg.gz": "icons/battery-2.svg.gz",
|
290
|
+
"icons/battery-3.svg": "icons/battery-3.svg",
|
844
291
|
"icons/battery-3.svg.gz": "icons/battery-3.svg.gz",
|
292
|
+
"icons/battery-4.svg": "icons/battery-4.svg",
|
845
293
|
"icons/battery-4.svg.gz": "icons/battery-4.svg.gz",
|
294
|
+
"icons/battery-automotive.svg": "icons/battery-automotive.svg",
|
846
295
|
"icons/battery-automotive.svg.gz": "icons/battery-automotive.svg.gz",
|
296
|
+
"icons/battery-charging.svg": "icons/battery-charging.svg",
|
847
297
|
"icons/battery-charging.svg.gz": "icons/battery-charging.svg.gz",
|
298
|
+
"icons/battery-off.svg": "icons/battery-off.svg",
|
848
299
|
"icons/battery-off.svg.gz": "icons/battery-off.svg.gz",
|
300
|
+
"icons/battery.svg": "icons/battery.svg",
|
849
301
|
"icons/battery.svg.gz": "icons/battery.svg.gz",
|
302
|
+
"icons/bed.svg": "icons/bed.svg",
|
850
303
|
"icons/bed.svg.gz": "icons/bed.svg.gz",
|
304
|
+
"icons/bell-minus.svg": "icons/bell-minus.svg",
|
851
305
|
"icons/bell-minus.svg.gz": "icons/bell-minus.svg.gz",
|
306
|
+
"icons/bell-off.svg": "icons/bell-off.svg",
|
852
307
|
"icons/bell-off.svg.gz": "icons/bell-off.svg.gz",
|
308
|
+
"icons/bell-plus.svg": "icons/bell-plus.svg",
|
853
309
|
"icons/bell-plus.svg.gz": "icons/bell-plus.svg.gz",
|
310
|
+
"icons/bell-ringing-2.svg": "icons/bell-ringing-2.svg",
|
854
311
|
"icons/bell-ringing-2.svg.gz": "icons/bell-ringing-2.svg.gz",
|
312
|
+
"icons/bell-ringing.svg": "icons/bell-ringing.svg",
|
855
313
|
"icons/bell-ringing.svg.gz": "icons/bell-ringing.svg.gz",
|
314
|
+
"icons/bell-x.svg": "icons/bell-x.svg",
|
856
315
|
"icons/bell-x.svg.gz": "icons/bell-x.svg.gz",
|
316
|
+
"icons/bell.svg": "icons/bell.svg",
|
857
317
|
"icons/bell.svg.gz": "icons/bell.svg.gz",
|
318
|
+
"icons/bike.svg": "icons/bike.svg",
|
858
319
|
"icons/bike.svg.gz": "icons/bike.svg.gz",
|
320
|
+
"icons/binary.svg": "icons/binary.svg",
|
859
321
|
"icons/binary.svg.gz": "icons/binary.svg.gz",
|
322
|
+
"icons/biohazard.svg": "icons/biohazard.svg",
|
860
323
|
"icons/biohazard.svg.gz": "icons/biohazard.svg.gz",
|
324
|
+
"icons/blockquote.svg": "icons/blockquote.svg",
|
861
325
|
"icons/blockquote.svg.gz": "icons/blockquote.svg.gz",
|
326
|
+
"icons/bluetooth-connected.svg": "icons/bluetooth-connected.svg",
|
862
327
|
"icons/bluetooth-connected.svg.gz": "icons/bluetooth-connected.svg.gz",
|
328
|
+
"icons/bluetooth-off.svg": "icons/bluetooth-off.svg",
|
863
329
|
"icons/bluetooth-off.svg.gz": "icons/bluetooth-off.svg.gz",
|
330
|
+
"icons/bluetooth.svg": "icons/bluetooth.svg",
|
864
331
|
"icons/bluetooth.svg.gz": "icons/bluetooth.svg.gz",
|
332
|
+
"icons/bold.svg": "icons/bold.svg",
|
865
333
|
"icons/bold.svg.gz": "icons/bold.svg.gz",
|
334
|
+
"icons/bolt-off.svg": "icons/bolt-off.svg",
|
866
335
|
"icons/bolt-off.svg.gz": "icons/bolt-off.svg.gz",
|
336
|
+
"icons/bolt.svg": "icons/bolt.svg",
|
867
337
|
"icons/bolt.svg.gz": "icons/bolt.svg.gz",
|
338
|
+
"icons/bone.svg": "icons/bone.svg",
|
868
339
|
"icons/bone.svg.gz": "icons/bone.svg.gz",
|
340
|
+
"icons/book.svg": "icons/book.svg",
|
869
341
|
"icons/book.svg.gz": "icons/book.svg.gz",
|
342
|
+
"icons/bookmark-off.svg": "icons/bookmark-off.svg",
|
870
343
|
"icons/bookmark-off.svg.gz": "icons/bookmark-off.svg.gz",
|
344
|
+
"icons/bookmark.svg": "icons/bookmark.svg",
|
871
345
|
"icons/bookmark.svg.gz": "icons/bookmark.svg.gz",
|
346
|
+
"icons/bookmarks.svg": "icons/bookmarks.svg",
|
872
347
|
"icons/bookmarks.svg.gz": "icons/bookmarks.svg.gz",
|
348
|
+
"icons/border-all.svg": "icons/border-all.svg",
|
873
349
|
"icons/border-all.svg.gz": "icons/border-all.svg.gz",
|
350
|
+
"icons/border-bottom.svg": "icons/border-bottom.svg",
|
874
351
|
"icons/border-bottom.svg.gz": "icons/border-bottom.svg.gz",
|
352
|
+
"icons/border-horizontal.svg": "icons/border-horizontal.svg",
|
875
353
|
"icons/border-horizontal.svg.gz": "icons/border-horizontal.svg.gz",
|
354
|
+
"icons/border-inner.svg": "icons/border-inner.svg",
|
876
355
|
"icons/border-inner.svg.gz": "icons/border-inner.svg.gz",
|
356
|
+
"icons/border-left.svg": "icons/border-left.svg",
|
877
357
|
"icons/border-left.svg.gz": "icons/border-left.svg.gz",
|
358
|
+
"icons/border-none.svg": "icons/border-none.svg",
|
878
359
|
"icons/border-none.svg.gz": "icons/border-none.svg.gz",
|
360
|
+
"icons/border-outer.svg": "icons/border-outer.svg",
|
879
361
|
"icons/border-outer.svg.gz": "icons/border-outer.svg.gz",
|
362
|
+
"icons/border-radius.svg": "icons/border-radius.svg",
|
880
363
|
"icons/border-radius.svg.gz": "icons/border-radius.svg.gz",
|
364
|
+
"icons/border-right.svg": "icons/border-right.svg",
|
881
365
|
"icons/border-right.svg.gz": "icons/border-right.svg.gz",
|
366
|
+
"icons/border-style-2.svg": "icons/border-style-2.svg",
|
367
|
+
"icons/border-style-2.svg.gz": "icons/border-style-2.svg.gz",
|
368
|
+
"icons/border-style.svg": "icons/border-style.svg",
|
882
369
|
"icons/border-style.svg.gz": "icons/border-style.svg.gz",
|
370
|
+
"icons/border-top.svg": "icons/border-top.svg",
|
883
371
|
"icons/border-top.svg.gz": "icons/border-top.svg.gz",
|
372
|
+
"icons/border-vertical.svg": "icons/border-vertical.svg",
|
884
373
|
"icons/border-vertical.svg.gz": "icons/border-vertical.svg.gz",
|
374
|
+
"icons/bottle.svg": "icons/bottle.svg",
|
375
|
+
"icons/bottle.svg.gz": "icons/bottle.svg.gz",
|
376
|
+
"icons/box-margin.svg": "icons/box-margin.svg",
|
885
377
|
"icons/box-margin.svg.gz": "icons/box-margin.svg.gz",
|
378
|
+
"icons/box-model-2.svg": "icons/box-model-2.svg",
|
379
|
+
"icons/box-model-2.svg.gz": "icons/box-model-2.svg.gz",
|
380
|
+
"icons/box-model.svg": "icons/box-model.svg",
|
886
381
|
"icons/box-model.svg.gz": "icons/box-model.svg.gz",
|
382
|
+
"icons/box-multiple-0.svg": "icons/box-multiple-0.svg",
|
887
383
|
"icons/box-multiple-0.svg.gz": "icons/box-multiple-0.svg.gz",
|
384
|
+
"icons/box-multiple-1.svg": "icons/box-multiple-1.svg",
|
888
385
|
"icons/box-multiple-1.svg.gz": "icons/box-multiple-1.svg.gz",
|
386
|
+
"icons/box-multiple-2.svg": "icons/box-multiple-2.svg",
|
889
387
|
"icons/box-multiple-2.svg.gz": "icons/box-multiple-2.svg.gz",
|
388
|
+
"icons/box-multiple-3.svg": "icons/box-multiple-3.svg",
|
890
389
|
"icons/box-multiple-3.svg.gz": "icons/box-multiple-3.svg.gz",
|
390
|
+
"icons/box-multiple-4.svg": "icons/box-multiple-4.svg",
|
891
391
|
"icons/box-multiple-4.svg.gz": "icons/box-multiple-4.svg.gz",
|
392
|
+
"icons/box-multiple-5.svg": "icons/box-multiple-5.svg",
|
892
393
|
"icons/box-multiple-5.svg.gz": "icons/box-multiple-5.svg.gz",
|
394
|
+
"icons/box-multiple-6.svg": "icons/box-multiple-6.svg",
|
893
395
|
"icons/box-multiple-6.svg.gz": "icons/box-multiple-6.svg.gz",
|
396
|
+
"icons/box-multiple-7.svg": "icons/box-multiple-7.svg",
|
894
397
|
"icons/box-multiple-7.svg.gz": "icons/box-multiple-7.svg.gz",
|
398
|
+
"icons/box-multiple-8.svg": "icons/box-multiple-8.svg",
|
895
399
|
"icons/box-multiple-8.svg.gz": "icons/box-multiple-8.svg.gz",
|
400
|
+
"icons/box-multiple-9.svg": "icons/box-multiple-9.svg",
|
896
401
|
"icons/box-multiple-9.svg.gz": "icons/box-multiple-9.svg.gz",
|
402
|
+
"icons/box-multiple.svg": "icons/box-multiple.svg",
|
897
403
|
"icons/box-multiple.svg.gz": "icons/box-multiple.svg.gz",
|
404
|
+
"icons/box-padding.svg": "icons/box-padding.svg",
|
898
405
|
"icons/box-padding.svg.gz": "icons/box-padding.svg.gz",
|
406
|
+
"icons/box.svg": "icons/box.svg",
|
899
407
|
"icons/box.svg.gz": "icons/box.svg.gz",
|
408
|
+
"icons/braces.svg": "icons/braces.svg",
|
900
409
|
"icons/braces.svg.gz": "icons/braces.svg.gz",
|
410
|
+
"icons/brackets.svg": "icons/brackets.svg",
|
901
411
|
"icons/brackets.svg.gz": "icons/brackets.svg.gz",
|
412
|
+
"icons/brand-airbnb.svg": "icons/brand-airbnb.svg",
|
902
413
|
"icons/brand-airbnb.svg.gz": "icons/brand-airbnb.svg.gz",
|
414
|
+
"icons/brand-android.svg": "icons/brand-android.svg",
|
903
415
|
"icons/brand-android.svg.gz": "icons/brand-android.svg.gz",
|
416
|
+
"icons/brand-apple-arcade.svg": "icons/brand-apple-arcade.svg",
|
904
417
|
"icons/brand-apple-arcade.svg.gz": "icons/brand-apple-arcade.svg.gz",
|
418
|
+
"icons/brand-apple.svg": "icons/brand-apple.svg",
|
905
419
|
"icons/brand-apple.svg.gz": "icons/brand-apple.svg.gz",
|
420
|
+
"icons/brand-appstore.svg": "icons/brand-appstore.svg",
|
906
421
|
"icons/brand-appstore.svg.gz": "icons/brand-appstore.svg.gz",
|
422
|
+
"icons/brand-asana.svg": "icons/brand-asana.svg",
|
907
423
|
"icons/brand-asana.svg.gz": "icons/brand-asana.svg.gz",
|
424
|
+
"icons/brand-behance.svg": "icons/brand-behance.svg",
|
908
425
|
"icons/brand-behance.svg.gz": "icons/brand-behance.svg.gz",
|
426
|
+
"icons/brand-bing.svg": "icons/brand-bing.svg",
|
909
427
|
"icons/brand-bing.svg.gz": "icons/brand-bing.svg.gz",
|
428
|
+
"icons/brand-bitbucket.svg": "icons/brand-bitbucket.svg",
|
910
429
|
"icons/brand-bitbucket.svg.gz": "icons/brand-bitbucket.svg.gz",
|
430
|
+
"icons/brand-booking.svg": "icons/brand-booking.svg",
|
911
431
|
"icons/brand-booking.svg.gz": "icons/brand-booking.svg.gz",
|
432
|
+
"icons/brand-chrome.svg": "icons/brand-chrome.svg",
|
912
433
|
"icons/brand-chrome.svg.gz": "icons/brand-chrome.svg.gz",
|
434
|
+
"icons/brand-codepen.svg": "icons/brand-codepen.svg",
|
913
435
|
"icons/brand-codepen.svg.gz": "icons/brand-codepen.svg.gz",
|
436
|
+
"icons/brand-codesandbox.svg": "icons/brand-codesandbox.svg",
|
914
437
|
"icons/brand-codesandbox.svg.gz": "icons/brand-codesandbox.svg.gz",
|
438
|
+
"icons/brand-css3.svg": "icons/brand-css3.svg",
|
915
439
|
"icons/brand-css3.svg.gz": "icons/brand-css3.svg.gz",
|
440
|
+
"icons/brand-deviantart.svg": "icons/brand-deviantart.svg",
|
916
441
|
"icons/brand-deviantart.svg.gz": "icons/brand-deviantart.svg.gz",
|
442
|
+
"icons/brand-discord.svg": "icons/brand-discord.svg",
|
917
443
|
"icons/brand-discord.svg.gz": "icons/brand-discord.svg.gz",
|
444
|
+
"icons/brand-disqus.svg": "icons/brand-disqus.svg",
|
918
445
|
"icons/brand-disqus.svg.gz": "icons/brand-disqus.svg.gz",
|
446
|
+
"icons/brand-docker.svg": "icons/brand-docker.svg",
|
919
447
|
"icons/brand-docker.svg.gz": "icons/brand-docker.svg.gz",
|
448
|
+
"icons/brand-dribbble.svg": "icons/brand-dribbble.svg",
|
920
449
|
"icons/brand-dribbble.svg.gz": "icons/brand-dribbble.svg.gz",
|
450
|
+
"icons/brand-edge.svg": "icons/brand-edge.svg",
|
921
451
|
"icons/brand-edge.svg.gz": "icons/brand-edge.svg.gz",
|
452
|
+
"icons/brand-facebook.svg": "icons/brand-facebook.svg",
|
922
453
|
"icons/brand-facebook.svg.gz": "icons/brand-facebook.svg.gz",
|
454
|
+
"icons/brand-figma.svg": "icons/brand-figma.svg",
|
923
455
|
"icons/brand-figma.svg.gz": "icons/brand-figma.svg.gz",
|
456
|
+
"icons/brand-firefox.svg": "icons/brand-firefox.svg",
|
924
457
|
"icons/brand-firefox.svg.gz": "icons/brand-firefox.svg.gz",
|
458
|
+
"icons/brand-flickr.svg": "icons/brand-flickr.svg",
|
925
459
|
"icons/brand-flickr.svg.gz": "icons/brand-flickr.svg.gz",
|
460
|
+
"icons/brand-foursquare.svg": "icons/brand-foursquare.svg",
|
926
461
|
"icons/brand-foursquare.svg.gz": "icons/brand-foursquare.svg.gz",
|
462
|
+
"icons/brand-framer.svg": "icons/brand-framer.svg",
|
927
463
|
"icons/brand-framer.svg.gz": "icons/brand-framer.svg.gz",
|
464
|
+
"icons/brand-github.svg": "icons/brand-github.svg",
|
928
465
|
"icons/brand-github.svg.gz": "icons/brand-github.svg.gz",
|
466
|
+
"icons/brand-gitlab.svg": "icons/brand-gitlab.svg",
|
929
467
|
"icons/brand-gitlab.svg.gz": "icons/brand-gitlab.svg.gz",
|
468
|
+
"icons/brand-google-analytics.svg": "icons/brand-google-analytics.svg",
|
930
469
|
"icons/brand-google-analytics.svg.gz": "icons/brand-google-analytics.svg.gz",
|
470
|
+
"icons/brand-google-drive.svg": "icons/brand-google-drive.svg",
|
931
471
|
"icons/brand-google-drive.svg.gz": "icons/brand-google-drive.svg.gz",
|
472
|
+
"icons/brand-google-play.svg": "icons/brand-google-play.svg",
|
932
473
|
"icons/brand-google-play.svg.gz": "icons/brand-google-play.svg.gz",
|
474
|
+
"icons/brand-google.svg": "icons/brand-google.svg",
|
933
475
|
"icons/brand-google.svg.gz": "icons/brand-google.svg.gz",
|
476
|
+
"icons/brand-gravatar.svg": "icons/brand-gravatar.svg",
|
934
477
|
"icons/brand-gravatar.svg.gz": "icons/brand-gravatar.svg.gz",
|
478
|
+
"icons/brand-hipchat.svg": "icons/brand-hipchat.svg",
|
935
479
|
"icons/brand-hipchat.svg.gz": "icons/brand-hipchat.svg.gz",
|
480
|
+
"icons/brand-html5.svg": "icons/brand-html5.svg",
|
936
481
|
"icons/brand-html5.svg.gz": "icons/brand-html5.svg.gz",
|
482
|
+
"icons/brand-instagram.svg": "icons/brand-instagram.svg",
|
937
483
|
"icons/brand-instagram.svg.gz": "icons/brand-instagram.svg.gz",
|
484
|
+
"icons/brand-javascript.svg": "icons/brand-javascript.svg",
|
485
|
+
"icons/brand-javascript.svg.gz": "icons/brand-javascript.svg.gz",
|
486
|
+
"icons/brand-kickstarter.svg": "icons/brand-kickstarter.svg",
|
938
487
|
"icons/brand-kickstarter.svg.gz": "icons/brand-kickstarter.svg.gz",
|
488
|
+
"icons/brand-kotlin.svg": "icons/brand-kotlin.svg",
|
939
489
|
"icons/brand-kotlin.svg.gz": "icons/brand-kotlin.svg.gz",
|
490
|
+
"icons/brand-linkedin.svg": "icons/brand-linkedin.svg",
|
940
491
|
"icons/brand-linkedin.svg.gz": "icons/brand-linkedin.svg.gz",
|
492
|
+
"icons/brand-medium.svg": "icons/brand-medium.svg",
|
941
493
|
"icons/brand-medium.svg.gz": "icons/brand-medium.svg.gz",
|
494
|
+
"icons/brand-messenger.svg": "icons/brand-messenger.svg",
|
942
495
|
"icons/brand-messenger.svg.gz": "icons/brand-messenger.svg.gz",
|
496
|
+
"icons/brand-netflix.svg": "icons/brand-netflix.svg",
|
943
497
|
"icons/brand-netflix.svg.gz": "icons/brand-netflix.svg.gz",
|
498
|
+
"icons/brand-open-source.svg": "icons/brand-open-source.svg",
|
944
499
|
"icons/brand-open-source.svg.gz": "icons/brand-open-source.svg.gz",
|
500
|
+
"icons/brand-opera.svg": "icons/brand-opera.svg",
|
945
501
|
"icons/brand-opera.svg.gz": "icons/brand-opera.svg.gz",
|
502
|
+
"icons/brand-pagekit.svg": "icons/brand-pagekit.svg",
|
946
503
|
"icons/brand-pagekit.svg.gz": "icons/brand-pagekit.svg.gz",
|
504
|
+
"icons/brand-patreon.svg": "icons/brand-patreon.svg",
|
947
505
|
"icons/brand-patreon.svg.gz": "icons/brand-patreon.svg.gz",
|
506
|
+
"icons/brand-paypal.svg": "icons/brand-paypal.svg",
|
948
507
|
"icons/brand-paypal.svg.gz": "icons/brand-paypal.svg.gz",
|
508
|
+
"icons/brand-pinterest.svg": "icons/brand-pinterest.svg",
|
949
509
|
"icons/brand-pinterest.svg.gz": "icons/brand-pinterest.svg.gz",
|
510
|
+
"icons/brand-pocket.svg": "icons/brand-pocket.svg",
|
950
511
|
"icons/brand-pocket.svg.gz": "icons/brand-pocket.svg.gz",
|
512
|
+
"icons/brand-producthunt.svg": "icons/brand-producthunt.svg",
|
951
513
|
"icons/brand-producthunt.svg.gz": "icons/brand-producthunt.svg.gz",
|
514
|
+
"icons/brand-python.svg": "icons/brand-python.svg",
|
952
515
|
"icons/brand-python.svg.gz": "icons/brand-python.svg.gz",
|
516
|
+
"icons/brand-reddit.svg": "icons/brand-reddit.svg",
|
953
517
|
"icons/brand-reddit.svg.gz": "icons/brand-reddit.svg.gz",
|
518
|
+
"icons/brand-safari.svg": "icons/brand-safari.svg",
|
954
519
|
"icons/brand-safari.svg.gz": "icons/brand-safari.svg.gz",
|
520
|
+
"icons/brand-sass.svg": "icons/brand-sass.svg",
|
955
521
|
"icons/brand-sass.svg.gz": "icons/brand-sass.svg.gz",
|
522
|
+
"icons/brand-sentry.svg": "icons/brand-sentry.svg",
|
956
523
|
"icons/brand-sentry.svg.gz": "icons/brand-sentry.svg.gz",
|
524
|
+
"icons/brand-shazam.svg": "icons/brand-shazam.svg",
|
957
525
|
"icons/brand-shazam.svg.gz": "icons/brand-shazam.svg.gz",
|
526
|
+
"icons/brand-sketch.svg": "icons/brand-sketch.svg",
|
958
527
|
"icons/brand-sketch.svg.gz": "icons/brand-sketch.svg.gz",
|
528
|
+
"icons/brand-skype.svg": "icons/brand-skype.svg",
|
959
529
|
"icons/brand-skype.svg.gz": "icons/brand-skype.svg.gz",
|
530
|
+
"icons/brand-slack.svg": "icons/brand-slack.svg",
|
960
531
|
"icons/brand-slack.svg.gz": "icons/brand-slack.svg.gz",
|
532
|
+
"icons/brand-snapchat.svg": "icons/brand-snapchat.svg",
|
961
533
|
"icons/brand-snapchat.svg.gz": "icons/brand-snapchat.svg.gz",
|
534
|
+
"icons/brand-soundcloud.svg": "icons/brand-soundcloud.svg",
|
962
535
|
"icons/brand-soundcloud.svg.gz": "icons/brand-soundcloud.svg.gz",
|
536
|
+
"icons/brand-spotify.svg": "icons/brand-spotify.svg",
|
963
537
|
"icons/brand-spotify.svg.gz": "icons/brand-spotify.svg.gz",
|
538
|
+
"icons/brand-steam.svg": "icons/brand-steam.svg",
|
964
539
|
"icons/brand-steam.svg.gz": "icons/brand-steam.svg.gz",
|
540
|
+
"icons/brand-stripe.svg": "icons/brand-stripe.svg",
|
965
541
|
"icons/brand-stripe.svg.gz": "icons/brand-stripe.svg.gz",
|
542
|
+
"icons/brand-tabler.svg": "icons/brand-tabler.svg",
|
966
543
|
"icons/brand-tabler.svg.gz": "icons/brand-tabler.svg.gz",
|
544
|
+
"icons/brand-tailwind.svg": "icons/brand-tailwind.svg",
|
967
545
|
"icons/brand-tailwind.svg.gz": "icons/brand-tailwind.svg.gz",
|
546
|
+
"icons/brand-telegram.svg": "icons/brand-telegram.svg",
|
968
547
|
"icons/brand-telegram.svg.gz": "icons/brand-telegram.svg.gz",
|
548
|
+
"icons/brand-tidal.svg": "icons/brand-tidal.svg",
|
969
549
|
"icons/brand-tidal.svg.gz": "icons/brand-tidal.svg.gz",
|
550
|
+
"icons/brand-tiktok.svg": "icons/brand-tiktok.svg",
|
970
551
|
"icons/brand-tiktok.svg.gz": "icons/brand-tiktok.svg.gz",
|
552
|
+
"icons/brand-tinder.svg": "icons/brand-tinder.svg",
|
971
553
|
"icons/brand-tinder.svg.gz": "icons/brand-tinder.svg.gz",
|
554
|
+
"icons/brand-tumblr.svg": "icons/brand-tumblr.svg",
|
972
555
|
"icons/brand-tumblr.svg.gz": "icons/brand-tumblr.svg.gz",
|
556
|
+
"icons/brand-twitch.svg": "icons/brand-twitch.svg",
|
973
557
|
"icons/brand-twitch.svg.gz": "icons/brand-twitch.svg.gz",
|
558
|
+
"icons/brand-twitter.svg": "icons/brand-twitter.svg",
|
974
559
|
"icons/brand-twitter.svg.gz": "icons/brand-twitter.svg.gz",
|
560
|
+
"icons/brand-unsplash.svg": "icons/brand-unsplash.svg",
|
975
561
|
"icons/brand-unsplash.svg.gz": "icons/brand-unsplash.svg.gz",
|
562
|
+
"icons/brand-vercel.svg": "icons/brand-vercel.svg",
|
563
|
+
"icons/brand-vercel.svg.gz": "icons/brand-vercel.svg.gz",
|
564
|
+
"icons/brand-vimeo.svg": "icons/brand-vimeo.svg",
|
976
565
|
"icons/brand-vimeo.svg.gz": "icons/brand-vimeo.svg.gz",
|
566
|
+
"icons/brand-vk.svg": "icons/brand-vk.svg",
|
977
567
|
"icons/brand-vk.svg.gz": "icons/brand-vk.svg.gz",
|
568
|
+
"icons/brand-whatsapp.svg": "icons/brand-whatsapp.svg",
|
978
569
|
"icons/brand-whatsapp.svg.gz": "icons/brand-whatsapp.svg.gz",
|
570
|
+
"icons/brand-windows.svg": "icons/brand-windows.svg",
|
979
571
|
"icons/brand-windows.svg.gz": "icons/brand-windows.svg.gz",
|
572
|
+
"icons/brand-yahoo.svg": "icons/brand-yahoo.svg",
|
980
573
|
"icons/brand-yahoo.svg.gz": "icons/brand-yahoo.svg.gz",
|
574
|
+
"icons/brand-ycombinator.svg": "icons/brand-ycombinator.svg",
|
981
575
|
"icons/brand-ycombinator.svg.gz": "icons/brand-ycombinator.svg.gz",
|
576
|
+
"icons/brand-youtube.svg": "icons/brand-youtube.svg",
|
982
577
|
"icons/brand-youtube.svg.gz": "icons/brand-youtube.svg.gz",
|
578
|
+
"icons/briefcase.svg": "icons/briefcase.svg",
|
983
579
|
"icons/briefcase.svg.gz": "icons/briefcase.svg.gz",
|
580
|
+
"icons/brightness-2.svg": "icons/brightness-2.svg",
|
984
581
|
"icons/brightness-2.svg.gz": "icons/brightness-2.svg.gz",
|
582
|
+
"icons/brightness-down.svg": "icons/brightness-down.svg",
|
985
583
|
"icons/brightness-down.svg.gz": "icons/brightness-down.svg.gz",
|
584
|
+
"icons/brightness-half.svg": "icons/brightness-half.svg",
|
986
585
|
"icons/brightness-half.svg.gz": "icons/brightness-half.svg.gz",
|
586
|
+
"icons/brightness-up.svg": "icons/brightness-up.svg",
|
987
587
|
"icons/brightness-up.svg.gz": "icons/brightness-up.svg.gz",
|
588
|
+
"icons/brightness.svg": "icons/brightness.svg",
|
988
589
|
"icons/brightness.svg.gz": "icons/brightness.svg.gz",
|
590
|
+
"icons/browser.svg": "icons/browser.svg",
|
989
591
|
"icons/browser.svg.gz": "icons/browser.svg.gz",
|
592
|
+
"icons/brush.svg": "icons/brush.svg",
|
990
593
|
"icons/brush.svg.gz": "icons/brush.svg.gz",
|
594
|
+
"icons/bucket.svg": "icons/bucket.svg",
|
991
595
|
"icons/bucket.svg.gz": "icons/bucket.svg.gz",
|
596
|
+
"icons/bug.svg": "icons/bug.svg",
|
992
597
|
"icons/bug.svg.gz": "icons/bug.svg.gz",
|
598
|
+
"icons/building-arch.svg": "icons/building-arch.svg",
|
993
599
|
"icons/building-arch.svg.gz": "icons/building-arch.svg.gz",
|
600
|
+
"icons/building-bank.svg": "icons/building-bank.svg",
|
994
601
|
"icons/building-bank.svg.gz": "icons/building-bank.svg.gz",
|
602
|
+
"icons/building-bridge-2.svg": "icons/building-bridge-2.svg",
|
995
603
|
"icons/building-bridge-2.svg.gz": "icons/building-bridge-2.svg.gz",
|
604
|
+
"icons/building-bridge.svg": "icons/building-bridge.svg",
|
996
605
|
"icons/building-bridge.svg.gz": "icons/building-bridge.svg.gz",
|
606
|
+
"icons/building-carousel.svg": "icons/building-carousel.svg",
|
997
607
|
"icons/building-carousel.svg.gz": "icons/building-carousel.svg.gz",
|
608
|
+
"icons/building-castle.svg": "icons/building-castle.svg",
|
998
609
|
"icons/building-castle.svg.gz": "icons/building-castle.svg.gz",
|
610
|
+
"icons/building-church.svg": "icons/building-church.svg",
|
999
611
|
"icons/building-church.svg.gz": "icons/building-church.svg.gz",
|
612
|
+
"icons/building-community.svg": "icons/building-community.svg",
|
1000
613
|
"icons/building-community.svg.gz": "icons/building-community.svg.gz",
|
614
|
+
"icons/building-cottage.svg": "icons/building-cottage.svg",
|
1001
615
|
"icons/building-cottage.svg.gz": "icons/building-cottage.svg.gz",
|
616
|
+
"icons/building-factory.svg": "icons/building-factory.svg",
|
1002
617
|
"icons/building-factory.svg.gz": "icons/building-factory.svg.gz",
|
618
|
+
"icons/building-fortress.svg": "icons/building-fortress.svg",
|
1003
619
|
"icons/building-fortress.svg.gz": "icons/building-fortress.svg.gz",
|
620
|
+
"icons/building-hospital.svg": "icons/building-hospital.svg",
|
1004
621
|
"icons/building-hospital.svg.gz": "icons/building-hospital.svg.gz",
|
622
|
+
"icons/building-lighthouse.svg": "icons/building-lighthouse.svg",
|
1005
623
|
"icons/building-lighthouse.svg.gz": "icons/building-lighthouse.svg.gz",
|
624
|
+
"icons/building-monument.svg": "icons/building-monument.svg",
|
1006
625
|
"icons/building-monument.svg.gz": "icons/building-monument.svg.gz",
|
626
|
+
"icons/building-pavilon.svg": "icons/building-pavilon.svg",
|
1007
627
|
"icons/building-pavilon.svg.gz": "icons/building-pavilon.svg.gz",
|
628
|
+
"icons/building-skyscraper.svg": "icons/building-skyscraper.svg",
|
1008
629
|
"icons/building-skyscraper.svg.gz": "icons/building-skyscraper.svg.gz",
|
630
|
+
"icons/building-store.svg": "icons/building-store.svg",
|
1009
631
|
"icons/building-store.svg.gz": "icons/building-store.svg.gz",
|
632
|
+
"icons/building-warehouse.svg": "icons/building-warehouse.svg",
|
1010
633
|
"icons/building-warehouse.svg.gz": "icons/building-warehouse.svg.gz",
|
634
|
+
"icons/building.svg": "icons/building.svg",
|
1011
635
|
"icons/building.svg.gz": "icons/building.svg.gz",
|
636
|
+
"icons/bulb-off.svg": "icons/bulb-off.svg",
|
1012
637
|
"icons/bulb-off.svg.gz": "icons/bulb-off.svg.gz",
|
638
|
+
"icons/bulb.svg": "icons/bulb.svg",
|
1013
639
|
"icons/bulb.svg.gz": "icons/bulb.svg.gz",
|
640
|
+
"icons/bulldozer.svg": "icons/bulldozer.svg",
|
1014
641
|
"icons/bulldozer.svg.gz": "icons/bulldozer.svg.gz",
|
642
|
+
"icons/bus.svg": "icons/bus.svg",
|
1015
643
|
"icons/bus.svg.gz": "icons/bus.svg.gz",
|
644
|
+
"icons/businessplan.svg": "icons/businessplan.svg",
|
1016
645
|
"icons/businessplan.svg.gz": "icons/businessplan.svg.gz",
|
646
|
+
"icons/calculator.svg": "icons/calculator.svg",
|
1017
647
|
"icons/calculator.svg.gz": "icons/calculator.svg.gz",
|
648
|
+
"icons/calendar-event.svg": "icons/calendar-event.svg",
|
1018
649
|
"icons/calendar-event.svg.gz": "icons/calendar-event.svg.gz",
|
650
|
+
"icons/calendar-minus.svg": "icons/calendar-minus.svg",
|
1019
651
|
"icons/calendar-minus.svg.gz": "icons/calendar-minus.svg.gz",
|
652
|
+
"icons/calendar-off.svg": "icons/calendar-off.svg",
|
1020
653
|
"icons/calendar-off.svg.gz": "icons/calendar-off.svg.gz",
|
654
|
+
"icons/calendar-plus.svg": "icons/calendar-plus.svg",
|
1021
655
|
"icons/calendar-plus.svg.gz": "icons/calendar-plus.svg.gz",
|
656
|
+
"icons/calendar-stats.svg": "icons/calendar-stats.svg",
|
1022
657
|
"icons/calendar-stats.svg.gz": "icons/calendar-stats.svg.gz",
|
658
|
+
"icons/calendar-time.svg": "icons/calendar-time.svg",
|
1023
659
|
"icons/calendar-time.svg.gz": "icons/calendar-time.svg.gz",
|
660
|
+
"icons/calendar.svg": "icons/calendar.svg",
|
1024
661
|
"icons/calendar.svg.gz": "icons/calendar.svg.gz",
|
662
|
+
"icons/camera-minus.svg": "icons/camera-minus.svg",
|
1025
663
|
"icons/camera-minus.svg.gz": "icons/camera-minus.svg.gz",
|
664
|
+
"icons/camera-off.svg": "icons/camera-off.svg",
|
1026
665
|
"icons/camera-off.svg.gz": "icons/camera-off.svg.gz",
|
666
|
+
"icons/camera-plus.svg": "icons/camera-plus.svg",
|
1027
667
|
"icons/camera-plus.svg.gz": "icons/camera-plus.svg.gz",
|
668
|
+
"icons/camera-rotate.svg": "icons/camera-rotate.svg",
|
1028
669
|
"icons/camera-rotate.svg.gz": "icons/camera-rotate.svg.gz",
|
670
|
+
"icons/camera-selfie.svg": "icons/camera-selfie.svg",
|
1029
671
|
"icons/camera-selfie.svg.gz": "icons/camera-selfie.svg.gz",
|
672
|
+
"icons/camera.svg": "icons/camera.svg",
|
1030
673
|
"icons/camera.svg.gz": "icons/camera.svg.gz",
|
674
|
+
"icons/candy.svg": "icons/candy.svg",
|
675
|
+
"icons/candy.svg.gz": "icons/candy.svg.gz",
|
676
|
+
"icons/capture.svg": "icons/capture.svg",
|
1031
677
|
"icons/capture.svg.gz": "icons/capture.svg.gz",
|
678
|
+
"icons/car-crane.svg": "icons/car-crane.svg",
|
679
|
+
"icons/car-crane.svg.gz": "icons/car-crane.svg.gz",
|
680
|
+
"icons/car.svg": "icons/car.svg",
|
1032
681
|
"icons/car.svg.gz": "icons/car.svg.gz",
|
682
|
+
"icons/caravan.svg": "icons/caravan.svg",
|
1033
683
|
"icons/caravan.svg.gz": "icons/caravan.svg.gz",
|
684
|
+
"icons/cardboards.svg": "icons/cardboards.svg",
|
1034
685
|
"icons/cardboards.svg.gz": "icons/cardboards.svg.gz",
|
686
|
+
"icons/caret-down.svg": "icons/caret-down.svg",
|
1035
687
|
"icons/caret-down.svg.gz": "icons/caret-down.svg.gz",
|
688
|
+
"icons/caret-left.svg": "icons/caret-left.svg",
|
1036
689
|
"icons/caret-left.svg.gz": "icons/caret-left.svg.gz",
|
690
|
+
"icons/caret-right.svg": "icons/caret-right.svg",
|
1037
691
|
"icons/caret-right.svg.gz": "icons/caret-right.svg.gz",
|
692
|
+
"icons/caret-up.svg": "icons/caret-up.svg",
|
1038
693
|
"icons/caret-up.svg.gz": "icons/caret-up.svg.gz",
|
694
|
+
"icons/cash-banknote-off.svg": "icons/cash-banknote-off.svg",
|
1039
695
|
"icons/cash-banknote-off.svg.gz": "icons/cash-banknote-off.svg.gz",
|
696
|
+
"icons/cash-banknote.svg": "icons/cash-banknote.svg",
|
1040
697
|
"icons/cash-banknote.svg.gz": "icons/cash-banknote.svg.gz",
|
698
|
+
"icons/cash.svg": "icons/cash.svg",
|
1041
699
|
"icons/cash.svg.gz": "icons/cash.svg.gz",
|
700
|
+
"icons/cast.svg": "icons/cast.svg",
|
1042
701
|
"icons/cast.svg.gz": "icons/cast.svg.gz",
|
702
|
+
"icons/ce.svg": "icons/ce.svg",
|
1043
703
|
"icons/ce.svg.gz": "icons/ce.svg.gz",
|
704
|
+
"icons/certificate.svg": "icons/certificate.svg",
|
1044
705
|
"icons/certificate.svg.gz": "icons/certificate.svg.gz",
|
706
|
+
"icons/charging-pile.svg": "icons/charging-pile.svg",
|
1045
707
|
"icons/charging-pile.svg.gz": "icons/charging-pile.svg.gz",
|
708
|
+
"icons/chart-arcs-3.svg": "icons/chart-arcs-3.svg",
|
1046
709
|
"icons/chart-arcs-3.svg.gz": "icons/chart-arcs-3.svg.gz",
|
710
|
+
"icons/chart-arcs.svg": "icons/chart-arcs.svg",
|
1047
711
|
"icons/chart-arcs.svg.gz": "icons/chart-arcs.svg.gz",
|
712
|
+
"icons/chart-area-line.svg": "icons/chart-area-line.svg",
|
1048
713
|
"icons/chart-area-line.svg.gz": "icons/chart-area-line.svg.gz",
|
714
|
+
"icons/chart-area.svg": "icons/chart-area.svg",
|
1049
715
|
"icons/chart-area.svg.gz": "icons/chart-area.svg.gz",
|
716
|
+
"icons/chart-arrows-vertical.svg": "icons/chart-arrows-vertical.svg",
|
1050
717
|
"icons/chart-arrows-vertical.svg.gz": "icons/chart-arrows-vertical.svg.gz",
|
718
|
+
"icons/chart-arrows.svg": "icons/chart-arrows.svg",
|
1051
719
|
"icons/chart-arrows.svg.gz": "icons/chart-arrows.svg.gz",
|
720
|
+
"icons/chart-bar.svg": "icons/chart-bar.svg",
|
1052
721
|
"icons/chart-bar.svg.gz": "icons/chart-bar.svg.gz",
|
722
|
+
"icons/chart-bubble.svg": "icons/chart-bubble.svg",
|
1053
723
|
"icons/chart-bubble.svg.gz": "icons/chart-bubble.svg.gz",
|
724
|
+
"icons/chart-candle.svg": "icons/chart-candle.svg",
|
1054
725
|
"icons/chart-candle.svg.gz": "icons/chart-candle.svg.gz",
|
726
|
+
"icons/chart-circles.svg": "icons/chart-circles.svg",
|
1055
727
|
"icons/chart-circles.svg.gz": "icons/chart-circles.svg.gz",
|
728
|
+
"icons/chart-donut-2.svg": "icons/chart-donut-2.svg",
|
1056
729
|
"icons/chart-donut-2.svg.gz": "icons/chart-donut-2.svg.gz",
|
730
|
+
"icons/chart-donut-3.svg": "icons/chart-donut-3.svg",
|
1057
731
|
"icons/chart-donut-3.svg.gz": "icons/chart-donut-3.svg.gz",
|
732
|
+
"icons/chart-donut-4.svg": "icons/chart-donut-4.svg",
|
1058
733
|
"icons/chart-donut-4.svg.gz": "icons/chart-donut-4.svg.gz",
|
734
|
+
"icons/chart-donut.svg": "icons/chart-donut.svg",
|
1059
735
|
"icons/chart-donut.svg.gz": "icons/chart-donut.svg.gz",
|
736
|
+
"icons/chart-dots.svg": "icons/chart-dots.svg",
|
1060
737
|
"icons/chart-dots.svg.gz": "icons/chart-dots.svg.gz",
|
738
|
+
"icons/chart-infographic.svg": "icons/chart-infographic.svg",
|
1061
739
|
"icons/chart-infographic.svg.gz": "icons/chart-infographic.svg.gz",
|
740
|
+
"icons/chart-line.svg": "icons/chart-line.svg",
|
1062
741
|
"icons/chart-line.svg.gz": "icons/chart-line.svg.gz",
|
742
|
+
"icons/chart-pie-2.svg": "icons/chart-pie-2.svg",
|
1063
743
|
"icons/chart-pie-2.svg.gz": "icons/chart-pie-2.svg.gz",
|
744
|
+
"icons/chart-pie-3.svg": "icons/chart-pie-3.svg",
|
1064
745
|
"icons/chart-pie-3.svg.gz": "icons/chart-pie-3.svg.gz",
|
746
|
+
"icons/chart-pie-4.svg": "icons/chart-pie-4.svg",
|
1065
747
|
"icons/chart-pie-4.svg.gz": "icons/chart-pie-4.svg.gz",
|
748
|
+
"icons/chart-pie.svg": "icons/chart-pie.svg",
|
1066
749
|
"icons/chart-pie.svg.gz": "icons/chart-pie.svg.gz",
|
750
|
+
"icons/chart-radar.svg": "icons/chart-radar.svg",
|
1067
751
|
"icons/chart-radar.svg.gz": "icons/chart-radar.svg.gz",
|
752
|
+
"icons/check.svg": "icons/check.svg",
|
1068
753
|
"icons/check.svg.gz": "icons/check.svg.gz",
|
754
|
+
"icons/checkbox.svg": "icons/checkbox.svg",
|
1069
755
|
"icons/checkbox.svg.gz": "icons/checkbox.svg.gz",
|
756
|
+
"icons/checks.svg": "icons/checks.svg",
|
1070
757
|
"icons/checks.svg.gz": "icons/checks.svg.gz",
|
758
|
+
"icons/cheese.svg": "icons/cheese.svg",
|
759
|
+
"icons/cheese.svg.gz": "icons/cheese.svg.gz",
|
760
|
+
"icons/chevron-down-left.svg": "icons/chevron-down-left.svg",
|
1071
761
|
"icons/chevron-down-left.svg.gz": "icons/chevron-down-left.svg.gz",
|
762
|
+
"icons/chevron-down-right.svg": "icons/chevron-down-right.svg",
|
1072
763
|
"icons/chevron-down-right.svg.gz": "icons/chevron-down-right.svg.gz",
|
764
|
+
"icons/chevron-down.svg": "icons/chevron-down.svg",
|
1073
765
|
"icons/chevron-down.svg.gz": "icons/chevron-down.svg.gz",
|
766
|
+
"icons/chevron-left.svg": "icons/chevron-left.svg",
|
1074
767
|
"icons/chevron-left.svg.gz": "icons/chevron-left.svg.gz",
|
768
|
+
"icons/chevron-right.svg": "icons/chevron-right.svg",
|
1075
769
|
"icons/chevron-right.svg.gz": "icons/chevron-right.svg.gz",
|
770
|
+
"icons/chevron-up-left.svg": "icons/chevron-up-left.svg",
|
1076
771
|
"icons/chevron-up-left.svg.gz": "icons/chevron-up-left.svg.gz",
|
772
|
+
"icons/chevron-up-right.svg": "icons/chevron-up-right.svg",
|
1077
773
|
"icons/chevron-up-right.svg.gz": "icons/chevron-up-right.svg.gz",
|
774
|
+
"icons/chevron-up.svg": "icons/chevron-up.svg",
|
1078
775
|
"icons/chevron-up.svg.gz": "icons/chevron-up.svg.gz",
|
776
|
+
"icons/chevrons-down-left.svg": "icons/chevrons-down-left.svg",
|
1079
777
|
"icons/chevrons-down-left.svg.gz": "icons/chevrons-down-left.svg.gz",
|
778
|
+
"icons/chevrons-down-right.svg": "icons/chevrons-down-right.svg",
|
1080
779
|
"icons/chevrons-down-right.svg.gz": "icons/chevrons-down-right.svg.gz",
|
780
|
+
"icons/chevrons-down.svg": "icons/chevrons-down.svg",
|
1081
781
|
"icons/chevrons-down.svg.gz": "icons/chevrons-down.svg.gz",
|
782
|
+
"icons/chevrons-left.svg": "icons/chevrons-left.svg",
|
1082
783
|
"icons/chevrons-left.svg.gz": "icons/chevrons-left.svg.gz",
|
784
|
+
"icons/chevrons-right.svg": "icons/chevrons-right.svg",
|
1083
785
|
"icons/chevrons-right.svg.gz": "icons/chevrons-right.svg.gz",
|
786
|
+
"icons/chevrons-up-left.svg": "icons/chevrons-up-left.svg",
|
1084
787
|
"icons/chevrons-up-left.svg.gz": "icons/chevrons-up-left.svg.gz",
|
788
|
+
"icons/chevrons-up-right.svg": "icons/chevrons-up-right.svg",
|
1085
789
|
"icons/chevrons-up-right.svg.gz": "icons/chevrons-up-right.svg.gz",
|
790
|
+
"icons/chevrons-up.svg": "icons/chevrons-up.svg",
|
1086
791
|
"icons/chevrons-up.svg.gz": "icons/chevrons-up.svg.gz",
|
792
|
+
"icons/christmas-tree.svg": "icons/christmas-tree.svg",
|
1087
793
|
"icons/christmas-tree.svg.gz": "icons/christmas-tree.svg.gz",
|
794
|
+
"icons/circle-0.svg": "icons/circle-0.svg",
|
1088
795
|
"icons/circle-0.svg.gz": "icons/circle-0.svg.gz",
|
796
|
+
"icons/circle-1.svg": "icons/circle-1.svg",
|
1089
797
|
"icons/circle-1.svg.gz": "icons/circle-1.svg.gz",
|
798
|
+
"icons/circle-2.svg": "icons/circle-2.svg",
|
1090
799
|
"icons/circle-2.svg.gz": "icons/circle-2.svg.gz",
|
800
|
+
"icons/circle-3.svg": "icons/circle-3.svg",
|
1091
801
|
"icons/circle-3.svg.gz": "icons/circle-3.svg.gz",
|
802
|
+
"icons/circle-4.svg": "icons/circle-4.svg",
|
1092
803
|
"icons/circle-4.svg.gz": "icons/circle-4.svg.gz",
|
804
|
+
"icons/circle-5.svg": "icons/circle-5.svg",
|
1093
805
|
"icons/circle-5.svg.gz": "icons/circle-5.svg.gz",
|
806
|
+
"icons/circle-6.svg": "icons/circle-6.svg",
|
1094
807
|
"icons/circle-6.svg.gz": "icons/circle-6.svg.gz",
|
808
|
+
"icons/circle-7.svg": "icons/circle-7.svg",
|
1095
809
|
"icons/circle-7.svg.gz": "icons/circle-7.svg.gz",
|
810
|
+
"icons/circle-8.svg": "icons/circle-8.svg",
|
1096
811
|
"icons/circle-8.svg.gz": "icons/circle-8.svg.gz",
|
812
|
+
"icons/circle-9.svg": "icons/circle-9.svg",
|
1097
813
|
"icons/circle-9.svg.gz": "icons/circle-9.svg.gz",
|
814
|
+
"icons/circle-check.svg": "icons/circle-check.svg",
|
1098
815
|
"icons/circle-check.svg.gz": "icons/circle-check.svg.gz",
|
816
|
+
"icons/circle-dashed.svg": "icons/circle-dashed.svg",
|
1099
817
|
"icons/circle-dashed.svg.gz": "icons/circle-dashed.svg.gz",
|
818
|
+
"icons/circle-dotted.svg": "icons/circle-dotted.svg",
|
1100
819
|
"icons/circle-dotted.svg.gz": "icons/circle-dotted.svg.gz",
|
820
|
+
"icons/circle-half-vertical.svg": "icons/circle-half-vertical.svg",
|
1101
821
|
"icons/circle-half-vertical.svg.gz": "icons/circle-half-vertical.svg.gz",
|
822
|
+
"icons/circle-half.svg": "icons/circle-half.svg",
|
1102
823
|
"icons/circle-half.svg.gz": "icons/circle-half.svg.gz",
|
824
|
+
"icons/circle-minus.svg": "icons/circle-minus.svg",
|
1103
825
|
"icons/circle-minus.svg.gz": "icons/circle-minus.svg.gz",
|
826
|
+
"icons/circle-off.svg": "icons/circle-off.svg",
|
1104
827
|
"icons/circle-off.svg.gz": "icons/circle-off.svg.gz",
|
828
|
+
"icons/circle-plus.svg": "icons/circle-plus.svg",
|
1105
829
|
"icons/circle-plus.svg.gz": "icons/circle-plus.svg.gz",
|
830
|
+
"icons/circle-square.svg": "icons/circle-square.svg",
|
1106
831
|
"icons/circle-square.svg.gz": "icons/circle-square.svg.gz",
|
832
|
+
"icons/circle-x.svg": "icons/circle-x.svg",
|
1107
833
|
"icons/circle-x.svg.gz": "icons/circle-x.svg.gz",
|
834
|
+
"icons/circle.svg": "icons/circle.svg",
|
1108
835
|
"icons/circle.svg.gz": "icons/circle.svg.gz",
|
836
|
+
"icons/circles.svg": "icons/circles.svg",
|
1109
837
|
"icons/circles.svg.gz": "icons/circles.svg.gz",
|
838
|
+
"icons/clear-all.svg": "icons/clear-all.svg",
|
1110
839
|
"icons/clear-all.svg.gz": "icons/clear-all.svg.gz",
|
840
|
+
"icons/clear-formatting.svg": "icons/clear-formatting.svg",
|
1111
841
|
"icons/clear-formatting.svg.gz": "icons/clear-formatting.svg.gz",
|
842
|
+
"icons/click.svg": "icons/click.svg",
|
1112
843
|
"icons/click.svg.gz": "icons/click.svg.gz",
|
844
|
+
"icons/clipboard-check.svg": "icons/clipboard-check.svg",
|
1113
845
|
"icons/clipboard-check.svg.gz": "icons/clipboard-check.svg.gz",
|
846
|
+
"icons/clipboard-list.svg": "icons/clipboard-list.svg",
|
1114
847
|
"icons/clipboard-list.svg.gz": "icons/clipboard-list.svg.gz",
|
848
|
+
"icons/clipboard-x.svg": "icons/clipboard-x.svg",
|
1115
849
|
"icons/clipboard-x.svg.gz": "icons/clipboard-x.svg.gz",
|
850
|
+
"icons/clipboard.svg": "icons/clipboard.svg",
|
1116
851
|
"icons/clipboard.svg.gz": "icons/clipboard.svg.gz",
|
852
|
+
"icons/clock.svg": "icons/clock.svg",
|
1117
853
|
"icons/clock.svg.gz": "icons/clock.svg.gz",
|
854
|
+
"icons/cloud-download.svg": "icons/cloud-download.svg",
|
1118
855
|
"icons/cloud-download.svg.gz": "icons/cloud-download.svg.gz",
|
856
|
+
"icons/cloud-fog.svg": "icons/cloud-fog.svg",
|
1119
857
|
"icons/cloud-fog.svg.gz": "icons/cloud-fog.svg.gz",
|
858
|
+
"icons/cloud-off.svg": "icons/cloud-off.svg",
|
1120
859
|
"icons/cloud-off.svg.gz": "icons/cloud-off.svg.gz",
|
860
|
+
"icons/cloud-rain.svg": "icons/cloud-rain.svg",
|
1121
861
|
"icons/cloud-rain.svg.gz": "icons/cloud-rain.svg.gz",
|
862
|
+
"icons/cloud-snow.svg": "icons/cloud-snow.svg",
|
1122
863
|
"icons/cloud-snow.svg.gz": "icons/cloud-snow.svg.gz",
|
864
|
+
"icons/cloud-storm.svg": "icons/cloud-storm.svg",
|
1123
865
|
"icons/cloud-storm.svg.gz": "icons/cloud-storm.svg.gz",
|
866
|
+
"icons/cloud-upload.svg": "icons/cloud-upload.svg",
|
1124
867
|
"icons/cloud-upload.svg.gz": "icons/cloud-upload.svg.gz",
|
868
|
+
"icons/cloud.svg": "icons/cloud.svg",
|
1125
869
|
"icons/cloud.svg.gz": "icons/cloud.svg.gz",
|
870
|
+
"icons/code-minus.svg": "icons/code-minus.svg",
|
1126
871
|
"icons/code-minus.svg.gz": "icons/code-minus.svg.gz",
|
872
|
+
"icons/code-plus.svg": "icons/code-plus.svg",
|
1127
873
|
"icons/code-plus.svg.gz": "icons/code-plus.svg.gz",
|
874
|
+
"icons/code.svg": "icons/code.svg",
|
1128
875
|
"icons/code.svg.gz": "icons/code.svg.gz",
|
876
|
+
"icons/coffee.svg": "icons/coffee.svg",
|
877
|
+
"icons/coffee.svg.gz": "icons/coffee.svg.gz",
|
878
|
+
"icons/coin.svg": "icons/coin.svg",
|
1129
879
|
"icons/coin.svg.gz": "icons/coin.svg.gz",
|
880
|
+
"icons/color-picker.svg": "icons/color-picker.svg",
|
1130
881
|
"icons/color-picker.svg.gz": "icons/color-picker.svg.gz",
|
882
|
+
"icons/color-swatch.svg": "icons/color-swatch.svg",
|
1131
883
|
"icons/color-swatch.svg.gz": "icons/color-swatch.svg.gz",
|
884
|
+
"icons/column-insert-left.svg": "icons/column-insert-left.svg",
|
1132
885
|
"icons/column-insert-left.svg.gz": "icons/column-insert-left.svg.gz",
|
886
|
+
"icons/column-insert-right.svg": "icons/column-insert-right.svg",
|
1133
887
|
"icons/column-insert-right.svg.gz": "icons/column-insert-right.svg.gz",
|
888
|
+
"icons/columns.svg": "icons/columns.svg",
|
1134
889
|
"icons/columns.svg.gz": "icons/columns.svg.gz",
|
890
|
+
"icons/comet.svg": "icons/comet.svg",
|
1135
891
|
"icons/comet.svg.gz": "icons/comet.svg.gz",
|
892
|
+
"icons/command.svg": "icons/command.svg",
|
1136
893
|
"icons/command.svg.gz": "icons/command.svg.gz",
|
894
|
+
"icons/compass.svg": "icons/compass.svg",
|
1137
895
|
"icons/compass.svg.gz": "icons/compass.svg.gz",
|
896
|
+
"icons/confetti.svg": "icons/confetti.svg",
|
1138
897
|
"icons/confetti.svg.gz": "icons/confetti.svg.gz",
|
898
|
+
"icons/container.svg": "icons/container.svg",
|
1139
899
|
"icons/container.svg.gz": "icons/container.svg.gz",
|
900
|
+
"icons/contrast.svg": "icons/contrast.svg",
|
1140
901
|
"icons/contrast.svg.gz": "icons/contrast.svg.gz",
|
902
|
+
"icons/cookie.svg": "icons/cookie.svg",
|
903
|
+
"icons/cookie.svg.gz": "icons/cookie.svg.gz",
|
904
|
+
"icons/copy.svg": "icons/copy.svg",
|
1141
905
|
"icons/copy.svg.gz": "icons/copy.svg.gz",
|
906
|
+
"icons/copyleft.svg": "icons/copyleft.svg",
|
1142
907
|
"icons/copyleft.svg.gz": "icons/copyleft.svg.gz",
|
908
|
+
"icons/copyright.svg": "icons/copyright.svg",
|
1143
909
|
"icons/copyright.svg.gz": "icons/copyright.svg.gz",
|
910
|
+
"icons/corner-down-left-double.svg": "icons/corner-down-left-double.svg",
|
1144
911
|
"icons/corner-down-left-double.svg.gz": "icons/corner-down-left-double.svg.gz",
|
912
|
+
"icons/corner-down-left.svg": "icons/corner-down-left.svg",
|
1145
913
|
"icons/corner-down-left.svg.gz": "icons/corner-down-left.svg.gz",
|
914
|
+
"icons/corner-down-right-double.svg": "icons/corner-down-right-double.svg",
|
1146
915
|
"icons/corner-down-right-double.svg.gz": "icons/corner-down-right-double.svg.gz",
|
916
|
+
"icons/corner-down-right.svg": "icons/corner-down-right.svg",
|
1147
917
|
"icons/corner-down-right.svg.gz": "icons/corner-down-right.svg.gz",
|
918
|
+
"icons/corner-left-down-double.svg": "icons/corner-left-down-double.svg",
|
1148
919
|
"icons/corner-left-down-double.svg.gz": "icons/corner-left-down-double.svg.gz",
|
920
|
+
"icons/corner-left-down.svg": "icons/corner-left-down.svg",
|
1149
921
|
"icons/corner-left-down.svg.gz": "icons/corner-left-down.svg.gz",
|
922
|
+
"icons/corner-left-up-double.svg": "icons/corner-left-up-double.svg",
|
1150
923
|
"icons/corner-left-up-double.svg.gz": "icons/corner-left-up-double.svg.gz",
|
924
|
+
"icons/corner-left-up.svg": "icons/corner-left-up.svg",
|
1151
925
|
"icons/corner-left-up.svg.gz": "icons/corner-left-up.svg.gz",
|
926
|
+
"icons/corner-right-down-double.svg": "icons/corner-right-down-double.svg",
|
1152
927
|
"icons/corner-right-down-double.svg.gz": "icons/corner-right-down-double.svg.gz",
|
928
|
+
"icons/corner-right-down.svg": "icons/corner-right-down.svg",
|
1153
929
|
"icons/corner-right-down.svg.gz": "icons/corner-right-down.svg.gz",
|
930
|
+
"icons/corner-right-up-double.svg": "icons/corner-right-up-double.svg",
|
1154
931
|
"icons/corner-right-up-double.svg.gz": "icons/corner-right-up-double.svg.gz",
|
932
|
+
"icons/corner-right-up.svg": "icons/corner-right-up.svg",
|
1155
933
|
"icons/corner-right-up.svg.gz": "icons/corner-right-up.svg.gz",
|
934
|
+
"icons/corner-up-left-double.svg": "icons/corner-up-left-double.svg",
|
1156
935
|
"icons/corner-up-left-double.svg.gz": "icons/corner-up-left-double.svg.gz",
|
936
|
+
"icons/corner-up-left.svg": "icons/corner-up-left.svg",
|
1157
937
|
"icons/corner-up-left.svg.gz": "icons/corner-up-left.svg.gz",
|
938
|
+
"icons/corner-up-right-double.svg": "icons/corner-up-right-double.svg",
|
1158
939
|
"icons/corner-up-right-double.svg.gz": "icons/corner-up-right-double.svg.gz",
|
940
|
+
"icons/corner-up-right.svg": "icons/corner-up-right.svg",
|
1159
941
|
"icons/corner-up-right.svg.gz": "icons/corner-up-right.svg.gz",
|
942
|
+
"icons/crane.svg": "icons/crane.svg",
|
943
|
+
"icons/crane.svg.gz": "icons/crane.svg.gz",
|
944
|
+
"icons/credit-card-off.svg": "icons/credit-card-off.svg",
|
1160
945
|
"icons/credit-card-off.svg.gz": "icons/credit-card-off.svg.gz",
|
946
|
+
"icons/credit-card.svg": "icons/credit-card.svg",
|
1161
947
|
"icons/credit-card.svg.gz": "icons/credit-card.svg.gz",
|
948
|
+
"icons/crop.svg": "icons/crop.svg",
|
1162
949
|
"icons/crop.svg.gz": "icons/crop.svg.gz",
|
950
|
+
"icons/crosshair.svg": "icons/crosshair.svg",
|
1163
951
|
"icons/crosshair.svg.gz": "icons/crosshair.svg.gz",
|
952
|
+
"icons/crown-off.svg": "icons/crown-off.svg",
|
1164
953
|
"icons/crown-off.svg.gz": "icons/crown-off.svg.gz",
|
954
|
+
"icons/crown.svg": "icons/crown.svg",
|
1165
955
|
"icons/crown.svg.gz": "icons/crown.svg.gz",
|
956
|
+
"icons/cup.svg": "icons/cup.svg",
|
957
|
+
"icons/cup.svg.gz": "icons/cup.svg.gz",
|
958
|
+
"icons/curly-loop.svg": "icons/curly-loop.svg",
|
1166
959
|
"icons/curly-loop.svg.gz": "icons/curly-loop.svg.gz",
|
960
|
+
"icons/currency-bahraini.svg": "icons/currency-bahraini.svg",
|
1167
961
|
"icons/currency-bahraini.svg.gz": "icons/currency-bahraini.svg.gz",
|
962
|
+
"icons/currency-bath.svg": "icons/currency-bath.svg",
|
1168
963
|
"icons/currency-bath.svg.gz": "icons/currency-bath.svg.gz",
|
964
|
+
"icons/currency-bitcoin.svg": "icons/currency-bitcoin.svg",
|
1169
965
|
"icons/currency-bitcoin.svg.gz": "icons/currency-bitcoin.svg.gz",
|
966
|
+
"icons/currency-cent.svg": "icons/currency-cent.svg",
|
1170
967
|
"icons/currency-cent.svg.gz": "icons/currency-cent.svg.gz",
|
968
|
+
"icons/currency-dinar.svg": "icons/currency-dinar.svg",
|
1171
969
|
"icons/currency-dinar.svg.gz": "icons/currency-dinar.svg.gz",
|
970
|
+
"icons/currency-dirham.svg": "icons/currency-dirham.svg",
|
1172
971
|
"icons/currency-dirham.svg.gz": "icons/currency-dirham.svg.gz",
|
972
|
+
"icons/currency-dollar-australian.svg": "icons/currency-dollar-australian.svg",
|
1173
973
|
"icons/currency-dollar-australian.svg.gz": "icons/currency-dollar-australian.svg.gz",
|
974
|
+
"icons/currency-dollar-canadian.svg": "icons/currency-dollar-canadian.svg",
|
1174
975
|
"icons/currency-dollar-canadian.svg.gz": "icons/currency-dollar-canadian.svg.gz",
|
976
|
+
"icons/currency-dollar-singapore.svg": "icons/currency-dollar-singapore.svg",
|
1175
977
|
"icons/currency-dollar-singapore.svg.gz": "icons/currency-dollar-singapore.svg.gz",
|
978
|
+
"icons/currency-dollar.svg": "icons/currency-dollar.svg",
|
1176
979
|
"icons/currency-dollar.svg.gz": "icons/currency-dollar.svg.gz",
|
980
|
+
"icons/currency-ethereum.svg": "icons/currency-ethereum.svg",
|
1177
981
|
"icons/currency-ethereum.svg.gz": "icons/currency-ethereum.svg.gz",
|
982
|
+
"icons/currency-euro.svg": "icons/currency-euro.svg",
|
1178
983
|
"icons/currency-euro.svg.gz": "icons/currency-euro.svg.gz",
|
984
|
+
"icons/currency-forint.svg": "icons/currency-forint.svg",
|
1179
985
|
"icons/currency-forint.svg.gz": "icons/currency-forint.svg.gz",
|
986
|
+
"icons/currency-frank.svg": "icons/currency-frank.svg",
|
1180
987
|
"icons/currency-frank.svg.gz": "icons/currency-frank.svg.gz",
|
988
|
+
"icons/currency-krone-czech.svg": "icons/currency-krone-czech.svg",
|
1181
989
|
"icons/currency-krone-czech.svg.gz": "icons/currency-krone-czech.svg.gz",
|
990
|
+
"icons/currency-krone-danish.svg": "icons/currency-krone-danish.svg",
|
1182
991
|
"icons/currency-krone-danish.svg.gz": "icons/currency-krone-danish.svg.gz",
|
992
|
+
"icons/currency-krone-swedish.svg": "icons/currency-krone-swedish.svg",
|
1183
993
|
"icons/currency-krone-swedish.svg.gz": "icons/currency-krone-swedish.svg.gz",
|
994
|
+
"icons/currency-leu.svg": "icons/currency-leu.svg",
|
1184
995
|
"icons/currency-leu.svg.gz": "icons/currency-leu.svg.gz",
|
996
|
+
"icons/currency-lira.svg": "icons/currency-lira.svg",
|
1185
997
|
"icons/currency-lira.svg.gz": "icons/currency-lira.svg.gz",
|
998
|
+
"icons/currency-litecoin.svg": "icons/currency-litecoin.svg",
|
1186
999
|
"icons/currency-litecoin.svg.gz": "icons/currency-litecoin.svg.gz",
|
1000
|
+
"icons/currency-naira.svg": "icons/currency-naira.svg",
|
1187
1001
|
"icons/currency-naira.svg.gz": "icons/currency-naira.svg.gz",
|
1002
|
+
"icons/currency-pound.svg": "icons/currency-pound.svg",
|
1188
1003
|
"icons/currency-pound.svg.gz": "icons/currency-pound.svg.gz",
|
1004
|
+
"icons/currency-real.svg": "icons/currency-real.svg",
|
1189
1005
|
"icons/currency-real.svg.gz": "icons/currency-real.svg.gz",
|
1006
|
+
"icons/currency-renminbi.svg": "icons/currency-renminbi.svg",
|
1190
1007
|
"icons/currency-renminbi.svg.gz": "icons/currency-renminbi.svg.gz",
|
1008
|
+
"icons/currency-ripple.svg": "icons/currency-ripple.svg",
|
1191
1009
|
"icons/currency-ripple.svg.gz": "icons/currency-ripple.svg.gz",
|
1010
|
+
"icons/currency-riyal.svg": "icons/currency-riyal.svg",
|
1192
1011
|
"icons/currency-riyal.svg.gz": "icons/currency-riyal.svg.gz",
|
1012
|
+
"icons/currency-rubel.svg": "icons/currency-rubel.svg",
|
1193
1013
|
"icons/currency-rubel.svg.gz": "icons/currency-rubel.svg.gz",
|
1014
|
+
"icons/currency-rupee.svg": "icons/currency-rupee.svg",
|
1194
1015
|
"icons/currency-rupee.svg.gz": "icons/currency-rupee.svg.gz",
|
1016
|
+
"icons/currency-shekel.svg": "icons/currency-shekel.svg",
|
1195
1017
|
"icons/currency-shekel.svg.gz": "icons/currency-shekel.svg.gz",
|
1018
|
+
"icons/currency-taka.svg": "icons/currency-taka.svg",
|
1196
1019
|
"icons/currency-taka.svg.gz": "icons/currency-taka.svg.gz",
|
1020
|
+
"icons/currency-tugrik.svg": "icons/currency-tugrik.svg",
|
1197
1021
|
"icons/currency-tugrik.svg.gz": "icons/currency-tugrik.svg.gz",
|
1022
|
+
"icons/currency-won.svg": "icons/currency-won.svg",
|
1198
1023
|
"icons/currency-won.svg.gz": "icons/currency-won.svg.gz",
|
1024
|
+
"icons/currency-yen.svg": "icons/currency-yen.svg",
|
1199
1025
|
"icons/currency-yen.svg.gz": "icons/currency-yen.svg.gz",
|
1026
|
+
"icons/currency-zloty.svg": "icons/currency-zloty.svg",
|
1200
1027
|
"icons/currency-zloty.svg.gz": "icons/currency-zloty.svg.gz",
|
1028
|
+
"icons/current-location.svg": "icons/current-location.svg",
|
1201
1029
|
"icons/current-location.svg.gz": "icons/current-location.svg.gz",
|
1030
|
+
"icons/cursor-text.svg": "icons/cursor-text.svg",
|
1202
1031
|
"icons/cursor-text.svg.gz": "icons/cursor-text.svg.gz",
|
1032
|
+
"icons/cut.svg": "icons/cut.svg",
|
1203
1033
|
"icons/cut.svg.gz": "icons/cut.svg.gz",
|
1034
|
+
"icons/dashboard.svg": "icons/dashboard.svg",
|
1204
1035
|
"icons/dashboard.svg.gz": "icons/dashboard.svg.gz",
|
1036
|
+
"icons/database-export.svg": "icons/database-export.svg",
|
1205
1037
|
"icons/database-export.svg.gz": "icons/database-export.svg.gz",
|
1038
|
+
"icons/database-import.svg": "icons/database-import.svg",
|
1206
1039
|
"icons/database-import.svg.gz": "icons/database-import.svg.gz",
|
1040
|
+
"icons/database-off.svg": "icons/database-off.svg",
|
1207
1041
|
"icons/database-off.svg.gz": "icons/database-off.svg.gz",
|
1042
|
+
"icons/database.svg": "icons/database.svg",
|
1208
1043
|
"icons/database.svg.gz": "icons/database.svg.gz",
|
1044
|
+
"icons/details.svg": "icons/details.svg",
|
1209
1045
|
"icons/details.svg.gz": "icons/details.svg.gz",
|
1046
|
+
"icons/device-analytics.svg": "icons/device-analytics.svg",
|
1210
1047
|
"icons/device-analytics.svg.gz": "icons/device-analytics.svg.gz",
|
1048
|
+
"icons/device-audio-tape.svg": "icons/device-audio-tape.svg",
|
1211
1049
|
"icons/device-audio-tape.svg.gz": "icons/device-audio-tape.svg.gz",
|
1050
|
+
"icons/device-cctv.svg": "icons/device-cctv.svg",
|
1212
1051
|
"icons/device-cctv.svg.gz": "icons/device-cctv.svg.gz",
|
1052
|
+
"icons/device-computer-camera-off.svg": "icons/device-computer-camera-off.svg",
|
1213
1053
|
"icons/device-computer-camera-off.svg.gz": "icons/device-computer-camera-off.svg.gz",
|
1054
|
+
"icons/device-computer-camera.svg": "icons/device-computer-camera.svg",
|
1214
1055
|
"icons/device-computer-camera.svg.gz": "icons/device-computer-camera.svg.gz",
|
1056
|
+
"icons/device-desktop-analytics.svg": "icons/device-desktop-analytics.svg",
|
1215
1057
|
"icons/device-desktop-analytics.svg.gz": "icons/device-desktop-analytics.svg.gz",
|
1058
|
+
"icons/device-desktop-off.svg": "icons/device-desktop-off.svg",
|
1216
1059
|
"icons/device-desktop-off.svg.gz": "icons/device-desktop-off.svg.gz",
|
1060
|
+
"icons/device-desktop.svg": "icons/device-desktop.svg",
|
1217
1061
|
"icons/device-desktop.svg.gz": "icons/device-desktop.svg.gz",
|
1062
|
+
"icons/device-floppy.svg": "icons/device-floppy.svg",
|
1218
1063
|
"icons/device-floppy.svg.gz": "icons/device-floppy.svg.gz",
|
1064
|
+
"icons/device-gamepad.svg": "icons/device-gamepad.svg",
|
1219
1065
|
"icons/device-gamepad.svg.gz": "icons/device-gamepad.svg.gz",
|
1066
|
+
"icons/device-laptop.svg": "icons/device-laptop.svg",
|
1220
1067
|
"icons/device-laptop.svg.gz": "icons/device-laptop.svg.gz",
|
1068
|
+
"icons/device-mobile-message.svg": "icons/device-mobile-message.svg",
|
1221
1069
|
"icons/device-mobile-message.svg.gz": "icons/device-mobile-message.svg.gz",
|
1070
|
+
"icons/device-mobile-rotated.svg": "icons/device-mobile-rotated.svg",
|
1222
1071
|
"icons/device-mobile-rotated.svg.gz": "icons/device-mobile-rotated.svg.gz",
|
1072
|
+
"icons/device-mobile-vibration.svg": "icons/device-mobile-vibration.svg",
|
1223
1073
|
"icons/device-mobile-vibration.svg.gz": "icons/device-mobile-vibration.svg.gz",
|
1074
|
+
"icons/device-mobile.svg": "icons/device-mobile.svg",
|
1224
1075
|
"icons/device-mobile.svg.gz": "icons/device-mobile.svg.gz",
|
1076
|
+
"icons/device-speaker.svg": "icons/device-speaker.svg",
|
1225
1077
|
"icons/device-speaker.svg.gz": "icons/device-speaker.svg.gz",
|
1078
|
+
"icons/device-tablet.svg": "icons/device-tablet.svg",
|
1226
1079
|
"icons/device-tablet.svg.gz": "icons/device-tablet.svg.gz",
|
1080
|
+
"icons/device-tv.svg": "icons/device-tv.svg",
|
1227
1081
|
"icons/device-tv.svg.gz": "icons/device-tv.svg.gz",
|
1082
|
+
"icons/device-watch.svg": "icons/device-watch.svg",
|
1228
1083
|
"icons/device-watch.svg.gz": "icons/device-watch.svg.gz",
|
1084
|
+
"icons/devices-2.svg": "icons/devices-2.svg",
|
1229
1085
|
"icons/devices-2.svg.gz": "icons/devices-2.svg.gz",
|
1086
|
+
"icons/devices-pc.svg": "icons/devices-pc.svg",
|
1230
1087
|
"icons/devices-pc.svg.gz": "icons/devices-pc.svg.gz",
|
1088
|
+
"icons/devices.svg": "icons/devices.svg",
|
1231
1089
|
"icons/devices.svg.gz": "icons/devices.svg.gz",
|
1090
|
+
"icons/diamond.svg": "icons/diamond.svg",
|
1232
1091
|
"icons/diamond.svg.gz": "icons/diamond.svg.gz",
|
1092
|
+
"icons/dice.svg": "icons/dice.svg",
|
1233
1093
|
"icons/dice.svg.gz": "icons/dice.svg.gz",
|
1094
|
+
"icons/dimensions.svg": "icons/dimensions.svg",
|
1234
1095
|
"icons/dimensions.svg.gz": "icons/dimensions.svg.gz",
|
1096
|
+
"icons/direction-horizontal.svg": "icons/direction-horizontal.svg",
|
1235
1097
|
"icons/direction-horizontal.svg.gz": "icons/direction-horizontal.svg.gz",
|
1098
|
+
"icons/direction.svg": "icons/direction.svg",
|
1236
1099
|
"icons/direction.svg.gz": "icons/direction.svg.gz",
|
1100
|
+
"icons/directions.svg": "icons/directions.svg",
|
1237
1101
|
"icons/directions.svg.gz": "icons/directions.svg.gz",
|
1102
|
+
"icons/disabled-2.svg": "icons/disabled-2.svg",
|
1238
1103
|
"icons/disabled-2.svg.gz": "icons/disabled-2.svg.gz",
|
1104
|
+
"icons/disabled.svg": "icons/disabled.svg",
|
1239
1105
|
"icons/disabled.svg.gz": "icons/disabled.svg.gz",
|
1106
|
+
"icons/disc.svg": "icons/disc.svg",
|
1240
1107
|
"icons/disc.svg.gz": "icons/disc.svg.gz",
|
1108
|
+
"icons/discount-2.svg": "icons/discount-2.svg",
|
1241
1109
|
"icons/discount-2.svg.gz": "icons/discount-2.svg.gz",
|
1110
|
+
"icons/discount.svg": "icons/discount.svg",
|
1242
1111
|
"icons/discount.svg.gz": "icons/discount.svg.gz",
|
1112
|
+
"icons/divide.svg": "icons/divide.svg",
|
1243
1113
|
"icons/divide.svg.gz": "icons/divide.svg.gz",
|
1114
|
+
"icons/dna.svg": "icons/dna.svg",
|
1244
1115
|
"icons/dna.svg.gz": "icons/dna.svg.gz",
|
1116
|
+
"icons/dog-bowl.svg": "icons/dog-bowl.svg",
|
1117
|
+
"icons/dog-bowl.svg.gz": "icons/dog-bowl.svg.gz",
|
1118
|
+
"icons/dots-circle-horizontal.svg": "icons/dots-circle-horizontal.svg",
|
1245
1119
|
"icons/dots-circle-horizontal.svg.gz": "icons/dots-circle-horizontal.svg.gz",
|
1120
|
+
"icons/dots-diagonal-2.svg": "icons/dots-diagonal-2.svg",
|
1246
1121
|
"icons/dots-diagonal-2.svg.gz": "icons/dots-diagonal-2.svg.gz",
|
1122
|
+
"icons/dots-diagonal.svg": "icons/dots-diagonal.svg",
|
1247
1123
|
"icons/dots-diagonal.svg.gz": "icons/dots-diagonal.svg.gz",
|
1124
|
+
"icons/dots-vertical.svg": "icons/dots-vertical.svg",
|
1248
1125
|
"icons/dots-vertical.svg.gz": "icons/dots-vertical.svg.gz",
|
1126
|
+
"icons/dots.svg": "icons/dots.svg",
|
1249
1127
|
"icons/dots.svg.gz": "icons/dots.svg.gz",
|
1128
|
+
"icons/download.svg": "icons/download.svg",
|
1250
1129
|
"icons/download.svg.gz": "icons/download.svg.gz",
|
1130
|
+
"icons/drag-drop-2.svg": "icons/drag-drop-2.svg",
|
1251
1131
|
"icons/drag-drop-2.svg.gz": "icons/drag-drop-2.svg.gz",
|
1132
|
+
"icons/drag-drop.svg": "icons/drag-drop.svg",
|
1252
1133
|
"icons/drag-drop.svg.gz": "icons/drag-drop.svg.gz",
|
1134
|
+
"icons/drone-off.svg": "icons/drone-off.svg",
|
1253
1135
|
"icons/drone-off.svg.gz": "icons/drone-off.svg.gz",
|
1136
|
+
"icons/drone.svg": "icons/drone.svg",
|
1254
1137
|
"icons/drone.svg.gz": "icons/drone.svg.gz",
|
1138
|
+
"icons/droplet-filled-2.svg": "icons/droplet-filled-2.svg",
|
1255
1139
|
"icons/droplet-filled-2.svg.gz": "icons/droplet-filled-2.svg.gz",
|
1140
|
+
"icons/droplet-filled.svg": "icons/droplet-filled.svg",
|
1256
1141
|
"icons/droplet-filled.svg.gz": "icons/droplet-filled.svg.gz",
|
1142
|
+
"icons/droplet-half-2.svg": "icons/droplet-half-2.svg",
|
1257
1143
|
"icons/droplet-half-2.svg.gz": "icons/droplet-half-2.svg.gz",
|
1144
|
+
"icons/droplet-half.svg": "icons/droplet-half.svg",
|
1258
1145
|
"icons/droplet-half.svg.gz": "icons/droplet-half.svg.gz",
|
1146
|
+
"icons/droplet-off.svg": "icons/droplet-off.svg",
|
1259
1147
|
"icons/droplet-off.svg.gz": "icons/droplet-off.svg.gz",
|
1148
|
+
"icons/droplet.svg": "icons/droplet.svg",
|
1260
1149
|
"icons/droplet.svg.gz": "icons/droplet.svg.gz",
|
1150
|
+
"icons/ear-off.svg": "icons/ear-off.svg",
|
1261
1151
|
"icons/ear-off.svg.gz": "icons/ear-off.svg.gz",
|
1152
|
+
"icons/ear.svg": "icons/ear.svg",
|
1262
1153
|
"icons/ear.svg.gz": "icons/ear.svg.gz",
|
1154
|
+
"icons/edit-circle.svg": "icons/edit-circle.svg",
|
1263
1155
|
"icons/edit-circle.svg.gz": "icons/edit-circle.svg.gz",
|
1156
|
+
"icons/edit.svg": "icons/edit.svg",
|
1264
1157
|
"icons/edit.svg.gz": "icons/edit.svg.gz",
|
1158
|
+
"icons/egg.svg": "icons/egg.svg",
|
1265
1159
|
"icons/egg.svg.gz": "icons/egg.svg.gz",
|
1160
|
+
"icons/emphasis.svg": "icons/emphasis.svg",
|
1266
1161
|
"icons/emphasis.svg.gz": "icons/emphasis.svg.gz",
|
1162
|
+
"icons/equal-not.svg": "icons/equal-not.svg",
|
1267
1163
|
"icons/equal-not.svg.gz": "icons/equal-not.svg.gz",
|
1164
|
+
"icons/equal.svg": "icons/equal.svg",
|
1268
1165
|
"icons/equal.svg.gz": "icons/equal.svg.gz",
|
1166
|
+
"icons/eraser.svg": "icons/eraser.svg",
|
1269
1167
|
"icons/eraser.svg.gz": "icons/eraser.svg.gz",
|
1168
|
+
"icons/exchange.svg": "icons/exchange.svg",
|
1270
1169
|
"icons/exchange.svg.gz": "icons/exchange.svg.gz",
|
1170
|
+
"icons/exposure.svg": "icons/exposure.svg",
|
1271
1171
|
"icons/exposure.svg.gz": "icons/exposure.svg.gz",
|
1172
|
+
"icons/external-link.svg": "icons/external-link.svg",
|
1272
1173
|
"icons/external-link.svg.gz": "icons/external-link.svg.gz",
|
1174
|
+
"icons/eye-check.svg": "icons/eye-check.svg",
|
1273
1175
|
"icons/eye-check.svg.gz": "icons/eye-check.svg.gz",
|
1176
|
+
"icons/eye-off.svg": "icons/eye-off.svg",
|
1274
1177
|
"icons/eye-off.svg.gz": "icons/eye-off.svg.gz",
|
1178
|
+
"icons/eye.svg": "icons/eye.svg",
|
1275
1179
|
"icons/eye.svg.gz": "icons/eye.svg.gz",
|
1180
|
+
"icons/eyeglass-2.svg": "icons/eyeglass-2.svg",
|
1276
1181
|
"icons/eyeglass-2.svg.gz": "icons/eyeglass-2.svg.gz",
|
1182
|
+
"icons/eyeglass.svg": "icons/eyeglass.svg",
|
1277
1183
|
"icons/eyeglass.svg.gz": "icons/eyeglass.svg.gz",
|
1184
|
+
"icons/face-id.svg": "icons/face-id.svg",
|
1278
1185
|
"icons/face-id.svg.gz": "icons/face-id.svg.gz",
|
1186
|
+
"icons/fall.svg": "icons/fall.svg",
|
1279
1187
|
"icons/fall.svg.gz": "icons/fall.svg.gz",
|
1188
|
+
"icons/feather.svg": "icons/feather.svg",
|
1280
1189
|
"icons/feather.svg.gz": "icons/feather.svg.gz",
|
1190
|
+
"icons/fence.svg": "icons/fence.svg",
|
1191
|
+
"icons/fence.svg.gz": "icons/fence.svg.gz",
|
1192
|
+
"icons/file-alert.svg": "icons/file-alert.svg",
|
1281
1193
|
"icons/file-alert.svg.gz": "icons/file-alert.svg.gz",
|
1194
|
+
"icons/file-analytics.svg": "icons/file-analytics.svg",
|
1282
1195
|
"icons/file-analytics.svg.gz": "icons/file-analytics.svg.gz",
|
1196
|
+
"icons/file-certificate.svg": "icons/file-certificate.svg",
|
1283
1197
|
"icons/file-certificate.svg.gz": "icons/file-certificate.svg.gz",
|
1198
|
+
"icons/file-check.svg": "icons/file-check.svg",
|
1284
1199
|
"icons/file-check.svg.gz": "icons/file-check.svg.gz",
|
1200
|
+
"icons/file-code-2.svg": "icons/file-code-2.svg",
|
1285
1201
|
"icons/file-code-2.svg.gz": "icons/file-code-2.svg.gz",
|
1202
|
+
"icons/file-code.svg": "icons/file-code.svg",
|
1286
1203
|
"icons/file-code.svg.gz": "icons/file-code.svg.gz",
|
1204
|
+
"icons/file-diff.svg": "icons/file-diff.svg",
|
1287
1205
|
"icons/file-diff.svg.gz": "icons/file-diff.svg.gz",
|
1206
|
+
"icons/file-dislike.svg": "icons/file-dislike.svg",
|
1288
1207
|
"icons/file-dislike.svg.gz": "icons/file-dislike.svg.gz",
|
1208
|
+
"icons/file-download.svg": "icons/file-download.svg",
|
1289
1209
|
"icons/file-download.svg.gz": "icons/file-download.svg.gz",
|
1210
|
+
"icons/file-export.svg": "icons/file-export.svg",
|
1290
1211
|
"icons/file-export.svg.gz": "icons/file-export.svg.gz",
|
1212
|
+
"icons/file-horizontal.svg": "icons/file-horizontal.svg",
|
1291
1213
|
"icons/file-horizontal.svg.gz": "icons/file-horizontal.svg.gz",
|
1214
|
+
"icons/file-import.svg": "icons/file-import.svg",
|
1292
1215
|
"icons/file-import.svg.gz": "icons/file-import.svg.gz",
|
1216
|
+
"icons/file-info.svg": "icons/file-info.svg",
|
1293
1217
|
"icons/file-info.svg.gz": "icons/file-info.svg.gz",
|
1218
|
+
"icons/file-invoice.svg": "icons/file-invoice.svg",
|
1294
1219
|
"icons/file-invoice.svg.gz": "icons/file-invoice.svg.gz",
|
1220
|
+
"icons/file-like.svg": "icons/file-like.svg",
|
1295
1221
|
"icons/file-like.svg.gz": "icons/file-like.svg.gz",
|
1222
|
+
"icons/file-minus.svg": "icons/file-minus.svg",
|
1296
1223
|
"icons/file-minus.svg.gz": "icons/file-minus.svg.gz",
|
1224
|
+
"icons/file-music.svg": "icons/file-music.svg",
|
1297
1225
|
"icons/file-music.svg.gz": "icons/file-music.svg.gz",
|
1226
|
+
"icons/file-off.svg": "icons/file-off.svg",
|
1298
1227
|
"icons/file-off.svg.gz": "icons/file-off.svg.gz",
|
1228
|
+
"icons/file-phone.svg": "icons/file-phone.svg",
|
1299
1229
|
"icons/file-phone.svg.gz": "icons/file-phone.svg.gz",
|
1230
|
+
"icons/file-plus.svg": "icons/file-plus.svg",
|
1300
1231
|
"icons/file-plus.svg.gz": "icons/file-plus.svg.gz",
|
1232
|
+
"icons/file-report.svg": "icons/file-report.svg",
|
1301
1233
|
"icons/file-report.svg.gz": "icons/file-report.svg.gz",
|
1234
|
+
"icons/file-search.svg": "icons/file-search.svg",
|
1302
1235
|
"icons/file-search.svg.gz": "icons/file-search.svg.gz",
|
1236
|
+
"icons/file-shredder.svg": "icons/file-shredder.svg",
|
1303
1237
|
"icons/file-shredder.svg.gz": "icons/file-shredder.svg.gz",
|
1238
|
+
"icons/file-symlink.svg": "icons/file-symlink.svg",
|
1304
1239
|
"icons/file-symlink.svg.gz": "icons/file-symlink.svg.gz",
|
1240
|
+
"icons/file-text.svg": "icons/file-text.svg",
|
1305
1241
|
"icons/file-text.svg.gz": "icons/file-text.svg.gz",
|
1242
|
+
"icons/file-upload.svg": "icons/file-upload.svg",
|
1306
1243
|
"icons/file-upload.svg.gz": "icons/file-upload.svg.gz",
|
1244
|
+
"icons/file-x.svg": "icons/file-x.svg",
|
1307
1245
|
"icons/file-x.svg.gz": "icons/file-x.svg.gz",
|
1246
|
+
"icons/file-zip.svg": "icons/file-zip.svg",
|
1308
1247
|
"icons/file-zip.svg.gz": "icons/file-zip.svg.gz",
|
1248
|
+
"icons/file.svg": "icons/file.svg",
|
1309
1249
|
"icons/file.svg.gz": "icons/file.svg.gz",
|
1250
|
+
"icons/files-off.svg": "icons/files-off.svg",
|
1310
1251
|
"icons/files-off.svg.gz": "icons/files-off.svg.gz",
|
1252
|
+
"icons/files.svg": "icons/files.svg",
|
1311
1253
|
"icons/files.svg.gz": "icons/files.svg.gz",
|
1254
|
+
"icons/filter-off.svg": "icons/filter-off.svg",
|
1312
1255
|
"icons/filter-off.svg.gz": "icons/filter-off.svg.gz",
|
1256
|
+
"icons/filter.svg": "icons/filter.svg",
|
1313
1257
|
"icons/filter.svg.gz": "icons/filter.svg.gz",
|
1258
|
+
"icons/fingerprint.svg": "icons/fingerprint.svg",
|
1314
1259
|
"icons/fingerprint.svg.gz": "icons/fingerprint.svg.gz",
|
1260
|
+
"icons/firetruck.svg": "icons/firetruck.svg",
|
1315
1261
|
"icons/firetruck.svg.gz": "icons/firetruck.svg.gz",
|
1262
|
+
"icons/fish.svg": "icons/fish.svg",
|
1263
|
+
"icons/fish.svg.gz": "icons/fish.svg.gz",
|
1264
|
+
"icons/flag-2.svg": "icons/flag-2.svg",
|
1316
1265
|
"icons/flag-2.svg.gz": "icons/flag-2.svg.gz",
|
1266
|
+
"icons/flag-3.svg": "icons/flag-3.svg",
|
1317
1267
|
"icons/flag-3.svg.gz": "icons/flag-3.svg.gz",
|
1268
|
+
"icons/flag.svg": "icons/flag.svg",
|
1318
1269
|
"icons/flag.svg.gz": "icons/flag.svg.gz",
|
1270
|
+
"icons/flame.svg": "icons/flame.svg",
|
1319
1271
|
"icons/flame.svg.gz": "icons/flame.svg.gz",
|
1272
|
+
"icons/flare.svg": "icons/flare.svg",
|
1320
1273
|
"icons/flare.svg.gz": "icons/flare.svg.gz",
|
1274
|
+
"icons/flask.svg": "icons/flask.svg",
|
1321
1275
|
"icons/flask.svg.gz": "icons/flask.svg.gz",
|
1276
|
+
"icons/flip-horizontal.svg": "icons/flip-horizontal.svg",
|
1322
1277
|
"icons/flip-horizontal.svg.gz": "icons/flip-horizontal.svg.gz",
|
1278
|
+
"icons/flip-vertical.svg": "icons/flip-vertical.svg",
|
1323
1279
|
"icons/flip-vertical.svg.gz": "icons/flip-vertical.svg.gz",
|
1280
|
+
"icons/float-center.svg": "icons/float-center.svg",
|
1324
1281
|
"icons/float-center.svg.gz": "icons/float-center.svg.gz",
|
1282
|
+
"icons/float-left.svg": "icons/float-left.svg",
|
1325
1283
|
"icons/float-left.svg.gz": "icons/float-left.svg.gz",
|
1284
|
+
"icons/float-none.svg": "icons/float-none.svg",
|
1326
1285
|
"icons/float-none.svg.gz": "icons/float-none.svg.gz",
|
1286
|
+
"icons/float-right.svg": "icons/float-right.svg",
|
1327
1287
|
"icons/float-right.svg.gz": "icons/float-right.svg.gz",
|
1288
|
+
"icons/focus-2.svg": "icons/focus-2.svg",
|
1328
1289
|
"icons/focus-2.svg.gz": "icons/focus-2.svg.gz",
|
1290
|
+
"icons/focus.svg": "icons/focus.svg",
|
1329
1291
|
"icons/focus.svg.gz": "icons/focus.svg.gz",
|
1292
|
+
"icons/fold-down.svg": "icons/fold-down.svg",
|
1330
1293
|
"icons/fold-down.svg.gz": "icons/fold-down.svg.gz",
|
1294
|
+
"icons/fold-up.svg": "icons/fold-up.svg",
|
1331
1295
|
"icons/fold-up.svg.gz": "icons/fold-up.svg.gz",
|
1296
|
+
"icons/fold.svg": "icons/fold.svg",
|
1332
1297
|
"icons/fold.svg.gz": "icons/fold.svg.gz",
|
1298
|
+
"icons/folder-minus.svg": "icons/folder-minus.svg",
|
1333
1299
|
"icons/folder-minus.svg.gz": "icons/folder-minus.svg.gz",
|
1300
|
+
"icons/folder-off.svg": "icons/folder-off.svg",
|
1334
1301
|
"icons/folder-off.svg.gz": "icons/folder-off.svg.gz",
|
1302
|
+
"icons/folder-plus.svg": "icons/folder-plus.svg",
|
1335
1303
|
"icons/folder-plus.svg.gz": "icons/folder-plus.svg.gz",
|
1304
|
+
"icons/folder-x.svg": "icons/folder-x.svg",
|
1336
1305
|
"icons/folder-x.svg.gz": "icons/folder-x.svg.gz",
|
1306
|
+
"icons/folder.svg": "icons/folder.svg",
|
1337
1307
|
"icons/folder.svg.gz": "icons/folder.svg.gz",
|
1308
|
+
"icons/folders.svg": "icons/folders.svg",
|
1338
1309
|
"icons/folders.svg.gz": "icons/folders.svg.gz",
|
1310
|
+
"icons/forbid-2.svg": "icons/forbid-2.svg",
|
1339
1311
|
"icons/forbid-2.svg.gz": "icons/forbid-2.svg.gz",
|
1312
|
+
"icons/forbid.svg": "icons/forbid.svg",
|
1340
1313
|
"icons/forbid.svg.gz": "icons/forbid.svg.gz",
|
1314
|
+
"icons/forklift.svg": "icons/forklift.svg",
|
1341
1315
|
"icons/forklift.svg.gz": "icons/forklift.svg.gz",
|
1316
|
+
"icons/forms.svg": "icons/forms.svg",
|
1342
1317
|
"icons/forms.svg.gz": "icons/forms.svg.gz",
|
1318
|
+
"icons/frame.svg": "icons/frame.svg",
|
1343
1319
|
"icons/frame.svg.gz": "icons/frame.svg.gz",
|
1320
|
+
"icons/friends.svg": "icons/friends.svg",
|
1344
1321
|
"icons/friends.svg.gz": "icons/friends.svg.gz",
|
1322
|
+
"icons/gas-station.svg": "icons/gas-station.svg",
|
1345
1323
|
"icons/gas-station.svg.gz": "icons/gas-station.svg.gz",
|
1324
|
+
"icons/gauge.svg": "icons/gauge.svg",
|
1346
1325
|
"icons/gauge.svg.gz": "icons/gauge.svg.gz",
|
1326
|
+
"icons/geometry.svg": "icons/geometry.svg",
|
1347
1327
|
"icons/geometry.svg.gz": "icons/geometry.svg.gz",
|
1328
|
+
"icons/ghost.svg": "icons/ghost.svg",
|
1348
1329
|
"icons/ghost.svg.gz": "icons/ghost.svg.gz",
|
1330
|
+
"icons/gift.svg": "icons/gift.svg",
|
1349
1331
|
"icons/gift.svg.gz": "icons/gift.svg.gz",
|
1332
|
+
"icons/git-branch.svg": "icons/git-branch.svg",
|
1350
1333
|
"icons/git-branch.svg.gz": "icons/git-branch.svg.gz",
|
1334
|
+
"icons/git-commit.svg": "icons/git-commit.svg",
|
1351
1335
|
"icons/git-commit.svg.gz": "icons/git-commit.svg.gz",
|
1336
|
+
"icons/git-compare.svg": "icons/git-compare.svg",
|
1352
1337
|
"icons/git-compare.svg.gz": "icons/git-compare.svg.gz",
|
1338
|
+
"icons/git-fork.svg": "icons/git-fork.svg",
|
1353
1339
|
"icons/git-fork.svg.gz": "icons/git-fork.svg.gz",
|
1340
|
+
"icons/git-merge.svg": "icons/git-merge.svg",
|
1354
1341
|
"icons/git-merge.svg.gz": "icons/git-merge.svg.gz",
|
1342
|
+
"icons/git-pull-request.svg": "icons/git-pull-request.svg",
|
1355
1343
|
"icons/git-pull-request.svg.gz": "icons/git-pull-request.svg.gz",
|
1344
|
+
"icons/glass-full.svg": "icons/glass-full.svg",
|
1356
1345
|
"icons/glass-full.svg.gz": "icons/glass-full.svg.gz",
|
1346
|
+
"icons/glass-off.svg": "icons/glass-off.svg",
|
1357
1347
|
"icons/glass-off.svg.gz": "icons/glass-off.svg.gz",
|
1348
|
+
"icons/glass.svg": "icons/glass.svg",
|
1358
1349
|
"icons/glass.svg.gz": "icons/glass.svg.gz",
|
1350
|
+
"icons/globe.svg": "icons/globe.svg",
|
1359
1351
|
"icons/globe.svg.gz": "icons/globe.svg.gz",
|
1352
|
+
"icons/golf.svg": "icons/golf.svg",
|
1360
1353
|
"icons/golf.svg.gz": "icons/golf.svg.gz",
|
1354
|
+
"icons/gps.svg": "icons/gps.svg",
|
1361
1355
|
"icons/gps.svg.gz": "icons/gps.svg.gz",
|
1356
|
+
"icons/grain.svg": "icons/grain.svg",
|
1362
1357
|
"icons/grain.svg.gz": "icons/grain.svg.gz",
|
1358
|
+
"icons/grid-dots.svg": "icons/grid-dots.svg",
|
1363
1359
|
"icons/grid-dots.svg.gz": "icons/grid-dots.svg.gz",
|
1360
|
+
"icons/grip-horizontal.svg": "icons/grip-horizontal.svg",
|
1364
1361
|
"icons/grip-horizontal.svg.gz": "icons/grip-horizontal.svg.gz",
|
1362
|
+
"icons/grip-vertical.svg": "icons/grip-vertical.svg",
|
1365
1363
|
"icons/grip-vertical.svg.gz": "icons/grip-vertical.svg.gz",
|
1364
|
+
"icons/growth.svg": "icons/growth.svg",
|
1366
1365
|
"icons/growth.svg.gz": "icons/growth.svg.gz",
|
1366
|
+
"icons/h-1.svg": "icons/h-1.svg",
|
1367
1367
|
"icons/h-1.svg.gz": "icons/h-1.svg.gz",
|
1368
|
+
"icons/h-2.svg": "icons/h-2.svg",
|
1368
1369
|
"icons/h-2.svg.gz": "icons/h-2.svg.gz",
|
1370
|
+
"icons/h-3.svg": "icons/h-3.svg",
|
1369
1371
|
"icons/h-3.svg.gz": "icons/h-3.svg.gz",
|
1372
|
+
"icons/h-4.svg": "icons/h-4.svg",
|
1370
1373
|
"icons/h-4.svg.gz": "icons/h-4.svg.gz",
|
1374
|
+
"icons/h-5.svg": "icons/h-5.svg",
|
1371
1375
|
"icons/h-5.svg.gz": "icons/h-5.svg.gz",
|
1376
|
+
"icons/h-6.svg": "icons/h-6.svg",
|
1372
1377
|
"icons/h-6.svg.gz": "icons/h-6.svg.gz",
|
1378
|
+
"icons/hand-finger.svg": "icons/hand-finger.svg",
|
1373
1379
|
"icons/hand-finger.svg.gz": "icons/hand-finger.svg.gz",
|
1380
|
+
"icons/hand-little-finger.svg": "icons/hand-little-finger.svg",
|
1374
1381
|
"icons/hand-little-finger.svg.gz": "icons/hand-little-finger.svg.gz",
|
1382
|
+
"icons/hand-middle-finger.svg": "icons/hand-middle-finger.svg",
|
1375
1383
|
"icons/hand-middle-finger.svg.gz": "icons/hand-middle-finger.svg.gz",
|
1384
|
+
"icons/hand-off.svg": "icons/hand-off.svg",
|
1376
1385
|
"icons/hand-off.svg.gz": "icons/hand-off.svg.gz",
|
1386
|
+
"icons/hand-ring-finger.svg": "icons/hand-ring-finger.svg",
|
1377
1387
|
"icons/hand-ring-finger.svg.gz": "icons/hand-ring-finger.svg.gz",
|
1388
|
+
"icons/hand-rock.svg": "icons/hand-rock.svg",
|
1378
1389
|
"icons/hand-rock.svg.gz": "icons/hand-rock.svg.gz",
|
1390
|
+
"icons/hand-stop.svg": "icons/hand-stop.svg",
|
1379
1391
|
"icons/hand-stop.svg.gz": "icons/hand-stop.svg.gz",
|
1392
|
+
"icons/hand-three-fingers.svg": "icons/hand-three-fingers.svg",
|
1380
1393
|
"icons/hand-three-fingers.svg.gz": "icons/hand-three-fingers.svg.gz",
|
1394
|
+
"icons/hand-two-fingers.svg": "icons/hand-two-fingers.svg",
|
1381
1395
|
"icons/hand-two-fingers.svg.gz": "icons/hand-two-fingers.svg.gz",
|
1396
|
+
"icons/hanger.svg": "icons/hanger.svg",
|
1382
1397
|
"icons/hanger.svg.gz": "icons/hanger.svg.gz",
|
1398
|
+
"icons/hash.svg": "icons/hash.svg",
|
1383
1399
|
"icons/hash.svg.gz": "icons/hash.svg.gz",
|
1400
|
+
"icons/heading.svg": "icons/heading.svg",
|
1384
1401
|
"icons/heading.svg.gz": "icons/heading.svg.gz",
|
1402
|
+
"icons/headphones-off.svg": "icons/headphones-off.svg",
|
1385
1403
|
"icons/headphones-off.svg.gz": "icons/headphones-off.svg.gz",
|
1404
|
+
"icons/headphones.svg": "icons/headphones.svg",
|
1386
1405
|
"icons/headphones.svg.gz": "icons/headphones.svg.gz",
|
1406
|
+
"icons/headset.svg": "icons/headset.svg",
|
1387
1407
|
"icons/headset.svg.gz": "icons/headset.svg.gz",
|
1408
|
+
"icons/heart-broken.svg": "icons/heart-broken.svg",
|
1388
1409
|
"icons/heart-broken.svg.gz": "icons/heart-broken.svg.gz",
|
1410
|
+
"icons/heart.svg": "icons/heart.svg",
|
1389
1411
|
"icons/heart.svg.gz": "icons/heart.svg.gz",
|
1412
|
+
"icons/helicopter-landing.svg": "icons/helicopter-landing.svg",
|
1390
1413
|
"icons/helicopter-landing.svg.gz": "icons/helicopter-landing.svg.gz",
|
1414
|
+
"icons/helicopter.svg": "icons/helicopter.svg",
|
1391
1415
|
"icons/helicopter.svg.gz": "icons/helicopter.svg.gz",
|
1416
|
+
"icons/help.svg": "icons/help.svg",
|
1392
1417
|
"icons/help.svg.gz": "icons/help.svg.gz",
|
1418
|
+
"icons/hexagon-off.svg": "icons/hexagon-off.svg",
|
1393
1419
|
"icons/hexagon-off.svg.gz": "icons/hexagon-off.svg.gz",
|
1420
|
+
"icons/hexagon.svg": "icons/hexagon.svg",
|
1394
1421
|
"icons/hexagon.svg.gz": "icons/hexagon.svg.gz",
|
1422
|
+
"icons/hierarchy-2.svg": "icons/hierarchy-2.svg",
|
1395
1423
|
"icons/hierarchy-2.svg.gz": "icons/hierarchy-2.svg.gz",
|
1424
|
+
"icons/hierarchy.svg": "icons/hierarchy.svg",
|
1396
1425
|
"icons/hierarchy.svg.gz": "icons/hierarchy.svg.gz",
|
1426
|
+
"icons/history.svg": "icons/history.svg",
|
1397
1427
|
"icons/history.svg.gz": "icons/history.svg.gz",
|
1428
|
+
"icons/home-2.svg": "icons/home-2.svg",
|
1398
1429
|
"icons/home-2.svg.gz": "icons/home-2.svg.gz",
|
1430
|
+
"icons/home.svg": "icons/home.svg",
|
1399
1431
|
"icons/home.svg.gz": "icons/home.svg.gz",
|
1432
|
+
"icons/ice-cream-2.svg": "icons/ice-cream-2.svg",
|
1400
1433
|
"icons/ice-cream-2.svg.gz": "icons/ice-cream-2.svg.gz",
|
1434
|
+
"icons/ice-cream.svg": "icons/ice-cream.svg",
|
1401
1435
|
"icons/ice-cream.svg.gz": "icons/ice-cream.svg.gz",
|
1436
|
+
"icons/id.svg": "icons/id.svg",
|
1402
1437
|
"icons/id.svg.gz": "icons/id.svg.gz",
|
1438
|
+
"icons/inbox.svg": "icons/inbox.svg",
|
1403
1439
|
"icons/inbox.svg.gz": "icons/inbox.svg.gz",
|
1440
|
+
"icons/indent-decrease.svg": "icons/indent-decrease.svg",
|
1404
1441
|
"icons/indent-decrease.svg.gz": "icons/indent-decrease.svg.gz",
|
1442
|
+
"icons/indent-increase.svg": "icons/indent-increase.svg",
|
1405
1443
|
"icons/indent-increase.svg.gz": "icons/indent-increase.svg.gz",
|
1444
|
+
"icons/infinity.svg": "icons/infinity.svg",
|
1406
1445
|
"icons/infinity.svg.gz": "icons/infinity.svg.gz",
|
1446
|
+
"icons/info-circle.svg": "icons/info-circle.svg",
|
1407
1447
|
"icons/info-circle.svg.gz": "icons/info-circle.svg.gz",
|
1448
|
+
"icons/info-square.svg": "icons/info-square.svg",
|
1408
1449
|
"icons/info-square.svg.gz": "icons/info-square.svg.gz",
|
1450
|
+
"icons/italic.svg": "icons/italic.svg",
|
1409
1451
|
"icons/italic.svg.gz": "icons/italic.svg.gz",
|
1452
|
+
"icons/jump-rope.svg": "icons/jump-rope.svg",
|
1410
1453
|
"icons/jump-rope.svg.gz": "icons/jump-rope.svg.gz",
|
1454
|
+
"icons/karate.svg": "icons/karate.svg",
|
1411
1455
|
"icons/karate.svg.gz": "icons/karate.svg.gz",
|
1456
|
+
"icons/key.svg": "icons/key.svg",
|
1412
1457
|
"icons/key.svg.gz": "icons/key.svg.gz",
|
1458
|
+
"icons/keyboard-hide.svg": "icons/keyboard-hide.svg",
|
1413
1459
|
"icons/keyboard-hide.svg.gz": "icons/keyboard-hide.svg.gz",
|
1460
|
+
"icons/keyboard-off.svg": "icons/keyboard-off.svg",
|
1414
1461
|
"icons/keyboard-off.svg.gz": "icons/keyboard-off.svg.gz",
|
1462
|
+
"icons/keyboard-show.svg": "icons/keyboard-show.svg",
|
1415
1463
|
"icons/keyboard-show.svg.gz": "icons/keyboard-show.svg.gz",
|
1464
|
+
"icons/keyboard.svg": "icons/keyboard.svg",
|
1416
1465
|
"icons/keyboard.svg.gz": "icons/keyboard.svg.gz",
|
1466
|
+
"icons/language.svg": "icons/language.svg",
|
1417
1467
|
"icons/language.svg.gz": "icons/language.svg.gz",
|
1468
|
+
"icons/layers-difference.svg": "icons/layers-difference.svg",
|
1418
1469
|
"icons/layers-difference.svg.gz": "icons/layers-difference.svg.gz",
|
1470
|
+
"icons/layers-intersect.svg": "icons/layers-intersect.svg",
|
1419
1471
|
"icons/layers-intersect.svg.gz": "icons/layers-intersect.svg.gz",
|
1472
|
+
"icons/layers-linked.svg": "icons/layers-linked.svg",
|
1420
1473
|
"icons/layers-linked.svg.gz": "icons/layers-linked.svg.gz",
|
1474
|
+
"icons/layers-subtract.svg": "icons/layers-subtract.svg",
|
1421
1475
|
"icons/layers-subtract.svg.gz": "icons/layers-subtract.svg.gz",
|
1476
|
+
"icons/layers-union.svg": "icons/layers-union.svg",
|
1422
1477
|
"icons/layers-union.svg.gz": "icons/layers-union.svg.gz",
|
1478
|
+
"icons/layout-2.svg": "icons/layout-2.svg",
|
1423
1479
|
"icons/layout-2.svg.gz": "icons/layout-2.svg.gz",
|
1480
|
+
"icons/layout-align-bottom.svg": "icons/layout-align-bottom.svg",
|
1424
1481
|
"icons/layout-align-bottom.svg.gz": "icons/layout-align-bottom.svg.gz",
|
1482
|
+
"icons/layout-align-center.svg": "icons/layout-align-center.svg",
|
1425
1483
|
"icons/layout-align-center.svg.gz": "icons/layout-align-center.svg.gz",
|
1484
|
+
"icons/layout-align-left.svg": "icons/layout-align-left.svg",
|
1426
1485
|
"icons/layout-align-left.svg.gz": "icons/layout-align-left.svg.gz",
|
1486
|
+
"icons/layout-align-middle.svg": "icons/layout-align-middle.svg",
|
1427
1487
|
"icons/layout-align-middle.svg.gz": "icons/layout-align-middle.svg.gz",
|
1488
|
+
"icons/layout-align-right.svg": "icons/layout-align-right.svg",
|
1428
1489
|
"icons/layout-align-right.svg.gz": "icons/layout-align-right.svg.gz",
|
1490
|
+
"icons/layout-align-top.svg": "icons/layout-align-top.svg",
|
1429
1491
|
"icons/layout-align-top.svg.gz": "icons/layout-align-top.svg.gz",
|
1492
|
+
"icons/layout-bottombar.svg": "icons/layout-bottombar.svg",
|
1430
1493
|
"icons/layout-bottombar.svg.gz": "icons/layout-bottombar.svg.gz",
|
1494
|
+
"icons/layout-cards.svg": "icons/layout-cards.svg",
|
1431
1495
|
"icons/layout-cards.svg.gz": "icons/layout-cards.svg.gz",
|
1496
|
+
"icons/layout-columns.svg": "icons/layout-columns.svg",
|
1432
1497
|
"icons/layout-columns.svg.gz": "icons/layout-columns.svg.gz",
|
1498
|
+
"icons/layout-distribute-horizontal.svg": "icons/layout-distribute-horizontal.svg",
|
1433
1499
|
"icons/layout-distribute-horizontal.svg.gz": "icons/layout-distribute-horizontal.svg.gz",
|
1500
|
+
"icons/layout-distribute-vertical.svg": "icons/layout-distribute-vertical.svg",
|
1434
1501
|
"icons/layout-distribute-vertical.svg.gz": "icons/layout-distribute-vertical.svg.gz",
|
1502
|
+
"icons/layout-grid-add.svg": "icons/layout-grid-add.svg",
|
1435
1503
|
"icons/layout-grid-add.svg.gz": "icons/layout-grid-add.svg.gz",
|
1504
|
+
"icons/layout-grid.svg": "icons/layout-grid.svg",
|
1436
1505
|
"icons/layout-grid.svg.gz": "icons/layout-grid.svg.gz",
|
1506
|
+
"icons/layout-kanban.svg": "icons/layout-kanban.svg",
|
1437
1507
|
"icons/layout-kanban.svg.gz": "icons/layout-kanban.svg.gz",
|
1508
|
+
"icons/layout-list.svg": "icons/layout-list.svg",
|
1438
1509
|
"icons/layout-list.svg.gz": "icons/layout-list.svg.gz",
|
1510
|
+
"icons/layout-navbar.svg": "icons/layout-navbar.svg",
|
1439
1511
|
"icons/layout-navbar.svg.gz": "icons/layout-navbar.svg.gz",
|
1512
|
+
"icons/layout-rows.svg": "icons/layout-rows.svg",
|
1440
1513
|
"icons/layout-rows.svg.gz": "icons/layout-rows.svg.gz",
|
1514
|
+
"icons/layout-sidebar-right.svg": "icons/layout-sidebar-right.svg",
|
1441
1515
|
"icons/layout-sidebar-right.svg.gz": "icons/layout-sidebar-right.svg.gz",
|
1516
|
+
"icons/layout-sidebar.svg": "icons/layout-sidebar.svg",
|
1442
1517
|
"icons/layout-sidebar.svg.gz": "icons/layout-sidebar.svg.gz",
|
1518
|
+
"icons/layout.svg": "icons/layout.svg",
|
1443
1519
|
"icons/layout.svg.gz": "icons/layout.svg.gz",
|
1520
|
+
"icons/leaf.svg": "icons/leaf.svg",
|
1444
1521
|
"icons/leaf.svg.gz": "icons/leaf.svg.gz",
|
1522
|
+
"icons/lego.svg": "icons/lego.svg",
|
1445
1523
|
"icons/lego.svg.gz": "icons/lego.svg.gz",
|
1524
|
+
"icons/lemon.svg": "icons/lemon.svg",
|
1525
|
+
"icons/lemon.svg.gz": "icons/lemon.svg.gz",
|
1526
|
+
"icons/letter-a.svg": "icons/letter-a.svg",
|
1446
1527
|
"icons/letter-a.svg.gz": "icons/letter-a.svg.gz",
|
1528
|
+
"icons/letter-b.svg": "icons/letter-b.svg",
|
1447
1529
|
"icons/letter-b.svg.gz": "icons/letter-b.svg.gz",
|
1530
|
+
"icons/letter-c.svg": "icons/letter-c.svg",
|
1448
1531
|
"icons/letter-c.svg.gz": "icons/letter-c.svg.gz",
|
1532
|
+
"icons/letter-case-lower.svg": "icons/letter-case-lower.svg",
|
1449
1533
|
"icons/letter-case-lower.svg.gz": "icons/letter-case-lower.svg.gz",
|
1534
|
+
"icons/letter-case-toggle.svg": "icons/letter-case-toggle.svg",
|
1450
1535
|
"icons/letter-case-toggle.svg.gz": "icons/letter-case-toggle.svg.gz",
|
1536
|
+
"icons/letter-case-upper.svg": "icons/letter-case-upper.svg",
|
1451
1537
|
"icons/letter-case-upper.svg.gz": "icons/letter-case-upper.svg.gz",
|
1538
|
+
"icons/letter-case.svg": "icons/letter-case.svg",
|
1452
1539
|
"icons/letter-case.svg.gz": "icons/letter-case.svg.gz",
|
1540
|
+
"icons/letter-d.svg": "icons/letter-d.svg",
|
1453
1541
|
"icons/letter-d.svg.gz": "icons/letter-d.svg.gz",
|
1542
|
+
"icons/letter-e.svg": "icons/letter-e.svg",
|
1454
1543
|
"icons/letter-e.svg.gz": "icons/letter-e.svg.gz",
|
1544
|
+
"icons/letter-f.svg": "icons/letter-f.svg",
|
1455
1545
|
"icons/letter-f.svg.gz": "icons/letter-f.svg.gz",
|
1546
|
+
"icons/letter-g.svg": "icons/letter-g.svg",
|
1456
1547
|
"icons/letter-g.svg.gz": "icons/letter-g.svg.gz",
|
1548
|
+
"icons/letter-h.svg": "icons/letter-h.svg",
|
1457
1549
|
"icons/letter-h.svg.gz": "icons/letter-h.svg.gz",
|
1550
|
+
"icons/letter-i.svg": "icons/letter-i.svg",
|
1458
1551
|
"icons/letter-i.svg.gz": "icons/letter-i.svg.gz",
|
1552
|
+
"icons/letter-j.svg": "icons/letter-j.svg",
|
1459
1553
|
"icons/letter-j.svg.gz": "icons/letter-j.svg.gz",
|
1554
|
+
"icons/letter-k.svg": "icons/letter-k.svg",
|
1460
1555
|
"icons/letter-k.svg.gz": "icons/letter-k.svg.gz",
|
1556
|
+
"icons/letter-l.svg": "icons/letter-l.svg",
|
1461
1557
|
"icons/letter-l.svg.gz": "icons/letter-l.svg.gz",
|
1558
|
+
"icons/letter-m.svg": "icons/letter-m.svg",
|
1462
1559
|
"icons/letter-m.svg.gz": "icons/letter-m.svg.gz",
|
1560
|
+
"icons/letter-n.svg": "icons/letter-n.svg",
|
1463
1561
|
"icons/letter-n.svg.gz": "icons/letter-n.svg.gz",
|
1562
|
+
"icons/letter-o.svg": "icons/letter-o.svg",
|
1464
1563
|
"icons/letter-o.svg.gz": "icons/letter-o.svg.gz",
|
1564
|
+
"icons/letter-p.svg": "icons/letter-p.svg",
|
1465
1565
|
"icons/letter-p.svg.gz": "icons/letter-p.svg.gz",
|
1566
|
+
"icons/letter-q.svg": "icons/letter-q.svg",
|
1466
1567
|
"icons/letter-q.svg.gz": "icons/letter-q.svg.gz",
|
1568
|
+
"icons/letter-r.svg": "icons/letter-r.svg",
|
1467
1569
|
"icons/letter-r.svg.gz": "icons/letter-r.svg.gz",
|
1570
|
+
"icons/letter-s.svg": "icons/letter-s.svg",
|
1468
1571
|
"icons/letter-s.svg.gz": "icons/letter-s.svg.gz",
|
1572
|
+
"icons/letter-spacing.svg": "icons/letter-spacing.svg",
|
1469
1573
|
"icons/letter-spacing.svg.gz": "icons/letter-spacing.svg.gz",
|
1574
|
+
"icons/letter-t.svg": "icons/letter-t.svg",
|
1470
1575
|
"icons/letter-t.svg.gz": "icons/letter-t.svg.gz",
|
1576
|
+
"icons/letter-u.svg": "icons/letter-u.svg",
|
1471
1577
|
"icons/letter-u.svg.gz": "icons/letter-u.svg.gz",
|
1578
|
+
"icons/letter-v.svg": "icons/letter-v.svg",
|
1472
1579
|
"icons/letter-v.svg.gz": "icons/letter-v.svg.gz",
|
1580
|
+
"icons/letter-w.svg": "icons/letter-w.svg",
|
1473
1581
|
"icons/letter-w.svg.gz": "icons/letter-w.svg.gz",
|
1582
|
+
"icons/letter-x.svg": "icons/letter-x.svg",
|
1474
1583
|
"icons/letter-x.svg.gz": "icons/letter-x.svg.gz",
|
1584
|
+
"icons/letter-y.svg": "icons/letter-y.svg",
|
1475
1585
|
"icons/letter-y.svg.gz": "icons/letter-y.svg.gz",
|
1586
|
+
"icons/letter-z.svg": "icons/letter-z.svg",
|
1476
1587
|
"icons/letter-z.svg.gz": "icons/letter-z.svg.gz",
|
1588
|
+
"icons/letters-case.svg": "icons/letters-case.svg",
|
1477
1589
|
"icons/letters-case.svg.gz": "icons/letters-case.svg.gz",
|
1590
|
+
"icons/license.svg": "icons/license.svg",
|
1478
1591
|
"icons/license.svg.gz": "icons/license.svg.gz",
|
1592
|
+
"icons/lifebuoy.svg": "icons/lifebuoy.svg",
|
1479
1593
|
"icons/lifebuoy.svg.gz": "icons/lifebuoy.svg.gz",
|
1594
|
+
"icons/line-dashed.svg": "icons/line-dashed.svg",
|
1480
1595
|
"icons/line-dashed.svg.gz": "icons/line-dashed.svg.gz",
|
1596
|
+
"icons/line-dotted.svg": "icons/line-dotted.svg",
|
1481
1597
|
"icons/line-dotted.svg.gz": "icons/line-dotted.svg.gz",
|
1598
|
+
"icons/line-height.svg": "icons/line-height.svg",
|
1482
1599
|
"icons/line-height.svg.gz": "icons/line-height.svg.gz",
|
1600
|
+
"icons/line.svg": "icons/line.svg",
|
1483
1601
|
"icons/line.svg.gz": "icons/line.svg.gz",
|
1602
|
+
"icons/link.svg": "icons/link.svg",
|
1484
1603
|
"icons/link.svg.gz": "icons/link.svg.gz",
|
1604
|
+
"icons/list-check.svg": "icons/list-check.svg",
|
1485
1605
|
"icons/list-check.svg.gz": "icons/list-check.svg.gz",
|
1606
|
+
"icons/list-numbers.svg": "icons/list-numbers.svg",
|
1607
|
+
"icons/list-numbers.svg.gz": "icons/list-numbers.svg.gz",
|
1608
|
+
"icons/list-search.svg": "icons/list-search.svg",
|
1486
1609
|
"icons/list-search.svg.gz": "icons/list-search.svg.gz",
|
1610
|
+
"icons/list.svg": "icons/list.svg",
|
1487
1611
|
"icons/list.svg.gz": "icons/list.svg.gz",
|
1612
|
+
"icons/live-photo.svg": "icons/live-photo.svg",
|
1488
1613
|
"icons/live-photo.svg.gz": "icons/live-photo.svg.gz",
|
1614
|
+
"icons/live-view.svg": "icons/live-view.svg",
|
1489
1615
|
"icons/live-view.svg.gz": "icons/live-view.svg.gz",
|
1616
|
+
"icons/loader-quarter.svg": "icons/loader-quarter.svg",
|
1490
1617
|
"icons/loader-quarter.svg.gz": "icons/loader-quarter.svg.gz",
|
1618
|
+
"icons/loader.svg": "icons/loader.svg",
|
1491
1619
|
"icons/loader.svg.gz": "icons/loader.svg.gz",
|
1620
|
+
"icons/location.svg": "icons/location.svg",
|
1492
1621
|
"icons/location.svg.gz": "icons/location.svg.gz",
|
1622
|
+
"icons/lock-access.svg": "icons/lock-access.svg",
|
1493
1623
|
"icons/lock-access.svg.gz": "icons/lock-access.svg.gz",
|
1624
|
+
"icons/lock-off.svg": "icons/lock-off.svg",
|
1494
1625
|
"icons/lock-off.svg.gz": "icons/lock-off.svg.gz",
|
1626
|
+
"icons/lock-open.svg": "icons/lock-open.svg",
|
1495
1627
|
"icons/lock-open.svg.gz": "icons/lock-open.svg.gz",
|
1628
|
+
"icons/lock.svg": "icons/lock.svg",
|
1496
1629
|
"icons/lock.svg.gz": "icons/lock.svg.gz",
|
1630
|
+
"icons/login.svg": "icons/login.svg",
|
1497
1631
|
"icons/login.svg.gz": "icons/login.svg.gz",
|
1632
|
+
"icons/logout.svg": "icons/logout.svg",
|
1498
1633
|
"icons/logout.svg.gz": "icons/logout.svg.gz",
|
1634
|
+
"icons/macro.svg": "icons/macro.svg",
|
1499
1635
|
"icons/macro.svg.gz": "icons/macro.svg.gz",
|
1636
|
+
"icons/magnet.svg": "icons/magnet.svg",
|
1500
1637
|
"icons/magnet.svg.gz": "icons/magnet.svg.gz",
|
1638
|
+
"icons/mail-forward.svg": "icons/mail-forward.svg",
|
1501
1639
|
"icons/mail-forward.svg.gz": "icons/mail-forward.svg.gz",
|
1640
|
+
"icons/mail-opened.svg": "icons/mail-opened.svg",
|
1502
1641
|
"icons/mail-opened.svg.gz": "icons/mail-opened.svg.gz",
|
1642
|
+
"icons/mail.svg": "icons/mail.svg",
|
1503
1643
|
"icons/mail.svg.gz": "icons/mail.svg.gz",
|
1644
|
+
"icons/mailbox.svg": "icons/mailbox.svg",
|
1504
1645
|
"icons/mailbox.svg.gz": "icons/mailbox.svg.gz",
|
1646
|
+
"icons/man.svg": "icons/man.svg",
|
1505
1647
|
"icons/man.svg.gz": "icons/man.svg.gz",
|
1648
|
+
"icons/manual-gearbox.svg": "icons/manual-gearbox.svg",
|
1506
1649
|
"icons/manual-gearbox.svg.gz": "icons/manual-gearbox.svg.gz",
|
1650
|
+
"icons/map-2.svg": "icons/map-2.svg",
|
1507
1651
|
"icons/map-2.svg.gz": "icons/map-2.svg.gz",
|
1652
|
+
"icons/map-pin-off.svg": "icons/map-pin-off.svg",
|
1508
1653
|
"icons/map-pin-off.svg.gz": "icons/map-pin-off.svg.gz",
|
1654
|
+
"icons/map-pin.svg": "icons/map-pin.svg",
|
1509
1655
|
"icons/map-pin.svg.gz": "icons/map-pin.svg.gz",
|
1656
|
+
"icons/map-pins.svg": "icons/map-pins.svg",
|
1510
1657
|
"icons/map-pins.svg.gz": "icons/map-pins.svg.gz",
|
1658
|
+
"icons/map.svg": "icons/map.svg",
|
1511
1659
|
"icons/map.svg.gz": "icons/map.svg.gz",
|
1660
|
+
"icons/markdown.svg": "icons/markdown.svg",
|
1512
1661
|
"icons/markdown.svg.gz": "icons/markdown.svg.gz",
|
1662
|
+
"icons/marquee-2.svg": "icons/marquee-2.svg",
|
1513
1663
|
"icons/marquee-2.svg.gz": "icons/marquee-2.svg.gz",
|
1664
|
+
"icons/marquee.svg": "icons/marquee.svg",
|
1514
1665
|
"icons/marquee.svg.gz": "icons/marquee.svg.gz",
|
1666
|
+
"icons/mars.svg": "icons/mars.svg",
|
1515
1667
|
"icons/mars.svg.gz": "icons/mars.svg.gz",
|
1668
|
+
"icons/mask-off.svg": "icons/mask-off.svg",
|
1516
1669
|
"icons/mask-off.svg.gz": "icons/mask-off.svg.gz",
|
1670
|
+
"icons/mask.svg": "icons/mask.svg",
|
1517
1671
|
"icons/mask.svg.gz": "icons/mask.svg.gz",
|
1672
|
+
"icons/massage.svg": "icons/massage.svg",
|
1518
1673
|
"icons/massage.svg.gz": "icons/massage.svg.gz",
|
1674
|
+
"icons/math-function.svg": "icons/math-function.svg",
|
1519
1675
|
"icons/math-function.svg.gz": "icons/math-function.svg.gz",
|
1676
|
+
"icons/math-symbols.svg": "icons/math-symbols.svg",
|
1520
1677
|
"icons/math-symbols.svg.gz": "icons/math-symbols.svg.gz",
|
1678
|
+
"icons/math.svg": "icons/math.svg",
|
1521
1679
|
"icons/math.svg.gz": "icons/math.svg.gz",
|
1680
|
+
"icons/maximize.svg": "icons/maximize.svg",
|
1522
1681
|
"icons/maximize.svg.gz": "icons/maximize.svg.gz",
|
1682
|
+
"icons/meat.svg": "icons/meat.svg",
|
1683
|
+
"icons/meat.svg.gz": "icons/meat.svg.gz",
|
1684
|
+
"icons/medal.svg": "icons/medal.svg",
|
1523
1685
|
"icons/medal.svg.gz": "icons/medal.svg.gz",
|
1686
|
+
"icons/medical-cross.svg": "icons/medical-cross.svg",
|
1524
1687
|
"icons/medical-cross.svg.gz": "icons/medical-cross.svg.gz",
|
1688
|
+
"icons/menu-2.svg": "icons/menu-2.svg",
|
1525
1689
|
"icons/menu-2.svg.gz": "icons/menu-2.svg.gz",
|
1690
|
+
"icons/menu.svg": "icons/menu.svg",
|
1526
1691
|
"icons/menu.svg.gz": "icons/menu.svg.gz",
|
1692
|
+
"icons/message-2.svg": "icons/message-2.svg",
|
1527
1693
|
"icons/message-2.svg.gz": "icons/message-2.svg.gz",
|
1694
|
+
"icons/message-circle-2.svg": "icons/message-circle-2.svg",
|
1528
1695
|
"icons/message-circle-2.svg.gz": "icons/message-circle-2.svg.gz",
|
1696
|
+
"icons/message-circle-off.svg": "icons/message-circle-off.svg",
|
1529
1697
|
"icons/message-circle-off.svg.gz": "icons/message-circle-off.svg.gz",
|
1698
|
+
"icons/message-circle.svg": "icons/message-circle.svg",
|
1530
1699
|
"icons/message-circle.svg.gz": "icons/message-circle.svg.gz",
|
1700
|
+
"icons/message-dots.svg": "icons/message-dots.svg",
|
1531
1701
|
"icons/message-dots.svg.gz": "icons/message-dots.svg.gz",
|
1702
|
+
"icons/message-off.svg": "icons/message-off.svg",
|
1532
1703
|
"icons/message-off.svg.gz": "icons/message-off.svg.gz",
|
1704
|
+
"icons/message-plus.svg": "icons/message-plus.svg",
|
1533
1705
|
"icons/message-plus.svg.gz": "icons/message-plus.svg.gz",
|
1706
|
+
"icons/message-report.svg": "icons/message-report.svg",
|
1534
1707
|
"icons/message-report.svg.gz": "icons/message-report.svg.gz",
|
1708
|
+
"icons/message.svg": "icons/message.svg",
|
1535
1709
|
"icons/message.svg.gz": "icons/message.svg.gz",
|
1710
|
+
"icons/messages-off.svg": "icons/messages-off.svg",
|
1536
1711
|
"icons/messages-off.svg.gz": "icons/messages-off.svg.gz",
|
1712
|
+
"icons/messages.svg": "icons/messages.svg",
|
1537
1713
|
"icons/messages.svg.gz": "icons/messages.svg.gz",
|
1714
|
+
"icons/microphone-2.svg": "icons/microphone-2.svg",
|
1715
|
+
"icons/microphone-2.svg.gz": "icons/microphone-2.svg.gz",
|
1716
|
+
"icons/microphone-off.svg": "icons/microphone-off.svg",
|
1538
1717
|
"icons/microphone-off.svg.gz": "icons/microphone-off.svg.gz",
|
1718
|
+
"icons/microphone.svg": "icons/microphone.svg",
|
1539
1719
|
"icons/microphone.svg.gz": "icons/microphone.svg.gz",
|
1720
|
+
"icons/milk.svg": "icons/milk.svg",
|
1721
|
+
"icons/milk.svg.gz": "icons/milk.svg.gz",
|
1722
|
+
"icons/minimize.svg": "icons/minimize.svg",
|
1540
1723
|
"icons/minimize.svg.gz": "icons/minimize.svg.gz",
|
1724
|
+
"icons/minus-vertical.svg": "icons/minus-vertical.svg",
|
1541
1725
|
"icons/minus-vertical.svg.gz": "icons/minus-vertical.svg.gz",
|
1726
|
+
"icons/minus.svg": "icons/minus.svg",
|
1542
1727
|
"icons/minus.svg.gz": "icons/minus.svg.gz",
|
1728
|
+
"icons/mist.svg": "icons/mist.svg",
|
1543
1729
|
"icons/mist.svg.gz": "icons/mist.svg.gz",
|
1730
|
+
"icons/mood-boy.svg": "icons/mood-boy.svg",
|
1544
1731
|
"icons/mood-boy.svg.gz": "icons/mood-boy.svg.gz",
|
1732
|
+
"icons/mood-confuzed.svg": "icons/mood-confuzed.svg",
|
1545
1733
|
"icons/mood-confuzed.svg.gz": "icons/mood-confuzed.svg.gz",
|
1734
|
+
"icons/mood-crazy-happy.svg": "icons/mood-crazy-happy.svg",
|
1546
1735
|
"icons/mood-crazy-happy.svg.gz": "icons/mood-crazy-happy.svg.gz",
|
1736
|
+
"icons/mood-cry.svg": "icons/mood-cry.svg",
|
1547
1737
|
"icons/mood-cry.svg.gz": "icons/mood-cry.svg.gz",
|
1738
|
+
"icons/mood-empty.svg": "icons/mood-empty.svg",
|
1548
1739
|
"icons/mood-empty.svg.gz": "icons/mood-empty.svg.gz",
|
1740
|
+
"icons/mood-happy.svg": "icons/mood-happy.svg",
|
1549
1741
|
"icons/mood-happy.svg.gz": "icons/mood-happy.svg.gz",
|
1742
|
+
"icons/mood-kid.svg": "icons/mood-kid.svg",
|
1550
1743
|
"icons/mood-kid.svg.gz": "icons/mood-kid.svg.gz",
|
1744
|
+
"icons/mood-neutral.svg": "icons/mood-neutral.svg",
|
1551
1745
|
"icons/mood-neutral.svg.gz": "icons/mood-neutral.svg.gz",
|
1746
|
+
"icons/mood-sad.svg": "icons/mood-sad.svg",
|
1552
1747
|
"icons/mood-sad.svg.gz": "icons/mood-sad.svg.gz",
|
1748
|
+
"icons/mood-smile.svg": "icons/mood-smile.svg",
|
1553
1749
|
"icons/mood-smile.svg.gz": "icons/mood-smile.svg.gz",
|
1750
|
+
"icons/mood-suprised.svg": "icons/mood-suprised.svg",
|
1554
1751
|
"icons/mood-suprised.svg.gz": "icons/mood-suprised.svg.gz",
|
1752
|
+
"icons/mood-tongue.svg": "icons/mood-tongue.svg",
|
1555
1753
|
"icons/mood-tongue.svg.gz": "icons/mood-tongue.svg.gz",
|
1754
|
+
"icons/moon-2.svg": "icons/moon-2.svg",
|
1556
1755
|
"icons/moon-2.svg.gz": "icons/moon-2.svg.gz",
|
1756
|
+
"icons/moon-stars.svg": "icons/moon-stars.svg",
|
1557
1757
|
"icons/moon-stars.svg.gz": "icons/moon-stars.svg.gz",
|
1758
|
+
"icons/moon.svg": "icons/moon.svg",
|
1558
1759
|
"icons/moon.svg.gz": "icons/moon.svg.gz",
|
1760
|
+
"icons/moped.svg": "icons/moped.svg",
|
1559
1761
|
"icons/moped.svg.gz": "icons/moped.svg.gz",
|
1762
|
+
"icons/motorbike.svg": "icons/motorbike.svg",
|
1560
1763
|
"icons/motorbike.svg.gz": "icons/motorbike.svg.gz",
|
1764
|
+
"icons/mouse.svg": "icons/mouse.svg",
|
1561
1765
|
"icons/mouse.svg.gz": "icons/mouse.svg.gz",
|
1766
|
+
"icons/movie.svg": "icons/movie.svg",
|
1562
1767
|
"icons/movie.svg.gz": "icons/movie.svg.gz",
|
1768
|
+
"icons/mug.svg": "icons/mug.svg",
|
1563
1769
|
"icons/mug.svg.gz": "icons/mug.svg.gz",
|
1770
|
+
"icons/mushroom.svg": "icons/mushroom.svg",
|
1771
|
+
"icons/mushroom.svg.gz": "icons/mushroom.svg.gz",
|
1772
|
+
"icons/music.svg": "icons/music.svg",
|
1564
1773
|
"icons/music.svg.gz": "icons/music.svg.gz",
|
1774
|
+
"icons/new-section.svg": "icons/new-section.svg",
|
1565
1775
|
"icons/new-section.svg.gz": "icons/new-section.svg.gz",
|
1776
|
+
"icons/news.svg": "icons/news.svg",
|
1566
1777
|
"icons/news.svg.gz": "icons/news.svg.gz",
|
1778
|
+
"icons/nfc.svg": "icons/nfc.svg",
|
1567
1779
|
"icons/nfc.svg.gz": "icons/nfc.svg.gz",
|
1780
|
+
"icons/note.svg": "icons/note.svg",
|
1568
1781
|
"icons/note.svg.gz": "icons/note.svg.gz",
|
1782
|
+
"icons/notebook.svg": "icons/notebook.svg",
|
1569
1783
|
"icons/notebook.svg.gz": "icons/notebook.svg.gz",
|
1784
|
+
"icons/notes.svg": "icons/notes.svg",
|
1570
1785
|
"icons/notes.svg.gz": "icons/notes.svg.gz",
|
1786
|
+
"icons/notification.svg": "icons/notification.svg",
|
1571
1787
|
"icons/notification.svg.gz": "icons/notification.svg.gz",
|
1788
|
+
"icons/number-0.svg": "icons/number-0.svg",
|
1572
1789
|
"icons/number-0.svg.gz": "icons/number-0.svg.gz",
|
1790
|
+
"icons/number-1.svg": "icons/number-1.svg",
|
1573
1791
|
"icons/number-1.svg.gz": "icons/number-1.svg.gz",
|
1792
|
+
"icons/number-2.svg": "icons/number-2.svg",
|
1574
1793
|
"icons/number-2.svg.gz": "icons/number-2.svg.gz",
|
1794
|
+
"icons/number-3.svg": "icons/number-3.svg",
|
1575
1795
|
"icons/number-3.svg.gz": "icons/number-3.svg.gz",
|
1796
|
+
"icons/number-4.svg": "icons/number-4.svg",
|
1576
1797
|
"icons/number-4.svg.gz": "icons/number-4.svg.gz",
|
1798
|
+
"icons/number-5.svg": "icons/number-5.svg",
|
1577
1799
|
"icons/number-5.svg.gz": "icons/number-5.svg.gz",
|
1800
|
+
"icons/number-6.svg": "icons/number-6.svg",
|
1578
1801
|
"icons/number-6.svg.gz": "icons/number-6.svg.gz",
|
1802
|
+
"icons/number-7.svg": "icons/number-7.svg",
|
1579
1803
|
"icons/number-7.svg.gz": "icons/number-7.svg.gz",
|
1804
|
+
"icons/number-8.svg": "icons/number-8.svg",
|
1580
1805
|
"icons/number-8.svg.gz": "icons/number-8.svg.gz",
|
1806
|
+
"icons/number-9.svg": "icons/number-9.svg",
|
1581
1807
|
"icons/number-9.svg.gz": "icons/number-9.svg.gz",
|
1808
|
+
"icons/octagon-off.svg": "icons/octagon-off.svg",
|
1582
1809
|
"icons/octagon-off.svg.gz": "icons/octagon-off.svg.gz",
|
1810
|
+
"icons/octagon.svg": "icons/octagon.svg",
|
1583
1811
|
"icons/octagon.svg.gz": "icons/octagon.svg.gz",
|
1812
|
+
"icons/old.svg": "icons/old.svg",
|
1584
1813
|
"icons/old.svg.gz": "icons/old.svg.gz",
|
1814
|
+
"icons/olympics.svg": "icons/olympics.svg",
|
1585
1815
|
"icons/olympics.svg.gz": "icons/olympics.svg.gz",
|
1816
|
+
"icons/omega.svg": "icons/omega.svg",
|
1586
1817
|
"icons/omega.svg.gz": "icons/omega.svg.gz",
|
1818
|
+
"icons/outlet.svg": "icons/outlet.svg",
|
1587
1819
|
"icons/outlet.svg.gz": "icons/outlet.svg.gz",
|
1820
|
+
"icons/overline.svg": "icons/overline.svg",
|
1588
1821
|
"icons/overline.svg.gz": "icons/overline.svg.gz",
|
1822
|
+
"icons/package.svg": "icons/package.svg",
|
1589
1823
|
"icons/package.svg.gz": "icons/package.svg.gz",
|
1824
|
+
"icons/pacman.svg": "icons/pacman.svg",
|
1590
1825
|
"icons/pacman.svg.gz": "icons/pacman.svg.gz",
|
1826
|
+
"icons/page-break.svg": "icons/page-break.svg",
|
1591
1827
|
"icons/page-break.svg.gz": "icons/page-break.svg.gz",
|
1828
|
+
"icons/paint.svg": "icons/paint.svg",
|
1592
1829
|
"icons/paint.svg.gz": "icons/paint.svg.gz",
|
1830
|
+
"icons/palette.svg": "icons/palette.svg",
|
1593
1831
|
"icons/palette.svg.gz": "icons/palette.svg.gz",
|
1832
|
+
"icons/panorama-horizontal.svg": "icons/panorama-horizontal.svg",
|
1594
1833
|
"icons/panorama-horizontal.svg.gz": "icons/panorama-horizontal.svg.gz",
|
1834
|
+
"icons/panorama-vertical.svg": "icons/panorama-vertical.svg",
|
1595
1835
|
"icons/panorama-vertical.svg.gz": "icons/panorama-vertical.svg.gz",
|
1836
|
+
"icons/paperclip.svg": "icons/paperclip.svg",
|
1596
1837
|
"icons/paperclip.svg.gz": "icons/paperclip.svg.gz",
|
1838
|
+
"icons/parachute.svg": "icons/parachute.svg",
|
1597
1839
|
"icons/parachute.svg.gz": "icons/parachute.svg.gz",
|
1840
|
+
"icons/parentheses.svg": "icons/parentheses.svg",
|
1598
1841
|
"icons/parentheses.svg.gz": "icons/parentheses.svg.gz",
|
1842
|
+
"icons/parking.svg": "icons/parking.svg",
|
1599
1843
|
"icons/parking.svg.gz": "icons/parking.svg.gz",
|
1844
|
+
"icons/peace.svg": "icons/peace.svg",
|
1600
1845
|
"icons/peace.svg.gz": "icons/peace.svg.gz",
|
1846
|
+
"icons/pencil.svg": "icons/pencil.svg",
|
1601
1847
|
"icons/pencil.svg.gz": "icons/pencil.svg.gz",
|
1848
|
+
"icons/pennant.svg": "icons/pennant.svg",
|
1602
1849
|
"icons/pennant.svg.gz": "icons/pennant.svg.gz",
|
1850
|
+
"icons/pepper.svg": "icons/pepper.svg",
|
1851
|
+
"icons/pepper.svg.gz": "icons/pepper.svg.gz",
|
1852
|
+
"icons/percentage.svg": "icons/percentage.svg",
|
1603
1853
|
"icons/percentage.svg.gz": "icons/percentage.svg.gz",
|
1854
|
+
"icons/perspective.svg": "icons/perspective.svg",
|
1604
1855
|
"icons/perspective.svg.gz": "icons/perspective.svg.gz",
|
1856
|
+
"icons/phone-call.svg": "icons/phone-call.svg",
|
1605
1857
|
"icons/phone-call.svg.gz": "icons/phone-call.svg.gz",
|
1858
|
+
"icons/phone-calling.svg": "icons/phone-calling.svg",
|
1606
1859
|
"icons/phone-calling.svg.gz": "icons/phone-calling.svg.gz",
|
1860
|
+
"icons/phone-check.svg": "icons/phone-check.svg",
|
1607
1861
|
"icons/phone-check.svg.gz": "icons/phone-check.svg.gz",
|
1862
|
+
"icons/phone-incoming.svg": "icons/phone-incoming.svg",
|
1608
1863
|
"icons/phone-incoming.svg.gz": "icons/phone-incoming.svg.gz",
|
1864
|
+
"icons/phone-off.svg": "icons/phone-off.svg",
|
1609
1865
|
"icons/phone-off.svg.gz": "icons/phone-off.svg.gz",
|
1866
|
+
"icons/phone-outgoing.svg": "icons/phone-outgoing.svg",
|
1610
1867
|
"icons/phone-outgoing.svg.gz": "icons/phone-outgoing.svg.gz",
|
1868
|
+
"icons/phone-pause.svg": "icons/phone-pause.svg",
|
1611
1869
|
"icons/phone-pause.svg.gz": "icons/phone-pause.svg.gz",
|
1870
|
+
"icons/phone-plus.svg": "icons/phone-plus.svg",
|
1612
1871
|
"icons/phone-plus.svg.gz": "icons/phone-plus.svg.gz",
|
1872
|
+
"icons/phone-x.svg": "icons/phone-x.svg",
|
1613
1873
|
"icons/phone-x.svg.gz": "icons/phone-x.svg.gz",
|
1874
|
+
"icons/phone.svg": "icons/phone.svg",
|
1614
1875
|
"icons/phone.svg.gz": "icons/phone.svg.gz",
|
1876
|
+
"icons/photo-off.svg": "icons/photo-off.svg",
|
1615
1877
|
"icons/photo-off.svg.gz": "icons/photo-off.svg.gz",
|
1878
|
+
"icons/photo.svg": "icons/photo.svg",
|
1616
1879
|
"icons/photo.svg.gz": "icons/photo.svg.gz",
|
1880
|
+
"icons/physotherapist.svg": "icons/physotherapist.svg",
|
1617
1881
|
"icons/physotherapist.svg.gz": "icons/physotherapist.svg.gz",
|
1882
|
+
"icons/picture-in-picture-off.svg": "icons/picture-in-picture-off.svg",
|
1618
1883
|
"icons/picture-in-picture-off.svg.gz": "icons/picture-in-picture-off.svg.gz",
|
1884
|
+
"icons/picture-in-picture-on.svg": "icons/picture-in-picture-on.svg",
|
1619
1885
|
"icons/picture-in-picture-on.svg.gz": "icons/picture-in-picture-on.svg.gz",
|
1886
|
+
"icons/picture-in-picture.svg": "icons/picture-in-picture.svg",
|
1620
1887
|
"icons/picture-in-picture.svg.gz": "icons/picture-in-picture.svg.gz",
|
1888
|
+
"icons/pill.svg": "icons/pill.svg",
|
1621
1889
|
"icons/pill.svg.gz": "icons/pill.svg.gz",
|
1890
|
+
"icons/pin.svg": "icons/pin.svg",
|
1622
1891
|
"icons/pin.svg.gz": "icons/pin.svg.gz",
|
1892
|
+
"icons/pinned-off.svg": "icons/pinned-off.svg",
|
1623
1893
|
"icons/pinned-off.svg.gz": "icons/pinned-off.svg.gz",
|
1894
|
+
"icons/pinned.svg": "icons/pinned.svg",
|
1624
1895
|
"icons/pinned.svg.gz": "icons/pinned.svg.gz",
|
1896
|
+
"icons/pizza.svg": "icons/pizza.svg",
|
1625
1897
|
"icons/pizza.svg.gz": "icons/pizza.svg.gz",
|
1898
|
+
"icons/plane-arrival.svg": "icons/plane-arrival.svg",
|
1626
1899
|
"icons/plane-arrival.svg.gz": "icons/plane-arrival.svg.gz",
|
1900
|
+
"icons/plane-departure.svg": "icons/plane-departure.svg",
|
1627
1901
|
"icons/plane-departure.svg.gz": "icons/plane-departure.svg.gz",
|
1902
|
+
"icons/plane.svg": "icons/plane.svg",
|
1628
1903
|
"icons/plane.svg.gz": "icons/plane.svg.gz",
|
1904
|
+
"icons/planet.svg": "icons/planet.svg",
|
1629
1905
|
"icons/planet.svg.gz": "icons/planet.svg.gz",
|
1906
|
+
"icons/plant-2.svg": "icons/plant-2.svg",
|
1630
1907
|
"icons/plant-2.svg.gz": "icons/plant-2.svg.gz",
|
1908
|
+
"icons/plant.svg": "icons/plant.svg",
|
1631
1909
|
"icons/plant.svg.gz": "icons/plant.svg.gz",
|
1910
|
+
"icons/play-card.svg": "icons/play-card.svg",
|
1632
1911
|
"icons/play-card.svg.gz": "icons/play-card.svg.gz",
|
1912
|
+
"icons/player-pause.svg": "icons/player-pause.svg",
|
1633
1913
|
"icons/player-pause.svg.gz": "icons/player-pause.svg.gz",
|
1914
|
+
"icons/player-play.svg": "icons/player-play.svg",
|
1634
1915
|
"icons/player-play.svg.gz": "icons/player-play.svg.gz",
|
1916
|
+
"icons/player-record.svg": "icons/player-record.svg",
|
1635
1917
|
"icons/player-record.svg.gz": "icons/player-record.svg.gz",
|
1918
|
+
"icons/player-skip-back.svg": "icons/player-skip-back.svg",
|
1636
1919
|
"icons/player-skip-back.svg.gz": "icons/player-skip-back.svg.gz",
|
1920
|
+
"icons/player-skip-forward.svg": "icons/player-skip-forward.svg",
|
1637
1921
|
"icons/player-skip-forward.svg.gz": "icons/player-skip-forward.svg.gz",
|
1922
|
+
"icons/player-stop.svg": "icons/player-stop.svg",
|
1638
1923
|
"icons/player-stop.svg.gz": "icons/player-stop.svg.gz",
|
1924
|
+
"icons/player-track-next.svg": "icons/player-track-next.svg",
|
1639
1925
|
"icons/player-track-next.svg.gz": "icons/player-track-next.svg.gz",
|
1926
|
+
"icons/player-track-prev.svg": "icons/player-track-prev.svg",
|
1640
1927
|
"icons/player-track-prev.svg.gz": "icons/player-track-prev.svg.gz",
|
1928
|
+
"icons/playlist.svg": "icons/playlist.svg",
|
1641
1929
|
"icons/playlist.svg.gz": "icons/playlist.svg.gz",
|
1930
|
+
"icons/plug.svg": "icons/plug.svg",
|
1642
1931
|
"icons/plug.svg.gz": "icons/plug.svg.gz",
|
1932
|
+
"icons/plus.svg": "icons/plus.svg",
|
1643
1933
|
"icons/plus.svg.gz": "icons/plus.svg.gz",
|
1934
|
+
"icons/point.svg": "icons/point.svg",
|
1644
1935
|
"icons/point.svg.gz": "icons/point.svg.gz",
|
1936
|
+
"icons/pokeball.svg": "icons/pokeball.svg",
|
1645
1937
|
"icons/pokeball.svg.gz": "icons/pokeball.svg.gz",
|
1938
|
+
"icons/polaroid.svg": "icons/polaroid.svg",
|
1646
1939
|
"icons/polaroid.svg.gz": "icons/polaroid.svg.gz",
|
1940
|
+
"icons/pool.svg": "icons/pool.svg",
|
1647
1941
|
"icons/pool.svg.gz": "icons/pool.svg.gz",
|
1942
|
+
"icons/power.svg": "icons/power.svg",
|
1648
1943
|
"icons/power.svg.gz": "icons/power.svg.gz",
|
1944
|
+
"icons/pray.svg": "icons/pray.svg",
|
1649
1945
|
"icons/pray.svg.gz": "icons/pray.svg.gz",
|
1946
|
+
"icons/presentation-analytics.svg": "icons/presentation-analytics.svg",
|
1650
1947
|
"icons/presentation-analytics.svg.gz": "icons/presentation-analytics.svg.gz",
|
1948
|
+
"icons/presentation.svg": "icons/presentation.svg",
|
1651
1949
|
"icons/presentation.svg.gz": "icons/presentation.svg.gz",
|
1950
|
+
"icons/printer.svg": "icons/printer.svg",
|
1652
1951
|
"icons/printer.svg.gz": "icons/printer.svg.gz",
|
1952
|
+
"icons/prompt.svg": "icons/prompt.svg",
|
1653
1953
|
"icons/prompt.svg.gz": "icons/prompt.svg.gz",
|
1954
|
+
"icons/propeller.svg": "icons/propeller.svg",
|
1654
1955
|
"icons/propeller.svg.gz": "icons/propeller.svg.gz",
|
1956
|
+
"icons/puzzle.svg": "icons/puzzle.svg",
|
1655
1957
|
"icons/puzzle.svg.gz": "icons/puzzle.svg.gz",
|
1958
|
+
"icons/pyramid.svg": "icons/pyramid.svg",
|
1656
1959
|
"icons/pyramid.svg.gz": "icons/pyramid.svg.gz",
|
1960
|
+
"icons/qrcode.svg": "icons/qrcode.svg",
|
1657
1961
|
"icons/qrcode.svg.gz": "icons/qrcode.svg.gz",
|
1962
|
+
"icons/question-mark.svg": "icons/question-mark.svg",
|
1658
1963
|
"icons/question-mark.svg.gz": "icons/question-mark.svg.gz",
|
1964
|
+
"icons/radio.svg": "icons/radio.svg",
|
1965
|
+
"icons/radio.svg.gz": "icons/radio.svg.gz",
|
1966
|
+
"icons/radioactive.svg": "icons/radioactive.svg",
|
1659
1967
|
"icons/radioactive.svg.gz": "icons/radioactive.svg.gz",
|
1968
|
+
"icons/radius-bottom-left.svg": "icons/radius-bottom-left.svg",
|
1660
1969
|
"icons/radius-bottom-left.svg.gz": "icons/radius-bottom-left.svg.gz",
|
1970
|
+
"icons/radius-bottom-right.svg": "icons/radius-bottom-right.svg",
|
1661
1971
|
"icons/radius-bottom-right.svg.gz": "icons/radius-bottom-right.svg.gz",
|
1972
|
+
"icons/radius-top-left.svg": "icons/radius-top-left.svg",
|
1662
1973
|
"icons/radius-top-left.svg.gz": "icons/radius-top-left.svg.gz",
|
1974
|
+
"icons/radius-top-right.svg": "icons/radius-top-right.svg",
|
1663
1975
|
"icons/radius-top-right.svg.gz": "icons/radius-top-right.svg.gz",
|
1976
|
+
"icons/rainbow.svg": "icons/rainbow.svg",
|
1664
1977
|
"icons/rainbow.svg.gz": "icons/rainbow.svg.gz",
|
1978
|
+
"icons/receipt-2.svg": "icons/receipt-2.svg",
|
1665
1979
|
"icons/receipt-2.svg.gz": "icons/receipt-2.svg.gz",
|
1980
|
+
"icons/receipt-off.svg": "icons/receipt-off.svg",
|
1666
1981
|
"icons/receipt-off.svg.gz": "icons/receipt-off.svg.gz",
|
1982
|
+
"icons/receipt-refund.svg": "icons/receipt-refund.svg",
|
1667
1983
|
"icons/receipt-refund.svg.gz": "icons/receipt-refund.svg.gz",
|
1984
|
+
"icons/receipt-tax.svg": "icons/receipt-tax.svg",
|
1668
1985
|
"icons/receipt-tax.svg.gz": "icons/receipt-tax.svg.gz",
|
1986
|
+
"icons/receipt.svg": "icons/receipt.svg",
|
1669
1987
|
"icons/receipt.svg.gz": "icons/receipt.svg.gz",
|
1988
|
+
"icons/recharging.svg": "icons/recharging.svg",
|
1670
1989
|
"icons/recharging.svg.gz": "icons/recharging.svg.gz",
|
1990
|
+
"icons/record-mail.svg": "icons/record-mail.svg",
|
1671
1991
|
"icons/record-mail.svg.gz": "icons/record-mail.svg.gz",
|
1992
|
+
"icons/rectangle-vertical.svg": "icons/rectangle-vertical.svg",
|
1672
1993
|
"icons/rectangle-vertical.svg.gz": "icons/rectangle-vertical.svg.gz",
|
1994
|
+
"icons/rectangle.svg": "icons/rectangle.svg",
|
1673
1995
|
"icons/rectangle.svg.gz": "icons/rectangle.svg.gz",
|
1996
|
+
"icons/recycle.svg": "icons/recycle.svg",
|
1674
1997
|
"icons/recycle.svg.gz": "icons/recycle.svg.gz",
|
1998
|
+
"icons/refresh-alert.svg": "icons/refresh-alert.svg",
|
1675
1999
|
"icons/refresh-alert.svg.gz": "icons/refresh-alert.svg.gz",
|
2000
|
+
"icons/refresh.svg": "icons/refresh.svg",
|
1676
2001
|
"icons/refresh.svg.gz": "icons/refresh.svg.gz",
|
2002
|
+
"icons/registered.svg": "icons/registered.svg",
|
1677
2003
|
"icons/registered.svg.gz": "icons/registered.svg.gz",
|
2004
|
+
"icons/relation-many-to-many.svg": "icons/relation-many-to-many.svg",
|
1678
2005
|
"icons/relation-many-to-many.svg.gz": "icons/relation-many-to-many.svg.gz",
|
2006
|
+
"icons/relation-one-to-many.svg": "icons/relation-one-to-many.svg",
|
1679
2007
|
"icons/relation-one-to-many.svg.gz": "icons/relation-one-to-many.svg.gz",
|
2008
|
+
"icons/relation-one-to-one.svg": "icons/relation-one-to-one.svg",
|
1680
2009
|
"icons/relation-one-to-one.svg.gz": "icons/relation-one-to-one.svg.gz",
|
2010
|
+
"icons/repeat-once.svg": "icons/repeat-once.svg",
|
1681
2011
|
"icons/repeat-once.svg.gz": "icons/repeat-once.svg.gz",
|
2012
|
+
"icons/repeat.svg": "icons/repeat.svg",
|
1682
2013
|
"icons/repeat.svg.gz": "icons/repeat.svg.gz",
|
2014
|
+
"icons/replace.svg": "icons/replace.svg",
|
1683
2015
|
"icons/replace.svg.gz": "icons/replace.svg.gz",
|
2016
|
+
"icons/report-analytics.svg": "icons/report-analytics.svg",
|
1684
2017
|
"icons/report-analytics.svg.gz": "icons/report-analytics.svg.gz",
|
2018
|
+
"icons/report-medical.svg": "icons/report-medical.svg",
|
1685
2019
|
"icons/report-medical.svg.gz": "icons/report-medical.svg.gz",
|
2020
|
+
"icons/report-money.svg": "icons/report-money.svg",
|
1686
2021
|
"icons/report-money.svg.gz": "icons/report-money.svg.gz",
|
2022
|
+
"icons/report.svg": "icons/report.svg",
|
1687
2023
|
"icons/report.svg.gz": "icons/report.svg.gz",
|
2024
|
+
"icons/resize.svg": "icons/resize.svg",
|
1688
2025
|
"icons/resize.svg.gz": "icons/resize.svg.gz",
|
2026
|
+
"icons/ripple.svg": "icons/ripple.svg",
|
1689
2027
|
"icons/ripple.svg.gz": "icons/ripple.svg.gz",
|
2028
|
+
"icons/road-sign.svg": "icons/road-sign.svg",
|
1690
2029
|
"icons/road-sign.svg.gz": "icons/road-sign.svg.gz",
|
2030
|
+
"icons/rocket.svg": "icons/rocket.svg",
|
1691
2031
|
"icons/rocket.svg.gz": "icons/rocket.svg.gz",
|
2032
|
+
"icons/rotate-2.svg": "icons/rotate-2.svg",
|
1692
2033
|
"icons/rotate-2.svg.gz": "icons/rotate-2.svg.gz",
|
2034
|
+
"icons/rotate-clockwise-2.svg": "icons/rotate-clockwise-2.svg",
|
1693
2035
|
"icons/rotate-clockwise-2.svg.gz": "icons/rotate-clockwise-2.svg.gz",
|
2036
|
+
"icons/rotate-clockwise.svg": "icons/rotate-clockwise.svg",
|
1694
2037
|
"icons/rotate-clockwise.svg.gz": "icons/rotate-clockwise.svg.gz",
|
2038
|
+
"icons/rotate-rectangle.svg": "icons/rotate-rectangle.svg",
|
1695
2039
|
"icons/rotate-rectangle.svg.gz": "icons/rotate-rectangle.svg.gz",
|
2040
|
+
"icons/rotate.svg": "icons/rotate.svg",
|
1696
2041
|
"icons/rotate.svg.gz": "icons/rotate.svg.gz",
|
2042
|
+
"icons/route.svg": "icons/route.svg",
|
1697
2043
|
"icons/route.svg.gz": "icons/route.svg.gz",
|
2044
|
+
"icons/router.svg": "icons/router.svg",
|
1698
2045
|
"icons/router.svg.gz": "icons/router.svg.gz",
|
2046
|
+
"icons/row-insert-bottom.svg": "icons/row-insert-bottom.svg",
|
1699
2047
|
"icons/row-insert-bottom.svg.gz": "icons/row-insert-bottom.svg.gz",
|
2048
|
+
"icons/row-insert-top.svg": "icons/row-insert-top.svg",
|
1700
2049
|
"icons/row-insert-top.svg.gz": "icons/row-insert-top.svg.gz",
|
2050
|
+
"icons/rss.svg": "icons/rss.svg",
|
1701
2051
|
"icons/rss.svg.gz": "icons/rss.svg.gz",
|
2052
|
+
"icons/ruler-2.svg": "icons/ruler-2.svg",
|
1702
2053
|
"icons/ruler-2.svg.gz": "icons/ruler-2.svg.gz",
|
2054
|
+
"icons/ruler.svg": "icons/ruler.svg",
|
1703
2055
|
"icons/ruler.svg.gz": "icons/ruler.svg.gz",
|
2056
|
+
"icons/run.svg": "icons/run.svg",
|
1704
2057
|
"icons/run.svg.gz": "icons/run.svg.gz",
|
2058
|
+
"icons/sailboat.svg": "icons/sailboat.svg",
|
1705
2059
|
"icons/sailboat.svg.gz": "icons/sailboat.svg.gz",
|
2060
|
+
"icons/salt.svg": "icons/salt.svg",
|
2061
|
+
"icons/salt.svg.gz": "icons/salt.svg.gz",
|
2062
|
+
"icons/satellite.svg": "icons/satellite.svg",
|
1706
2063
|
"icons/satellite.svg.gz": "icons/satellite.svg.gz",
|
2064
|
+
"icons/sausage.svg": "icons/sausage.svg",
|
2065
|
+
"icons/sausage.svg.gz": "icons/sausage.svg.gz",
|
2066
|
+
"icons/scale.svg": "icons/scale.svg",
|
1707
2067
|
"icons/scale.svg.gz": "icons/scale.svg.gz",
|
2068
|
+
"icons/scan.svg": "icons/scan.svg",
|
1708
2069
|
"icons/scan.svg.gz": "icons/scan.svg.gz",
|
2070
|
+
"icons/school.svg": "icons/school.svg",
|
1709
2071
|
"icons/school.svg.gz": "icons/school.svg.gz",
|
2072
|
+
"icons/scissors.svg": "icons/scissors.svg",
|
1710
2073
|
"icons/scissors.svg.gz": "icons/scissors.svg.gz",
|
2074
|
+
"icons/scooter-electric.svg": "icons/scooter-electric.svg",
|
1711
2075
|
"icons/scooter-electric.svg.gz": "icons/scooter-electric.svg.gz",
|
2076
|
+
"icons/scooter.svg": "icons/scooter.svg",
|
1712
2077
|
"icons/scooter.svg.gz": "icons/scooter.svg.gz",
|
2078
|
+
"icons/screen-share-off.svg": "icons/screen-share-off.svg",
|
1713
2079
|
"icons/screen-share-off.svg.gz": "icons/screen-share-off.svg.gz",
|
2080
|
+
"icons/screen-share.svg": "icons/screen-share.svg",
|
1714
2081
|
"icons/screen-share.svg.gz": "icons/screen-share.svg.gz",
|
2082
|
+
"icons/scuba-mask.svg": "icons/scuba-mask.svg",
|
1715
2083
|
"icons/scuba-mask.svg.gz": "icons/scuba-mask.svg.gz",
|
2084
|
+
"icons/search.svg": "icons/search.svg",
|
1716
2085
|
"icons/search.svg.gz": "icons/search.svg.gz",
|
2086
|
+
"icons/section.svg": "icons/section.svg",
|
1717
2087
|
"icons/section.svg.gz": "icons/section.svg.gz",
|
2088
|
+
"icons/seeding.svg": "icons/seeding.svg",
|
1718
2089
|
"icons/seeding.svg.gz": "icons/seeding.svg.gz",
|
2090
|
+
"icons/select.svg": "icons/select.svg",
|
1719
2091
|
"icons/select.svg.gz": "icons/select.svg.gz",
|
2092
|
+
"icons/selector.svg": "icons/selector.svg",
|
1720
2093
|
"icons/selector.svg.gz": "icons/selector.svg.gz",
|
2094
|
+
"icons/send.svg": "icons/send.svg",
|
1721
2095
|
"icons/send.svg.gz": "icons/send.svg.gz",
|
2096
|
+
"icons/separator-horizontal.svg": "icons/separator-horizontal.svg",
|
1722
2097
|
"icons/separator-horizontal.svg.gz": "icons/separator-horizontal.svg.gz",
|
2098
|
+
"icons/separator-vertical.svg": "icons/separator-vertical.svg",
|
1723
2099
|
"icons/separator-vertical.svg.gz": "icons/separator-vertical.svg.gz",
|
2100
|
+
"icons/separator.svg": "icons/separator.svg",
|
1724
2101
|
"icons/separator.svg.gz": "icons/separator.svg.gz",
|
2102
|
+
"icons/server.svg": "icons/server.svg",
|
1725
2103
|
"icons/server.svg.gz": "icons/server.svg.gz",
|
2104
|
+
"icons/servicemark.svg": "icons/servicemark.svg",
|
1726
2105
|
"icons/servicemark.svg.gz": "icons/servicemark.svg.gz",
|
2106
|
+
"icons/settings-automation.svg": "icons/settings-automation.svg",
|
1727
2107
|
"icons/settings-automation.svg.gz": "icons/settings-automation.svg.gz",
|
2108
|
+
"icons/settings.svg": "icons/settings.svg",
|
1728
2109
|
"icons/settings.svg.gz": "icons/settings.svg.gz",
|
2110
|
+
"icons/shadow-off.svg": "icons/shadow-off.svg",
|
1729
2111
|
"icons/shadow-off.svg.gz": "icons/shadow-off.svg.gz",
|
2112
|
+
"icons/shadow.svg": "icons/shadow.svg",
|
1730
2113
|
"icons/shadow.svg.gz": "icons/shadow.svg.gz",
|
2114
|
+
"icons/shape-2.svg": "icons/shape-2.svg",
|
1731
2115
|
"icons/shape-2.svg.gz": "icons/shape-2.svg.gz",
|
2116
|
+
"icons/shape-3.svg": "icons/shape-3.svg",
|
1732
2117
|
"icons/shape-3.svg.gz": "icons/shape-3.svg.gz",
|
2118
|
+
"icons/shape.svg": "icons/shape.svg",
|
1733
2119
|
"icons/shape.svg.gz": "icons/shape.svg.gz",
|
2120
|
+
"icons/share.svg": "icons/share.svg",
|
1734
2121
|
"icons/share.svg.gz": "icons/share.svg.gz",
|
2122
|
+
"icons/shield-check.svg": "icons/shield-check.svg",
|
1735
2123
|
"icons/shield-check.svg.gz": "icons/shield-check.svg.gz",
|
2124
|
+
"icons/shield-lock.svg": "icons/shield-lock.svg",
|
1736
2125
|
"icons/shield-lock.svg.gz": "icons/shield-lock.svg.gz",
|
2126
|
+
"icons/shield-off.svg": "icons/shield-off.svg",
|
1737
2127
|
"icons/shield-off.svg.gz": "icons/shield-off.svg.gz",
|
2128
|
+
"icons/shield-x.svg": "icons/shield-x.svg",
|
1738
2129
|
"icons/shield-x.svg.gz": "icons/shield-x.svg.gz",
|
2130
|
+
"icons/shield.svg": "icons/shield.svg",
|
1739
2131
|
"icons/shield.svg.gz": "icons/shield.svg.gz",
|
2132
|
+
"icons/ship.svg": "icons/ship.svg",
|
1740
2133
|
"icons/ship.svg.gz": "icons/ship.svg.gz",
|
2134
|
+
"icons/shirt.svg": "icons/shirt.svg",
|
1741
2135
|
"icons/shirt.svg.gz": "icons/shirt.svg.gz",
|
2136
|
+
"icons/shopping-cart-discount.svg": "icons/shopping-cart-discount.svg",
|
1742
2137
|
"icons/shopping-cart-discount.svg.gz": "icons/shopping-cart-discount.svg.gz",
|
2138
|
+
"icons/shopping-cart-off.svg": "icons/shopping-cart-off.svg",
|
1743
2139
|
"icons/shopping-cart-off.svg.gz": "icons/shopping-cart-off.svg.gz",
|
2140
|
+
"icons/shopping-cart-plus.svg": "icons/shopping-cart-plus.svg",
|
1744
2141
|
"icons/shopping-cart-plus.svg.gz": "icons/shopping-cart-plus.svg.gz",
|
2142
|
+
"icons/shopping-cart-x.svg": "icons/shopping-cart-x.svg",
|
1745
2143
|
"icons/shopping-cart-x.svg.gz": "icons/shopping-cart-x.svg.gz",
|
2144
|
+
"icons/shopping-cart.svg": "icons/shopping-cart.svg",
|
1746
2145
|
"icons/shopping-cart.svg.gz": "icons/shopping-cart.svg.gz",
|
2146
|
+
"icons/shredder.svg": "icons/shredder.svg",
|
1747
2147
|
"icons/shredder.svg.gz": "icons/shredder.svg.gz",
|
2148
|
+
"icons/signature.svg": "icons/signature.svg",
|
1748
2149
|
"icons/signature.svg.gz": "icons/signature.svg.gz",
|
2150
|
+
"icons/sitemap.svg": "icons/sitemap.svg",
|
1749
2151
|
"icons/sitemap.svg.gz": "icons/sitemap.svg.gz",
|
2152
|
+
"icons/skateboard.svg": "icons/skateboard.svg",
|
1750
2153
|
"icons/skateboard.svg.gz": "icons/skateboard.svg.gz",
|
2154
|
+
"icons/slice.svg": "icons/slice.svg",
|
1751
2155
|
"icons/slice.svg.gz": "icons/slice.svg.gz",
|
2156
|
+
"icons/slideshow.svg": "icons/slideshow.svg",
|
1752
2157
|
"icons/slideshow.svg.gz": "icons/slideshow.svg.gz",
|
2158
|
+
"icons/smart-home.svg": "icons/smart-home.svg",
|
1753
2159
|
"icons/smart-home.svg.gz": "icons/smart-home.svg.gz",
|
2160
|
+
"icons/smoking-no.svg": "icons/smoking-no.svg",
|
1754
2161
|
"icons/smoking-no.svg.gz": "icons/smoking-no.svg.gz",
|
2162
|
+
"icons/smoking.svg": "icons/smoking.svg",
|
1755
2163
|
"icons/smoking.svg.gz": "icons/smoking.svg.gz",
|
2164
|
+
"icons/snowflake.svg": "icons/snowflake.svg",
|
1756
2165
|
"icons/snowflake.svg.gz": "icons/snowflake.svg.gz",
|
2166
|
+
"icons/soccer-field.svg": "icons/soccer-field.svg",
|
1757
2167
|
"icons/soccer-field.svg.gz": "icons/soccer-field.svg.gz",
|
2168
|
+
"icons/social.svg": "icons/social.svg",
|
1758
2169
|
"icons/social.svg.gz": "icons/social.svg.gz",
|
2170
|
+
"icons/sock.svg": "icons/sock.svg",
|
1759
2171
|
"icons/sock.svg.gz": "icons/sock.svg.gz",
|
2172
|
+
"icons/sort-ascending-2.svg": "icons/sort-ascending-2.svg",
|
1760
2173
|
"icons/sort-ascending-2.svg.gz": "icons/sort-ascending-2.svg.gz",
|
2174
|
+
"icons/sort-ascending-letters.svg": "icons/sort-ascending-letters.svg",
|
2175
|
+
"icons/sort-ascending-letters.svg.gz": "icons/sort-ascending-letters.svg.gz",
|
2176
|
+
"icons/sort-ascending-numbers.svg": "icons/sort-ascending-numbers.svg",
|
2177
|
+
"icons/sort-ascending-numbers.svg.gz": "icons/sort-ascending-numbers.svg.gz",
|
2178
|
+
"icons/sort-ascending.svg": "icons/sort-ascending.svg",
|
1761
2179
|
"icons/sort-ascending.svg.gz": "icons/sort-ascending.svg.gz",
|
2180
|
+
"icons/sort-descending-2.svg": "icons/sort-descending-2.svg",
|
1762
2181
|
"icons/sort-descending-2.svg.gz": "icons/sort-descending-2.svg.gz",
|
2182
|
+
"icons/sort-descending-letters.svg": "icons/sort-descending-letters.svg",
|
2183
|
+
"icons/sort-descending-letters.svg.gz": "icons/sort-descending-letters.svg.gz",
|
2184
|
+
"icons/sort-descending-numbers.svg": "icons/sort-descending-numbers.svg",
|
2185
|
+
"icons/sort-descending-numbers.svg.gz": "icons/sort-descending-numbers.svg.gz",
|
2186
|
+
"icons/sort-descending.svg": "icons/sort-descending.svg",
|
1763
2187
|
"icons/sort-descending.svg.gz": "icons/sort-descending.svg.gz",
|
2188
|
+
"icons/soup.svg": "icons/soup.svg",
|
2189
|
+
"icons/soup.svg.gz": "icons/soup.svg.gz",
|
2190
|
+
"icons/space.svg": "icons/space.svg",
|
1764
2191
|
"icons/space.svg.gz": "icons/space.svg.gz",
|
2192
|
+
"icons/speakerphone.svg": "icons/speakerphone.svg",
|
1765
2193
|
"icons/speakerphone.svg.gz": "icons/speakerphone.svg.gz",
|
2194
|
+
"icons/speedboat.svg": "icons/speedboat.svg",
|
1766
2195
|
"icons/speedboat.svg.gz": "icons/speedboat.svg.gz",
|
2196
|
+
"icons/sport-billard.svg": "icons/sport-billard.svg",
|
1767
2197
|
"icons/sport-billard.svg.gz": "icons/sport-billard.svg.gz",
|
2198
|
+
"icons/square-0.svg": "icons/square-0.svg",
|
1768
2199
|
"icons/square-0.svg.gz": "icons/square-0.svg.gz",
|
2200
|
+
"icons/square-1.svg": "icons/square-1.svg",
|
1769
2201
|
"icons/square-1.svg.gz": "icons/square-1.svg.gz",
|
2202
|
+
"icons/square-2.svg": "icons/square-2.svg",
|
1770
2203
|
"icons/square-2.svg.gz": "icons/square-2.svg.gz",
|
2204
|
+
"icons/square-3.svg": "icons/square-3.svg",
|
1771
2205
|
"icons/square-3.svg.gz": "icons/square-3.svg.gz",
|
2206
|
+
"icons/square-4.svg": "icons/square-4.svg",
|
1772
2207
|
"icons/square-4.svg.gz": "icons/square-4.svg.gz",
|
2208
|
+
"icons/square-5.svg": "icons/square-5.svg",
|
1773
2209
|
"icons/square-5.svg.gz": "icons/square-5.svg.gz",
|
2210
|
+
"icons/square-6.svg": "icons/square-6.svg",
|
1774
2211
|
"icons/square-6.svg.gz": "icons/square-6.svg.gz",
|
2212
|
+
"icons/square-7.svg": "icons/square-7.svg",
|
1775
2213
|
"icons/square-7.svg.gz": "icons/square-7.svg.gz",
|
2214
|
+
"icons/square-8.svg": "icons/square-8.svg",
|
1776
2215
|
"icons/square-8.svg.gz": "icons/square-8.svg.gz",
|
2216
|
+
"icons/square-9.svg": "icons/square-9.svg",
|
1777
2217
|
"icons/square-9.svg.gz": "icons/square-9.svg.gz",
|
2218
|
+
"icons/square-check.svg": "icons/square-check.svg",
|
1778
2219
|
"icons/square-check.svg.gz": "icons/square-check.svg.gz",
|
2220
|
+
"icons/square-dot.svg": "icons/square-dot.svg",
|
1779
2221
|
"icons/square-dot.svg.gz": "icons/square-dot.svg.gz",
|
2222
|
+
"icons/square-forbid-2.svg": "icons/square-forbid-2.svg",
|
1780
2223
|
"icons/square-forbid-2.svg.gz": "icons/square-forbid-2.svg.gz",
|
2224
|
+
"icons/square-forbid.svg": "icons/square-forbid.svg",
|
1781
2225
|
"icons/square-forbid.svg.gz": "icons/square-forbid.svg.gz",
|
2226
|
+
"icons/square-minus.svg": "icons/square-minus.svg",
|
1782
2227
|
"icons/square-minus.svg.gz": "icons/square-minus.svg.gz",
|
2228
|
+
"icons/square-off.svg": "icons/square-off.svg",
|
1783
2229
|
"icons/square-off.svg.gz": "icons/square-off.svg.gz",
|
2230
|
+
"icons/square-plus.svg": "icons/square-plus.svg",
|
1784
2231
|
"icons/square-plus.svg.gz": "icons/square-plus.svg.gz",
|
2232
|
+
"icons/square-root-2.svg": "icons/square-root-2.svg",
|
1785
2233
|
"icons/square-root-2.svg.gz": "icons/square-root-2.svg.gz",
|
2234
|
+
"icons/square-root.svg": "icons/square-root.svg",
|
1786
2235
|
"icons/square-root.svg.gz": "icons/square-root.svg.gz",
|
2236
|
+
"icons/square-rotated-off.svg": "icons/square-rotated-off.svg",
|
1787
2237
|
"icons/square-rotated-off.svg.gz": "icons/square-rotated-off.svg.gz",
|
2238
|
+
"icons/square-rotated.svg": "icons/square-rotated.svg",
|
1788
2239
|
"icons/square-rotated.svg.gz": "icons/square-rotated.svg.gz",
|
2240
|
+
"icons/square-toggle-horizontal.svg": "icons/square-toggle-horizontal.svg",
|
1789
2241
|
"icons/square-toggle-horizontal.svg.gz": "icons/square-toggle-horizontal.svg.gz",
|
2242
|
+
"icons/square-toggle.svg": "icons/square-toggle.svg",
|
1790
2243
|
"icons/square-toggle.svg.gz": "icons/square-toggle.svg.gz",
|
2244
|
+
"icons/square-x.svg": "icons/square-x.svg",
|
1791
2245
|
"icons/square-x.svg.gz": "icons/square-x.svg.gz",
|
2246
|
+
"icons/square.svg": "icons/square.svg",
|
1792
2247
|
"icons/square.svg.gz": "icons/square.svg.gz",
|
2248
|
+
"icons/squares-diagonal.svg": "icons/squares-diagonal.svg",
|
1793
2249
|
"icons/squares-diagonal.svg.gz": "icons/squares-diagonal.svg.gz",
|
2250
|
+
"icons/squares-filled.svg": "icons/squares-filled.svg",
|
1794
2251
|
"icons/squares-filled.svg.gz": "icons/squares-filled.svg.gz",
|
2252
|
+
"icons/stack-2.svg": "icons/stack-2.svg",
|
1795
2253
|
"icons/stack-2.svg.gz": "icons/stack-2.svg.gz",
|
2254
|
+
"icons/stack.svg": "icons/stack.svg",
|
1796
2255
|
"icons/stack.svg.gz": "icons/stack.svg.gz",
|
2256
|
+
"icons/stairs-down.svg": "icons/stairs-down.svg",
|
1797
2257
|
"icons/stairs-down.svg.gz": "icons/stairs-down.svg.gz",
|
2258
|
+
"icons/stairs-up.svg": "icons/stairs-up.svg",
|
1798
2259
|
"icons/stairs-up.svg.gz": "icons/stairs-up.svg.gz",
|
2260
|
+
"icons/stairs.svg": "icons/stairs.svg",
|
1799
2261
|
"icons/stairs.svg.gz": "icons/stairs.svg.gz",
|
2262
|
+
"icons/star-half.svg": "icons/star-half.svg",
|
1800
2263
|
"icons/star-half.svg.gz": "icons/star-half.svg.gz",
|
2264
|
+
"icons/star-off.svg": "icons/star-off.svg",
|
1801
2265
|
"icons/star-off.svg.gz": "icons/star-off.svg.gz",
|
2266
|
+
"icons/star.svg": "icons/star.svg",
|
1802
2267
|
"icons/star.svg.gz": "icons/star.svg.gz",
|
2268
|
+
"icons/stars.svg": "icons/stars.svg",
|
1803
2269
|
"icons/stars.svg.gz": "icons/stars.svg.gz",
|
2270
|
+
"icons/steering-wheel.svg": "icons/steering-wheel.svg",
|
1804
2271
|
"icons/steering-wheel.svg.gz": "icons/steering-wheel.svg.gz",
|
2272
|
+
"icons/step-into.svg": "icons/step-into.svg",
|
1805
2273
|
"icons/step-into.svg.gz": "icons/step-into.svg.gz",
|
2274
|
+
"icons/step-out.svg": "icons/step-out.svg",
|
1806
2275
|
"icons/step-out.svg.gz": "icons/step-out.svg.gz",
|
2276
|
+
"icons/stethoscope.svg": "icons/stethoscope.svg",
|
1807
2277
|
"icons/stethoscope.svg.gz": "icons/stethoscope.svg.gz",
|
2278
|
+
"icons/sticker.svg": "icons/sticker.svg",
|
1808
2279
|
"icons/sticker.svg.gz": "icons/sticker.svg.gz",
|
2280
|
+
"icons/strikethrough.svg": "icons/strikethrough.svg",
|
1809
2281
|
"icons/strikethrough.svg.gz": "icons/strikethrough.svg.gz",
|
2282
|
+
"icons/submarine.svg": "icons/submarine.svg",
|
1810
2283
|
"icons/submarine.svg.gz": "icons/submarine.svg.gz",
|
2284
|
+
"icons/subscript.svg": "icons/subscript.svg",
|
1811
2285
|
"icons/subscript.svg.gz": "icons/subscript.svg.gz",
|
2286
|
+
"icons/subtask.svg": "icons/subtask.svg",
|
1812
2287
|
"icons/subtask.svg.gz": "icons/subtask.svg.gz",
|
2288
|
+
"icons/sum.svg": "icons/sum.svg",
|
1813
2289
|
"icons/sum.svg.gz": "icons/sum.svg.gz",
|
2290
|
+
"icons/sun-off.svg": "icons/sun-off.svg",
|
1814
2291
|
"icons/sun-off.svg.gz": "icons/sun-off.svg.gz",
|
2292
|
+
"icons/sun.svg": "icons/sun.svg",
|
1815
2293
|
"icons/sun.svg.gz": "icons/sun.svg.gz",
|
2294
|
+
"icons/sunrise.svg": "icons/sunrise.svg",
|
2295
|
+
"icons/sunrise.svg.gz": "icons/sunrise.svg.gz",
|
2296
|
+
"icons/sunset.svg": "icons/sunset.svg",
|
1816
2297
|
"icons/sunset.svg.gz": "icons/sunset.svg.gz",
|
1817
|
-
"icons/
|
2298
|
+
"icons/superscript.svg": "icons/superscript.svg",
|
1818
2299
|
"icons/superscript.svg.gz": "icons/superscript.svg.gz",
|
2300
|
+
"icons/swimming.svg": "icons/swimming.svg",
|
1819
2301
|
"icons/swimming.svg.gz": "icons/swimming.svg.gz",
|
2302
|
+
"icons/switch-2.svg": "icons/switch-2.svg",
|
1820
2303
|
"icons/switch-2.svg.gz": "icons/switch-2.svg.gz",
|
2304
|
+
"icons/switch-3.svg": "icons/switch-3.svg",
|
1821
2305
|
"icons/switch-3.svg.gz": "icons/switch-3.svg.gz",
|
2306
|
+
"icons/switch-horizontal.svg": "icons/switch-horizontal.svg",
|
1822
2307
|
"icons/switch-horizontal.svg.gz": "icons/switch-horizontal.svg.gz",
|
2308
|
+
"icons/switch-vertical.svg": "icons/switch-vertical.svg",
|
1823
2309
|
"icons/switch-vertical.svg.gz": "icons/switch-vertical.svg.gz",
|
2310
|
+
"icons/switch.svg": "icons/switch.svg",
|
1824
2311
|
"icons/switch.svg.gz": "icons/switch.svg.gz",
|
2312
|
+
"icons/table-export.svg": "icons/table-export.svg",
|
1825
2313
|
"icons/table-export.svg.gz": "icons/table-export.svg.gz",
|
2314
|
+
"icons/table-import.svg": "icons/table-import.svg",
|
1826
2315
|
"icons/table-import.svg.gz": "icons/table-import.svg.gz",
|
2316
|
+
"icons/table-off.svg": "icons/table-off.svg",
|
1827
2317
|
"icons/table-off.svg.gz": "icons/table-off.svg.gz",
|
2318
|
+
"icons/table.svg": "icons/table.svg",
|
1828
2319
|
"icons/table.svg.gz": "icons/table.svg.gz",
|
2320
|
+
"icons/tag.svg": "icons/tag.svg",
|
1829
2321
|
"icons/tag.svg.gz": "icons/tag.svg.gz",
|
2322
|
+
"icons/tallymark-1.svg": "icons/tallymark-1.svg",
|
1830
2323
|
"icons/tallymark-1.svg.gz": "icons/tallymark-1.svg.gz",
|
2324
|
+
"icons/tallymark-2.svg": "icons/tallymark-2.svg",
|
1831
2325
|
"icons/tallymark-2.svg.gz": "icons/tallymark-2.svg.gz",
|
2326
|
+
"icons/tallymark-3.svg": "icons/tallymark-3.svg",
|
1832
2327
|
"icons/tallymark-3.svg.gz": "icons/tallymark-3.svg.gz",
|
2328
|
+
"icons/tallymark-4.svg": "icons/tallymark-4.svg",
|
1833
2329
|
"icons/tallymark-4.svg.gz": "icons/tallymark-4.svg.gz",
|
2330
|
+
"icons/tallymarks.svg": "icons/tallymarks.svg",
|
1834
2331
|
"icons/tallymarks.svg.gz": "icons/tallymarks.svg.gz",
|
2332
|
+
"icons/tank.svg": "icons/tank.svg",
|
1835
2333
|
"icons/tank.svg.gz": "icons/tank.svg.gz",
|
2334
|
+
"icons/target.svg": "icons/target.svg",
|
1836
2335
|
"icons/target.svg.gz": "icons/target.svg.gz",
|
2336
|
+
"icons/temperature-celsius.svg": "icons/temperature-celsius.svg",
|
1837
2337
|
"icons/temperature-celsius.svg.gz": "icons/temperature-celsius.svg.gz",
|
2338
|
+
"icons/temperature-fahrenheit.svg": "icons/temperature-fahrenheit.svg",
|
1838
2339
|
"icons/temperature-fahrenheit.svg.gz": "icons/temperature-fahrenheit.svg.gz",
|
2340
|
+
"icons/temperature-minus.svg": "icons/temperature-minus.svg",
|
1839
2341
|
"icons/temperature-minus.svg.gz": "icons/temperature-minus.svg.gz",
|
2342
|
+
"icons/temperature-plus.svg": "icons/temperature-plus.svg",
|
1840
2343
|
"icons/temperature-plus.svg.gz": "icons/temperature-plus.svg.gz",
|
2344
|
+
"icons/temperature.svg": "icons/temperature.svg",
|
1841
2345
|
"icons/temperature.svg.gz": "icons/temperature.svg.gz",
|
2346
|
+
"icons/template.svg": "icons/template.svg",
|
1842
2347
|
"icons/template.svg.gz": "icons/template.svg.gz",
|
2348
|
+
"icons/tent.svg": "icons/tent.svg",
|
1843
2349
|
"icons/tent.svg.gz": "icons/tent.svg.gz",
|
2350
|
+
"icons/terminal-2.svg": "icons/terminal-2.svg",
|
1844
2351
|
"icons/terminal-2.svg.gz": "icons/terminal-2.svg.gz",
|
2352
|
+
"icons/terminal.svg": "icons/terminal.svg",
|
1845
2353
|
"icons/terminal.svg.gz": "icons/terminal.svg.gz",
|
2354
|
+
"icons/test-pipe.svg": "icons/test-pipe.svg",
|
1846
2355
|
"icons/test-pipe.svg.gz": "icons/test-pipe.svg.gz",
|
2356
|
+
"icons/text-direction-ltr.svg": "icons/text-direction-ltr.svg",
|
1847
2357
|
"icons/text-direction-ltr.svg.gz": "icons/text-direction-ltr.svg.gz",
|
2358
|
+
"icons/text-direction-rtl.svg": "icons/text-direction-rtl.svg",
|
1848
2359
|
"icons/text-direction-rtl.svg.gz": "icons/text-direction-rtl.svg.gz",
|
2360
|
+
"icons/text-wrap-disabled.svg": "icons/text-wrap-disabled.svg",
|
1849
2361
|
"icons/text-wrap-disabled.svg.gz": "icons/text-wrap-disabled.svg.gz",
|
2362
|
+
"icons/text-wrap.svg": "icons/text-wrap.svg",
|
1850
2363
|
"icons/text-wrap.svg.gz": "icons/text-wrap.svg.gz",
|
2364
|
+
"icons/thumb-down.svg": "icons/thumb-down.svg",
|
1851
2365
|
"icons/thumb-down.svg.gz": "icons/thumb-down.svg.gz",
|
2366
|
+
"icons/thumb-up.svg": "icons/thumb-up.svg",
|
1852
2367
|
"icons/thumb-up.svg.gz": "icons/thumb-up.svg.gz",
|
2368
|
+
"icons/ticket.svg": "icons/ticket.svg",
|
1853
2369
|
"icons/ticket.svg.gz": "icons/ticket.svg.gz",
|
2370
|
+
"icons/tilt-shift.svg": "icons/tilt-shift.svg",
|
1854
2371
|
"icons/tilt-shift.svg.gz": "icons/tilt-shift.svg.gz",
|
2372
|
+
"icons/tir.svg": "icons/tir.svg",
|
1855
2373
|
"icons/tir.svg.gz": "icons/tir.svg.gz",
|
2374
|
+
"icons/toggle-left.svg": "icons/toggle-left.svg",
|
1856
2375
|
"icons/toggle-left.svg.gz": "icons/toggle-left.svg.gz",
|
2376
|
+
"icons/toggle-right.svg": "icons/toggle-right.svg",
|
1857
2377
|
"icons/toggle-right.svg.gz": "icons/toggle-right.svg.gz",
|
2378
|
+
"icons/tool.svg": "icons/tool.svg",
|
1858
2379
|
"icons/tool.svg.gz": "icons/tool.svg.gz",
|
2380
|
+
"icons/tools-kitchen-2.svg": "icons/tools-kitchen-2.svg",
|
1859
2381
|
"icons/tools-kitchen-2.svg.gz": "icons/tools-kitchen-2.svg.gz",
|
2382
|
+
"icons/tools-kitchen.svg": "icons/tools-kitchen.svg",
|
1860
2383
|
"icons/tools-kitchen.svg.gz": "icons/tools-kitchen.svg.gz",
|
2384
|
+
"icons/tools.svg": "icons/tools.svg",
|
1861
2385
|
"icons/tools.svg.gz": "icons/tools.svg.gz",
|
2386
|
+
"icons/tornado.svg": "icons/tornado.svg",
|
1862
2387
|
"icons/tornado.svg.gz": "icons/tornado.svg.gz",
|
2388
|
+
"icons/tournament.svg": "icons/tournament.svg",
|
1863
2389
|
"icons/tournament.svg.gz": "icons/tournament.svg.gz",
|
2390
|
+
"icons/track.svg": "icons/track.svg",
|
1864
2391
|
"icons/track.svg.gz": "icons/track.svg.gz",
|
2392
|
+
"icons/tractor.svg": "icons/tractor.svg",
|
1865
2393
|
"icons/tractor.svg.gz": "icons/tractor.svg.gz",
|
2394
|
+
"icons/trademark.svg": "icons/trademark.svg",
|
1866
2395
|
"icons/trademark.svg.gz": "icons/trademark.svg.gz",
|
2396
|
+
"icons/traffic-cone.svg": "icons/traffic-cone.svg",
|
1867
2397
|
"icons/traffic-cone.svg.gz": "icons/traffic-cone.svg.gz",
|
2398
|
+
"icons/traffic-lights.svg": "icons/traffic-lights.svg",
|
1868
2399
|
"icons/traffic-lights.svg.gz": "icons/traffic-lights.svg.gz",
|
2400
|
+
"icons/train.svg": "icons/train.svg",
|
1869
2401
|
"icons/train.svg.gz": "icons/train.svg.gz",
|
2402
|
+
"icons/transfer-in.svg": "icons/transfer-in.svg",
|
2403
|
+
"icons/transfer-in.svg.gz": "icons/transfer-in.svg.gz",
|
2404
|
+
"icons/transfer-out.svg": "icons/transfer-out.svg",
|
2405
|
+
"icons/transfer-out.svg.gz": "icons/transfer-out.svg.gz",
|
2406
|
+
"icons/trash-off.svg": "icons/trash-off.svg",
|
1870
2407
|
"icons/trash-off.svg.gz": "icons/trash-off.svg.gz",
|
2408
|
+
"icons/trash.svg": "icons/trash.svg",
|
1871
2409
|
"icons/trash.svg.gz": "icons/trash.svg.gz",
|
2410
|
+
"icons/tree.svg": "icons/tree.svg",
|
1872
2411
|
"icons/tree.svg.gz": "icons/tree.svg.gz",
|
2412
|
+
"icons/trees.svg": "icons/trees.svg",
|
1873
2413
|
"icons/trees.svg.gz": "icons/trees.svg.gz",
|
2414
|
+
"icons/trending-down-2.svg": "icons/trending-down-2.svg",
|
1874
2415
|
"icons/trending-down-2.svg.gz": "icons/trending-down-2.svg.gz",
|
2416
|
+
"icons/trending-down-3.svg": "icons/trending-down-3.svg",
|
1875
2417
|
"icons/trending-down-3.svg.gz": "icons/trending-down-3.svg.gz",
|
2418
|
+
"icons/trending-down.svg": "icons/trending-down.svg",
|
1876
2419
|
"icons/trending-down.svg.gz": "icons/trending-down.svg.gz",
|
2420
|
+
"icons/trending-up-2.svg": "icons/trending-up-2.svg",
|
1877
2421
|
"icons/trending-up-2.svg.gz": "icons/trending-up-2.svg.gz",
|
2422
|
+
"icons/trending-up-3.svg": "icons/trending-up-3.svg",
|
1878
2423
|
"icons/trending-up-3.svg.gz": "icons/trending-up-3.svg.gz",
|
2424
|
+
"icons/trending-up.svg": "icons/trending-up.svg",
|
1879
2425
|
"icons/trending-up.svg.gz": "icons/trending-up.svg.gz",
|
2426
|
+
"icons/triangle-off.svg": "icons/triangle-off.svg",
|
1880
2427
|
"icons/triangle-off.svg.gz": "icons/triangle-off.svg.gz",
|
2428
|
+
"icons/triangle-square-circle.svg": "icons/triangle-square-circle.svg",
|
1881
2429
|
"icons/triangle-square-circle.svg.gz": "icons/triangle-square-circle.svg.gz",
|
2430
|
+
"icons/triangle.svg": "icons/triangle.svg",
|
1882
2431
|
"icons/triangle.svg.gz": "icons/triangle.svg.gz",
|
2432
|
+
"icons/trident.svg": "icons/trident.svg",
|
1883
2433
|
"icons/trident.svg.gz": "icons/trident.svg.gz",
|
2434
|
+
"icons/trophy.svg": "icons/trophy.svg",
|
1884
2435
|
"icons/trophy.svg.gz": "icons/trophy.svg.gz",
|
2436
|
+
"icons/truck-delivery.svg": "icons/truck-delivery.svg",
|
1885
2437
|
"icons/truck-delivery.svg.gz": "icons/truck-delivery.svg.gz",
|
2438
|
+
"icons/truck-off.svg": "icons/truck-off.svg",
|
1886
2439
|
"icons/truck-off.svg.gz": "icons/truck-off.svg.gz",
|
2440
|
+
"icons/truck-return.svg": "icons/truck-return.svg",
|
1887
2441
|
"icons/truck-return.svg.gz": "icons/truck-return.svg.gz",
|
2442
|
+
"icons/truck.svg": "icons/truck.svg",
|
1888
2443
|
"icons/truck.svg.gz": "icons/truck.svg.gz",
|
2444
|
+
"icons/typography.svg": "icons/typography.svg",
|
1889
2445
|
"icons/typography.svg.gz": "icons/typography.svg.gz",
|
2446
|
+
"icons/umbrella.svg": "icons/umbrella.svg",
|
1890
2447
|
"icons/umbrella.svg.gz": "icons/umbrella.svg.gz",
|
2448
|
+
"icons/underline.svg": "icons/underline.svg",
|
1891
2449
|
"icons/underline.svg.gz": "icons/underline.svg.gz",
|
2450
|
+
"icons/unlink.svg": "icons/unlink.svg",
|
1892
2451
|
"icons/unlink.svg.gz": "icons/unlink.svg.gz",
|
2452
|
+
"icons/upload.svg": "icons/upload.svg",
|
1893
2453
|
"icons/upload.svg.gz": "icons/upload.svg.gz",
|
2454
|
+
"icons/urgent.svg": "icons/urgent.svg",
|
1894
2455
|
"icons/urgent.svg.gz": "icons/urgent.svg.gz",
|
2456
|
+
"icons/user-check.svg": "icons/user-check.svg",
|
1895
2457
|
"icons/user-check.svg.gz": "icons/user-check.svg.gz",
|
2458
|
+
"icons/user-exclamation.svg": "icons/user-exclamation.svg",
|
1896
2459
|
"icons/user-exclamation.svg.gz": "icons/user-exclamation.svg.gz",
|
2460
|
+
"icons/user-minus.svg": "icons/user-minus.svg",
|
1897
2461
|
"icons/user-minus.svg.gz": "icons/user-minus.svg.gz",
|
2462
|
+
"icons/user-off.svg": "icons/user-off.svg",
|
1898
2463
|
"icons/user-off.svg.gz": "icons/user-off.svg.gz",
|
2464
|
+
"icons/user-plus.svg": "icons/user-plus.svg",
|
1899
2465
|
"icons/user-plus.svg.gz": "icons/user-plus.svg.gz",
|
2466
|
+
"icons/user-x.svg": "icons/user-x.svg",
|
1900
2467
|
"icons/user-x.svg.gz": "icons/user-x.svg.gz",
|
2468
|
+
"icons/user.svg": "icons/user.svg",
|
1901
2469
|
"icons/user.svg.gz": "icons/user.svg.gz",
|
2470
|
+
"icons/users.svg": "icons/users.svg",
|
1902
2471
|
"icons/users.svg.gz": "icons/users.svg.gz",
|
2472
|
+
"icons/vaccine.svg": "icons/vaccine.svg",
|
1903
2473
|
"icons/vaccine.svg.gz": "icons/vaccine.svg.gz",
|
2474
|
+
"icons/variable.svg": "icons/variable.svg",
|
1904
2475
|
"icons/variable.svg.gz": "icons/variable.svg.gz",
|
2476
|
+
"icons/vector-beizer-2.svg": "icons/vector-beizer-2.svg",
|
1905
2477
|
"icons/vector-beizer-2.svg.gz": "icons/vector-beizer-2.svg.gz",
|
1906
|
-
"icons/vector-
|
2478
|
+
"icons/vector-bezier.svg": "icons/vector-bezier.svg",
|
2479
|
+
"icons/vector-bezier.svg.gz": "icons/vector-bezier.svg.gz",
|
2480
|
+
"icons/vector-triangle.svg": "icons/vector-triangle.svg",
|
1907
2481
|
"icons/vector-triangle.svg.gz": "icons/vector-triangle.svg.gz",
|
2482
|
+
"icons/vector.svg": "icons/vector.svg",
|
1908
2483
|
"icons/vector.svg.gz": "icons/vector.svg.gz",
|
2484
|
+
"icons/venus.svg": "icons/venus.svg",
|
1909
2485
|
"icons/venus.svg.gz": "icons/venus.svg.gz",
|
2486
|
+
"icons/versions.svg": "icons/versions.svg",
|
1910
2487
|
"icons/versions.svg.gz": "icons/versions.svg.gz",
|
2488
|
+
"icons/video-minus.svg": "icons/video-minus.svg",
|
1911
2489
|
"icons/video-minus.svg.gz": "icons/video-minus.svg.gz",
|
2490
|
+
"icons/video-off.svg": "icons/video-off.svg",
|
1912
2491
|
"icons/video-off.svg.gz": "icons/video-off.svg.gz",
|
2492
|
+
"icons/video-plus.svg": "icons/video-plus.svg",
|
1913
2493
|
"icons/video-plus.svg.gz": "icons/video-plus.svg.gz",
|
2494
|
+
"icons/video.svg": "icons/video.svg",
|
1914
2495
|
"icons/video.svg.gz": "icons/video.svg.gz",
|
2496
|
+
"icons/view-360.svg": "icons/view-360.svg",
|
1915
2497
|
"icons/view-360.svg.gz": "icons/view-360.svg.gz",
|
2498
|
+
"icons/viewfinder.svg": "icons/viewfinder.svg",
|
1916
2499
|
"icons/viewfinder.svg.gz": "icons/viewfinder.svg.gz",
|
2500
|
+
"icons/viewport-narrow.svg": "icons/viewport-narrow.svg",
|
1917
2501
|
"icons/viewport-narrow.svg.gz": "icons/viewport-narrow.svg.gz",
|
2502
|
+
"icons/viewport-wide.svg": "icons/viewport-wide.svg",
|
1918
2503
|
"icons/viewport-wide.svg.gz": "icons/viewport-wide.svg.gz",
|
2504
|
+
"icons/virus-off.svg": "icons/virus-off.svg",
|
1919
2505
|
"icons/virus-off.svg.gz": "icons/virus-off.svg.gz",
|
2506
|
+
"icons/virus-search.svg": "icons/virus-search.svg",
|
1920
2507
|
"icons/virus-search.svg.gz": "icons/virus-search.svg.gz",
|
2508
|
+
"icons/virus.svg": "icons/virus.svg",
|
1921
2509
|
"icons/virus.svg.gz": "icons/virus.svg.gz",
|
2510
|
+
"icons/vocabulary.svg": "icons/vocabulary.svg",
|
2511
|
+
"icons/vocabulary.svg.gz": "icons/vocabulary.svg.gz",
|
2512
|
+
"icons/volume-2.svg": "icons/volume-2.svg",
|
1922
2513
|
"icons/volume-2.svg.gz": "icons/volume-2.svg.gz",
|
2514
|
+
"icons/volume-3.svg": "icons/volume-3.svg",
|
1923
2515
|
"icons/volume-3.svg.gz": "icons/volume-3.svg.gz",
|
2516
|
+
"icons/volume.svg": "icons/volume.svg",
|
1924
2517
|
"icons/volume.svg.gz": "icons/volume.svg.gz",
|
2518
|
+
"icons/walk.svg": "icons/walk.svg",
|
1925
2519
|
"icons/walk.svg.gz": "icons/walk.svg.gz",
|
2520
|
+
"icons/wallet.svg": "icons/wallet.svg",
|
1926
2521
|
"icons/wallet.svg.gz": "icons/wallet.svg.gz",
|
2522
|
+
"icons/wand.svg": "icons/wand.svg",
|
1927
2523
|
"icons/wand.svg.gz": "icons/wand.svg.gz",
|
2524
|
+
"icons/wave-saw-tool.svg": "icons/wave-saw-tool.svg",
|
1928
2525
|
"icons/wave-saw-tool.svg.gz": "icons/wave-saw-tool.svg.gz",
|
2526
|
+
"icons/wave-sine.svg": "icons/wave-sine.svg",
|
1929
2527
|
"icons/wave-sine.svg.gz": "icons/wave-sine.svg.gz",
|
2528
|
+
"icons/wave-square.svg": "icons/wave-square.svg",
|
1930
2529
|
"icons/wave-square.svg.gz": "icons/wave-square.svg.gz",
|
2530
|
+
"icons/wifi-0.svg": "icons/wifi-0.svg",
|
1931
2531
|
"icons/wifi-0.svg.gz": "icons/wifi-0.svg.gz",
|
2532
|
+
"icons/wifi-1.svg": "icons/wifi-1.svg",
|
1932
2533
|
"icons/wifi-1.svg.gz": "icons/wifi-1.svg.gz",
|
2534
|
+
"icons/wifi-2.svg": "icons/wifi-2.svg",
|
1933
2535
|
"icons/wifi-2.svg.gz": "icons/wifi-2.svg.gz",
|
2536
|
+
"icons/wifi-off.svg": "icons/wifi-off.svg",
|
1934
2537
|
"icons/wifi-off.svg.gz": "icons/wifi-off.svg.gz",
|
2538
|
+
"icons/wifi.svg": "icons/wifi.svg",
|
1935
2539
|
"icons/wifi.svg.gz": "icons/wifi.svg.gz",
|
2540
|
+
"icons/wind.svg": "icons/wind.svg",
|
1936
2541
|
"icons/wind.svg.gz": "icons/wind.svg.gz",
|
2542
|
+
"icons/windmill.svg": "icons/windmill.svg",
|
1937
2543
|
"icons/windmill.svg.gz": "icons/windmill.svg.gz",
|
2544
|
+
"icons/window.svg": "icons/window.svg",
|
1938
2545
|
"icons/window.svg.gz": "icons/window.svg.gz",
|
2546
|
+
"icons/wiper-wash.svg": "icons/wiper-wash.svg",
|
1939
2547
|
"icons/wiper-wash.svg.gz": "icons/wiper-wash.svg.gz",
|
2548
|
+
"icons/wiper.svg": "icons/wiper.svg",
|
1940
2549
|
"icons/wiper.svg.gz": "icons/wiper.svg.gz",
|
2550
|
+
"icons/woman.svg": "icons/woman.svg",
|
1941
2551
|
"icons/woman.svg.gz": "icons/woman.svg.gz",
|
2552
|
+
"icons/world-latitude.svg": "icons/world-latitude.svg",
|
1942
2553
|
"icons/world-latitude.svg.gz": "icons/world-latitude.svg.gz",
|
2554
|
+
"icons/world-longitude.svg": "icons/world-longitude.svg",
|
1943
2555
|
"icons/world-longitude.svg.gz": "icons/world-longitude.svg.gz",
|
2556
|
+
"icons/world.svg": "icons/world.svg",
|
1944
2557
|
"icons/world.svg.gz": "icons/world.svg.gz",
|
2558
|
+
"icons/wrecking-ball.svg": "icons/wrecking-ball.svg",
|
1945
2559
|
"icons/wrecking-ball.svg.gz": "icons/wrecking-ball.svg.gz",
|
2560
|
+
"icons/writing-sign.svg": "icons/writing-sign.svg",
|
1946
2561
|
"icons/writing-sign.svg.gz": "icons/writing-sign.svg.gz",
|
2562
|
+
"icons/writing.svg": "icons/writing.svg",
|
1947
2563
|
"icons/writing.svg.gz": "icons/writing.svg.gz",
|
2564
|
+
"icons/x.svg": "icons/x.svg",
|
1948
2565
|
"icons/x.svg.gz": "icons/x.svg.gz",
|
2566
|
+
"icons/yin-yang.svg": "icons/yin-yang.svg",
|
1949
2567
|
"icons/yin-yang.svg.gz": "icons/yin-yang.svg.gz",
|
2568
|
+
"icons/zodiac-aquarius.svg": "icons/zodiac-aquarius.svg",
|
1950
2569
|
"icons/zodiac-aquarius.svg.gz": "icons/zodiac-aquarius.svg.gz",
|
2570
|
+
"icons/zodiac-aries.svg": "icons/zodiac-aries.svg",
|
1951
2571
|
"icons/zodiac-aries.svg.gz": "icons/zodiac-aries.svg.gz",
|
2572
|
+
"icons/zodiac-cancer.svg": "icons/zodiac-cancer.svg",
|
1952
2573
|
"icons/zodiac-cancer.svg.gz": "icons/zodiac-cancer.svg.gz",
|
2574
|
+
"icons/zodiac-capricorn.svg": "icons/zodiac-capricorn.svg",
|
1953
2575
|
"icons/zodiac-capricorn.svg.gz": "icons/zodiac-capricorn.svg.gz",
|
2576
|
+
"icons/zodiac-gemini.svg": "icons/zodiac-gemini.svg",
|
1954
2577
|
"icons/zodiac-gemini.svg.gz": "icons/zodiac-gemini.svg.gz",
|
2578
|
+
"icons/zodiac-leo.svg": "icons/zodiac-leo.svg",
|
1955
2579
|
"icons/zodiac-leo.svg.gz": "icons/zodiac-leo.svg.gz",
|
2580
|
+
"icons/zodiac-libra.svg": "icons/zodiac-libra.svg",
|
1956
2581
|
"icons/zodiac-libra.svg.gz": "icons/zodiac-libra.svg.gz",
|
2582
|
+
"icons/zodiac-pisces.svg": "icons/zodiac-pisces.svg",
|
1957
2583
|
"icons/zodiac-pisces.svg.gz": "icons/zodiac-pisces.svg.gz",
|
2584
|
+
"icons/zodiac-sagittarius.svg": "icons/zodiac-sagittarius.svg",
|
1958
2585
|
"icons/zodiac-sagittarius.svg.gz": "icons/zodiac-sagittarius.svg.gz",
|
2586
|
+
"icons/zodiac-scorpio.svg": "icons/zodiac-scorpio.svg",
|
1959
2587
|
"icons/zodiac-scorpio.svg.gz": "icons/zodiac-scorpio.svg.gz",
|
2588
|
+
"icons/zodiac-taurus.svg": "icons/zodiac-taurus.svg",
|
1960
2589
|
"icons/zodiac-taurus.svg.gz": "icons/zodiac-taurus.svg.gz",
|
2590
|
+
"icons/zodiac-virgo.svg": "icons/zodiac-virgo.svg",
|
1961
2591
|
"icons/zodiac-virgo.svg.gz": "icons/zodiac-virgo.svg.gz",
|
2592
|
+
"icons/zoom-cancel.svg": "icons/zoom-cancel.svg",
|
1962
2593
|
"icons/zoom-cancel.svg.gz": "icons/zoom-cancel.svg.gz",
|
2594
|
+
"icons/zoom-check.svg": "icons/zoom-check.svg",
|
1963
2595
|
"icons/zoom-check.svg.gz": "icons/zoom-check.svg.gz",
|
2596
|
+
"icons/zoom-in.svg": "icons/zoom-in.svg",
|
1964
2597
|
"icons/zoom-in.svg.gz": "icons/zoom-in.svg.gz",
|
2598
|
+
"icons/zoom-money.svg": "icons/zoom-money.svg",
|
1965
2599
|
"icons/zoom-money.svg.gz": "icons/zoom-money.svg.gz",
|
2600
|
+
"icons/zoom-out.svg": "icons/zoom-out.svg",
|
1966
2601
|
"icons/zoom-out.svg.gz": "icons/zoom-out.svg.gz",
|
2602
|
+
"icons/zoom-question.svg": "icons/zoom-question.svg",
|
1967
2603
|
"icons/zoom-question.svg.gz": "icons/zoom-question.svg.gz",
|
1968
|
-
"
|
1969
|
-
"
|
1970
|
-
"
|
1971
|
-
"
|
1972
|
-
"
|
1973
|
-
"info-circle.svg": "icons/info-circle.svg",
|
1974
|
-
"info-square.svg": "icons/info-square.svg",
|
1975
|
-
"italic.svg": "icons/italic.svg",
|
1976
|
-
"jump-rope.svg": "icons/jump-rope.svg",
|
1977
|
-
"karate.svg": "icons/karate.svg",
|
1978
|
-
"key.svg": "icons/key.svg",
|
1979
|
-
"keyboard-hide.svg": "icons/keyboard-hide.svg",
|
1980
|
-
"keyboard-off.svg": "icons/keyboard-off.svg",
|
1981
|
-
"keyboard-show.svg": "icons/keyboard-show.svg",
|
1982
|
-
"keyboard.svg": "icons/keyboard.svg",
|
1983
|
-
"language.svg": "icons/language.svg",
|
1984
|
-
"layers-difference.svg": "icons/layers-difference.svg",
|
1985
|
-
"layers-intersect.svg": "icons/layers-intersect.svg",
|
1986
|
-
"layers-linked.svg": "icons/layers-linked.svg",
|
1987
|
-
"layers-subtract.svg": "icons/layers-subtract.svg",
|
1988
|
-
"layers-union.svg": "icons/layers-union.svg",
|
1989
|
-
"layout-2.svg": "icons/layout-2.svg",
|
1990
|
-
"layout-align-bottom.svg": "icons/layout-align-bottom.svg",
|
1991
|
-
"layout-align-center.svg": "icons/layout-align-center.svg",
|
1992
|
-
"layout-align-left.svg": "icons/layout-align-left.svg",
|
1993
|
-
"layout-align-middle.svg": "icons/layout-align-middle.svg",
|
1994
|
-
"layout-align-right.svg": "icons/layout-align-right.svg",
|
1995
|
-
"layout-align-top.svg": "icons/layout-align-top.svg",
|
1996
|
-
"layout-bottombar.svg": "icons/layout-bottombar.svg",
|
1997
|
-
"layout-cards.svg": "icons/layout-cards.svg",
|
1998
|
-
"layout-columns.svg": "icons/layout-columns.svg",
|
1999
|
-
"layout-distribute-horizontal.svg": "icons/layout-distribute-horizontal.svg",
|
2000
|
-
"layout-distribute-vertical.svg": "icons/layout-distribute-vertical.svg",
|
2001
|
-
"layout-grid-add.svg": "icons/layout-grid-add.svg",
|
2002
|
-
"layout-grid.svg": "icons/layout-grid.svg",
|
2003
|
-
"layout-kanban.svg": "icons/layout-kanban.svg",
|
2004
|
-
"layout-list.svg": "icons/layout-list.svg",
|
2005
|
-
"layout-navbar.svg": "icons/layout-navbar.svg",
|
2006
|
-
"layout-rows.svg": "icons/layout-rows.svg",
|
2007
|
-
"layout-sidebar-right.svg": "icons/layout-sidebar-right.svg",
|
2008
|
-
"layout-sidebar.svg": "icons/layout-sidebar.svg",
|
2009
|
-
"layout.svg": "icons/layout.svg",
|
2010
|
-
"leaf.svg": "icons/leaf.svg",
|
2011
|
-
"lego.svg": "icons/lego.svg",
|
2012
|
-
"letter-a.svg": "icons/letter-a.svg",
|
2013
|
-
"letter-b.svg": "icons/letter-b.svg",
|
2014
|
-
"letter-c.svg": "icons/letter-c.svg",
|
2015
|
-
"letter-case-lower.svg": "icons/letter-case-lower.svg",
|
2016
|
-
"letter-case-toggle.svg": "icons/letter-case-toggle.svg",
|
2017
|
-
"letter-case-upper.svg": "icons/letter-case-upper.svg",
|
2018
|
-
"letter-case.svg": "icons/letter-case.svg",
|
2019
|
-
"letter-d.svg": "icons/letter-d.svg",
|
2020
|
-
"letter-e.svg": "icons/letter-e.svg",
|
2021
|
-
"letter-f.svg": "icons/letter-f.svg",
|
2022
|
-
"letter-g.svg": "icons/letter-g.svg",
|
2023
|
-
"letter-h.svg": "icons/letter-h.svg",
|
2024
|
-
"letter-i.svg": "icons/letter-i.svg",
|
2025
|
-
"letter-j.svg": "icons/letter-j.svg",
|
2026
|
-
"letter-k.svg": "icons/letter-k.svg",
|
2027
|
-
"letter-l.svg": "icons/letter-l.svg",
|
2028
|
-
"letter-m.svg": "icons/letter-m.svg",
|
2029
|
-
"letter-n.svg": "icons/letter-n.svg",
|
2030
|
-
"letter-o.svg": "icons/letter-o.svg",
|
2031
|
-
"letter-p.svg": "icons/letter-p.svg",
|
2032
|
-
"letter-q.svg": "icons/letter-q.svg",
|
2033
|
-
"letter-r.svg": "icons/letter-r.svg",
|
2034
|
-
"letter-s.svg": "icons/letter-s.svg",
|
2035
|
-
"letter-spacing.svg": "icons/letter-spacing.svg",
|
2036
|
-
"letter-t.svg": "icons/letter-t.svg",
|
2037
|
-
"letter-u.svg": "icons/letter-u.svg",
|
2038
|
-
"letter-v.svg": "icons/letter-v.svg",
|
2039
|
-
"letter-w.svg": "icons/letter-w.svg",
|
2040
|
-
"letter-x.svg": "icons/letter-x.svg",
|
2041
|
-
"letter-y.svg": "icons/letter-y.svg",
|
2042
|
-
"letter-z.svg": "icons/letter-z.svg",
|
2043
|
-
"letters-case.svg": "icons/letters-case.svg",
|
2044
|
-
"license.svg": "icons/license.svg",
|
2045
|
-
"lifebuoy.svg": "icons/lifebuoy.svg",
|
2046
|
-
"line-dashed.svg": "icons/line-dashed.svg",
|
2047
|
-
"line-dotted.svg": "icons/line-dotted.svg",
|
2048
|
-
"line-height.svg": "icons/line-height.svg",
|
2049
|
-
"line.svg": "icons/line.svg",
|
2050
|
-
"link.svg": "icons/link.svg",
|
2051
|
-
"list-check.svg": "icons/list-check.svg",
|
2052
|
-
"list-search.svg": "icons/list-search.svg",
|
2053
|
-
"list.svg": "icons/list.svg",
|
2054
|
-
"live-photo.svg": "icons/live-photo.svg",
|
2055
|
-
"live-view.svg": "icons/live-view.svg",
|
2056
|
-
"loader-quarter.svg": "icons/loader-quarter.svg",
|
2057
|
-
"loader.svg": "icons/loader.svg",
|
2058
|
-
"location.svg": "icons/location.svg",
|
2059
|
-
"lock-access.svg": "icons/lock-access.svg",
|
2060
|
-
"lock-off.svg": "icons/lock-off.svg",
|
2061
|
-
"lock-open.svg": "icons/lock-open.svg",
|
2062
|
-
"lock.svg": "icons/lock.svg",
|
2063
|
-
"login.svg": "icons/login.svg",
|
2064
|
-
"logout.svg": "icons/logout.svg",
|
2065
|
-
"macro.svg": "icons/macro.svg",
|
2066
|
-
"magnet.svg": "icons/magnet.svg",
|
2067
|
-
"mail-forward.svg": "icons/mail-forward.svg",
|
2068
|
-
"mail-opened.svg": "icons/mail-opened.svg",
|
2069
|
-
"mail.svg": "icons/mail.svg",
|
2070
|
-
"mailbox.svg": "icons/mailbox.svg",
|
2071
|
-
"main-69f743d211b7997bcec9.css.gz": "main-69f743d211b7997bcec9.css.gz",
|
2072
|
-
"main-69f743d211b7997bcec9.js.LICENSE.txt": "main-69f743d211b7997bcec9.js.LICENSE.txt",
|
2073
|
-
"main-69f743d211b7997bcec9.js.gz": "main-69f743d211b7997bcec9.js.gz",
|
2074
|
-
"main.css": "main-69f743d211b7997bcec9.css",
|
2075
|
-
"main.js": "main-69f743d211b7997bcec9.js",
|
2076
|
-
"man.svg": "icons/man.svg",
|
2077
|
-
"manual-gearbox.svg": "icons/manual-gearbox.svg",
|
2078
|
-
"map-2.svg": "icons/map-2.svg",
|
2079
|
-
"map-pin-off.svg": "icons/map-pin-off.svg",
|
2080
|
-
"map-pin.svg": "icons/map-pin.svg",
|
2081
|
-
"map-pins.svg": "icons/map-pins.svg",
|
2082
|
-
"map.svg": "icons/map.svg",
|
2083
|
-
"markdown.svg": "icons/markdown.svg",
|
2084
|
-
"marquee-2.svg": "icons/marquee-2.svg",
|
2085
|
-
"marquee.svg": "icons/marquee.svg",
|
2086
|
-
"mars.svg": "icons/mars.svg",
|
2087
|
-
"mask-off.svg": "icons/mask-off.svg",
|
2088
|
-
"mask.svg": "icons/mask.svg",
|
2089
|
-
"massage.svg": "icons/massage.svg",
|
2090
|
-
"math-function.svg": "icons/math-function.svg",
|
2091
|
-
"math-symbols.svg": "icons/math-symbols.svg",
|
2092
|
-
"math.svg": "icons/math.svg",
|
2093
|
-
"maximize.svg": "icons/maximize.svg",
|
2094
|
-
"medal.svg": "icons/medal.svg",
|
2095
|
-
"medical-cross.svg": "icons/medical-cross.svg",
|
2096
|
-
"menu-2.svg": "icons/menu-2.svg",
|
2097
|
-
"menu.svg": "icons/menu.svg",
|
2098
|
-
"message-2.svg": "icons/message-2.svg",
|
2099
|
-
"message-circle-2.svg": "icons/message-circle-2.svg",
|
2100
|
-
"message-circle-off.svg": "icons/message-circle-off.svg",
|
2101
|
-
"message-circle.svg": "icons/message-circle.svg",
|
2102
|
-
"message-dots.svg": "icons/message-dots.svg",
|
2103
|
-
"message-off.svg": "icons/message-off.svg",
|
2104
|
-
"message-plus.svg": "icons/message-plus.svg",
|
2105
|
-
"message-report.svg": "icons/message-report.svg",
|
2106
|
-
"message.svg": "icons/message.svg",
|
2107
|
-
"messages-off.svg": "icons/messages-off.svg",
|
2108
|
-
"messages.svg": "icons/messages.svg",
|
2109
|
-
"microphone-off.svg": "icons/microphone-off.svg",
|
2110
|
-
"microphone.svg": "icons/microphone.svg",
|
2111
|
-
"minimize.svg": "icons/minimize.svg",
|
2112
|
-
"minus-vertical.svg": "icons/minus-vertical.svg",
|
2113
|
-
"minus.svg": "icons/minus.svg",
|
2114
|
-
"mist.svg": "icons/mist.svg",
|
2115
|
-
"mood-boy.svg": "icons/mood-boy.svg",
|
2116
|
-
"mood-confuzed.svg": "icons/mood-confuzed.svg",
|
2117
|
-
"mood-crazy-happy.svg": "icons/mood-crazy-happy.svg",
|
2118
|
-
"mood-cry.svg": "icons/mood-cry.svg",
|
2119
|
-
"mood-empty.svg": "icons/mood-empty.svg",
|
2120
|
-
"mood-happy.svg": "icons/mood-happy.svg",
|
2121
|
-
"mood-kid.svg": "icons/mood-kid.svg",
|
2122
|
-
"mood-neutral.svg": "icons/mood-neutral.svg",
|
2123
|
-
"mood-sad.svg": "icons/mood-sad.svg",
|
2124
|
-
"mood-smile.svg": "icons/mood-smile.svg",
|
2125
|
-
"mood-suprised.svg": "icons/mood-suprised.svg",
|
2126
|
-
"mood-tongue.svg": "icons/mood-tongue.svg",
|
2127
|
-
"moon-2.svg": "icons/moon-2.svg",
|
2128
|
-
"moon-stars.svg": "icons/moon-stars.svg",
|
2129
|
-
"moon.svg": "icons/moon.svg",
|
2130
|
-
"moped.svg": "icons/moped.svg",
|
2131
|
-
"motorbike.svg": "icons/motorbike.svg",
|
2132
|
-
"mouse.svg": "icons/mouse.svg",
|
2133
|
-
"movie.svg": "icons/movie.svg",
|
2134
|
-
"mug.svg": "icons/mug.svg",
|
2135
|
-
"music.svg": "icons/music.svg",
|
2136
|
-
"new-section.svg": "icons/new-section.svg",
|
2137
|
-
"news.svg": "icons/news.svg",
|
2138
|
-
"nfc.svg": "icons/nfc.svg",
|
2139
|
-
"note.svg": "icons/note.svg",
|
2140
|
-
"notebook.svg": "icons/notebook.svg",
|
2141
|
-
"notes.svg": "icons/notes.svg",
|
2142
|
-
"notification.svg": "icons/notification.svg",
|
2143
|
-
"number-0.svg": "icons/number-0.svg",
|
2144
|
-
"number-1.svg": "icons/number-1.svg",
|
2145
|
-
"number-2.svg": "icons/number-2.svg",
|
2146
|
-
"number-3.svg": "icons/number-3.svg",
|
2147
|
-
"number-4.svg": "icons/number-4.svg",
|
2148
|
-
"number-5.svg": "icons/number-5.svg",
|
2149
|
-
"number-6.svg": "icons/number-6.svg",
|
2150
|
-
"number-7.svg": "icons/number-7.svg",
|
2151
|
-
"number-8.svg": "icons/number-8.svg",
|
2152
|
-
"number-9.svg": "icons/number-9.svg",
|
2153
|
-
"octagon-off.svg": "icons/octagon-off.svg",
|
2154
|
-
"octagon.svg": "icons/octagon.svg",
|
2155
|
-
"old.svg": "icons/old.svg",
|
2156
|
-
"olympics.svg": "icons/olympics.svg",
|
2157
|
-
"omega.svg": "icons/omega.svg",
|
2158
|
-
"outlet.svg": "icons/outlet.svg",
|
2159
|
-
"overline.svg": "icons/overline.svg",
|
2160
|
-
"package.svg": "icons/package.svg",
|
2161
|
-
"pacman.svg": "icons/pacman.svg",
|
2162
|
-
"page-break.svg": "icons/page-break.svg",
|
2163
|
-
"paint.svg": "icons/paint.svg",
|
2164
|
-
"palette.svg": "icons/palette.svg",
|
2165
|
-
"panorama-horizontal.svg": "icons/panorama-horizontal.svg",
|
2166
|
-
"panorama-vertical.svg": "icons/panorama-vertical.svg",
|
2167
|
-
"paperclip.svg": "icons/paperclip.svg",
|
2168
|
-
"parachute.svg": "icons/parachute.svg",
|
2169
|
-
"parentheses.svg": "icons/parentheses.svg",
|
2170
|
-
"parking.svg": "icons/parking.svg",
|
2171
|
-
"peace.svg": "icons/peace.svg",
|
2172
|
-
"pencil.svg": "icons/pencil.svg",
|
2173
|
-
"pennant.svg": "icons/pennant.svg",
|
2174
|
-
"percentage.svg": "icons/percentage.svg",
|
2175
|
-
"perspective.svg": "icons/perspective.svg",
|
2176
|
-
"phone-call.svg": "icons/phone-call.svg",
|
2177
|
-
"phone-calling.svg": "icons/phone-calling.svg",
|
2178
|
-
"phone-check.svg": "icons/phone-check.svg",
|
2179
|
-
"phone-incoming.svg": "icons/phone-incoming.svg",
|
2180
|
-
"phone-off.svg": "icons/phone-off.svg",
|
2181
|
-
"phone-outgoing.svg": "icons/phone-outgoing.svg",
|
2182
|
-
"phone-pause.svg": "icons/phone-pause.svg",
|
2183
|
-
"phone-plus.svg": "icons/phone-plus.svg",
|
2184
|
-
"phone-x.svg": "icons/phone-x.svg",
|
2185
|
-
"phone.svg": "icons/phone.svg",
|
2186
|
-
"photo-off.svg": "icons/photo-off.svg",
|
2187
|
-
"photo.svg": "icons/photo.svg",
|
2188
|
-
"physotherapist.svg": "icons/physotherapist.svg",
|
2189
|
-
"picture-in-picture-off.svg": "icons/picture-in-picture-off.svg",
|
2190
|
-
"picture-in-picture-on.svg": "icons/picture-in-picture-on.svg",
|
2191
|
-
"picture-in-picture.svg": "icons/picture-in-picture.svg",
|
2192
|
-
"pill.svg": "icons/pill.svg",
|
2193
|
-
"pin.svg": "icons/pin.svg",
|
2194
|
-
"pinned-off.svg": "icons/pinned-off.svg",
|
2195
|
-
"pinned.svg": "icons/pinned.svg",
|
2196
|
-
"pizza.svg": "icons/pizza.svg",
|
2197
|
-
"plane-arrival.svg": "icons/plane-arrival.svg",
|
2198
|
-
"plane-departure.svg": "icons/plane-departure.svg",
|
2199
|
-
"plane.svg": "icons/plane.svg",
|
2200
|
-
"planet.svg": "icons/planet.svg",
|
2201
|
-
"plant-2.svg": "icons/plant-2.svg",
|
2202
|
-
"plant.svg": "icons/plant.svg",
|
2203
|
-
"play-card.svg": "icons/play-card.svg",
|
2204
|
-
"player-pause.svg": "icons/player-pause.svg",
|
2205
|
-
"player-play.svg": "icons/player-play.svg",
|
2206
|
-
"player-record.svg": "icons/player-record.svg",
|
2207
|
-
"player-skip-back.svg": "icons/player-skip-back.svg",
|
2208
|
-
"player-skip-forward.svg": "icons/player-skip-forward.svg",
|
2209
|
-
"player-stop.svg": "icons/player-stop.svg",
|
2210
|
-
"player-track-next.svg": "icons/player-track-next.svg",
|
2211
|
-
"player-track-prev.svg": "icons/player-track-prev.svg",
|
2212
|
-
"playlist.svg": "icons/playlist.svg",
|
2213
|
-
"plug.svg": "icons/plug.svg",
|
2214
|
-
"plus.svg": "icons/plus.svg",
|
2215
|
-
"point.svg": "icons/point.svg",
|
2216
|
-
"pokeball.svg": "icons/pokeball.svg",
|
2217
|
-
"polaroid.svg": "icons/polaroid.svg",
|
2218
|
-
"pool.svg": "icons/pool.svg",
|
2219
|
-
"power.svg": "icons/power.svg",
|
2220
|
-
"pray.svg": "icons/pray.svg",
|
2221
|
-
"presentation-analytics.svg": "icons/presentation-analytics.svg",
|
2222
|
-
"presentation.svg": "icons/presentation.svg",
|
2223
|
-
"printer.svg": "icons/printer.svg",
|
2224
|
-
"prompt.svg": "icons/prompt.svg",
|
2225
|
-
"propeller.svg": "icons/propeller.svg",
|
2226
|
-
"puzzle.svg": "icons/puzzle.svg",
|
2227
|
-
"pyramid.svg": "icons/pyramid.svg",
|
2228
|
-
"qrcode.svg": "icons/qrcode.svg",
|
2229
|
-
"question-mark.svg": "icons/question-mark.svg",
|
2230
|
-
"radioactive.svg": "icons/radioactive.svg",
|
2231
|
-
"radius-bottom-left.svg": "icons/radius-bottom-left.svg",
|
2232
|
-
"radius-bottom-right.svg": "icons/radius-bottom-right.svg",
|
2233
|
-
"radius-top-left.svg": "icons/radius-top-left.svg",
|
2234
|
-
"radius-top-right.svg": "icons/radius-top-right.svg",
|
2235
|
-
"rainbow.svg": "icons/rainbow.svg",
|
2236
|
-
"receipt-2.svg": "icons/receipt-2.svg",
|
2237
|
-
"receipt-off.svg": "icons/receipt-off.svg",
|
2238
|
-
"receipt-refund.svg": "icons/receipt-refund.svg",
|
2239
|
-
"receipt-tax.svg": "icons/receipt-tax.svg",
|
2240
|
-
"receipt.svg": "icons/receipt.svg",
|
2241
|
-
"recharging.svg": "icons/recharging.svg",
|
2242
|
-
"record-mail.svg": "icons/record-mail.svg",
|
2243
|
-
"rectangle-vertical.svg": "icons/rectangle-vertical.svg",
|
2244
|
-
"rectangle.svg": "icons/rectangle.svg",
|
2245
|
-
"recycle.svg": "icons/recycle.svg",
|
2246
|
-
"refresh-alert.svg": "icons/refresh-alert.svg",
|
2247
|
-
"refresh.svg": "icons/refresh.svg",
|
2248
|
-
"registered.svg": "icons/registered.svg",
|
2249
|
-
"relation-many-to-many.svg": "icons/relation-many-to-many.svg",
|
2250
|
-
"relation-one-to-many.svg": "icons/relation-one-to-many.svg",
|
2251
|
-
"relation-one-to-one.svg": "icons/relation-one-to-one.svg",
|
2252
|
-
"repeat-once.svg": "icons/repeat-once.svg",
|
2253
|
-
"repeat.svg": "icons/repeat.svg",
|
2254
|
-
"replace.svg": "icons/replace.svg",
|
2255
|
-
"report-analytics.svg": "icons/report-analytics.svg",
|
2256
|
-
"report-medical.svg": "icons/report-medical.svg",
|
2257
|
-
"report-money.svg": "icons/report-money.svg",
|
2258
|
-
"report.svg": "icons/report.svg",
|
2259
|
-
"resize.svg": "icons/resize.svg",
|
2260
|
-
"ripple.svg": "icons/ripple.svg",
|
2261
|
-
"road-sign.svg": "icons/road-sign.svg",
|
2262
|
-
"rocket.svg": "icons/rocket.svg",
|
2263
|
-
"rotate-2.svg": "icons/rotate-2.svg",
|
2264
|
-
"rotate-clockwise-2.svg": "icons/rotate-clockwise-2.svg",
|
2265
|
-
"rotate-clockwise.svg": "icons/rotate-clockwise.svg",
|
2266
|
-
"rotate-rectangle.svg": "icons/rotate-rectangle.svg",
|
2267
|
-
"rotate.svg": "icons/rotate.svg",
|
2268
|
-
"route.svg": "icons/route.svg",
|
2269
|
-
"router.svg": "icons/router.svg",
|
2270
|
-
"row-insert-bottom.svg": "icons/row-insert-bottom.svg",
|
2271
|
-
"row-insert-top.svg": "icons/row-insert-top.svg",
|
2272
|
-
"rss.svg": "icons/rss.svg",
|
2273
|
-
"ruler-2.svg": "icons/ruler-2.svg",
|
2274
|
-
"ruler.svg": "icons/ruler.svg",
|
2275
|
-
"run.svg": "icons/run.svg",
|
2276
|
-
"sailboat.svg": "icons/sailboat.svg",
|
2277
|
-
"satellite.svg": "icons/satellite.svg",
|
2278
|
-
"scale.svg": "icons/scale.svg",
|
2279
|
-
"scan.svg": "icons/scan.svg",
|
2280
|
-
"school.svg": "icons/school.svg",
|
2281
|
-
"scissors.svg": "icons/scissors.svg",
|
2282
|
-
"scooter-electric.svg": "icons/scooter-electric.svg",
|
2283
|
-
"scooter.svg": "icons/scooter.svg",
|
2284
|
-
"screen-share-off.svg": "icons/screen-share-off.svg",
|
2285
|
-
"screen-share.svg": "icons/screen-share.svg",
|
2286
|
-
"scuba-mask.svg": "icons/scuba-mask.svg",
|
2287
|
-
"search.svg": "icons/search.svg",
|
2288
|
-
"section.svg": "icons/section.svg",
|
2289
|
-
"seeding.svg": "icons/seeding.svg",
|
2290
|
-
"select.svg": "icons/select.svg",
|
2291
|
-
"selector.svg": "icons/selector.svg",
|
2292
|
-
"send.svg": "icons/send.svg",
|
2293
|
-
"separator-horizontal.svg": "icons/separator-horizontal.svg",
|
2294
|
-
"separator-vertical.svg": "icons/separator-vertical.svg",
|
2295
|
-
"separator.svg": "icons/separator.svg",
|
2296
|
-
"server.svg": "icons/server.svg",
|
2297
|
-
"servicemark.svg": "icons/servicemark.svg",
|
2298
|
-
"settings-automation.svg": "icons/settings-automation.svg",
|
2299
|
-
"settings.svg": "icons/settings.svg",
|
2300
|
-
"shadow-off.svg": "icons/shadow-off.svg",
|
2301
|
-
"shadow.svg": "icons/shadow.svg",
|
2302
|
-
"shape-2.svg": "icons/shape-2.svg",
|
2303
|
-
"shape-3.svg": "icons/shape-3.svg",
|
2304
|
-
"shape.svg": "icons/shape.svg",
|
2305
|
-
"share.svg": "icons/share.svg",
|
2306
|
-
"shield-check.svg": "icons/shield-check.svg",
|
2307
|
-
"shield-lock.svg": "icons/shield-lock.svg",
|
2308
|
-
"shield-off.svg": "icons/shield-off.svg",
|
2309
|
-
"shield-x.svg": "icons/shield-x.svg",
|
2310
|
-
"shield.svg": "icons/shield.svg",
|
2311
|
-
"ship.svg": "icons/ship.svg",
|
2312
|
-
"shirt.svg": "icons/shirt.svg",
|
2313
|
-
"shopping-cart-discount.svg": "icons/shopping-cart-discount.svg",
|
2314
|
-
"shopping-cart-off.svg": "icons/shopping-cart-off.svg",
|
2315
|
-
"shopping-cart-plus.svg": "icons/shopping-cart-plus.svg",
|
2316
|
-
"shopping-cart-x.svg": "icons/shopping-cart-x.svg",
|
2317
|
-
"shopping-cart.svg": "icons/shopping-cart.svg",
|
2318
|
-
"shredder.svg": "icons/shredder.svg",
|
2319
|
-
"signature.svg": "icons/signature.svg",
|
2320
|
-
"sitemap.svg": "icons/sitemap.svg",
|
2321
|
-
"skateboard.svg": "icons/skateboard.svg",
|
2322
|
-
"slice.svg": "icons/slice.svg",
|
2323
|
-
"slideshow.svg": "icons/slideshow.svg",
|
2324
|
-
"smart-home.svg": "icons/smart-home.svg",
|
2325
|
-
"smoking-no.svg": "icons/smoking-no.svg",
|
2326
|
-
"smoking.svg": "icons/smoking.svg",
|
2327
|
-
"snowflake.svg": "icons/snowflake.svg",
|
2328
|
-
"soccer-field.svg": "icons/soccer-field.svg",
|
2329
|
-
"social.svg": "icons/social.svg",
|
2330
|
-
"sock.svg": "icons/sock.svg",
|
2331
|
-
"sort-ascending-2.svg": "icons/sort-ascending-2.svg",
|
2332
|
-
"sort-ascending.svg": "icons/sort-ascending.svg",
|
2333
|
-
"sort-descending-2.svg": "icons/sort-descending-2.svg",
|
2334
|
-
"sort-descending.svg": "icons/sort-descending.svg",
|
2335
|
-
"space.svg": "icons/space.svg",
|
2336
|
-
"speakerphone.svg": "icons/speakerphone.svg",
|
2337
|
-
"speedboat.svg": "icons/speedboat.svg",
|
2338
|
-
"sport-billard.svg": "icons/sport-billard.svg",
|
2339
|
-
"square-0.svg": "icons/square-0.svg",
|
2340
|
-
"square-1.svg": "icons/square-1.svg",
|
2341
|
-
"square-2.svg": "icons/square-2.svg",
|
2342
|
-
"square-3.svg": "icons/square-3.svg",
|
2343
|
-
"square-4.svg": "icons/square-4.svg",
|
2344
|
-
"square-5.svg": "icons/square-5.svg",
|
2345
|
-
"square-6.svg": "icons/square-6.svg",
|
2346
|
-
"square-7.svg": "icons/square-7.svg",
|
2347
|
-
"square-8.svg": "icons/square-8.svg",
|
2348
|
-
"square-9.svg": "icons/square-9.svg",
|
2349
|
-
"square-check.svg": "icons/square-check.svg",
|
2350
|
-
"square-dot.svg": "icons/square-dot.svg",
|
2351
|
-
"square-forbid-2.svg": "icons/square-forbid-2.svg",
|
2352
|
-
"square-forbid.svg": "icons/square-forbid.svg",
|
2353
|
-
"square-minus.svg": "icons/square-minus.svg",
|
2354
|
-
"square-off.svg": "icons/square-off.svg",
|
2355
|
-
"square-plus.svg": "icons/square-plus.svg",
|
2356
|
-
"square-root-2.svg": "icons/square-root-2.svg",
|
2357
|
-
"square-root.svg": "icons/square-root.svg",
|
2358
|
-
"square-rotated-off.svg": "icons/square-rotated-off.svg",
|
2359
|
-
"square-rotated.svg": "icons/square-rotated.svg",
|
2360
|
-
"square-toggle-horizontal.svg": "icons/square-toggle-horizontal.svg",
|
2361
|
-
"square-toggle.svg": "icons/square-toggle.svg",
|
2362
|
-
"square-x.svg": "icons/square-x.svg",
|
2363
|
-
"square.svg": "icons/square.svg",
|
2364
|
-
"squares-diagonal.svg": "icons/squares-diagonal.svg",
|
2365
|
-
"squares-filled.svg": "icons/squares-filled.svg",
|
2366
|
-
"stack-2.svg": "icons/stack-2.svg",
|
2367
|
-
"stack.svg": "icons/stack.svg",
|
2368
|
-
"stairs-down.svg": "icons/stairs-down.svg",
|
2369
|
-
"stairs-up.svg": "icons/stairs-up.svg",
|
2370
|
-
"stairs.svg": "icons/stairs.svg",
|
2371
|
-
"star-half.svg": "icons/star-half.svg",
|
2372
|
-
"star-off.svg": "icons/star-off.svg",
|
2373
|
-
"star.svg": "icons/star.svg",
|
2374
|
-
"stars.svg": "icons/stars.svg",
|
2375
|
-
"steering-wheel.svg": "icons/steering-wheel.svg",
|
2376
|
-
"step-into.svg": "icons/step-into.svg",
|
2377
|
-
"step-out.svg": "icons/step-out.svg",
|
2378
|
-
"stethoscope.svg": "icons/stethoscope.svg",
|
2379
|
-
"sticker.svg": "icons/sticker.svg",
|
2380
|
-
"strikethrough.svg": "icons/strikethrough.svg",
|
2381
|
-
"submarine.svg": "icons/submarine.svg",
|
2382
|
-
"subscript.svg": "icons/subscript.svg",
|
2383
|
-
"subtask.svg": "icons/subtask.svg",
|
2384
|
-
"sum.svg": "icons/sum.svg",
|
2385
|
-
"sun-off.svg": "icons/sun-off.svg",
|
2386
|
-
"sun.svg": "icons/sun.svg",
|
2387
|
-
"sunset.svg": "icons/sunset.svg",
|
2388
|
-
"sunshine.svg": "icons/sunshine.svg",
|
2389
|
-
"superscript.svg": "icons/superscript.svg",
|
2390
|
-
"swimming.svg": "icons/swimming.svg",
|
2391
|
-
"switch-2.svg": "icons/switch-2.svg",
|
2392
|
-
"switch-3.svg": "icons/switch-3.svg",
|
2393
|
-
"switch-horizontal.svg": "icons/switch-horizontal.svg",
|
2394
|
-
"switch-vertical.svg": "icons/switch-vertical.svg",
|
2395
|
-
"switch.svg": "icons/switch.svg",
|
2396
|
-
"table-export.svg": "icons/table-export.svg",
|
2397
|
-
"table-import.svg": "icons/table-import.svg",
|
2398
|
-
"table-off.svg": "icons/table-off.svg",
|
2399
|
-
"table.svg": "icons/table.svg",
|
2400
|
-
"tag.svg": "icons/tag.svg",
|
2401
|
-
"tallymark-1.svg": "icons/tallymark-1.svg",
|
2402
|
-
"tallymark-2.svg": "icons/tallymark-2.svg",
|
2403
|
-
"tallymark-3.svg": "icons/tallymark-3.svg",
|
2404
|
-
"tallymark-4.svg": "icons/tallymark-4.svg",
|
2405
|
-
"tallymarks.svg": "icons/tallymarks.svg",
|
2406
|
-
"tank.svg": "icons/tank.svg",
|
2407
|
-
"target.svg": "icons/target.svg",
|
2408
|
-
"temperature-celsius.svg": "icons/temperature-celsius.svg",
|
2409
|
-
"temperature-fahrenheit.svg": "icons/temperature-fahrenheit.svg",
|
2410
|
-
"temperature-minus.svg": "icons/temperature-minus.svg",
|
2411
|
-
"temperature-plus.svg": "icons/temperature-plus.svg",
|
2412
|
-
"temperature.svg": "icons/temperature.svg",
|
2413
|
-
"template.svg": "icons/template.svg",
|
2414
|
-
"tent.svg": "icons/tent.svg",
|
2415
|
-
"terminal-2.svg": "icons/terminal-2.svg",
|
2416
|
-
"terminal.svg": "icons/terminal.svg",
|
2417
|
-
"test-pipe.svg": "icons/test-pipe.svg",
|
2418
|
-
"text-direction-ltr.svg": "icons/text-direction-ltr.svg",
|
2419
|
-
"text-direction-rtl.svg": "icons/text-direction-rtl.svg",
|
2420
|
-
"text-wrap-disabled.svg": "icons/text-wrap-disabled.svg",
|
2421
|
-
"text-wrap.svg": "icons/text-wrap.svg",
|
2422
|
-
"thumb-down.svg": "icons/thumb-down.svg",
|
2423
|
-
"thumb-up.svg": "icons/thumb-up.svg",
|
2424
|
-
"ticket.svg": "icons/ticket.svg",
|
2425
|
-
"tilt-shift.svg": "icons/tilt-shift.svg",
|
2426
|
-
"tir.svg": "icons/tir.svg",
|
2427
|
-
"toggle-left.svg": "icons/toggle-left.svg",
|
2428
|
-
"toggle-right.svg": "icons/toggle-right.svg",
|
2429
|
-
"tool.svg": "icons/tool.svg",
|
2430
|
-
"tools-kitchen-2.svg": "icons/tools-kitchen-2.svg",
|
2431
|
-
"tools-kitchen.svg": "icons/tools-kitchen.svg",
|
2432
|
-
"tools.svg": "icons/tools.svg",
|
2433
|
-
"tornado.svg": "icons/tornado.svg",
|
2434
|
-
"tournament.svg": "icons/tournament.svg",
|
2435
|
-
"track.svg": "icons/track.svg",
|
2436
|
-
"tractor.svg": "icons/tractor.svg",
|
2437
|
-
"trademark.svg": "icons/trademark.svg",
|
2438
|
-
"traffic-cone.svg": "icons/traffic-cone.svg",
|
2439
|
-
"traffic-lights.svg": "icons/traffic-lights.svg",
|
2440
|
-
"train.svg": "icons/train.svg",
|
2441
|
-
"trash-off.svg": "icons/trash-off.svg",
|
2442
|
-
"trash.svg": "icons/trash.svg",
|
2443
|
-
"tree.svg": "icons/tree.svg",
|
2444
|
-
"trees.svg": "icons/trees.svg",
|
2445
|
-
"trending-down-2.svg": "icons/trending-down-2.svg",
|
2446
|
-
"trending-down-3.svg": "icons/trending-down-3.svg",
|
2447
|
-
"trending-down.svg": "icons/trending-down.svg",
|
2448
|
-
"trending-up-2.svg": "icons/trending-up-2.svg",
|
2449
|
-
"trending-up-3.svg": "icons/trending-up-3.svg",
|
2450
|
-
"trending-up.svg": "icons/trending-up.svg",
|
2451
|
-
"triangle-off.svg": "icons/triangle-off.svg",
|
2452
|
-
"triangle-square-circle.svg": "icons/triangle-square-circle.svg",
|
2453
|
-
"triangle.svg": "icons/triangle.svg",
|
2454
|
-
"trident.svg": "icons/trident.svg",
|
2455
|
-
"trophy.svg": "icons/trophy.svg",
|
2456
|
-
"truck-delivery.svg": "icons/truck-delivery.svg",
|
2457
|
-
"truck-off.svg": "icons/truck-off.svg",
|
2458
|
-
"truck-return.svg": "icons/truck-return.svg",
|
2459
|
-
"truck.svg": "icons/truck.svg",
|
2460
|
-
"typography.svg": "icons/typography.svg",
|
2461
|
-
"umbrella.svg": "icons/umbrella.svg",
|
2462
|
-
"underline.svg": "icons/underline.svg",
|
2463
|
-
"unlink.svg": "icons/unlink.svg",
|
2464
|
-
"upload.svg": "icons/upload.svg",
|
2465
|
-
"urgent.svg": "icons/urgent.svg",
|
2466
|
-
"user-check.svg": "icons/user-check.svg",
|
2467
|
-
"user-exclamation.svg": "icons/user-exclamation.svg",
|
2468
|
-
"user-minus.svg": "icons/user-minus.svg",
|
2469
|
-
"user-off.svg": "icons/user-off.svg",
|
2470
|
-
"user-plus.svg": "icons/user-plus.svg",
|
2471
|
-
"user-x.svg": "icons/user-x.svg",
|
2472
|
-
"user.svg": "icons/user.svg",
|
2473
|
-
"users.svg": "icons/users.svg",
|
2474
|
-
"vaccine.svg": "icons/vaccine.svg",
|
2475
|
-
"variable.svg": "icons/variable.svg",
|
2476
|
-
"vector-beizer-2.svg": "icons/vector-beizer-2.svg",
|
2477
|
-
"vector-beizer.svg": "icons/vector-beizer.svg",
|
2478
|
-
"vector-triangle.svg": "icons/vector-triangle.svg",
|
2479
|
-
"vector.svg": "icons/vector.svg",
|
2480
|
-
"venus.svg": "icons/venus.svg",
|
2481
|
-
"versions.svg": "icons/versions.svg",
|
2482
|
-
"video-minus.svg": "icons/video-minus.svg",
|
2483
|
-
"video-off.svg": "icons/video-off.svg",
|
2484
|
-
"video-plus.svg": "icons/video-plus.svg",
|
2485
|
-
"video.svg": "icons/video.svg",
|
2486
|
-
"view-360.svg": "icons/view-360.svg",
|
2487
|
-
"viewfinder.svg": "icons/viewfinder.svg",
|
2488
|
-
"viewport-narrow.svg": "icons/viewport-narrow.svg",
|
2489
|
-
"viewport-wide.svg": "icons/viewport-wide.svg",
|
2490
|
-
"virus-off.svg": "icons/virus-off.svg",
|
2491
|
-
"virus-search.svg": "icons/virus-search.svg",
|
2492
|
-
"virus.svg": "icons/virus.svg",
|
2493
|
-
"volume-2.svg": "icons/volume-2.svg",
|
2494
|
-
"volume-3.svg": "icons/volume-3.svg",
|
2495
|
-
"volume.svg": "icons/volume.svg",
|
2496
|
-
"walk.svg": "icons/walk.svg",
|
2497
|
-
"wallet.svg": "icons/wallet.svg",
|
2498
|
-
"wand.svg": "icons/wand.svg",
|
2499
|
-
"wave-saw-tool.svg": "icons/wave-saw-tool.svg",
|
2500
|
-
"wave-sine.svg": "icons/wave-sine.svg",
|
2501
|
-
"wave-square.svg": "icons/wave-square.svg",
|
2502
|
-
"wifi-0.svg": "icons/wifi-0.svg",
|
2503
|
-
"wifi-1.svg": "icons/wifi-1.svg",
|
2504
|
-
"wifi-2.svg": "icons/wifi-2.svg",
|
2505
|
-
"wifi-off.svg": "icons/wifi-off.svg",
|
2506
|
-
"wifi.svg": "icons/wifi.svg",
|
2507
|
-
"wind.svg": "icons/wind.svg",
|
2508
|
-
"windmill.svg": "icons/windmill.svg",
|
2509
|
-
"window.svg": "icons/window.svg",
|
2510
|
-
"wiper-wash.svg": "icons/wiper-wash.svg",
|
2511
|
-
"wiper.svg": "icons/wiper.svg",
|
2512
|
-
"woman.svg": "icons/woman.svg",
|
2513
|
-
"world-latitude.svg": "icons/world-latitude.svg",
|
2514
|
-
"world-longitude.svg": "icons/world-longitude.svg",
|
2515
|
-
"world.svg": "icons/world.svg",
|
2516
|
-
"wrecking-ball.svg": "icons/wrecking-ball.svg",
|
2517
|
-
"writing-sign.svg": "icons/writing-sign.svg",
|
2518
|
-
"writing.svg": "icons/writing.svg",
|
2519
|
-
"x.svg": "icons/x.svg",
|
2520
|
-
"yin-yang.svg": "icons/yin-yang.svg",
|
2521
|
-
"zodiac-aquarius.svg": "icons/zodiac-aquarius.svg",
|
2522
|
-
"zodiac-aries.svg": "icons/zodiac-aries.svg",
|
2523
|
-
"zodiac-cancer.svg": "icons/zodiac-cancer.svg",
|
2524
|
-
"zodiac-capricorn.svg": "icons/zodiac-capricorn.svg",
|
2525
|
-
"zodiac-gemini.svg": "icons/zodiac-gemini.svg",
|
2526
|
-
"zodiac-leo.svg": "icons/zodiac-leo.svg",
|
2527
|
-
"zodiac-libra.svg": "icons/zodiac-libra.svg",
|
2528
|
-
"zodiac-pisces.svg": "icons/zodiac-pisces.svg",
|
2529
|
-
"zodiac-sagittarius.svg": "icons/zodiac-sagittarius.svg",
|
2530
|
-
"zodiac-scorpio.svg": "icons/zodiac-scorpio.svg",
|
2531
|
-
"zodiac-taurus.svg": "icons/zodiac-taurus.svg",
|
2532
|
-
"zodiac-virgo.svg": "icons/zodiac-virgo.svg",
|
2533
|
-
"zoom-cancel.svg": "icons/zoom-cancel.svg",
|
2534
|
-
"zoom-check.svg": "icons/zoom-check.svg",
|
2535
|
-
"zoom-in.svg": "icons/zoom-in.svg",
|
2536
|
-
"zoom-money.svg": "icons/zoom-money.svg",
|
2537
|
-
"zoom-out.svg": "icons/zoom-out.svg",
|
2538
|
-
"zoom-question.svg": "icons/zoom-question.svg"
|
2604
|
+
"main-f3598c513153eb56a058.css.gz": "main-f3598c513153eb56a058.css.gz",
|
2605
|
+
"main-f3598c513153eb56a058.js.LICENSE.txt": "main-f3598c513153eb56a058.js.LICENSE.txt",
|
2606
|
+
"main-f3598c513153eb56a058.js.gz": "main-f3598c513153eb56a058.js.gz",
|
2607
|
+
"main.css": "main-f3598c513153eb56a058.css",
|
2608
|
+
"main.js": "main-f3598c513153eb56a058.js"
|
2539
2609
|
}
|