trusty-cms 3.8.0 → 3.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +100 -92
- data/app/assets/images/admin/default_forgot_password.svg +1 -0
- data/app/assets/images/admin/default_reset_password.svg +1 -0
- data/app/assets/images/admin/default_safe_login.svg +1 -0
- data/app/assets/javascripts/admin.js +0 -1
- data/app/assets/javascripts/admin/modernizr.js +3 -409
- data/app/assets/stylesheets/admin/partials/_forms.scss +39 -0
- data/app/assets/stylesheets/admin/partials/_layout.scss +8 -0
- data/app/assets/stylesheets/admin/partials/_validations.scss +6 -13
- data/app/controllers/admin/assets_controller.rb +7 -0
- data/app/controllers/admin/preferences_controller.rb +1 -1
- data/app/controllers/admin/resource_controller.rb +6 -0
- data/app/controllers/admin/users_controller.rb +3 -2
- data/app/controllers/application_controller.rb +5 -7
- data/app/controllers/site_controller.rb +2 -1
- data/app/controllers/social_mailer_controller.rb +2 -1
- data/app/models/legacy_user.rb +6 -0
- data/app/models/user.rb +39 -68
- data/app/models/user_action_observer.rb +4 -2
- data/app/views/admin/configuration/show.html.haml +2 -7
- data/app/views/admin/layouts/_site_chooser.html.haml +1 -1
- data/app/views/admin/pages/_node.html.haml +2 -2
- data/app/views/admin/preferences/edit.html.haml +9 -14
- data/app/views/admin/users/_form.html.haml +8 -15
- data/app/views/admin/users/index.html.haml +0 -1
- data/app/views/devise/passwords/edit.html.haml +23 -0
- data/app/views/devise/passwords/new.html.haml +14 -0
- data/app/views/devise/sessions/new.html.haml +25 -0
- data/app/views/devise/shared/_links.html.haml +16 -0
- data/app/views/layouts/application.html.haml +1 -1
- data/config/application.rb +1 -0
- data/config/initializers/devise.rb +310 -0
- data/config/routes.rb +6 -10
- data/db/migrate/20200117141251_create_admin_users.rb +51 -0
- data/lib/generators/extension_controller/templates/controller.rb +1 -1
- data/lib/login_system.rb +40 -44
- data/lib/tasks/upgrade_to_devise.rake +22 -0
- data/lib/trusty_cms.rb +1 -1
- data/lib/trusty_cms/admin_ui.rb +3 -3
- data/lib/trusty_cms/engine.rb +2 -0
- data/lib/trusty_cms/setup.rb +0 -1
- data/trusty_cms.gemspec +1 -0
- data/vendor/extensions/clipped-extension/clipped_extension.rb +0 -2
- data/vendor/extensions/multi-site-extension/lib/multi_site/site_chooser_helper.rb +1 -1
- data/vendor/extensions/snippets-extension/snippets_extension.rb +0 -2
- metadata +27 -8
- data/app/assets/javascripts/admin/cookie.js +0 -80
- data/app/controllers/admin/password_resets_controller.rb +0 -31
- data/app/controllers/admin/welcome_controller.rb +0 -47
- data/app/views/admin/password_resets/edit.html.haml +0 -27
- data/app/views/admin/password_resets/new.html.haml +0 -12
- data/app/views/password_mailer/password_reset.html.haml +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dcbafa19380e5c137beb9176eb345e496c317f5ae02af29dbf9596b4a946d7f4
|
4
|
+
data.tar.gz: 572ea0682bc3a4ae42aed982fc60da02a3df5d215e69d666c7807a737ec76b6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 836536ed680bb4bcdb6ac7d8e24a3af19c988ba8e81e9ca328388c73e9dafae2002f54d42eb61ec82c48f7c396465054a76fd82757fc1b680e42be4f7736a102
|
7
|
+
data.tar.gz: 14151229fe62788b174582850649b94697d914bfe97311e2acf30cf26fbea5fc105e07b4d92774e8f5037aadce6d4d181a573cd1d420546bda3fe285dbe942d8
|
data/Gemfile.lock
CHANGED
@@ -1,12 +1,13 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
trusty-cms (3.8.
|
4
|
+
trusty-cms (3.8.1)
|
5
5
|
RedCloth (= 4.3.2)
|
6
6
|
acts_as_list (~> 0.9.5)
|
7
7
|
acts_as_tree (>= 2.6.1, < 2.9.0)
|
8
8
|
ckeditor (>= 4.2.2, < 4.3.0)
|
9
9
|
delocalize (>= 0.2, < 2.0)
|
10
|
+
devise
|
10
11
|
execjs (~> 2.7)
|
11
12
|
haml (~> 5.0)
|
12
13
|
haml-rails (~> 1.0.0)
|
@@ -33,43 +34,43 @@ GEM
|
|
33
34
|
remote: https://rubygems.org/
|
34
35
|
specs:
|
35
36
|
RedCloth (4.3.2)
|
36
|
-
actioncable (5.2.
|
37
|
-
actionpack (= 5.2.
|
37
|
+
actioncable (5.2.4.1)
|
38
|
+
actionpack (= 5.2.4.1)
|
38
39
|
nio4r (~> 2.0)
|
39
40
|
websocket-driver (>= 0.6.1)
|
40
|
-
actionmailer (5.2.
|
41
|
-
actionpack (= 5.2.
|
42
|
-
actionview (= 5.2.
|
43
|
-
activejob (= 5.2.
|
41
|
+
actionmailer (5.2.4.1)
|
42
|
+
actionpack (= 5.2.4.1)
|
43
|
+
actionview (= 5.2.4.1)
|
44
|
+
activejob (= 5.2.4.1)
|
44
45
|
mail (~> 2.5, >= 2.5.4)
|
45
46
|
rails-dom-testing (~> 2.0)
|
46
|
-
actionpack (5.2.
|
47
|
-
actionview (= 5.2.
|
48
|
-
activesupport (= 5.2.
|
49
|
-
rack (~> 2.0)
|
47
|
+
actionpack (5.2.4.1)
|
48
|
+
actionview (= 5.2.4.1)
|
49
|
+
activesupport (= 5.2.4.1)
|
50
|
+
rack (~> 2.0, >= 2.0.8)
|
50
51
|
rack-test (>= 0.6.3)
|
51
52
|
rails-dom-testing (~> 2.0)
|
52
53
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
53
|
-
actionview (5.2.
|
54
|
-
activesupport (= 5.2.
|
54
|
+
actionview (5.2.4.1)
|
55
|
+
activesupport (= 5.2.4.1)
|
55
56
|
builder (~> 3.1)
|
56
57
|
erubi (~> 1.4)
|
57
58
|
rails-dom-testing (~> 2.0)
|
58
59
|
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
59
|
-
activejob (5.2.
|
60
|
-
activesupport (= 5.2.
|
60
|
+
activejob (5.2.4.1)
|
61
|
+
activesupport (= 5.2.4.1)
|
61
62
|
globalid (>= 0.3.6)
|
62
|
-
activemodel (5.2.
|
63
|
-
activesupport (= 5.2.
|
64
|
-
activerecord (5.2.
|
65
|
-
activemodel (= 5.2.
|
66
|
-
activesupport (= 5.2.
|
63
|
+
activemodel (5.2.4.1)
|
64
|
+
activesupport (= 5.2.4.1)
|
65
|
+
activerecord (5.2.4.1)
|
66
|
+
activemodel (= 5.2.4.1)
|
67
|
+
activesupport (= 5.2.4.1)
|
67
68
|
arel (>= 9.0)
|
68
|
-
activestorage (5.2.
|
69
|
-
actionpack (= 5.2.
|
70
|
-
activerecord (= 5.2.
|
69
|
+
activestorage (5.2.4.1)
|
70
|
+
actionpack (= 5.2.4.1)
|
71
|
+
activerecord (= 5.2.4.1)
|
71
72
|
marcel (~> 0.3.1)
|
72
|
-
activesupport (5.2.
|
73
|
+
activesupport (5.2.4.1)
|
73
74
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
74
75
|
i18n (>= 0.7, < 2)
|
75
76
|
minitest (~> 5.1)
|
@@ -78,12 +79,13 @@ GEM
|
|
78
79
|
activerecord (>= 3.0)
|
79
80
|
acts_as_tree (2.8.0)
|
80
81
|
activerecord (>= 3.0.0)
|
81
|
-
addressable (2.
|
82
|
-
public_suffix (>= 2.0.2, <
|
82
|
+
addressable (2.7.0)
|
83
|
+
public_suffix (>= 2.0.2, < 5.0)
|
83
84
|
arel (9.0.0)
|
84
|
-
|
85
|
-
|
86
|
-
|
85
|
+
bcrypt (3.1.13)
|
86
|
+
builder (3.2.4)
|
87
|
+
byebug (11.1.1)
|
88
|
+
capybara (3.31.0)
|
87
89
|
addressable
|
88
90
|
mini_mime (>= 0.1.3)
|
89
91
|
nokogiri (~> 1.8)
|
@@ -100,15 +102,21 @@ GEM
|
|
100
102
|
terrapin (= 0.6.0)
|
101
103
|
coderay (1.1.2)
|
102
104
|
concurrent-ruby (1.1.5)
|
103
|
-
crass (1.0.
|
105
|
+
crass (1.0.6)
|
104
106
|
css_parser (1.7.1)
|
105
107
|
addressable
|
106
108
|
database_cleaner (1.7.0)
|
107
109
|
delocalize (1.2.0)
|
108
110
|
rails (>= 2)
|
111
|
+
devise (4.7.1)
|
112
|
+
bcrypt (~> 3.0)
|
113
|
+
orm_adapter (~> 0.1)
|
114
|
+
railties (>= 4.1.0)
|
115
|
+
responders
|
116
|
+
warden (~> 1.2.3)
|
109
117
|
diff-lcs (1.3)
|
110
118
|
docile (1.3.2)
|
111
|
-
erubi (1.
|
119
|
+
erubi (1.9.0)
|
112
120
|
erubis (2.7.0)
|
113
121
|
execjs (2.7.0)
|
114
122
|
factory_bot (5.0.2)
|
@@ -116,7 +124,7 @@ GEM
|
|
116
124
|
factory_bot_rails (5.0.2)
|
117
125
|
factory_bot (~> 5.0.2)
|
118
126
|
railties (>= 4.2.0)
|
119
|
-
ffi (1.
|
127
|
+
ffi (1.12.1)
|
120
128
|
globalid (0.4.2)
|
121
129
|
activesupport (>= 4.2.0)
|
122
130
|
haml (5.1.2)
|
@@ -137,9 +145,9 @@ GEM
|
|
137
145
|
httparty (0.17.3)
|
138
146
|
mime-types (~> 3.0)
|
139
147
|
multi_xml (>= 0.5.2)
|
140
|
-
i18n (1.
|
148
|
+
i18n (1.8.2)
|
141
149
|
concurrent-ruby (~> 1.0)
|
142
|
-
json (2.
|
150
|
+
json (2.3.0)
|
143
151
|
kraken-io (0.1.3)
|
144
152
|
activesupport
|
145
153
|
httparty
|
@@ -147,7 +155,7 @@ GEM
|
|
147
155
|
multipart-post
|
148
156
|
launchy (2.4.3)
|
149
157
|
addressable (~> 2.3)
|
150
|
-
libv8 (7.3.492.27.1
|
158
|
+
libv8 (7.3.492.27.1)
|
151
159
|
loofah (2.4.0)
|
152
160
|
crass (~> 1.0.2)
|
153
161
|
nokogiri (>= 1.5.9)
|
@@ -159,12 +167,12 @@ GEM
|
|
159
167
|
mime-types (3.3.1)
|
160
168
|
mime-types-data (~> 3.2015)
|
161
169
|
mime-types-data (3.2019.1009)
|
162
|
-
mimemagic (0.3.
|
163
|
-
mini_mime (1.0.
|
170
|
+
mimemagic (0.3.4)
|
171
|
+
mini_mime (1.0.2)
|
164
172
|
mini_portile2 (2.4.0)
|
165
173
|
mini_racer (0.2.9)
|
166
174
|
libv8 (>= 6.9.411)
|
167
|
-
minitest (5.
|
175
|
+
minitest (5.14.0)
|
168
176
|
multi_xml (0.6.0)
|
169
177
|
multipart-post (2.1.1)
|
170
178
|
mysql2 (0.5.3)
|
@@ -185,91 +193,89 @@ GEM
|
|
185
193
|
pry (0.12.2)
|
186
194
|
coderay (~> 1.1.0)
|
187
195
|
method_source (~> 0.9.0)
|
188
|
-
pry-byebug (3.
|
196
|
+
pry-byebug (3.8.0)
|
189
197
|
byebug (~> 11.0)
|
190
198
|
pry (~> 0.10)
|
191
|
-
public_suffix (
|
199
|
+
public_suffix (4.0.3)
|
192
200
|
rack (2.0.8)
|
193
201
|
rack-cache (1.11.0)
|
194
202
|
rack (>= 0.4)
|
195
203
|
rack-test (1.1.0)
|
196
204
|
rack (>= 1.0, < 3)
|
197
205
|
radius (0.7.5)
|
198
|
-
rails (5.2.
|
199
|
-
actioncable (= 5.2.
|
200
|
-
actionmailer (= 5.2.
|
201
|
-
actionpack (= 5.2.
|
202
|
-
actionview (= 5.2.
|
203
|
-
activejob (= 5.2.
|
204
|
-
activemodel (= 5.2.
|
205
|
-
activerecord (= 5.2.
|
206
|
-
activestorage (= 5.2.
|
207
|
-
activesupport (= 5.2.
|
206
|
+
rails (5.2.4.1)
|
207
|
+
actioncable (= 5.2.4.1)
|
208
|
+
actionmailer (= 5.2.4.1)
|
209
|
+
actionpack (= 5.2.4.1)
|
210
|
+
actionview (= 5.2.4.1)
|
211
|
+
activejob (= 5.2.4.1)
|
212
|
+
activemodel (= 5.2.4.1)
|
213
|
+
activerecord (= 5.2.4.1)
|
214
|
+
activestorage (= 5.2.4.1)
|
215
|
+
activesupport (= 5.2.4.1)
|
208
216
|
bundler (>= 1.3.0)
|
209
|
-
railties (= 5.2.
|
217
|
+
railties (= 5.2.4.1)
|
210
218
|
sprockets-rails (>= 2.0.0)
|
211
219
|
rails-dom-testing (2.0.3)
|
212
220
|
activesupport (>= 4.2.0)
|
213
221
|
nokogiri (>= 1.6)
|
214
|
-
rails-html-sanitizer (1.0
|
215
|
-
loofah (~> 2.
|
222
|
+
rails-html-sanitizer (1.3.0)
|
223
|
+
loofah (~> 2.3)
|
216
224
|
rails-observers (0.1.5)
|
217
225
|
activemodel (>= 4.0)
|
218
|
-
railties (5.2.
|
219
|
-
actionpack (= 5.2.
|
220
|
-
activesupport (= 5.2.
|
226
|
+
railties (5.2.4.1)
|
227
|
+
actionpack (= 5.2.4.1)
|
228
|
+
activesupport (= 5.2.4.1)
|
221
229
|
method_source
|
222
230
|
rake (>= 0.8.7)
|
223
231
|
thor (>= 0.19.0, < 2.0)
|
224
232
|
rake (12.3.3)
|
225
|
-
rb-fsevent (0.10.3)
|
226
|
-
rb-inotify (0.10.0)
|
227
|
-
ffi (~> 1.0)
|
228
233
|
rdoc (6.2.1)
|
229
|
-
regexp_parser (1.
|
234
|
+
regexp_parser (1.6.0)
|
235
|
+
responders (3.0.0)
|
236
|
+
actionpack (>= 5.0)
|
237
|
+
railties (>= 5.0)
|
230
238
|
roadie (4.0.0)
|
231
239
|
css_parser (~> 1.4)
|
232
240
|
nokogiri (~> 1.8)
|
233
241
|
roadie-rails (2.1.1)
|
234
242
|
railties (>= 5.1, < 6.1)
|
235
243
|
roadie (>= 3.1, < 5.0)
|
236
|
-
rspec-core (3.
|
237
|
-
rspec-support (~> 3.
|
238
|
-
rspec-expectations (3.
|
244
|
+
rspec-core (3.9.1)
|
245
|
+
rspec-support (~> 3.9.1)
|
246
|
+
rspec-expectations (3.9.0)
|
239
247
|
diff-lcs (>= 1.2.0, < 2.0)
|
240
|
-
rspec-support (~> 3.
|
241
|
-
rspec-mocks (3.
|
248
|
+
rspec-support (~> 3.9.0)
|
249
|
+
rspec-mocks (3.9.1)
|
242
250
|
diff-lcs (>= 1.2.0, < 2.0)
|
243
|
-
rspec-support (~> 3.
|
244
|
-
rspec-rails (3.
|
251
|
+
rspec-support (~> 3.9.0)
|
252
|
+
rspec-rails (3.9.0)
|
245
253
|
actionpack (>= 3.0)
|
246
254
|
activesupport (>= 3.0)
|
247
255
|
railties (>= 3.0)
|
248
|
-
rspec-core (~> 3.
|
249
|
-
rspec-expectations (~> 3.
|
250
|
-
rspec-mocks (~> 3.
|
251
|
-
rspec-support (~> 3.
|
252
|
-
rspec-support (3.
|
256
|
+
rspec-core (~> 3.9.0)
|
257
|
+
rspec-expectations (~> 3.9.0)
|
258
|
+
rspec-mocks (~> 3.9.0)
|
259
|
+
rspec-support (~> 3.9.0)
|
260
|
+
rspec-support (3.9.2)
|
253
261
|
ruby_parser (3.14.1)
|
254
262
|
sexp_processor (~> 4.9)
|
255
|
-
sass (
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
sprockets
|
264
|
-
|
265
|
-
tilt (>= 1.1, < 3)
|
263
|
+
sass-rails (6.0.0)
|
264
|
+
sassc-rails (~> 2.1, >= 2.1.1)
|
265
|
+
sassc (2.2.1)
|
266
|
+
ffi (~> 1.9)
|
267
|
+
sassc-rails (2.1.2)
|
268
|
+
railties (>= 4.0.0)
|
269
|
+
sassc (>= 2.0)
|
270
|
+
sprockets (> 3.0)
|
271
|
+
sprockets-rails
|
272
|
+
tilt
|
266
273
|
sexp_processor (4.13.0)
|
267
|
-
simplecov (0.
|
274
|
+
simplecov (0.18.0)
|
268
275
|
docile (~> 1.1)
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
sprockets (3.7.2)
|
276
|
+
simplecov-html (~> 0.11.0)
|
277
|
+
simplecov-html (0.11.0)
|
278
|
+
sprockets (4.0.0)
|
273
279
|
concurrent-ruby (~> 1.0)
|
274
280
|
rack (> 1, < 3)
|
275
281
|
sprockets-rails (3.2.1)
|
@@ -280,16 +286,18 @@ GEM
|
|
280
286
|
temple (0.8.2)
|
281
287
|
terrapin (0.6.0)
|
282
288
|
climate_control (>= 0.0.3, < 1.0)
|
283
|
-
thor (0.
|
289
|
+
thor (1.0.1)
|
284
290
|
thread_safe (0.3.6)
|
285
|
-
tilt (2.0.
|
291
|
+
tilt (2.0.10)
|
286
292
|
trustygems (0.2.1)
|
287
293
|
rake
|
288
|
-
tzinfo (1.2.
|
294
|
+
tzinfo (1.2.6)
|
289
295
|
thread_safe (~> 0.1)
|
290
296
|
uglifier (4.2.0)
|
291
297
|
execjs (>= 0.3.0, < 3)
|
292
298
|
uuidtools (2.1.5)
|
299
|
+
warden (1.2.8)
|
300
|
+
rack (>= 2.0.6)
|
293
301
|
websocket-driver (0.7.1)
|
294
302
|
websocket-extensions (>= 0.1.0)
|
295
303
|
websocket-extensions (0.1.4)
|
@@ -316,4 +324,4 @@ DEPENDENCIES
|
|
316
324
|
trustygems (~> 0.2.0)
|
317
325
|
|
318
326
|
BUNDLED WITH
|
319
|
-
2.
|
327
|
+
2.1.4
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="fafd2220-3b39-4538-bdd8-5627e33a2e32" width="1097.1" height="811.81" data-name="Layer 1" viewBox="0 0 1097.1 811.81"><defs><linearGradient id="1c2fe1a5-71ac-4c34-8a58-b17380e220b9" x1="593.13" x2="593.13" y1="855.9" y2="67.88" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity=".25"/><stop offset=".54" stop-color="gray" stop-opacity=".12"/><stop offset="1" stop-color="gray" stop-opacity=".1"/></linearGradient></defs><title>forgot password</title><g opacity=".1"><path fill="#3c3a4b" d="M929.91,619.25S851.59,609.08,910,735.84c0,0,53.23-22.81,55.35-74.26a40.94,40.94,0,0,0-34.33-42.17Z" transform="translate(-51.45 -44.1)"/><path fill="none" stroke="#535461" stroke-miterlimit="10" d="M931.06,619.06s17.73,70.68-21,116.79" transform="translate(-51.45 -44.1)"/><path fill="none" stroke="#535461" stroke-miterlimit="10" stroke-width="2" d="M909,742.38s28.2-69.5,80.86-95.28A113.65,113.65,0,0,0,1041.47,597a191.13,191.13,0,0,0,12.93-32.47" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1087.49,548.1c-5.49,6.9-33.9,17-33.9,17s3.42-30,8.91-36.85a16,16,0,1,1,25,19.88Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1077.74,602.75c-8.36,2.81-37.68-4.18-37.68-4.18s19.15-23.28,27.51-26.09a16,16,0,1,1,10.17,30.27Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1024.88,667.36c-8.63-1.79-30.42-22.63-30.42-22.63s28.28-10.43,36.92-8.64a16,16,0,0,1-6.5,31.26Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M973.88,707.24c-8.81-.31-33.81-17.16-33.81-17.16S966.19,675,975,675.32a16,16,0,0,1-1.12,31.91Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1012.76,579c1.13,8.75,20.22,32.07,20.22,32.07s12.57-27.4,11.45-36.15a16,16,0,1,0-31.67,4.08Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M953.7,626.44c3.69,8,28.89,24.55,28.89,24.55s3.8-29.91.11-37.91a16,16,0,1,0-29,13.37Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M902.62,680.38c2.28,8.52,24.33,29.08,24.33,29.08s8.8-28.83,6.51-37.35a16,16,0,1,0-30.84,8.27Z" transform="translate(-51.45 -44.1)"/><path d="M1087.49,548.1c-5.49,6.9-33.9,17-33.9,17s3.42-30,8.91-36.85a16,16,0,1,1,25,19.88Z" opacity=".25" transform="translate(-51.45 -44.1)"/><path d="M1077.74,602.75c-8.36,2.81-37.68-4.18-37.68-4.18s19.15-23.28,27.51-26.09a16,16,0,1,1,10.17,30.27Z" opacity=".25" transform="translate(-51.45 -44.1)"/><path d="M1024.88,667.36c-8.63-1.79-30.42-22.63-30.42-22.63s28.28-10.43,36.92-8.64a16,16,0,0,1-6.5,31.26Z" opacity=".25" transform="translate(-51.45 -44.1)"/><path d="M973.88,707.24c-8.81-.31-33.81-17.16-33.81-17.16S966.19,675,975,675.32a16,16,0,0,1-1.12,31.91Z" opacity=".25" transform="translate(-51.45 -44.1)"/><path d="M1012.76,579c1.13,8.75,20.22,32.07,20.22,32.07s12.57-27.4,11.45-36.15a16,16,0,1,0-31.67,4.08Z" opacity=".25" transform="translate(-51.45 -44.1)"/><path d="M953.7,626.44c3.69,8,28.89,24.55,28.89,24.55s3.8-29.91.11-37.91a16,16,0,1,0-29,13.37Z" opacity=".25" transform="translate(-51.45 -44.1)"/><path d="M902.62,680.38c2.28,8.52,24.33,29.08,24.33,29.08s8.8-28.83,6.51-37.35a16,16,0,1,0-30.84,8.27Z" opacity=".25" transform="translate(-51.45 -44.1)"/><path fill="none" stroke="#535461" stroke-miterlimit="10" stroke-width="2" d="M946.56,774s28.2-69.5,80.86-95.28A113.65,113.65,0,0,0,1079,628.61a191.13,191.13,0,0,0,12.93-32.47" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1125,579.7c-5.49,6.9-33.9,17-33.9,17s3.42-30,8.91-36.85a16,16,0,0,1,25,19.88Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1115.27,634.35c-8.36,2.81-37.68-4.18-37.68-4.18s19.15-23.28,27.51-26.09a16,16,0,0,1,10.17,30.27Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1062.41,699c-8.63-1.79-30.42-22.63-30.42-22.63s28.28-10.43,36.92-8.64a16,16,0,0,1-6.5,31.26Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1011.4,738.83c-8.81-.31-33.81-17.16-33.81-17.16s26.12-15.06,34.93-14.75a16,16,0,0,1-1.12,31.91Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1050.28,610.64c1.13,8.75,20.22,32.07,20.22,32.07s12.57-27.4,11.45-36.15a16,16,0,1,0-31.67,4.08Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M991.23,658c3.69,8,28.89,24.55,28.89,24.55s3.8-29.91.11-37.91a16,16,0,0,0-29,13.37Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M940.15,712c2.28,8.52,24.33,29.08,24.33,29.08s8.8-28.83,6.51-37.35A16,16,0,0,0,940.15,712Z" transform="translate(-51.45 -44.1)"/></g><path fill="#3c3a4b" d="M63.3,474.07c17.36,74.2,54.11,138.34,112.19,169.43,120.7,64.61,392.91,31.29,596.07-7A465.21,465.21,0,0,0,1036.09,485.3Z" opacity=".1" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1128.65,124.81H1017.18a9.63,9.63,0,1,1,0-19.27h19.27a9.63,9.63,0,0,1,0-19.27h-13.76a9.63,9.63,0,0,1,0-19.27h58.18c-12.91-6-28-10.27-45.38-12.51-158.64-20.38-215.28-6.9-235.26,7-24.65,17.1-52.15,29.68-81.54,35.74C620.8,117.4,437.75,141.7,271.84,89.43c-82.46-26-143.75,17.92-180.48,91.28H1148c-1.38-21.32-5.51-41-13.09-58.24A9.58,9.58,0,0,1,1128.65,124.81Z" opacity=".1" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M53.84,319.2a491.06,491.06,0,0,0,4.33,129.46l978.68,35.79a460,460,0,0,0,68-103.7Zm387.08,92.35H421.65a9.63,9.63,0,0,1,0,19.27H310.18a9.63,9.63,0,1,1,0-19.27h19.27a9.63,9.63,0,0,1,0-19.27H315.69a9.63,9.63,0,0,1,0-19.27H427.16a9.63,9.63,0,1,1,0,19.27h13.76a9.63,9.63,0,0,1,0,19.27Z" opacity=".1" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M1148.05,181.38l-1068.49,26C66.57,240.79,58,278.56,54,317.71H1129.33a456.46,456.46,0,0,0,15.53-70.33C1148.06,224.37,1149.34,202.11,1148.05,181.38ZM270.92,266.55H251.65a9.63,9.63,0,0,1,0,19.27H140.18a9.63,9.63,0,1,1,0-19.27h19.27a9.63,9.63,0,0,1,0-19.27H145.69a9.63,9.63,0,0,1,0-19.27H257.16a9.63,9.63,0,1,1,0,19.27h13.76a9.63,9.63,0,0,1,0,19.27Z" opacity=".1" transform="translate(-51.45 -44.1)"/><path fill="url(#1c2fe1a5-71ac-4c34-8a58-b17380e220b9)" d="M990.13,855.4S945.57,611,860.6,571.34c-72-33.63-149.86-56.3-172-62.45A95.61,95.61,0,0,0,677.19,494c-30.26-31.59-48.44-31-51.38-30.61a153.83,153.83,0,0,1-3-19c-.09-1-.18-1.93-.26-2.92l.26-.13c-.18-1.89-.34-3.84-.48-5.85a150.6,150.6,0,0,0,33.79-24.61c.13.43.24.86.38,1.3q32.71-27.65,64.07-56.8c6-5.61,12.3-11.7,14.34-19.61a28.78,28.78,0,0,0,.75-8.32c.27-6-1.15-12.13-1.39-18.21,0-1,.11-1.93.24-2.88,1.4-9.95,8.32-18.12,14-26.47a124.82,124.82,0,0,0,21.23-71.46,121,121,0,0,0-5-36c-4.43-14.82-13.65-30.39-29-33.63-5.94-1.25-12.11-.47-18.17-.86-25.09-1.6-43.87-22-63.88-36.95a168.61,168.61,0,0,0-83.58-32.44c-9.45-1-19.21-1.07-28.2,1.93-20.19,6.72-32.45,27.47-51.9,36-14.38,6.34-31,5.31-46,10.07-22.33,7.1-41.28,30-41.78,53.53,0,.87,0,1.74,0,2.61,0,.15,0,.3,0,.44-.25,11.89,4,24,4.34,36.17q0,1.65.05,3.31c-.11,13.14-1.68,26.32-6.47,38.67-2.58,6.65-5.9,14.35-5.36,21-.3,4.07.49,7.89,3.32,11l4.83-4.26a146,146,0,0,0-2.43,26.58c0,44.94,20.44,85.18,52.68,112.26q.28,4.49.54,9.62c.76,14.82,1.36,33.41,1.19,53.67l-47.16,43.35-121.24,55s-110.88,23.42-87,179.19l11.4,96.72H312.15l-.23.51H462.17l.09-.51H819.74l-.07.51h14v-.51ZM626.7,465.87a103.92,103.92,0,0,1,7.2,19.8,81.11,81.11,0,0,1-7.77-20.88l.15.27Zm-171.82,20q0,2.86-.1,5.77l-.24.34A49,49,0,0,1,454.88,485.82Z" transform="translate(-51.45 -44.1)"/><path fill="#fdc2cc" d="M666.25,510.4l-20,191-107,34s-139-26-103-101c25.61-53.35,24.9-148.69,22.36-199.29-1-20.54-2.36-33.71-2.36-33.71s182-159,167-16c-2.9,27.69-3.07,49.34-1.46,66.26C628.54,522.1,666.25,510.4,666.25,510.4Z" transform="translate(-51.45 -44.1)"/><path d="M666.25,510.4l-20,191-107,34s-139-26-103-101c25.61-53.35,24.9-148.69,22.36-199.29-1-20.54-2.36-33.71-2.36-33.71s182-159,167-16c-2.9,27.69-3.07,49.34-1.46,66.26C628.54,522.1,666.25,510.4,666.25,510.4Z" opacity=".03" transform="translate(-51.45 -44.1)"/><path d="M623.25,382.4c-2.9,27.69-3.07,49.34-1.46,66.26a145.07,145.07,0,0,1-163.18-16.55c-1-20.54-2.36-33.71-2.36-33.71S638.25,239.4,623.25,382.4Z" opacity=".1" transform="translate(-51.45 -44.1)"/><circle cx="500.8" cy="271.31" r="145" fill="#fdc2cc"/><circle cx="500.8" cy="271.31" r="145" opacity=".03"/><path fill="#3c3a4b" d="M976.25,855.4h-752l-11-95c-23-153,84-176,84-176l117-54,46.5-43.5c-15,57,98.5,175.5,98.5,175.5l0,0a26.88,26.88,0,0,0,2.07-2.15c3.06-3.34,10.37-11.7,27.49-32.44,6.12-7.43,13.51-16.44,22.41-27.38,42.8-52.6,20.84-114.75,14.28-127.6l-.41-.8c-.25-.46-.44-.83-.59-1.09a0,0,0,0,0,0,0,1.63,1.63,0,0,0-.15-.27,1.59,1.59,0,0,1-.11-.2l55,43s2.11.56,6,1.66c21.4,6,96.58,28.31,166,61.34C933.25,615.4,976.25,855.4,976.25,855.4Z" transform="translate(-51.45 -44.1)"/><path fill="#3c3a4b" d="M720.25,626.4c-9-9-70-20-70-20,2,24-72,61-72,61l5.5,188H548.27l-6-169,17-24,0,0,2.07-2.15a330,330,0,0,0,27.49-32.44c6.12-7.43,13.51-16.44,22.41-27.38,42.8-52.6,20.84-114.75,14.28-127.6l-.41-.8c-.24-.47-.43-.83-.59-1.09a0,0,0,0,0,0,0,1.63,1.63,0,0,0-.15-.27,1.59,1.59,0,0,1-.11-.2h0s18-4,50,30a93.75,93.75,0,0,1,11,14.66C711.26,556.85,728.18,634.33,720.25,626.4Z" transform="translate(-51.45 -44.1)"/><path d="M720.25,626.4c-9-9-70-20-70-20,2,24-72,61-72,61l5.5,188H548.27l-6-169,17-24,0,0,2.07-2.15a330,330,0,0,0,27.49-32.44c6.12-7.43,13.51-16.44,22.41-27.38,42.8-52.6,20.84-114.75,14.28-127.6l-.41-.8c-.24-.47-.43-.83-.59-1.09a0,0,0,0,0,0,0,1.63,1.63,0,0,0-.15-.27,1.59,1.59,0,0,1-.11-.2h0s18-4,50,30a93.75,93.75,0,0,1,11,14.66C711.26,556.85,728.18,634.33,720.25,626.4Z" opacity=".1" transform="translate(-51.45 -44.1)"/><path d="M313.25,703.4s47,96,49.5,152.5" opacity=".1" transform="translate(-51.45 -44.1)"/><polygon points="773.8 714.31 760.3 811.81 773.8 811.81 773.8 714.31" opacity=".1"/><path d="M323.75,855.9l74.5-169.5s21-40,26-80,32-103,32-103,67-85,98-73-27,57-27,57,85,33,27,131-59,80-59,80l-28.5,157.5Z" opacity=".1" transform="translate(-51.45 -44.1)"/><path fill="#fdc2cc" d="M321.75,855.9l74.5-169.5s21-40,26-80c3.18-25.43,15.25-60.16,23.62-82.09a125.86,125.86,0,0,1,23.72-39c21.66-24.24,61-63.33,82.66-54.93,31,12-27,57-27,57s85,33,27,131-59,80-59,80l-28.5,157.5Z" transform="translate(-51.45 -44.1)"/><circle cx="545.3" cy="189.81" r="3" fill="#fff" opacity=".15"/><circle cx="531.3" cy="195.81" r="3" fill="#fff" opacity=".15"/><path d="M449.24,132.68c14.47-4.68,30.53-3.67,44.41-9.89,18.77-8.42,30.6-28.8,50.08-35.4,8.68-2.94,18.1-2.83,27.21-1.89a161.07,161.07,0,0,1,80.66,31.87c19.31,14.69,37.43,34.72,61.64,36.29,5.85.38,11.8-.39,17.53.84,14.84,3.18,23.73,18.47,28,33A124.26,124.26,0,0,1,743.11,290.1c-5.48,8.2-12.16,16.23-13.51,26-1.32,9.58,2.76,19.51.38,28.89-2,7.77-8,13.75-13.84,19.26Q685.89,392.86,654.31,420c-10.94-34.76,5.11-72.19,2.61-108.54-1-14.16-6-29.62-18.49-36.3-11.69-6.24-26.63-3-38.46-9-13.2-6.65-18.62-22.4-28.6-33.3-17-18.6-46.51-21-70.28-12.6s-43.2,25.68-62,42.53l-34.17,30.65c-6.67-7.52-1.61-19.06,2-28.46,5.38-14.09,6.56-29.28,6.2-44.24-.29-12-4.43-23.85-4.19-35.53C409.41,162.17,427.69,139.65,449.24,132.68Z" opacity=".1" transform="translate(-51.45 -44.1)"/><path fill="#865a61" d="M449.24,129.68c14.47-4.68,30.53-3.67,44.41-9.89,18.77-8.42,30.6-28.8,50.08-35.4,8.68-2.94,18.1-2.83,27.21-1.89a161.07,161.07,0,0,1,80.66,31.87c19.31,14.69,37.43,34.72,61.64,36.29,5.85.38,11.8-.39,17.53.84,14.84,3.18,23.73,18.47,28,33A124.26,124.26,0,0,1,743.11,287.1c-5.48,8.2-12.16,16.23-13.51,26-1.32,9.58,2.76,19.51.38,28.89-2,7.77-8,13.75-13.84,19.26Q685.89,389.86,654.31,417c-10.94-34.76,5.11-72.19,2.61-108.54-1-14.16-6-29.62-18.49-36.3-11.69-6.24-26.63-3-38.46-9-13.2-6.65-18.62-22.4-28.6-33.3-17-18.6-46.51-21-70.28-12.6s-43.2,25.68-62,42.53l-34.17,30.65c-6.67-7.52-1.61-19.06,2-28.46,5.38-14.09,6.56-29.28,6.2-44.24-.29-12-4.43-23.85-4.19-35.53C409.41,159.17,427.69,136.65,449.24,129.68Z" transform="translate(-51.45 -44.1)"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="f9eb83fe-2109-496c-8de2-d29751931755" width="1166.17" height="805.09" data-name="Layer 1" viewBox="0 0 1166.17 805.09"><defs><linearGradient id="b7f84a8b-804f-4004-8d61-2f9b427d4893" x1="785.51" x2="938.51" y1="659.88" y2="659.88" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity=".25"/><stop offset=".54" stop-color="gray" stop-opacity=".12"/><stop offset="1" stop-color="gray" stop-opacity=".1"/></linearGradient></defs><title>authentication</title><path fill="#3c3a4b" d="M676.53,157.07c-74.75.1-146.7-21.09-215.52-44.63S323.9,62.54,250.54,51.37c-47.18-7.18-100.83-6.52-137.71,19.55C77.33,96,67.05,137.51,62.09,175.86c-3.73,28.85-5.45,59.13,8.52,85.52,9.7,18.32,26.3,33.42,38,50.88C149.45,373,124.89,450.59,85.2,512.74c-18.61,29.16-40.41,57.11-54.48,87.94s-19.84,65.79-5.49,96.22c14.22,30.16,46.34,52.05,80.81,67,70,30.42,151.5,36.94,230.81,39.45,175.56,5.57,351.46-5.79,526.89-17.15,64.92-4.2,130.13-8.43,193.71-20.6,35.3-6.75,71.65-16.77,96.68-38.73,31.77-27.88,38.27-73.4,15.15-106.12-38.77-54.88-141-65.23-168.8-124.61-15.33-32.69-2.11-70.18,17.36-101.69,41.76-67.61,113.64-128.17,114.85-203.79.83-51.93-36.55-102.59-92.38-125.16C981.79,41.86,902,47.94,861,92,818.84,137.39,742.53,157,676.53,157.07Z" opacity=".1" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1009.44,692.82s-12.29-8.11-24.47-2.34c0,0,3.75,7.22,19.17,6.54Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1011,693.25s3.74,14.24-5.64,23.93c0,0-5.64-5.87,0-20.25Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1026.28,679.58s-.91-12.11-28.26-8.09c0,0-.13,7.81,9.47,11.51S1021.49,683.58,1026.28,679.58Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1028,679.5s11.56,3.71,1.25,29.36c0,0-7.63-1.7-9-11.91S1022.94,683.22,1028,679.5Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1043.44,662.32s1.57-19.93-26.38-17.89c0,0-2,18,21.45,22.68Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1061.91,639.82s-3.83-22.59-31.77-15.86c0,0-.1,19.53,27.21,21.24Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1075.41,616.56s-6.42-22-34.1-15.42c0,0,6.59,19.79,32.26,19.48Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1088.23,593.84s-6.27-22.83-33-16c0,0,8.92,21.69,31.23,19.86Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1096.49,572.26s-4.82-27.92-29.74-21.74c0,0,7.24,25.4,27.91,25.81Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1104.24,546.19s-5.79-28.14-31-20c0,0,9.88,26.6,29.21,23.85Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1109,521.93s-9.19-28.15-28.68-27.39c0,0,9.39,29.73,27.05,33Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1112.08,498.25s-10-33.88-25.86-31.27c0,0,6.92,25.9,25.3,36.55Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1113.82,470s-9.38-28.23-25-29.36c0,0,6.38,27.78,24.69,36.7Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1115.71,443.64s-11.69-28.26-22-28.9c0,0,5.08,27.83,21,33.54Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1117,419.12s-7.19-30.69-17.52-33.24c0,0,1.41,25.11,16.48,35.54Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1120.9,387s-7.56-24.47-15.93-28.2c0,0,1.65,28.85,14,34.18Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1124.13,366l1.52-43.14S1110,355.38,1123,373.57Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1136.21,323.09s11.27-31.5,14-33.26c0,0-22.1,20.44-19.94,46.73Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1044.2,662.17s19.82-2.59,19.23,25.42c0,0-17.91,2.92-23.76-20.25Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1062.85,639.06s22.9-.07,21,28.6c0,0-19.23,3.44-25.57-23.18Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1075.63,618.41s20.79-9.75,34.09,15.42c0,0-19.2,8.12-35.93-11.35Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1088.69,594.05s21.29-10.37,33.79,14.21c0,0-22.18,7.64-35.55-10.32Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1096.22,572.87s20.49-19.57,36.84.22c0,0-20.93,16.11-37.78,4.14Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1103.08,545.52s20.61-20,36.83.92c0,0-23.13,16.43-37.57,3.28Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1106.93,521.13s15.88-25,34.58-19.42c0,0-16.48,26.47-34.4,25.29Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1111.61,498.09s16-31.48,31.14-26c0,0-11.54,24.2-31.55,31.31Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1112.72,468.36s16.45-24.78,31.86-21.75c0,0-13.45,25.13-33.46,28.92Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1114,443.09s12.75-27.81,23.11-28c0,0-6.12,27.61-22.25,32.72Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1116.5,418.52s14.17-28.16,24.82-28.22c0,0-7.25,24.08-24.35,30.69Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1118.63,388.76s10.6-23.3,19.38-25.94c0,0-5.3,28.4-18.21,32.12Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1125.39,365.15l23.69-36.09s-6.07,35.6-27.15,43Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1141.65,326s27.53-19,28.53-22.07c0,0-14,26.61-40,31.31Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M1143.3,317.45s31.61-30.39,39.68-30.36c0,0-26.07,1.19-40.44,28.74Z" transform="translate(-16.91 -47.46)"/><path fill="#444053" d="M1118.94,393.27l1.15.15c5.94-46.49,14.6-74,24.38-77.37l-.38-1.1C1133.72,318.55,1125,345.64,1118.94,393.27Z" transform="translate(-16.91 -47.46)"/><path fill="#444053" d="M1110.2,504.45l1.74.14c.37-4.34.65-8.78.84-13.21,1.66-38.48,4.23-73.82,7.61-100.31l-1-1.25c-3.39,26.55-6.69,62.95-8.35,101.49C1110.85,495.71,1110.57,500.13,1110.2,504.45Z" transform="translate(-16.91 -47.46)"/><path fill="#444053" d="M977,715c.3-.13,30.93-13.81,62.72-46.43a252.22,252.22,0,0,0,45.85-65c14.7-29.93,23.66-66.71,26.66-102.44l-1.81.85c-6.75,80.2-43.26,135-72.29,164.85-31.48,32.33-61.77,45.87-62.07,46Z" transform="translate(-16.91 -47.46)"/><path fill="#3f3d56" d="M1056.31,132.69H95.43a8.56,8.56,0,0,0-8.56,8.56v24.94h978V141.25A8.56,8.56,0,0,0,1056.31,132.69Z" transform="translate(-16.91 -47.46)"/><path fill="#fff" d="M86.87,166.19V727.43a17.26,17.26,0,0,0,17.26,17.26h943.48a17.26,17.26,0,0,0,17.26-17.26V166.19Z" transform="translate(-16.91 -47.46)"/><circle cx="85.45" cy="101.73" r="4" fill="#fa5959" opacity=".8"/><circle cx="96.45" cy="101.73" r="4" fill="#fed253" opacity=".8"/><circle cx="107.45" cy="101.73" r="4" fill="#8ccf4d" opacity=".8"/><rect width="786" height="345.62" x="160.87" y="212.31" opacity=".05"/><rect width="774" height="338" x="166.87" y="214.93" fill="#3f3d56"/><path fill="#3c3a4b" d="M394.78,349.38a77,77,0,1,0,77,77A77,77,0,0,0,394.78,349.38Zm13.81,78.85v36.46H381.37V428.23a22.55,22.55,0,1,1,27.22,0Z" transform="translate(-16.91 -47.46)"/><path d="M394.78,349.38a77,77,0,1,0,77,77A77,77,0,0,0,394.78,349.38Zm13.81,78.85v36.46H381.37V428.23a22.55,22.55,0,1,1,27.22,0Z" opacity=".05" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M394.78,327.38a99,99,0,1,0,99,99A99,99,0,0,0,394.78,327.38Zm17.75,101.38v46.87h-35V428.76a29,29,0,1,1,35,0Z" transform="translate(-16.91 -47.46)"/><rect width="320" height="34" x="517.87" y="365.93" fill="#fff"/><rect width="69" height="34" x="768.87" y="427.93" fill="#3c3a4b"/><path fill="#3c3a4b" d="M566.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L553.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L552.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,566.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M587.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L574.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L573.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,587.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M608.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L595.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L594.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,608.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M629.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L616.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L615.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,629.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M650.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L637.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L636.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,650.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M671.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L658.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L657.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,671.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M692.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L679.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L678.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,692.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M713.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L700.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L699.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,713.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M734.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L721.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L720.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,734.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M755.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L742.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L741.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,755.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M776.28,429.88h-5.79l5.15-5.14a.51.51,0,0,0,0-.71.5.5,0,0,0-.71,0l-5.15,5.15v-5.8a.5.5,0,0,0-.5-.5.51.51,0,0,0-.5.5v5.8L763.64,424a.5.5,0,0,0-.71,0,.51.51,0,0,0,0,.71l5.15,5.14h-5.8a.51.51,0,0,0-.5.5.5.5,0,0,0,.5.5h5.8L762.93,436a.51.51,0,0,0,0,.71.52.52,0,0,0,.71,0l5.14-5.15v5.79a.5.5,0,0,0,.5.5.5.5,0,0,0,.5-.5v-5.79l5.15,5.15a.52.52,0,0,0,.71,0,.51.51,0,0,0,0-.71l-5.15-5.15h5.79a.5.5,0,0,0,.5-.5A.5.5,0,0,0,776.28,429.88Z" transform="translate(-16.91 -47.46)"/><path fill="url(#b7f84a8b-804f-4004-8d61-2f9b427d4893)" d="M937.27,551.53a17.9,17.9,0,0,0-.45-3.59c-.9-3.38-2.93-7.47-6.27-8.49a52.64,52.64,0,0,1-9.94-4.2c-.6-10.72,1.86-21.69-.82-32.08-1-3.8-2.65-7.44-3.09-11.33-.55-4.84.77-10-1.16-14.46-1.52-3.52-4.86-6-8.45-7.3s-7.46-1.65-11.27-2c-4.8-.39-20.34-2.23-25.76,2.06h0a5.66,5.66,0,0,0-1,1l0,0a4,4,0,0,0-.32.52l-.05.08a4.06,4.06,0,0,0-.27.65h0a5.06,5.06,0,0,0-.17.75c0,.08,0,.16,0,.24s0,.35,0,.53v.27c0,.18,0,.36,0,.55s0,.14,0,.21c.07.9.2,1.8.2,2.69a5.79,5.79,0,0,1-.12,1.32,9.24,9.24,0,0,1-1.66,3.24h0l-.18.26c-.11.16-.22.31-.32.47s-.18.28-.26.42-.16.23-.23.36a4.89,4.89,0,0,0-.26.51c0,.1-.11.19-.15.29a4.94,4.94,0,0,0-.3.84,5.58,5.58,0,0,0-.06,2.66,9.9,9.9,0,0,0,1.37,3.15c.25.41.52.81.8,1.21l.7.95a21.58,21.58,0,0,0-.21,2.8,20.69,20.69,0,0,0,7.9,16.26,61.25,61.25,0,0,1-.13,12.69c-.09.88-.2,1.77-.32,2.65s-.21,1.46-.33,2.19a10.15,10.15,0,0,1-4.37-.33,20.59,20.59,0,0,0-2-.77c-2.91-.73-5.88,2.17-8.76,1.29,0,.14-.08.27-.13.4a3.92,3.92,0,0,0-2-.59c-1.71-.08-3.1-1.32-4.34-2.49l-3.81-3.59a4.21,4.21,0,0,1-.66-.74,5.19,5.19,0,0,1-.46-1.23c-.64-2.07-2.19-3.72-3.69-5.29a2.5,2.5,0,0,0-1.09-.79,1.68,1.68,0,0,0-.5,0,4.39,4.39,0,0,0-.33-.4,9.41,9.41,0,0,0-.83-.84c-1.82-1.68-2-3.12-3.58-5a48.05,48.05,0,0,1-3.74-5.65c-.13-1.05-.31-2.13-.53-3.22a41.43,41.43,0,0,0-2.19-7.3l-2-4.43-.23.23c-1.45-2.16-3-3.34-4.39-3.06-2.33.48-3.48,5-3.11,10.91l.8,6c0,.15.07.3.11.45a11.07,11.07,0,0,0-.22,2.16c0,.84.78,1.46,1.19,2.21a6.25,6.25,0,0,1,1,3.41c-.05.43-.18.84-.2,1.26a4.85,4.85,0,0,0,.94,2.6l5,8.4,1,1.76.06.08a4.27,4.27,0,0,0,1.34,1.54,18.32,18.32,0,0,0,1.65,6.07c.17.38.36.74.56,1.1a35.37,35.37,0,0,0,4.72,6.13l2.38,2.67c2.35,2.62,4.7,5.25,7.25,7.67a9.71,9.71,0,0,0,3.24,2.27,3.67,3.67,0,0,0,3.64-.53c0,1.24,0,2.48,0,3.72a2.09,2.09,0,0,1,1.58,3.29c-2.1,5.39-4.22,10.83-7.4,15.66a33.33,33.33,0,0,1,6.2,4.73,27.88,27.88,0,0,1,3.23,4.37c.09.74.16,1.47.2,2.2.74,11.92-3.87,23.75-8,35.11-1.19,3.22-2.49,6.59-2.39,9.94a19.51,19.51,0,0,0-2.24,1.61c.82,2.14.5,4.05.41,6.34a11.23,11.23,0,0,1-.83,4,28.12,28.12,0,0,1-1.44,2.57c-2.59,4.57-3.16,10-3.68,15.22-.31,3.15.91,7-.52,9.82-2.47,4.84-4.66,10-5,15.38a15.42,15.42,0,0,1-.46,3.59c-.31,1-.86,1.85-1.14,2.83a12.11,12.11,0,0,0-.2,4,38.28,38.28,0,0,1-2.1,14.11c-1.25,3.57-2.63,7.39-1.65,11.06a15.59,15.59,0,0,0-4.23,9.29,14.65,14.65,0,0,1-.32,2.65,12.89,12.89,0,0,1-1.2,2.55,22.32,22.32,0,0,0-2.72,12c-3,4.07-4.5,9.09-5.39,14.08s-1.28,10.07-2.42,15c-1.52,6.52-4.27,13.11-4.81,19.79-3.24,2.07-4.64,6.08-5.26,9.87s-.72,7.77-2.31,11.27c-.82,1.82-2,3.45-2.78,5.31a24.38,24.38,0,0,0-1.2,4.57c-.48,2.44-.9,5.16-.31,7.5a11.31,11.31,0,0,1-2.93,2.23c.16-.62.29-1.24.4-1.87-2.58,2.34-7.26,1.52-9.32,4.33a4.22,4.22,0,0,0,1,5.79,8,8,0,0,0,2.07.89c5,1.6,10.14,3.21,15.28,2.36a4.56,4.56,0,0,0,1.73-.55,5.57,5.57,0,0,0,1.61-1.86c.77-1.22,1.54-2.44,2.3-3.66a47.51,47.51,0,0,0,5.61,1.31c.19,1.6.33,3.2.4,4.8,1,.2,2.34.26,2.81-.67a2.43,2.43,0,0,0,.17-1.11c0-.71.1-1.65.16-2.61h.2a19,19,0,0,0,8.85-1.79c-1.07-8.86,2.46-17.52,5.52-25.9,3.23-8.82,6-17.8,8.79-26.78,2-6.32,4.21-12.44,6.17-18.77q3.7-12,7.43-24c1.08-3.52,2.17-7,3.41-10.5a163.57,163.57,0,0,1,9.27-20.63c1-1.89,2-3.76,2.82-5.72,1-2.39,1.71-4.89,2.51-7.36a114,114,0,0,1,6.28-14.78c.07-.13.12-.25.19-.37.81,3.31,1.62,6.67,2.16,10a38,38,0,0,1,.17,12.36c-.48,2.79-1.39,5.55-1.28,8.38.15,3.91,2.24,7.46,3.27,11.23a42.74,42.74,0,0,1,1.12,8.6c.28,4.5,2.72,9.55,1,13.72-5.35,13.21-2.76,28.13-5.81,42-1.57,7.12-6.38,13.81-6,21.09q.4,7.75,1.36,15.46A14.71,14.71,0,0,0,878,836a17.22,17.22,0,0,0,1.37,2.24c-.44.17-.81.62-1.13,1.57-.82,2.5,0,5.6,2.22,7a9.72,9.72,0,0,0,2.89,1,15.22,15.22,0,0,0,4.18.58,9.76,9.76,0,0,0,1.31-.16,47.64,47.64,0,0,0,4.73,1.7c0,.41.08.82.13,1.23a1.53,1.53,0,0,0,.52,1.13,1.56,1.56,0,0,0,.8.14l5.43,0c0-.45,0-.91,0-1.36a4.47,4.47,0,0,0,3.45-1.12,5.34,5.34,0,0,0,1-2.08q2.22-7.53,4.41-15.07a48.18,48.18,0,0,0,2.15-17.2c-1.93-18.43,2.31-36.92.93-55.4a132.71,132.71,0,0,1,1.7-33.24c.45-2.48,1-5,1.2-7.47.44-4.66-.1-9.37.23-14,.11-1.62.33-3.23.53-4.84a232.43,232.43,0,0,0,2.15-30.15,95,95,0,0,0-.62-10,5.71,5.71,0,0,0,2.73-1.6c.89-1.16.66-2.79.65-4.27,0-3.54,1.49-6.88,2.69-10.22a121.44,121.44,0,0,0,3.78-14.06,49.09,49.09,0,0,0,1.68-11.75q0-.6-.06-1.2a3.1,3.1,0,0,0,.92-1,5.81,5.81,0,0,0,.48-1.85c.36-2.55.73-5.11,1.09-7.67q.4-2.75.79-5.49l3.18-22.19c.27-1.93.55-3.85.82-5.77l.83-5.74c.09-.68.19-1.36.26-2C939.86,561.61,937.53,556.17,937.27,551.53Zm-26.53,83.08c-1.18-2.8-2.28-5.67-2-8.69l-.11,0a4.46,4.46,0,0,0-.13-2.82c-.31-.73-.85-1.35-1.18-2.08a7.62,7.62,0,0,1-.54-2.8,76.33,76.33,0,0,1,1.43-18.14c.13-.7.27-1.41.4-2.11a5.22,5.22,0,0,0,1.14-.89,8.11,8.11,0,0,0,1.29-2c1.13-2.27,2.16-4.58,3.11-6.93.31-.76.76-1.64,1.53-1.83-.16,5.85.44,11.82-1.94,17.1a10.82,10.82,0,0,0-1,2.7c-.22,1.49.4,3,.18,4.48-.11.77-.44,1.48-.57,2.24a2.19,2.19,0,0,0,.58,2.12,1.75,1.75,0,0,0,.43.22c-.06.4-.11.81-.15,1.2-.08.82-.12,1.59-.17,2.07a64.5,64.5,0,0,0-.27,7.36c0,2.65.1,5.3.06,8a5.43,5.43,0,0,1-.38,2.27,3.94,3.94,0,0,1-.76,1C911.4,636.18,911.08,635.39,910.74,634.61Z" transform="translate(-16.91 -47.46)"/><ellipse cx="828.59" cy="502.96" fill="#fbbebe" rx="5.64" ry="15.97" transform="translate(-101 129.08) rotate(-11.58)"/><path fill="#3f3d56" d="M878.4,840c-.82,2.48,0,5.58,2.22,6.93a9.88,9.88,0,0,0,2.87,1,15.14,15.14,0,0,0,4.17.57c1.73-.08,3.39-.76,5.12-1a.8.8,0,0,1,.59.08.85.85,0,0,1,.22.7,26.43,26.43,0,0,0,.22,2.94,1.51,1.51,0,0,0,.52,1.13,1.56,1.56,0,0,0,.8.14l5.42,0A52.86,52.86,0,0,0,899,838.35a3.16,3.16,0,0,0-.4-1,3.31,3.31,0,0,0-1.73-1,9.67,9.67,0,0,0-4.19-.73c-1.75.23-3.21,1.36-4.7,2.3s-3.52,1.77-5.33,1.29S879.33,837.22,878.4,840Z" transform="translate(-16.91 -47.46)"/><path fill="#fbbebe" d="M798.82,835.61a15,15,0,0,1-5.47,3.72l-.92.44a.64.64,0,0,0-.31.25.54.54,0,0,0,.1.45,6.47,6.47,0,0,0,7.34,2.67,3.89,3.89,0,0,0,1.61-.84,5.28,5.28,0,0,0,1.24-3.22,6.59,6.59,0,0,0-.15-3.69C800.87,832.26,800.36,833.68,798.82,835.61Z" transform="translate(-16.91 -47.46)"/><path fill="#3f3d56" d="M819.6,847.93a2.43,2.43,0,0,1-.17,1.11c-.47.92-1.78.87-2.8.67a67.3,67.3,0,0,0-1.23-10.1c-1.94-.09-3.34,1.75-4.38,3.4l-2.68,4.25a5.54,5.54,0,0,1-1.6,1.86,4.74,4.74,0,0,1-1.73.55c-5.12.85-10.29-.76-15.23-2.36a8.07,8.07,0,0,1-2.07-.88,4.23,4.23,0,0,1-1-5.78c2.07-2.8,6.72-2,9.3-4.32a23.28,23.28,0,0,1-1.32,4.77c3.45-.52,5.77-3.68,8.55-5.79a5.26,5.26,0,0,1,2.44-1.16,5.37,5.37,0,0,1,2,.21,23.46,23.46,0,0,1,8.8,4.33c1.05.83,2.69,2,3.15,3.28C820.12,843.5,819.6,846.3,819.6,847.93Z" transform="translate(-16.91 -47.46)"/><circle cx="871.48" cy="449.87" r="20.66" fill="#fbbebe"/><path fill="#3f3d56" d="M929.09,619.31A49,49,0,0,1,927.42,631a120.64,120.64,0,0,1-3.78,14c-1.19,3.33-2.68,6.67-2.67,10.2,0,1.47.24,3.1-.66,4.26a6.22,6.22,0,0,1-2.92,1.67,3.65,3.65,0,0,0-2.46,2.19,15.45,15.45,0,0,1-2.08-4.58q-2.69-8.24-5-16.57a2.15,2.15,0,0,1,.14-2,2.48,2.48,0,0,1,.87-.49,9,9,0,0,0,2.77-1.78,4.05,4.05,0,0,0,.92-1.19,5.39,5.39,0,0,0,.39-2.26c0-2.65,0-5.29-.07-7.94a66.34,66.34,0,0,1,.28-7.33c0-.48.09-1.25.17-2.07.15-1.57.45-3.39,1.3-4,1.27-.85,5.07.29,6.51.49,2.48.34,5,.74,7.42,1.21A19.81,19.81,0,0,1,929.09,619.31Z" transform="translate(-16.91 -47.46)"/><path fill="#3f3d56" d="M845.67,520.46c-.8,1.6-2.72,2.37-4.2,3.38l-5.07,3.48a3.38,3.38,0,0,1-2.51.86,3.3,3.3,0,0,1-1.87-1.75.35.35,0,0,0,0-.08l-1.05-1.76-5-8.38a4.77,4.77,0,0,1-.93-2.58c0-.43.15-.83.19-1.26a6.05,6.05,0,0,0-1-3.4c-.4-.75-1.2-1.37-1.18-2.21a8,8,0,0,1,.56-3.23,6.54,6.54,0,0,1,2.19-2.34c.47-.34.95-.66,1.45-1a2.86,2.86,0,0,1,.87-.4c.83-.17,1.65.52,2.49.55,3.61,2.42,5,7,7.84,10.3,1.6,1.88,1.76,3.32,3.57,5,.29.26.57.54.84.83a5.81,5.81,0,0,1,.9,1.3C844.09,518.63,846.08,519.64,845.67,520.46Z" transform="translate(-16.91 -47.46)"/><path fill="#fbbebe" d="M881.13,518c1.49,3.15,2.65,6.61,2.22,10.07a6.29,6.29,0,0,1-.87,2.65c-1.44,2.21-4.46,2.61-7.09,2.74a4.18,4.18,0,0,0-3.08,1,2.8,2.8,0,0,0,.19,3.42,7.72,7.72,0,0,0,3.06,2c4.16,1.83,8.65,3.34,13.17,2.92,2.1-.2,4.14-.81,6.23-1.12a65.41,65.41,0,0,1,6.86-.38c2.72-.1,5.43-.37,8.14-.64l7.18-.71a1.6,1.6,0,0,0,1.07-.39c.53-.62-.15-1.53-.81-2-3.81-2.82-8.66-4.76-10.83-9-1-2-1.31-4.38-2.05-6.54s-1.92-4.11-2.38-6.31a41.81,41.81,0,0,1-.33-5.82,7.81,7.81,0,0,0-2-5.32c-1.43-1.33-3.5-1.67-5.44-1.75-4.78-.21-9.87.93-13.26,4.3-.91.91-1.69,2-2.63,2.82s-2.22,1.06-1.6,2.14,1.84,1.75,2.5,2.7A23,23,0,0,1,881.13,518Z" transform="translate(-16.91 -47.46)"/><path fill="#3f3d56" d="M921.86,547.09a113.62,113.62,0,0,1-6.12,22.53,84.86,84.86,0,0,0-3.6,10.1c-.77,3.1-.62,6.42-1.33,9.53-.88,3.87-1.76,7.75-2.47,11.65A76.39,76.39,0,0,0,906.92,619a7.57,7.57,0,0,0,.54,2.79c.33.72.86,1.34,1.17,2.08a5,5,0,0,1-.28,4,11.58,11.58,0,0,1-2.06,3.12c-9.32,2.78-19.29,1.87-29,2.46-8.95.54-18,2.38-26.82.85-1-4,.67-8.19,2.1-12.09,4.15-11.33,8.74-23.13,8-35a36.26,36.26,0,0,0-.47-4.13c-1.45-8.41.13-17.12,2.66-25.27,1.57-5.08,1.5-10.49,1.14-15.78a28.82,28.82,0,0,1-.07-5.17,9.09,9.09,0,0,1,1.88-4.83c0-.07.09-.14.14-.21s.44-.06.75,0h0a.64.64,0,0,0,.5,0l.11-.07a.25.25,0,0,1,.29,0c.23.14.36.62.86.71a19.92,19.92,0,0,0,2.23.21,12,12,0,0,1,2.66.38l.12,0a7.81,7.81,0,0,0,3.88-.33,10.31,10.31,0,0,0,2.38-.92c.22-.24,1.6-.46,1.88-.63.91-.55.71-3.13.9-4.19a11.52,11.52,0,0,1,.75-3.1,5.28,5.28,0,0,1,4.28-2.49,22.79,22.79,0,0,1,5.13.46c3.73.53,7.55.44,11.21,1.3,1.84.43,3.85,1.08,5.54.24.46.11.53.51.53,1a6.41,6.41,0,0,1-.28,1.37c-.64,2.76,1.53,5.3,3.53,7.3a11.32,11.32,0,0,0,2.95,2.35c1,.46,2,.65,3,1.15a5.46,5.46,0,0,1,2,1.83,7.64,7.64,0,0,1,1.14,2.91A17.4,17.4,0,0,1,921.86,547.09Z" transform="translate(-16.91 -47.46)"/><path d="M921.86,547.09a113.62,113.62,0,0,1-6.12,22.53,84.86,84.86,0,0,0-3.6,10.1c-.77,3.1-.62,6.42-1.33,9.53-.88,3.87-1.76,7.75-2.47,11.65-.21.12-.43.23-.65.33a15.35,15.35,0,0,1-3.92,1.26,24,24,0,0,1-7.32-.24l-14.27-1.91c-5.7-.77-11.77-1.7-16-5.56-2.35-2.12-3.89-4.92-5.58-7.62a36.26,36.26,0,0,0-.47-4.13c-1.45-8.41.13-17.12,2.66-25.27,1.57-5.08,1.5-10.49,1.14-15.78a28.82,28.82,0,0,1-.07-5.17,9.09,9.09,0,0,1,1.88-4.83,7.11,7.11,0,0,1,.89-.2h0a4.44,4.44,0,0,1,.61-.08h.29a4.36,4.36,0,0,1,1,.12,18.09,18.09,0,0,1,2,.77l.12,0a7.66,7.66,0,0,0,2.66.38c1.32,0,2.68-.21,4-.3a7.38,7.38,0,0,1,4.74.85,28.43,28.43,0,0,1,2.64,2.41,11.34,11.34,0,0,0,3.33,1.81,35.39,35.39,0,0,0,26.62-.56,5.21,5.21,0,0,1,2.67-.68,5,5,0,0,1,1.92.82c.6.35,1.19.69,1.8,1a7.64,7.64,0,0,1,1.14,2.91A17.4,17.4,0,0,1,921.86,547.09Z" opacity=".1" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M930.57,540.47a53.37,53.37,0,0,1-11.4-5,5.11,5.11,0,0,0-1.92-.82,5.37,5.37,0,0,0-2.68.68,35.37,35.37,0,0,1-26.61.56,11.57,11.57,0,0,1-3.33-1.81,29.9,29.9,0,0,0-2.64-2.41c-3.29-2.13-7.84.37-11.52-1a20.41,20.41,0,0,0-2-.77c-2.91-.73-5.87,2.17-8.73,1.29a48.65,48.65,0,0,0-2.35,8.92,97.23,97.23,0,0,0-.65,10.52c0,2.11-.1,4.22,0,6.33a2.58,2.58,0,0,1,1.74,1.13,2.56,2.56,0,0,1-.16,2.15c-2.09,5.37-4.21,10.8-7.38,15.61a33.92,33.92,0,0,1,6.18,4.72c3.5,3.7,5.22,8.89,9,12.31,4.26,3.85,10.33,4.79,16,5.55l14.27,1.91a24.39,24.39,0,0,0,7.33.25,15.43,15.43,0,0,0,3.91-1.27,7,7,0,0,0,2.18-1.44,8,8,0,0,0,1.29-2c1.13-2.26,2.16-4.57,3.11-6.91.33-.83.83-1.8,1.73-1.87,5.3-4.78,10.3-9.68,15.6-14.46a34.57,34.57,0,0,0,5.69-6c2.63-3.89.24-9.4,0-14.1a17.8,17.8,0,0,0-.45-3.57C935.92,545.56,933.9,541.48,930.57,540.47Z" transform="translate(-16.91 -47.46)"/><path d="M845.67,520.46c-.8,1.6-2.72,2.37-4.2,3.38l-5.07,3.48a3.38,3.38,0,0,1-2.51.86,3.3,3.3,0,0,1-1.87-1.75c0-.23,0-.48,0-.72a6.71,6.71,0,0,1,.32-2.39,7.45,7.45,0,0,1,2.24-2.88,18.34,18.34,0,0,1,6.57-4,2.25,2.25,0,0,1,1.2-.12,1.58,1.58,0,0,1,.44.19,5.81,5.81,0,0,1,.9,1.3C844.09,518.63,846.08,519.64,845.67,520.46Z" opacity=".1" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M857.61,531c-1.7-.08-3.09-1.31-4.33-2.48L849.49,525a3.54,3.54,0,0,1-.66-.74,5.19,5.19,0,0,1-.46-1.23,14.11,14.11,0,0,0-3.68-5.28,2.4,2.4,0,0,0-1.09-.78,2.19,2.19,0,0,0-1.21.12,18.29,18.29,0,0,0-6.57,4,7.47,7.47,0,0,0-2.24,2.88,6.65,6.65,0,0,0-.32,2.39A18.36,18.36,0,0,0,835,534c.17.37.36.74.56,1.1a34.63,34.63,0,0,0,4.7,6.11l2.38,2.66c2.34,2.62,4.68,5.24,7.22,7.65a9.54,9.54,0,0,0,3.24,2.26,3.62,3.62,0,0,0,3.72-.6,5.38,5.38,0,0,0,1.06-1.9c1.54-4,3-8.16,3.09-12.47a47.06,47.06,0,0,0-.22-5.17C860.6,531.82,859.31,531.11,857.61,531Z" transform="translate(-16.91 -47.46)"/><path fill="#33313f" d="M918.21,671a231.07,231.07,0,0,1-2.14,30.07c-.2,1.61-.42,3.22-.53,4.83-.33,4.67.21,9.36-.23,14-.23,2.51-.75,5-1.19,7.45a132.47,132.47,0,0,0-1.7,33.15c1.38,18.43-2.85,36.87-.93,55.25a44.66,44.66,0,0,1-.59,10.69,45.3,45.3,0,0,1-1.55,6.46q-2.19,7.51-4.4,15a5.2,5.2,0,0,1-1,2.08,4.74,4.74,0,0,1-3.75,1.11c-5.77-.18-11.2-2.67-16.44-5.1a5.73,5.73,0,0,1-1.65-1c-1.09-1.13-1-2.91-1.48-4.4s-1.78-2.89-2.52-4.42a14.43,14.43,0,0,1-1.09-4.55q-1-7.68-1.36-15.42c-.38-7.26,4.42-13.94,6-21,3-13.88.46-28.76,5.79-41.93,1.68-4.16-.76-9.2-1-13.68a43.37,43.37,0,0,0-1.12-8.58c-1-3.76-3.11-7.3-3.26-11.2-.11-2.82.8-5.57,1.27-8.35a37.53,37.53,0,0,0-.17-12.33c-.53-3.36-1.34-6.72-2.15-10l-.18.37a113,113,0,0,0-6.27,14.75c-.8,2.45-1.5,4.95-2.5,7.33-.82,2-1.83,3.83-2.82,5.71A164,164,0,0,0,860,737.84c-1.24,3.46-2.33,7-3.41,10.47l-7.41,24c-2,6.31-4.19,12.41-6.15,18.71-2.77,9-5.54,17.92-8.76,26.72-3,8.35-6.57,17-5.5,25.82a19,19,0,0,1-8.83,1.79,51.7,51.7,0,0,1-15-3.64c-1.91-.71-3.89-1.51-5.18-3.08-2.22-2.71-1.67-6.68-1-10.13a24.49,24.49,0,0,1,1.2-4.56c.76-1.84,2-3.47,2.78-5.29,1.57-3.49,1.67-7.44,2.29-11.23s2-7.79,5.24-9.85c.55-6.66,3.29-13.23,4.8-19.74,1.14-4.93,1.52-10,2.42-15s2.35-10,5.37-14.05a22.27,22.27,0,0,1,2.72-12,13.12,13.12,0,0,0,1.19-2.55,14.65,14.65,0,0,0,.32-2.64,15.61,15.61,0,0,1,4.22-9.27c-1-3.65.39-7.46,1.64-11a38.22,38.22,0,0,0,2.1-14.07,12.33,12.33,0,0,1,.19-4c.28-1,.83-1.85,1.15-2.81a16,16,0,0,0,.45-3.59c.39-5.41,2.58-10.51,5-15.34,1.44-2.82.22-6.65.52-9.79.52-5.22,1.09-10.62,3.68-15.17.48-.86,1-1.68,1.43-2.57a11.13,11.13,0,0,0,.83-4c.09-2.29.41-4.19-.41-6.32,5.35-4.45,12.65-5.7,19.61-6s14,.33,20.81-1.15c2-.45,4-1.07,6.11-1.37,4.79-.7,9.65.39,14.38,1.47-.33,3,.77,5.88,2,8.67A93.07,93.07,0,0,1,918.21,671Z" transform="translate(-16.91 -47.46)"/><path d="M894.66,673.29l-11.49,25.84c-.53-3.36-1.34-6.72-2.15-10l-.18.37,0-.54,6.26-13.77Z" opacity=".1" transform="translate(-16.91 -47.46)"/><path d="M929.09,619.31a4.32,4.32,0,0,1-2.28.85,11.09,11.09,0,0,1-3.74-.51l-9-2.25a4.42,4.42,0,0,1-.82-.29c.15-1.57.45-3.39,1.3-4,1.27-.85,5.07.29,6.51.49,2.48.34,5,.74,7.42,1.21A19.81,19.81,0,0,1,929.09,619.31Z" opacity=".1" transform="translate(-16.91 -47.46)"/><path fill="#3c3a4b" d="M936.7,559.81c.19.83.46,1.65.62,2.49a19,19,0,0,1-.21,6.19l-.82,5.72-.82,5.75-3.17,22.13-.78,5.48-1.1,7.65a5.5,5.5,0,0,1-.48,1.84,3.83,3.83,0,0,1-3.13,1.85,11.34,11.34,0,0,1-3.74-.51l-9-2.26a2.82,2.82,0,0,1-1.1-.45,2.17,2.17,0,0,1-.58-2.11c.13-.76.46-1.47.57-2.23.22-1.48-.4-3-.18-4.47a11.12,11.12,0,0,1,1-2.69c3-6.63,1.26-14.37,2.28-21.57A32.7,32.7,0,0,1,923,567.18a44.32,44.32,0,0,1,7.66-7.52c1.12-.87,2.9-2.66,4.31-3C936.78,556.28,936.4,558.55,936.7,559.81Z" transform="translate(-16.91 -47.46)"/><path fill="#33313f" d="M868.59,473.67c-.66,2.1.37,4.41-.1,6.55-.51,2.36-2.73,4-3.36,6.37-1,3.61,2.06,6.9,4.3,9.9,8.3,11.14,7.21,26.56,4.37,40.15a207.31,207.31,0,0,1-9.45,32c-1.25,3.23-2.63,6.51-5.09,8.93,4.6-1.32,9.49-2.65,14.1-1.37,5.84,1.62,10.88,7.29,16.8,6,3.56-.79,6.06-3.95,9.26-5.7,6-3.23,13.23-1.2,19.92-.16a7.82,7.82,0,0,0,4.35-.22,7.23,7.23,0,0,0,2.64-2.43,24.66,24.66,0,0,0,5.14-13.3,17.06,17.06,0,0,0-4.91-13.13c-1.42-1.34-3.12-2.42-4.21-4a12.42,12.42,0,0,1-1.65-6.06c-.79-11,1.89-22.23-.87-32.87-1-3.79-2.63-7.42-3.07-11.3-.55-4.83.76-10-1.16-14.42-1.51-3.51-4.84-6-8.43-7.28s-7.43-1.64-11.24-2C890.45,468.87,870.88,466.52,868.59,473.67Z" transform="translate(-16.91 -47.46)"/><g opacity=".1"><path d="M873.8,536.64a206.9,206.9,0,0,1-9.4,31.87c.69-1.37,1.27-2.81,1.82-4.24a206.21,206.21,0,0,0,9.45-32c2.85-13.6,3.94-29-4.36-40.15-2-2.66-4.57-5.54-4.48-8.66a10.66,10.66,0,0,0-1.7,3.14c-1,3.61,2.06,6.9,4.3,9.9C877.73,507.63,876.64,523.05,873.8,536.64Z" transform="translate(-16.91 -47.46)"/><path d="M868.61,479.21a9.73,9.73,0,0,0,1.76-3.37,17.13,17.13,0,0,0-.12-4.46,4.81,4.81,0,0,0-1.66,2.29C868,475.44,868.68,477.36,868.61,479.21Z" transform="translate(-16.91 -47.46)"/><path d="M928.21,569.29a7.2,7.2,0,0,1-2.64,2.42,7.64,7.64,0,0,1-4.35.22c-6.69-1-14-3.06-19.92.17-3.21,1.74-5.7,4.9-9.27,5.7-5.91,1.32-10.95-4.35-16.79-6-4.14-1.15-8.5-.2-12.67,1a17.47,17.47,0,0,1-3.31,4.78c4.6-1.32,9.49-2.65,14.1-1.37,5.84,1.62,10.88,7.29,16.8,6,3.56-.79,6.06-3.95,9.26-5.7,6-3.23,13.23-1.2,19.92-.16a7.82,7.82,0,0,0,4.35-.22,7.23,7.23,0,0,0,2.64-2.43,26.88,26.88,0,0,0,4.14-7.92A29.08,29.08,0,0,1,928.21,569.29Z" transform="translate(-16.91 -47.46)"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="ffa0e257-4b46-4632-a8d6-93195cbf254d" width="895.68" height="517.48" data-name="Layer 1" viewBox="0 0 895.68 517.48"><defs><linearGradient id="74471b12-b6be-488b-b2aa-2815e91483d9" x1="790.94" x2="790.94" y1="640.76" y2="264.76" gradientTransform="translate(1229.99 -336.2) rotate(90)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="gray" stop-opacity=".25"/><stop offset=".54" stop-color="gray" stop-opacity=".12"/><stop offset="1" stop-color="gray" stop-opacity=".1"/></linearGradient><linearGradient id="f5c756da-9879-448e-9194-9478f83d355f" x1="785.97" x2="785.97" y1="446.14" y2="321.91" gradientTransform="translate(1166.67 -399.94) rotate(90)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="5c9be04e-db0f-4829-87c1-2cfa193e30b8" x1="660.92" x2="660.92" y1="518.19" y2="494.17" gradientTransform="translate(1146.84 -172.9) rotate(90)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="b92f3a53-b4d2-4abd-916c-aeb632188996" x1="433.66" x2="433.66" y1="605.23" y2="235.23" gradientTransform="translate(13.58 8.51)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="44577794-7f8e-40ae-89fc-019e5bfac17e" x1="428.36" x2="428.36" y1="413.71" y2="291.46" gradientTransform="translate(-1.05 11.3)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="666bb7d3-84d0-4835-ad07-c313c2384f21" x1="295.22" x2="295.22" y1="484.61" y2="460.98" gradientTransform="translate(28.38 37.45)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="59939605-05af-4a9a-9980-f700897f3f8b" x1="455.07" x2="455.07" y1="464.48" y2="10.48" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="6c0ba2ee-2d81-48f4-b4cf-f21b525fcc13" x1="449.07" x2="449.07" y1="229.48" y2="79.48" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="45b0c09d-2995-447e-8cb2-7f6b59b5e20c" x1="298.07" x2="298.07" y1="316.48" y2="287.48" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="e5b0a96a-81f6-4370-afe3-5a7d6a35b55e" x1="457.07" x2="457.07" y1="517.48" y2="364.48" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="a1850e5a-cf77-4889-926a-0125112ab273" x1="611.23" x2="611.23" y1="564.74" y2="464.74" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/><linearGradient id="66998849-614e-4d8a-b9ff-f14bbc588ed8" x1="611.23" x2="611.23" y1="660.74" y2="602.74" gradientTransform="matrix(1, 0, 0, 1, 0, 0)" xlink:href="#74471b12-b6be-488b-b2aa-2815e91483d9"/></defs><title>safe</title><rect width="19.88" height="470.41" x="792.23" y="49.92" fill="#f5f5f5" transform="translate(247.6 844.09) rotate(-81.36)"/><rect width="376" height="490.29" x="589.23" y="209.59" fill="url(#74471b12-b6be-488b-b2aa-2815e91483d9)" transform="translate(58.72 963.57) rotate(-81.36)"/><rect width="342.87" height="470.41" x="603.48" y="229.23" fill="#f5f5f5" transform="translate(47.16 969.52) rotate(-81.36)"/><circle cx="580.99" cy="251.51" r="4.86" fill="#ff5252" transform="translate(92.88 596.86) rotate(-81.36)"/><circle cx="594.2" cy="253.52" r="4.86" fill="#ff0" transform="translate(102.12 611.62) rotate(-81.36)"/><circle cx="607.41" cy="255.53" r="4.86" fill="#69f0ae" transform="translate(111.36 626.39) rotate(-81.36)"/><rect width="124.23" height="422.38" x="720.53" y="174.84" fill="url(#f5c756da-9879-448e-9194-9478f83d355f)" transform="translate(131.25 910.54) rotate(-81.36)"/><rect width="413.27" height="115.12" x="576.36" y="328.95" fill="#3c3a4c" transform="translate(-85.2 -304.51) rotate(8.64)"/><rect width="24.02" height="28.16" x="628.65" y="473.94" fill="url(#5c9be04e-db0f-4829-87c1-2cfa193e30b8)" transform="translate(-90.24 856.82) rotate(-81.36)"/><rect width="26.5" height="19.88" x="627.88" y="477.73" fill="#3c3a4c" transform="translate(-71.61 -282.05) rotate(8.64)"/><rect width="26.5" height="19.88" x="622.77" y="511.3" fill="#ff5252" transform="translate(-66.63 -280.9) rotate(8.64)"/><rect width="26.5" height="19.88" x="617.67" y="544.87" fill="#ff9800" transform="translate(-61.64 -279.75) rotate(8.64)"/><rect width="213.67" height="11.59" x="696.41" y="506.51" fill="#3c3a4c" opacity=".4" transform="translate(-66.07 -306.13) rotate(8.64)"/><rect width="213.67" height="11.59" x="691.31" y="540.08" fill="#3c3a4c" opacity=".4" transform="translate(-61.09 -304.98) rotate(8.64)"/><rect width="213.67" height="11.59" x="686.21" y="573.65" fill="#3c3a4c" opacity=".4" transform="translate(-56.1 -303.83) rotate(8.64)"/><rect width="500.84" height="19.56" x="159.15" y="254.51" fill="#f5f5f5" transform="translate(-199.95 -95.55) rotate(-12.6)"/><rect width="522" height="370" x="186.23" y="243.74" fill="url(#b92f3a53-b4d2-4abd-916c-aeb632188996)" transform="translate(-234.92 -83.38) rotate(-12.6)"/><rect width="500.84" height="337.4" x="198.08" y="269.78" fill="#f5f5f5" transform="translate(-237.01 -82.86) rotate(-12.6)"/><ellipse cx="177.11" cy="316.25" fill="#ff5252" rx="5.17" ry="4.78" transform="translate(-216.88 -145.01) rotate(-12.6)"/><ellipse cx="191" cy="313.15" fill="#ff0" rx="5.17" ry="4.78" transform="translate(-215.87 -142.05) rotate(-12.6)"/><ellipse cx="204.88" cy="310.05" fill="#69f0ae" rx="5.17" ry="4.78" transform="translate(-214.86 -139.1) rotate(-12.6)"/><rect width="449.7" height="122.25" x="202.46" y="302.76" fill="url(#44577794-7f8e-40ae-89fc-019e5bfac17e)" transform="translate(-221.25 -89.28) rotate(-12.6)"/><rect width="440" height="113.28" x="207.83" y="307.54" fill="#3c3a4c" transform="translate(-221.3 -89.16) rotate(-12.6)"/><rect width="29.98" height="23.63" x="308.61" y="498.42" fill="url(#666bb7d3-84d0-4835-ad07-c313c2384f21)" transform="translate(-255.67 -108.38) rotate(-12.6)"/><rect width="28.22" height="19.56" x="309.83" y="499.96" fill="#3c3a4c" transform="matrix(0.98, -0.22, 0.22, 0.98, -255.56, -108.32)"/><rect width="28.22" height="19.56" x="317.12" y="532.57" fill="#ff5252" transform="translate(-262.49 -105.94) rotate(-12.6)"/><rect width="28.22" height="19.56" x="324.41" y="565.18" fill="#ff9800" transform="matrix(0.98, -0.22, 0.22, 0.98, -269.43, -103.57)"/><rect width="227.49" height="11.41" x="380.57" y="465.95" fill="#3c3a4c" opacity=".4" transform="translate(-243.14 -72.07) rotate(-12.6)"/><rect width="227.49" height="11.41" x="387.86" y="498.56" fill="#3c3a4c" opacity=".4" transform="translate(-250.08 -69.69) rotate(-12.6)"/><rect width="227.49" height="11.41" x="395.15" y="531.17" fill="#3c3a4c" opacity=".4" transform="translate(-257.02 -67.32) rotate(-12.6)"/><rect width="568" height="24" x="170.07" y="18.48" fill="#f5f5f5"/><rect width="592" height="454" x="159.07" y="10.48" fill="url(#59939605-05af-4a9a-9980-f700897f3f8b)"/><rect width="568" height="414" x="170.07" y="42.48" fill="#fff"/><circle cx="183.94" cy="30.48" r="5.87" fill="#ff5252"/><circle cx="200.07" cy="30.48" r="5.87" fill="#ff0"/><circle cx="216.2" cy="30.48" r="5.87" fill="#69f0ae"/><rect width="510" height="150" x="194.07" y="79.48" fill="url(#6c0ba2ee-2d81-48f4-b4cf-f21b525fcc13)"/><rect width="499" height="139" x="200.07" y="85.48" fill="#3c3a4c"/><rect width="34" height="29" x="281.07" y="287.48" fill="url(#45b0c09d-2995-447e-8cb2-7f6b59b5e20c)"/><rect width="32" height="24" x="282.57" y="289.48" fill="#3c3a4c"/><rect width="32" height="24" x="282.57" y="330.48" fill="#ff5252"/><rect width="32" height="24" x="282.57" y="371.48" fill="#ff9800"/><rect width="258" height="14" x="367.57" y="294.48" fill="#3c3a4c" opacity=".4"/><rect width="258" height="14" x="367.57" y="335.48" fill="#3c3a4c" opacity=".4"/><rect width="258" height="14" x="367.57" y="376.48" fill="#3c3a4c" opacity=".4"/><rect width="186" height="153" x="364.07" y="364.48" fill="url(#e5b0a96a-81f6-4370-afe3-5a7d6a35b55e)"/><path fill="url(#a1850e5a-cf77-4889-926a-0125112ab273)" d="M559.15,531.41a52.08,52.08,0,0,1,104.17,0v33.33H677.9V531.41a66.67,66.67,0,1,0-133.33,0v33.33h14.58Z" transform="translate(-152.16 -191.26)"/><path fill="#fff" d="M561.23,530.74a50,50,0,0,1,100,0v32h14v-32a64,64,0,0,0-128,0v32h14Z" transform="translate(-152.16 -191.26)"/><rect width="174" height="142" x="372.07" y="369.48" fill="#3c3a4c"/><rect width="174" height="142" x="372.07" y="369.48" fill="#fff"/><rect width="174" height="86" x="372.07" y="397.48" fill="#3c3a4c"/><path fill="url(#66998849-614e-4d8a-b9ff-f14bbc588ed8)" d="M624,615.5a12.76,12.76,0,1,0-22,8.74v27.22a9.28,9.28,0,0,0,18.56,0V624.24A12.7,12.7,0,0,0,624,615.5Z" transform="translate(-152.16 -191.26)"/><path d="M622.23,617.74a11,11,0,1,0-19,7.53v23.47a8,8,0,1,0,16,0V625.27A11,11,0,0,0,622.23,617.74Z" opacity=".2" transform="translate(-152.16 -191.26)"/></svg>
|
@@ -1,409 +1,3 @@
|
|
1
|
-
|
2
|
-
*
|
3
|
-
|
4
|
-
;
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
window.Modernizr = (function( window, document, undefined ) {
|
9
|
-
|
10
|
-
var version = '2.8.3',
|
11
|
-
|
12
|
-
Modernizr = {},
|
13
|
-
|
14
|
-
enableClasses = true,
|
15
|
-
|
16
|
-
docElement = document.documentElement,
|
17
|
-
|
18
|
-
mod = 'modernizr',
|
19
|
-
modElem = document.createElement(mod),
|
20
|
-
mStyle = modElem.style,
|
21
|
-
|
22
|
-
inputElem = document.createElement('input') ,
|
23
|
-
|
24
|
-
smile = ':)',
|
25
|
-
|
26
|
-
toString = {}.toString, tests = {},
|
27
|
-
inputs = {},
|
28
|
-
attrs = {},
|
29
|
-
|
30
|
-
classes = [],
|
31
|
-
|
32
|
-
slice = classes.slice,
|
33
|
-
|
34
|
-
featureName,
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
_hasOwnProperty = ({}).hasOwnProperty, hasOwnProp;
|
39
|
-
|
40
|
-
if ( !is(_hasOwnProperty, 'undefined') && !is(_hasOwnProperty.call, 'undefined') ) {
|
41
|
-
hasOwnProp = function (object, property) {
|
42
|
-
return _hasOwnProperty.call(object, property);
|
43
|
-
};
|
44
|
-
}
|
45
|
-
else {
|
46
|
-
hasOwnProp = function (object, property) {
|
47
|
-
return ((property in object) && is(object.constructor.prototype[property], 'undefined'));
|
48
|
-
};
|
49
|
-
}
|
50
|
-
|
51
|
-
|
52
|
-
if (!Function.prototype.bind) {
|
53
|
-
Function.prototype.bind = function bind(that) {
|
54
|
-
|
55
|
-
var target = this;
|
56
|
-
|
57
|
-
if (typeof target != "function") {
|
58
|
-
throw new TypeError();
|
59
|
-
}
|
60
|
-
|
61
|
-
var args = slice.call(arguments, 1),
|
62
|
-
bound = function () {
|
63
|
-
|
64
|
-
if (this instanceof bound) {
|
65
|
-
|
66
|
-
var F = function(){};
|
67
|
-
F.prototype = target.prototype;
|
68
|
-
var self = new F();
|
69
|
-
|
70
|
-
var result = target.apply(
|
71
|
-
self,
|
72
|
-
args.concat(slice.call(arguments))
|
73
|
-
);
|
74
|
-
if (Object(result) === result) {
|
75
|
-
return result;
|
76
|
-
}
|
77
|
-
return self;
|
78
|
-
|
79
|
-
} else {
|
80
|
-
|
81
|
-
return target.apply(
|
82
|
-
that,
|
83
|
-
args.concat(slice.call(arguments))
|
84
|
-
);
|
85
|
-
|
86
|
-
}
|
87
|
-
|
88
|
-
};
|
89
|
-
|
90
|
-
return bound;
|
91
|
-
};
|
92
|
-
}
|
93
|
-
|
94
|
-
function setCss( str ) {
|
95
|
-
mStyle.cssText = str;
|
96
|
-
}
|
97
|
-
|
98
|
-
function setCssAll( str1, str2 ) {
|
99
|
-
return setCss(prefixes.join(str1 + ';') + ( str2 || '' ));
|
100
|
-
}
|
101
|
-
|
102
|
-
function is( obj, type ) {
|
103
|
-
return typeof obj === type;
|
104
|
-
}
|
105
|
-
|
106
|
-
function contains( str, substr ) {
|
107
|
-
return !!~('' + str).indexOf(substr);
|
108
|
-
}
|
109
|
-
|
110
|
-
|
111
|
-
function testDOMProps( props, obj, elem ) {
|
112
|
-
for ( var i in props ) {
|
113
|
-
var item = obj[props[i]];
|
114
|
-
if ( item !== undefined) {
|
115
|
-
|
116
|
-
if (elem === false) return props[i];
|
117
|
-
|
118
|
-
if (is(item, 'function')){
|
119
|
-
return item.bind(elem || obj);
|
120
|
-
}
|
121
|
-
|
122
|
-
return item;
|
123
|
-
}
|
124
|
-
}
|
125
|
-
return false;
|
126
|
-
}
|
127
|
-
function webforms() {
|
128
|
-
Modernizr['input'] = (function( props ) {
|
129
|
-
for ( var i = 0, len = props.length; i < len; i++ ) {
|
130
|
-
attrs[ props[i] ] = !!(props[i] in inputElem);
|
131
|
-
}
|
132
|
-
if (attrs.list){
|
133
|
-
attrs.list = !!(document.createElement('datalist') && window.HTMLDataListElement);
|
134
|
-
}
|
135
|
-
return attrs;
|
136
|
-
})('autocomplete autofocus list placeholder max min multiple pattern required step'.split(' '));
|
137
|
-
Modernizr['inputtypes'] = (function(props) {
|
138
|
-
|
139
|
-
for ( var i = 0, bool, inputElemType, defaultView, len = props.length; i < len; i++ ) {
|
140
|
-
|
141
|
-
inputElem.setAttribute('type', inputElemType = props[i]);
|
142
|
-
bool = inputElem.type !== 'text';
|
143
|
-
|
144
|
-
if ( bool ) {
|
145
|
-
|
146
|
-
inputElem.value = smile;
|
147
|
-
inputElem.style.cssText = 'position:absolute;visibility:hidden;';
|
148
|
-
|
149
|
-
if ( /^range$/.test(inputElemType) && inputElem.style.WebkitAppearance !== undefined ) {
|
150
|
-
|
151
|
-
docElement.appendChild(inputElem);
|
152
|
-
defaultView = document.defaultView;
|
153
|
-
|
154
|
-
bool = defaultView.getComputedStyle &&
|
155
|
-
defaultView.getComputedStyle(inputElem, null).WebkitAppearance !== 'textfield' &&
|
156
|
-
(inputElem.offsetHeight !== 0);
|
157
|
-
|
158
|
-
docElement.removeChild(inputElem);
|
159
|
-
|
160
|
-
} else if ( /^(search|tel)$/.test(inputElemType) ){
|
161
|
-
} else if ( /^(url|email)$/.test(inputElemType) ) {
|
162
|
-
bool = inputElem.checkValidity && inputElem.checkValidity() === false;
|
163
|
-
|
164
|
-
} else {
|
165
|
-
bool = inputElem.value != smile;
|
166
|
-
}
|
167
|
-
}
|
168
|
-
|
169
|
-
inputs[ props[i] ] = !!bool;
|
170
|
-
}
|
171
|
-
return inputs;
|
172
|
-
})('search tel url email datetime date month week time datetime-local number range color'.split(' '));
|
173
|
-
}
|
174
|
-
for ( var feature in tests ) {
|
175
|
-
if ( hasOwnProp(tests, feature) ) {
|
176
|
-
featureName = feature.toLowerCase();
|
177
|
-
Modernizr[featureName] = tests[feature]();
|
178
|
-
|
179
|
-
classes.push((Modernizr[featureName] ? '' : 'no-') + featureName);
|
180
|
-
}
|
181
|
-
}
|
182
|
-
|
183
|
-
Modernizr.input || webforms();
|
184
|
-
|
185
|
-
|
186
|
-
Modernizr.addTest = function ( feature, test ) {
|
187
|
-
if ( typeof feature == 'object' ) {
|
188
|
-
for ( var key in feature ) {
|
189
|
-
if ( hasOwnProp( feature, key ) ) {
|
190
|
-
Modernizr.addTest( key, feature[ key ] );
|
191
|
-
}
|
192
|
-
}
|
193
|
-
} else {
|
194
|
-
|
195
|
-
feature = feature.toLowerCase();
|
196
|
-
|
197
|
-
if ( Modernizr[feature] !== undefined ) {
|
198
|
-
return Modernizr;
|
199
|
-
}
|
200
|
-
|
201
|
-
test = typeof test == 'function' ? test() : test;
|
202
|
-
|
203
|
-
if (typeof enableClasses !== "undefined" && enableClasses) {
|
204
|
-
docElement.className += ' ' + (test ? '' : 'no-') + feature;
|
205
|
-
}
|
206
|
-
Modernizr[feature] = test;
|
207
|
-
|
208
|
-
}
|
209
|
-
|
210
|
-
return Modernizr;
|
211
|
-
};
|
212
|
-
|
213
|
-
|
214
|
-
setCss('');
|
215
|
-
modElem = inputElem = null;
|
216
|
-
|
217
|
-
;(function(window, document) {
|
218
|
-
var version = '3.7.0';
|
219
|
-
|
220
|
-
var options = window.html5 || {};
|
221
|
-
|
222
|
-
var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;
|
223
|
-
|
224
|
-
var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;
|
225
|
-
|
226
|
-
var supportsHtml5Styles;
|
227
|
-
|
228
|
-
var expando = '_html5shiv';
|
229
|
-
|
230
|
-
var expanID = 0;
|
231
|
-
|
232
|
-
var expandoData = {};
|
233
|
-
|
234
|
-
var supportsUnknownElements;
|
235
|
-
|
236
|
-
(function() {
|
237
|
-
try {
|
238
|
-
var a = document.createElement('a');
|
239
|
-
a.innerHTML = '<xyz></xyz>';
|
240
|
-
supportsHtml5Styles = ('hidden' in a);
|
241
|
-
|
242
|
-
supportsUnknownElements = a.childNodes.length == 1 || (function() {
|
243
|
-
(document.createElement)('a');
|
244
|
-
var frag = document.createDocumentFragment();
|
245
|
-
return (
|
246
|
-
typeof frag.cloneNode == 'undefined' ||
|
247
|
-
typeof frag.createDocumentFragment == 'undefined' ||
|
248
|
-
typeof frag.createElement == 'undefined'
|
249
|
-
);
|
250
|
-
}());
|
251
|
-
} catch(e) {
|
252
|
-
supportsHtml5Styles = true;
|
253
|
-
supportsUnknownElements = true;
|
254
|
-
}
|
255
|
-
|
256
|
-
}());
|
257
|
-
|
258
|
-
function addStyleSheet(ownerDocument, cssText) {
|
259
|
-
var p = ownerDocument.createElement('p'),
|
260
|
-
parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
|
261
|
-
|
262
|
-
p.innerHTML = 'x<style>' + cssText + '</style>';
|
263
|
-
return parent.insertBefore(p.lastChild, parent.firstChild);
|
264
|
-
}
|
265
|
-
|
266
|
-
function getElements() {
|
267
|
-
var elements = html5.elements;
|
268
|
-
return typeof elements == 'string' ? elements.split(' ') : elements;
|
269
|
-
}
|
270
|
-
|
271
|
-
function getExpandoData(ownerDocument) {
|
272
|
-
var data = expandoData[ownerDocument[expando]];
|
273
|
-
if (!data) {
|
274
|
-
data = {};
|
275
|
-
expanID++;
|
276
|
-
ownerDocument[expando] = expanID;
|
277
|
-
expandoData[expanID] = data;
|
278
|
-
}
|
279
|
-
return data;
|
280
|
-
}
|
281
|
-
|
282
|
-
function createElement(nodeName, ownerDocument, data){
|
283
|
-
if (!ownerDocument) {
|
284
|
-
ownerDocument = document;
|
285
|
-
}
|
286
|
-
if(supportsUnknownElements){
|
287
|
-
return ownerDocument.createElement(nodeName);
|
288
|
-
}
|
289
|
-
if (!data) {
|
290
|
-
data = getExpandoData(ownerDocument);
|
291
|
-
}
|
292
|
-
var node;
|
293
|
-
|
294
|
-
if (data.cache[nodeName]) {
|
295
|
-
node = data.cache[nodeName].cloneNode();
|
296
|
-
} else if (saveClones.test(nodeName)) {
|
297
|
-
node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
|
298
|
-
} else {
|
299
|
-
node = data.createElem(nodeName);
|
300
|
-
}
|
301
|
-
|
302
|
-
return node.canHaveChildren && !reSkip.test(nodeName) && !node.tagUrn ? data.frag.appendChild(node) : node;
|
303
|
-
}
|
304
|
-
|
305
|
-
function createDocumentFragment(ownerDocument, data){
|
306
|
-
if (!ownerDocument) {
|
307
|
-
ownerDocument = document;
|
308
|
-
}
|
309
|
-
if(supportsUnknownElements){
|
310
|
-
return ownerDocument.createDocumentFragment();
|
311
|
-
}
|
312
|
-
data = data || getExpandoData(ownerDocument);
|
313
|
-
var clone = data.frag.cloneNode(),
|
314
|
-
i = 0,
|
315
|
-
elems = getElements(),
|
316
|
-
l = elems.length;
|
317
|
-
for(;i<l;i++){
|
318
|
-
clone.createElement(elems[i]);
|
319
|
-
}
|
320
|
-
return clone;
|
321
|
-
}
|
322
|
-
|
323
|
-
function shivMethods(ownerDocument, data) {
|
324
|
-
if (!data.cache) {
|
325
|
-
data.cache = {};
|
326
|
-
data.createElem = ownerDocument.createElement;
|
327
|
-
data.createFrag = ownerDocument.createDocumentFragment;
|
328
|
-
data.frag = data.createFrag();
|
329
|
-
}
|
330
|
-
|
331
|
-
|
332
|
-
ownerDocument.createElement = function(nodeName) {
|
333
|
-
if (!html5.shivMethods) {
|
334
|
-
return data.createElem(nodeName);
|
335
|
-
}
|
336
|
-
return createElement(nodeName, ownerDocument, data);
|
337
|
-
};
|
338
|
-
|
339
|
-
ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
|
340
|
-
'var n=f.cloneNode(),c=n.createElement;' +
|
341
|
-
'h.shivMethods&&(' +
|
342
|
-
getElements().join().replace(/[\w\-]+/g, function(nodeName) {
|
343
|
-
data.createElem(nodeName);
|
344
|
-
data.frag.createElement(nodeName);
|
345
|
-
return 'c("' + nodeName + '")';
|
346
|
-
}) +
|
347
|
-
');return n}'
|
348
|
-
)(html5, data.frag);
|
349
|
-
}
|
350
|
-
|
351
|
-
function shivDocument(ownerDocument) {
|
352
|
-
if (!ownerDocument) {
|
353
|
-
ownerDocument = document;
|
354
|
-
}
|
355
|
-
var data = getExpandoData(ownerDocument);
|
356
|
-
|
357
|
-
if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) {
|
358
|
-
data.hasCSS = !!addStyleSheet(ownerDocument,
|
359
|
-
'article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}' +
|
360
|
-
'mark{background:#FF0;color:#000}' +
|
361
|
-
'template{display:none}'
|
362
|
-
);
|
363
|
-
}
|
364
|
-
if (!supportsUnknownElements) {
|
365
|
-
shivMethods(ownerDocument, data);
|
366
|
-
}
|
367
|
-
return ownerDocument;
|
368
|
-
}
|
369
|
-
|
370
|
-
var html5 = {
|
371
|
-
|
372
|
-
'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video',
|
373
|
-
|
374
|
-
'version': version,
|
375
|
-
|
376
|
-
'shivCSS': (options.shivCSS !== false),
|
377
|
-
|
378
|
-
'supportsUnknownElements': supportsUnknownElements,
|
379
|
-
|
380
|
-
'shivMethods': (options.shivMethods !== false),
|
381
|
-
|
382
|
-
'type': 'default',
|
383
|
-
|
384
|
-
'shivDocument': shivDocument,
|
385
|
-
|
386
|
-
createElement: createElement,
|
387
|
-
|
388
|
-
createDocumentFragment: createDocumentFragment
|
389
|
-
};
|
390
|
-
|
391
|
-
window.html5 = html5;
|
392
|
-
|
393
|
-
shivDocument(document);
|
394
|
-
|
395
|
-
}(this, document));
|
396
|
-
|
397
|
-
Modernizr._version = version;
|
398
|
-
|
399
|
-
docElement.className = docElement.className.replace(/(^|\s)no-js(\s|$)/, '$1$2') +
|
400
|
-
|
401
|
-
(enableClasses ? ' js ' + classes.join(' ') : '');
|
402
|
-
|
403
|
-
return Modernizr;
|
404
|
-
|
405
|
-
})(this, this.document);
|
406
|
-
/*yepnope1.5.4|WTFPL*/
|
407
|
-
(function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,h){var i=b(a),j=i.autoCallback;i.url.split(".").pop().split("?").shift(),i.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]),i.instead?i.instead(a,e,f,g,h):(y[i.url]?i.noexec=!0:y[i.url]=1,f.load(i.url,i.forceCSS||!i.forceJS&&"css"==i.url.split(".").pop().split("?").shift()?"c":c,i.noexec,i.attrs,i.timeout),(d(e)||d(j))&&f.load(function(){k(),e&&e(i.origUrl,h,g),j&&j(i.origUrl,h,g),y[i.url]=2})))}function h(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var i,j,l=this.yepnope.loader;if(e(a))g(a,0,l,0);else if(w(a))for(i=0;i<a.length;i++)j=a[i],e(j)?g(j,0,l,0):w(j)?B(j):Object(j)===j&&h(j,l);else Object(a)===a&&h(a,l)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,null==b.readyState&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}})(this,document);
|
408
|
-
Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0));};
|
409
|
-
;
|
1
|
+
/*! modernizr 3.6.0 (Custom Build) | MIT *
|
2
|
+
* https://modernizr.com/download/?-input-inputtypes-setclasses-shiv !*/
|
3
|
+
!function(e,t,n){function a(e,t){return typeof e===t}function r(){var e,t,n,r,o,i,c;for(var u in s)if(s.hasOwnProperty(u)){if(e=[],t=s[u],t.name&&(e.push(t.name.toLowerCase()),t.options&&t.options.aliases&&t.options.aliases.length))for(n=0;n<t.options.aliases.length;n++)e.push(t.options.aliases[n].toLowerCase());for(r=a(t.fn,"function")?t.fn():t.fn,o=0;o<e.length;o++)i=e[o],c=i.split("."),1===c.length?Modernizr[c[0]]=r:(!Modernizr[c[0]]||Modernizr[c[0]]instanceof Boolean||(Modernizr[c[0]]=new Boolean(Modernizr[c[0]])),Modernizr[c[0]][c[1]]=r),l.push((r?"":"no-")+c.join("-"))}}function o(e){var t=u.className,n=Modernizr._config.classPrefix||"";if(m&&(t=t.baseVal),Modernizr._config.enableJSClass){var a=new RegExp("(^|\\s)"+n+"no-js(\\s|$)");t=t.replace(a,"$1"+n+"js$2")}Modernizr._config.enableClasses&&(t+=" "+n+e.join(" "+n),m?u.className.baseVal=t:u.className=t)}function i(){return"function"!=typeof t.createElement?t.createElement(arguments[0]):m?t.createElementNS.call(t,"http://www.w3.org/2000/svg",arguments[0]):t.createElement.apply(t,arguments)}var l=[],s=[],c={_version:"3.6.0",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,t){var n=this;setTimeout(function(){t(n[e])},0)},addTest:function(e,t,n){s.push({name:e,fn:t,options:n})},addAsyncTest:function(e){s.push({name:null,fn:e})}},Modernizr=function(){};Modernizr.prototype=c,Modernizr=new Modernizr;var u=t.documentElement,m="svg"===u.nodeName.toLowerCase();m||!function(e,t){function n(e,t){var n=e.createElement("p"),a=e.getElementsByTagName("head")[0]||e.documentElement;return n.innerHTML="x<style>"+t+"</style>",a.insertBefore(n.lastChild,a.firstChild)}function a(){var e=E.elements;return"string"==typeof e?e.split(" "):e}function r(e,t){var n=E.elements;"string"!=typeof n&&(n=n.join(" ")),"string"!=typeof e&&(e=e.join(" ")),E.elements=n+" "+e,c(t)}function o(e){var t=y[e[g]];return t||(t={},v++,e[g]=v,y[v]=t),t}function i(e,n,a){if(n||(n=t),m)return n.createElement(e);a||(a=o(n));var r;return r=a.cache[e]?a.cache[e].cloneNode():h.test(e)?(a.cache[e]=a.createElem(e)).cloneNode():a.createElem(e),!r.canHaveChildren||p.test(e)||r.tagUrn?r:a.frag.appendChild(r)}function l(e,n){if(e||(e=t),m)return e.createDocumentFragment();n=n||o(e);for(var r=n.frag.cloneNode(),i=0,l=a(),s=l.length;s>i;i++)r.createElement(l[i]);return r}function s(e,t){t.cache||(t.cache={},t.createElem=e.createElement,t.createFrag=e.createDocumentFragment,t.frag=t.createFrag()),e.createElement=function(n){return E.shivMethods?i(n,e,t):t.createElem(n)},e.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+a().join().replace(/[\w\-:]+/g,function(e){return t.createElem(e),t.frag.createElement(e),'c("'+e+'")'})+");return n}")(E,t.frag)}function c(e){e||(e=t);var a=o(e);return!E.shivCSS||u||a.hasCSS||(a.hasCSS=!!n(e,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),m||s(e,a),e}var u,m,f="3.7.3",d=e.html5||{},p=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,h=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,g="_html5shiv",v=0,y={};!function(){try{var e=t.createElement("a");e.innerHTML="<xyz></xyz>",u="hidden"in e,m=1==e.childNodes.length||function(){t.createElement("a");var e=t.createDocumentFragment();return"undefined"==typeof e.cloneNode||"undefined"==typeof e.createDocumentFragment||"undefined"==typeof e.createElement}()}catch(n){u=!0,m=!0}}();var E={elements:d.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:f,shivCSS:d.shivCSS!==!1,supportsUnknownElements:m,shivMethods:d.shivMethods!==!1,type:"default",shivDocument:c,createElement:i,createDocumentFragment:l,addElements:r};e.html5=E,c(t),"object"==typeof module&&module.exports&&(module.exports=E)}("undefined"!=typeof e?e:this,t);var f=i("input"),d="autocomplete autofocus list placeholder max min multiple pattern required step".split(" "),p={};Modernizr.input=function(t){for(var n=0,a=t.length;a>n;n++)p[t[n]]=!!(t[n]in f);return p.list&&(p.list=!(!i("datalist")||!e.HTMLDataListElement)),p}(d);var h="search tel url email datetime date month week time datetime-local number range color".split(" "),g={};Modernizr.inputtypes=function(e){for(var a,r,o,i=e.length,l="1)",s=0;i>s;s++)f.setAttribute("type",a=e[s]),o="text"!==f.type&&"style"in f,o&&(f.value=l,f.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(a)&&f.style.WebkitAppearance!==n?(u.appendChild(f),r=t.defaultView,o=r.getComputedStyle&&"textfield"!==r.getComputedStyle(f,null).WebkitAppearance&&0!==f.offsetHeight,u.removeChild(f)):/^(search|tel)$/.test(a)||(o=/^(url|email)$/.test(a)?f.checkValidity&&f.checkValidity()===!1:f.value!=l)),g[e[s]]=!!o;return g}(h),r(),o(l),delete c.addTest,delete c.addAsyncTest;for(var v=0;v<Modernizr._q.length;v++)Modernizr._q[v]();e.Modernizr=Modernizr}(window,document);
|