-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
478 lines (432 loc) · 33.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta name="description" content="With love, from Sweden">
<meta name="author" content="Blackbeard">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<title>Intro</title>
<link href="https://fonts.googleapis.com/css?family=Hind|Montserrat|Nunito+Sans&display=swap" rel="stylesheet">
<style>
body {
color: white;
font-family: "Nunito Sans", "Hind", "Montserrat", sans-serif;
font-weight: 400;
cursor: default;
}
.page-container {
background: linear-gradient(45deg, #3494E6, #EC6EAD);
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
}
.mouse-blocker {
display: none;
background: rgba(255, 255, 255, 0);
top: 0;
left: 0;
bottom: 0;
right: 0;
position: fixed;
z-index: 10000000;
}
.ui-container {
color: #FFFFFF;
display: flex;
position: fixed;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: hidden;
z-index: -98;
}
.anim-container {
color: #FFFFFF;
display: flex;
position: fixed;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(255, 255, 255, 0);
overflow: hidden;
z-index: -99;
}
.ui-title {
font-size: 2em;
margin-bottom: 30px;
}
.ui-buttons-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
}
.ui-button-1,
.ui-button-2,
.ui-button-3 {
position: relative;
width: 120px;
height: 120px;
border-radius: 60px;
background-color: #0B3954;
transition: all 0.25s;
margin: 10px;
text-align: center;
cursor: pointer;
font-size: 0.6em;
text-transform: uppercase;
z-index: 2;
}
.ui-button-1:hover,
.ui-button-2:hover,
.ui-button-3:hover {
transform: scale(1.25);
transform-origin: center;
background-color: #4DCCBD;
margin: 20px;
line-height: 4.5em;
color: black;
}
.icon {
width: 60px;
height: 60px;
transform-origin: left top;
transform: translate(50%, 35%);
}
.icon.wtf {
width: 75px;
height: 75px;
transform-origin: left top;
transform: translate(31%, 30%);
}
.icon.why {
width: 60px;
height: 60px;
transform-origin: left top;
transform: translate(50%, 43%);
}
.ui-footer {
margin-top: 20px;
}
.expand-circle {
display: block;
position: relative;
opacity: 0;
width: 100px;
height: 100px;
border-radius: 50px;
background-color: #0B3954;
transform: translate(10%, -70%) scale(0.1);
z-index: -99;
}
.expand {
animation: expand 2s;
animation-fill-mode: forwards;
}
@keyframes expand {
0% {
transform: translate(10%, -70%) scale(0.0);
opacity: 0;
}
1% {
transform: translate(10%, -70%) scale(0.0);
opacity: 1;
}
100% {
transform: translate(10%, -70%) scale(200);
opacity: 1;
}
}
.shrink {
animation: shrink 0.75s;
animation-fill-mode: forwards;
}
@keyframes shrink {
0% {
transform: scale(1.0);
}
100% {
transform: scale(0.0);
opacity: 0;
}
}
.intro-container {
color: #ffffff;
display: flex;
position: fixed;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: hidden;
z-index: 9999;
background-color: rgb(0, 0, 0);
transition: all 0.5s;
opacity: 1;
}
.warn-noscript {
color: #ffffff;
display: flex;
position: fixed;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: hidden;
z-index: 99999;
background-color: rgb(0, 0, 0);
transition: all 0.5s;
opacity: 1;
line-height: auto;
}
.rotate-screen {
display: none;
}
.error-icon {
margin-bottom: 30px;
}
.intro-elem {
display: flex;
flex-direction: row;
}
.anim-intro {
animation: intro 2s;
animation-fill-mode: forwards;
}
@keyframes intro {
0% {
transform: scale(100);
opacity: 0;
}
20% {
transform: scale(1);
opacity: 1;
}
80% {
transform: scale(1);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 1;
}
}
.fade {
animation: fade 0.7s;
animation-fill-mode: forwards;
}
@keyframes fade {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.hide {
display: none;
transform: scale(0);
}
.flash {
animation: flash 2s infinite;
animation-timing-function: steps(1);
}
@keyframes flash {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 0;
}
}
.logo {
min-width: 300px;
max-width: 400px;
}
@media only screen and (max-width: 439px) {
.screen-rotate {
color: #ffffff;
display: flex;
position: fixed;
flex-direction: row;
justify-content: center;
align-items: center;
text-align: center;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: hidden;
z-index: 999999;
background: rgb(0, 0, 0);
line-height: 0.4em;
}
.intro-container {
display: none;
}
}
@media only screen and (min-width: 440px) {
.screen-rotate {
display: none;
transform: translate(99999px);
}
.rotate-icon {
display: none;
}
}
</style>
</head>
<body>
<div class="page-container">
<div class="mouse-blocker" id="curtain"></div>
<div class="screen-rotate">
<div class="rotate-icon flash">
<svg xmlns="http://www.w3.org/2000/svg" width="128px" height="128px" viewBox="0 0 98.666 98.666">
<g fill="currentColor">
<path d="M84.271,42.357c-0.158,0.604-0.626,1.08-1.229,1.246c-0.153,0.041-0.31,0.062-0.465,0.062
c-0.453,0-0.896-0.177-1.229-0.504L70.201,32.163c-0.445-0.439-0.623-1.083-0.465-1.688s0.626-1.08,1.229-1.246l1.562-0.429
c-4.002-4.794-10.006-7.688-16.308-7.806c-0.954-0.018-1.717-0.797-1.717-1.75v-6.956c0-0.468,0.188-0.916,0.521-1.245
s0.798-0.48,1.252-0.504c11.136,0.152,21.165,5.863,26.968,15.313l2.825-0.777c0.603-0.165,1.248,0.004,1.692,0.441
c0.445,0.439,0.623,1.083,0.465,1.688L84.271,42.357z" />
<path d="M0.105,2v73.701c0,1.104,0.896,2,2,2h18.754l-0.001,18.681c-0.013,0.093-0.02,0.188-0.02,0.284c0,1.104,0.896,2,2,2
c0.006,0,0.013,0,0.02,0h73.703c1.104,0,2-0.896,2-2V50.105c0-1.104-0.896-2-2-2H50.666V2c0-1.104-0.896-2-2-2H2.105
C1.001,0,0.105,0.896,0.105,2z M29.796,89.729V57.043h59.827v32.686H29.796z M20.859,50.105v18.658H9.042V8.937h32.686v39.169
H22.859C21.755,48.106,20.859,49.002,20.859,50.105z" />
</g>
</svg>
</div>
</div>
<noscript>
<div class="warn-noscript">
<div class="error-icon flash">
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewbox="12 12 90 90">
<g fill="currentColor" fill-rule="evenodd" clip-rule="evenodd">
<path d="M63.67 97.86c-9.32 0-18.64.12-27.95-.03-8.85-.15-11.9-5.55-7.53-13.21a7411.4 7411.4 0 0 1 28.13-48.85c4.44-7.63 10.72-7.57 15.24.16A6890.23 6890.23 0 0 1 99.79 84.7c4.42 7.7 1.33 13-7.68 13.13-9.48.13-18.96.02-28.44.02zm.13-3.78c9.33 0 18.66.1 27.98-.03 6.28-.08 7.6-2.36 4.5-7.77A7673.77 7673.77 0 0 0 68.54 38.3c-3.25-5.58-6.04-5.56-9.3.04-9.18 15.84-18.32 31.7-27.42 47.59-3.22 5.62-1.88 8.04 4.5 8.11 9.16.11 18.33.03 27.48.04z" />
<path d="M35.26 88.97L63.94 39.3l28.72 49.67h-57.4zm26.3-30.31v16.67l4.65-.32V58.66h-4.64zm-1 25.6h6.36V77.8h-6.36v6.46z" />
</g>
</svg>
</div>
<p>The page uses JavaScript. Please enable JavaScript to view the page.</p>
<p>Did you know? Enabling JavaScript has been proven to increase the enjoyment of this page by a factor of 10.</p>
<p>https://unforeseenocean.github.io</p>
</div>
</noscript>
<div class="intro-container" id="intro">
<div class="intro-elem anim-intro">
<div class="logo" id="logo">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewbox="0 0 512 256">
<path d="M55.2 244.8c1.2-4.7 6-2.6 8.2-4.9-7.7.4-15.6 1.3-23.1-1.5v-5L45 232c2.4-4.3 4.1-9 5-13.8.4-1.2-.3-2.6-.6-3.9-.9-4-2-8-2.7-12.2-.3-2.3 0-4.7 0-7.3-3.4 2-2.3 5.7-3.3 8.6-1 3-1.8 6.2-3 10.3-3.6-13.1-4.3-25.8-5.3-38.6-.7 2.5-1.6 5-1.9 7.7-.3 2.4.2 4.9-.4 7.8-1-1-2-1.9-2.8-3a34 34 0 0 1-6-21.1c0-1.2 0-2.4-.2-3.6a38.3 38.3 0 0 1 4.5-25.6l-.3-.7-8.3 7.9-2.9-.8c.6-1.8.9-3.4 1.6-4.8 3.1-7 5-14.4 6.6-21.9.5-2.5 1.4-5.2 3-7.3 4.3-5.7 8.5-11.5 14.5-15.7 3.2-2.3 5.7-5.7 8.6-8.5l6.6-5.6-6-1.5c-4.5-2-7.8-5.9-9.3-10.6-.7-2.2-1.6-4.5-1.8-6.8-.5-5.8.1-11.6 2.1-17.2.4 2.1.6 4.2 1.2 6.3 1.2 5.2 3.7 9.2 9.2 11.2a36 36 0 0 0 15.3 2c.9 0 1.7-.4 3-1-8.9-7.5-10.5-16.6-6-28l10.8-9.1c-1.7-3-5-3.7-8-4.8l-9-2.9 2.2-8.3c10 4.2 19.2 8.5 26.8 16.4-1 .6-1.6 1.4-2.4 1.8l-9 4a17 17 0 0 0-9.2 8.1c-.9 1.7-1.2 4-1 6 .7 6.8 4.6 11.5 10.5 15l8-3.9 5.5 4 9.2-2.7c1.4-.5 2.8-1.4 3.7.8-1.3 4-6 2.7-8.4 5.5.7.4 1.3.9 2 1 3.7 1 7.4 2.2 11.2 2.7 5.8.6 11.6 1 17.4.8 3.2-.1 6-2.2 7.7-5 1.7-2.6 3.1-5.4 4.8-8 .3-.6.8-1.1 1.6-2 .5 1.2 1 2 1 2.7-.2 4.5-.4 9-1 13.4A19.3 19.3 0 0 1 127 86.6c-1.6.6-3.9.7-4.4 3.5 6.2 2.2 11.2-.8 16.6-2.4 2.4-.4 5-.6 7.4-1.1 8.4-1.9 17.2 0 24.3 4.9l2.2 1.4-.7.9-4.3-1.6-.4.6 1.2 1 1.3 1.3c-.3.3-.5.6-.7.6-.9-.1-1.7-.3-2.6-.6-8.4-2.8-17.2-3.3-26.3-4L129.2 104c.6 4.5-2.3 6.6-5.7 8.6a73.2 73.2 0 0 0-18 13.2c-1.6 1.5-3.3 3-3.1 6.3 5-.8 8.5-4.1 13.2-5.5-.6 5.1-5.7 7-7 11.6 4.2 8.7 9.5 16.8 15.8 24.1l1.5 1.7c1.6 2 3 4.3 1.5 7-1.5 2.5-4 3.3-7 3a56 56 0 0 1-18.5-4.9l-6.9-3.3 2.6 5.2c-1.4 1.9-.7 3.8.6 5.8 4.7 7.8 9.9 15 18 19.3-.1 2.3-1.4 2.2-2.9 2l-13-3.1c-1.7-.4-3.4-.6-5.7-1 .5 1.5.6 2.2 1 2.7l5 5.8A15 15 0 0 0 115 208c2.3-.3 4.7 0 7.1.3 6.7-2.6 14.4-3.1 20.5-9.4l-5-2.5-.3-4.1c4.9.7 4 5.6 6.8 7.6l1.6-1.8c-.5-3-1.3-5.4-1.3-7.9a32 32 0 0 0-5-18.3 110 110 0 0 0-8.1-11.3c-2-2.4-3.2-4.7-1.8-7.4-1.2-4.2-4-8-1.8-13 5.6 4.8 10.2 10 17 12.2a51 51 0 0 0 20 3.6c6.1 9.3 15.4 14.6 23.9 22.5l-.6-10c4.7 5 4.8 10.5 3.7 17.4-1.8-1.1-3.2-1.7-4-2.6-2.8-3.3-6-4.8-10.8-3.7-1.3 6.7-4 13-8.1 18.3-4.2 5.5-8.6 10.8-13.3 15.8-9.3 9.7-12.6 12-16.1 12.4.8-2.7 1.7-5.1 2.1-7.6.4-2.4.7-5-.7-7.8l-2.9 3.1-12 11.4c-1.7 1.5-3.5 2.8-6 2.4-1 0-2.3.7-3.3 1.3-5.8 3-11.5 6.4-17.4 9.3a76 76 0 0 1-28.8 7.6 98 98 0 0 0-5.3.6c-3.2.5-6.3.5-9.8-1.7zm91.3-27.6C158 205.4 168.8 194 174 178l-6.3-2.4c-5.2 9.3-9.8 18.5-19.9 24.3l-2.8 5 1.4 12.3zm-86.8-80.4a28.8 28.8 0 0 0-14.4 26.7c6.1-2.7 11.2-6.6 17.4-10.7-5.3-.5-8.8 1.5-12.7 3.2 1.5-7.6 5.7-13.3 9.7-19.2zm42.4-49.2c-5.5-4-13.8-7.2-17.6-7 5 4.6 10.8 6.2 17.6 7zm41.5-63.5c-2.3 3.8-5.5 6.1-9.9 6.3-2.3 0-4.7-.3-7-1-7.3-2.6-13.3-8-16.4-15.1l1.9-2.3c5 3 9.5 6.4 14.6 8.7 5.2 2.4 11 3.6 16.8 3.4z" />
<path d="M146.4 110.9c4.5-.7 6.6 3 10.3 4.7-.4-3-3-4.7-4-7.3 1.6-1.3 2.7-.3 3.6.5a37.7 37.7 0 0 1 12.2 21.3c.3 1.9.3 3.8.5 6.5a130.6 130.6 0 0 0-22.6-25.7zm9.2-65.3c2.4.4 2.2 1.6 1.8 2.8-.8 2.6-1.9 5-2.5 7.6-.6 2.3-1.4 4.6.7 7l2.5-3.8c3 3.7 1.8 6-3.5 7-2.8-1.3-3.5-3.8-3.4-6.6a34 34 0 0 1 4.4-14zm-7.5 88.6c-6.8-2.8-14.4-2.3-21-5.6 1-2.4 2.5-2.2 4-2.2a28 28 0 0 1 17 7.8zm-28-97.7c2.1-2.9 3.9-2.4 6-.6-1.3 4 .5 9.2-5 13.2l-1-12.6zM168 85c-4.7-1.9-9.3-2-13.7-4.3 4.6-2.6 9-1 13.7 4.3zM307.5 64c0 2.5-1.7 5-5 7.4a33.8 33.8 0 0 1-12.1 5.4 17 17 0 0 1 8.6 2.7 7.1 7.1 0 0 1 3.2 6.1c0 2.6-1.3 4.8-3.9 6.7a15.3 15.3 0 0 1-9.2 2.8c-2 0-4-.4-6-1-2-.7-3-1.6-3-2.6v-.1h.5c1 .8 2.4 1.1 4 1.1 4 0 7.5-1 10.5-2.8 3-2 4.5-3.8 4.5-5.5 0-1.7-1.2-3.2-3.5-4.4a15 15 0 0 0-12-1c-.5-.2-.8-.5-.8-1 0-.6.5-1 1.5-1.4l2.2-.3c5.2-1.4 9.2-3.2 12.1-5.4 2.9-2.2 4.3-4.7 4.3-7.5 0-1.3-.7-2.4-2.3-3.2a15 15 0 0 0-7-1.3c-3 0-5.6.3-7.7.8-2 .5-5.4 1.6-10.2 3.2l-7.3 2.4c-.8 0-1.2-.5-1.2-1.7 0-.5.2-.8.5-1a68 68 0 0 1 25.2-5.2c9.4 0 14 2.3 14 6.9zm-19-1.2l-.1.2c-10 14.6-15.1 25.4-15.1 32.3 0 1 .2 1.8.5 2.6l.7 1.3V99c0 .2-.1.3-.4.3-.8 0-1.5-.6-2-1.8-.6-1.3-1-2.8-1-4.4 0-6 3.5-14.8 10.2-26.2 2-3.7 3.3-5.5 4-5.5.6 0 1.3.1 2 .4.8.3 1.1.6 1.1 1zM310.1 92.2l1.1-.4c.3 0 .4.2.4.4 0 .7-.8 1.1-2.5 1.1-2.2 0-3.3-1.9-3.3-5.6a89.1 89.1 0 0 1 7.9-26.9c2.3-4.6 4.3-7 6.1-7 1 0 2 .3 3 1 1.1.7 1.6 1.4 1.6 2.2 0 3.4-5 10.8-14.8 22.3a41 41 0 0 0-1.2 9c0 2.6.6 3.9 1.7 3.9zm12.7-35.4c0-.5-.2-.8-.5-.8-1.4 0-3.5 2.5-6.1 7.4-2.7 5-4.7 9.7-6 14.1 8.3-11 12.6-17.9 12.6-20.7z" />
<path d="M331.3 92.6l.7-.1h.2c0 .5-.6.7-1.7.7-1.2 0-2.1-.5-2.8-1.6a7 7 0 0 1-1.1-4.1c0-1.8.3-3.8 1-6 0 .2-.7 1.1-2 2.9-3.7 5.9-6.7 8.8-9 8.8-.8 0-1.7-.4-2.5-1.3-.7-.8-1.1-2-1.1-3.3 0-1.4.8-3.5 2.5-6.3 1.6-2.8 3.6-5.3 6-7.5 2.3-2.2 4.3-3.3 6-3.3h.6a9 9 0 0 1 4.4 1c1.2.7 1.8 1.6 1.8 2.7 0 .5-.2.8-.6.8-.1 0-.2 0-.2-.2-.8-1.7-2-2.6-3.4-2.6-2.6 0-5.6 2.2-9 6.5-3.5 4.4-5.2 7.7-5.2 10 0 .9.3 1.3.7 1.3 2.1 0 6.5-4.7 13.2-14.2l.5-.1 1.4.7c.7.4 1.1.8 1.1 1.1l-1 1.8a20.6 20.6 0 0 0-2.3 8.6c0 2.5.6 3.7 1.8 3.7zM350.9 81.9c.3 0 .4 0 .4.3l-.1.6c-5 7-9 10.6-12.2 10.6-4 0-6-1.8-6-5.5 0-2.8 1.5-6.2 4.3-10.3 2.8-4 5.5-6 8.1-6 1 0 2 .3 3 1 1 .6 1.4 1.4 1.4 2.1 0 2.2-.7 3.3-2.2 3.3-.4 0-.7 0-.7-.3a8 8 0 0 0 .8-3.1c0-.8-.2-1.3-.5-1.3-.6 0-1.5.6-2.8 1.7a26.5 26.5 0 0 0-6 7 14.6 14.6 0 0 0-2.5 7c0 1.9.8 2.8 2.2 2.8 1.6 0 3.5-.8 5.5-2.5a97 97 0 0 0 7.3-7.4zM360.8 56.9l-2.4.5c-.3 0-.5-.2-.5-.5 0-.6 1-1 2.7-1 1.8 0 3.1.3 4 1 1 .6 1.3 1.4 1.3 2.3 0 .9-1.8 5.4-5.4 13.7-3.9 8.5-6.2 13.7-6.8 15.5l4.8-6.5-1.3-1.2c0-.3.3-1 1-1.7.6-.8 1-1.2 1.3-1.2.2 0 .7.3 1.6 1 2.1-2.5 4.3-4.7 6.6-6.5 2.3-2 4-2.9 5-2.9.4 0 .6.6.6 1.6 0 2.4-1 4.7-2.8 6.9a12 12 0 0 1-6.6 4 18.5 18.5 0 0 1 2.4 14.1c-.3 1.5-.7 2.2-1 2.2s-.7-.2-.7-.5l.4-2.8c0-4-2-8.1-5.7-12.1-3.6 5-5.6 8.2-6.1 9.5l.2.4c0 .5-.3.7-.9.7-.7 0-1.1-.7-1.1-2s.4-3.5 1.1-6.3l5.4-13.5a66.3 66.3 0 0 0 4.2-12.8c0-1.3-.4-2-1.3-2zm8.7 15.6l-.1-.2a64.7 64.7 0 0 0-7.5 7.1c.2.4.8.6 1.7.6 1 0 2.2-.9 3.7-2.7 1.5-1.8 2.2-3.4 2.2-4.8zM381.3 57l-2.4.6c-.4 0-.5-.2-.5-.4 0-.7.8-1 2.6-1 1.7 0 3 .2 4 .8 1 .6 1.5 1.5 1.5 2.6 0 1-1 3.4-2.8 7l-3.6 7.1c1.5-1 3.2-1.5 5.1-1.5 3.2 0 4.8 1.5 4.8 4.6 0 3.6-1.7 7.6-5.1 11.8-3.4 4.3-6.7 6.5-9.7 6.5-2.3 0-4.2-1.2-5.6-3.5l-.2-.3.2-.2c1.5 1 2.9 1.6 4.2 1.6 3.1 0 6-2 8.8-5.7a19 19 0 0 0 4.1-11.3c0-1.4-.4-2.1-1.4-2.1-2 0-4.4 2-7.1 6-2.8 4.1-4.2 7.4-4.2 9.7 0 .4.2 1 .5 1.7 0 .1-.2.2-.6.2-.4 0-.7-.3-1-1-.3-.6-.4-1.4-.4-2.2a33 33 0 0 1 3.4-11.7l5-11.7c1.1-3 1.7-4.9 1.7-6 0-1-.5-1.5-1.3-1.5zM407.7 81.9c.3 0 .5 0 .5.3 0 .2 0 .4-.2.6-4.9 7-9 10.6-12.1 10.6-4 0-6-1.8-6-5.5 0-2.8 1.4-6.2 4.3-10.3 2.8-4 5.5-6 8.2-6 1 0 2 .3 3 1 .8.7 1.2 1.6 1.2 2.6 0 1.8-1 3.6-3.3 5.3A10.4 10.4 0 0 1 397 83c-.4 0-.6 0-.6-.2l.2-.4c5.3-1.7 8-4.4 8-8.2 0-.6-.2-.8-.6-.8-.5 0-1.5.5-2.8 1.6a26.6 26.6 0 0 0-5.9 7 14.6 14.6 0 0 0-2.5 7c0 1.9.7 2.8 2.2 2.8 1.6 0 3.4-.8 5.5-2.5a94.5 94.5 0 0 0 7.2-7.4zM424.4 92.6l.7-.1h.2c0 .5-.6.7-1.8.7-1 0-2-.5-2.7-1.6a7 7 0 0 1-1.1-4.1c0-1.8.3-3.7 1-6 0 .2-.7 1.1-2 2.9-3.7 5.9-6.7 8.8-9 8.8-.9 0-1.7-.4-2.5-1.3-.7-.8-1.1-2-1.1-3.3 0-1.4.8-3.5 2.4-6.3 1.7-2.8 3.7-5.3 6-7.5s4.3-3.3 6-3.3h.7a9 9 0 0 1 4.4 1c1.2.7 1.8 1.6 1.8 2.7 0 .5-.2.8-.6.8-.2 0-.2 0-.2-.2-.8-1.7-2-2.6-3.4-2.6-2.6 0-5.7 2.2-9 6.5-3.5 4.4-5.2 7.7-5.2 10 0 .9.2 1.3.7 1.3 2 0 6.5-4.7 13.2-14.2l.4-.1c.2 0 .7.2 1.5.7.7.4 1 .8 1 1.1l-.9 1.8a20.6 20.6 0 0 0-2.3 8.6c0 2.5.6 3.7 1.8 3.7zM446.6 71.6c0-.2-.3 0-.8.8a14.3 14.3 0 0 0-2.8 5.4c0 1.3.4 2 1.3 2.3l.5.2c0 .4-.5.6-1.4.6a3 3 0 0 1-2.3-1.1c-.7-.7-1-1.5-1-2.4 0-1 .1-1.7.4-2.4a35 35 0 0 0-5.7 5.6 20.8 20.8 0 0 0-4.4 8.8l-.7 2.6c-.2.5-.5.8-.9.8s-.9 0-1.4-.3c-.5-.3-.7-.5-.7-.9 0-.8.7-3.6 2.3-8.4 1.5-4.8 2.3-8.4 2.3-10.8 0-.8-.4-1.2-1-1.3-.7 0-1-.2-1-.4 0-.4.4-.6 1-.6 3.2 0 4.7 1.3 4.7 3.8 0 .8-.7 3.5-2.3 8.2 2.5-4 5.3-6.9 8.4-8.4.7-1.7 1.8-2.5 3.3-2.5s2.2.1 2.2.4zM465.9 57.4l-2.4.5c-.3 0-.5-.1-.5-.4 0-.7 1-1.1 3.2-1.1 3.2 0 4.8 1 4.8 3.3 0 .7-1.5 4-4.3 9.8l-4.5 9.2a33.5 33.5 0 0 0-3.7 13c0 1.8.5 2.8 1.4 2.8l2.1-.8h.2c0 .4-.3.7-1 1a4 4 0 0 1-1.5.6c-2.1 0-3.2-1.7-3.2-5 0-2.2.8-5.7 2.2-10.7a58.1 58.1 0 0 1-5.7 9.3c-2 2.8-3.9 4.2-5.3 4.2-1 0-2-.6-2.9-1.7-1-1.2-1.4-2.2-1.4-3.2 0-2.9 1.6-6.4 4.7-10.6 3.1-4.1 6-6.2 8.4-6.2.7 0 1.4.2 2.2.6.8.4 1.2.8 1.2 1.2 0 .5-.2.7-.6.7l-1.4-.8c-1.6 0-4 2.4-7.3 7-3.3 4.7-4.9 8-4.9 10 0 .6.2 1 .6 1 .4 0 1.2-.5 2.4-1.6a100 100 0 0 0 11.2-13.3 319 319 0 0 0 7.4-17.6c0-.8-.5-1.2-1.4-1.2zM314.9 116.5c0 2.7-.8 5.4-2.3 8a26.1 26.1 0 0 1-6.2 7.4 38.7 38.7 0 0 1-22.6 7.4c-4.5 0-6.7-.4-6.7-1.1 0-.5.3-.7 1-.7h1.1l1.3.1a39.6 39.6 0 0 0 23.3-7.6c2.7-2.2 4.8-4.6 6.4-7.2 1.5-2.5 2.3-4.9 2.3-7.2 0-3.6-1.4-6.4-4.3-8.5a17.8 17.8 0 0 0-11-3.2h-.4c-6.4.1-15.3 2.3-26.9 6.6-1 0-1.4-.8-1.4-2.2 0-.5.2-.8.6-1a79.7 79.7 0 0 1 27-5c5.4 0 10 1.2 13.5 3.8 3.5 2.6 5.3 6.1 5.3 10.4zm-39.2 26h-.2c-.7 0-1.3-.4-1.8-1.3a8 8 0 0 1-.7-3.7c0-5.8 3.3-14.4 9.8-25.9l.7-1.5 1.2-2c.7-1.2 1.3-1.8 1.7-1.8.5 0 1.1.2 1.7.4.7.3 1 .5 1 .8a135 135 0 0 1-3.7 6.2c-7.2 12.3-10.7 20.7-10.7 25.2 0 .5.1 1.2.5 2l.5 1.5zM332.9 126.6c.3 0 .4 0 .4.3 0 .2 0 .4-.2.6-4.8 7.1-8.9 10.7-12 10.7-4 0-6-1.9-6-5.6 0-2.8 1.4-6.2 4.2-10.3 2.8-4 5.5-6 8.2-6 1.1 0 2.1.3 3 1 .8.8 1.3 1.6 1.3 2.6 0 1.8-1.1 3.6-3.3 5.3a10.4 10.4 0 0 1-6.4 2.6c-.4 0-.6-.1-.6-.3l.2-.4c5.4-1.6 8-4.4 8-8.2 0-.6-.2-.8-.5-.8-.6 0-1.5.5-2.8 1.6a26.4 26.4 0 0 0-6 7 14.6 14.6 0 0 0-2.5 7c0 1.9.8 2.9 2.2 2.9 1.6 0 3.5-1 5.5-2.6a95.6 95.6 0 0 0 7.3-7.4z" />
<path d="M345.9 116.7c1 1 1.4 1.6 1.4 1.8 0 .3-.1.4-.3.4l-2-.3c-2 0-4.2.7-6.4 2.3-2.3 1.5-3.4 3-3.4 4.6 0 .4 1.1 1.8 3.3 4.3 2.2 2.4 3.3 4.1 3.3 5 0 1-.6 1.9-2 2.8a6.7 6.7 0 0 1-3.9 1.4c-1.3 0-2.4-.2-3.4-.6-1-.4-1.4-.8-1.4-1.2 5.4-1.1 8-2.5 8-4 0-.4-.6-1.1-1.8-2.2a9.5 9.5 0 0 1-3.7-7.2c0-1.9 1.2-3.8 3.6-5.7 2.4-2 4.6-2.9 6.7-2.9.3 0 1 .5 2 1.5zM351.4 127.2c-1.3 3.8-2 6.4-2 7.8 0 1.5.4 2.2 1 2.2.4 0 1-.3 1.6-.8a22 22 0 0 0 1.7-1.4c.2 0 .2.1.2.3 0 .6-.6 1.2-2 2a7 7 0 0 1-2.8 1.1c-1.8 0-2.7-1.2-2.7-3.8a41 41 0 0 1 5.2-17.3c.3-.3.7-.5 1.3-.5 1.6 0 2.5.3 2.6 1a53.6 53.6 0 0 0-4 9.4zm7.8-20.9l.1.4-.3 2c-.7 2.9-1.8 4.3-3.2 4.3-1.1 0-2-.2-2.6-.8a30 30 0 0 0 6-5.9z" />
<path d="M367.5 133.8c.7 1.3 1 3 1 5.2v1.3c1.9.8 3.5 1.8 4.7 3 1.3 1.3 2 2.5 2 3.7 0 1.1-.3 1.7-.9 1.7-.1 0-.2-.1-.3-.4.3-.5.5-1 .5-1.5 0-1-.6-2-1.9-3a13 13 0 0 0-4-2 33.3 33.3 0 0 1-16.7 23.8 28.5 28.5 0 0 1-14 3.7c-3.3 0-6-1-8.2-2.7a9.3 9.3 0 0 1-3.2-7.5c0-3.2 1.7-6.4 5.3-9.6a46.6 46.6 0 0 1 28.8-10.4c2.4 0 4.4.2 6.1.7l.3-1.6c0-1.6-.2-2.7-.6-3.3-1.8 1.7-3.4 2.5-5 2.5-1.4 0-2.7-.7-3.8-2.2a7.4 7.4 0 0 1-1.7-4.6c0-3.2 1.8-6.6 5.4-10 0-2.7.3-4.5.8-5.5.6-.9 1.7-1.4 3.3-1.4 1.6 0 3.4 1.6 5.3 4.6 3.3.6 5 1.9 5 3.7 0 .5-.1.9-.4 1.3-.2.5-.5.7-.8.7-.3 0-.4-.1-.4-.3.5-.3.7-.7.7-1.1 0-1.4-1.1-2-3.3-2v1.4c0 4.4-1.3 8.4-4 11.8zm-5.7 7.2a50.4 50.4 0 0 0-24 6c-3 1.7-5.4 3.7-7.3 5.7a9.6 9.6 0 0 0-2.8 6.4c0 2.2.8 4 2.5 5.3 1.6 1.3 4 2 7 2 6.4 0 12.4-2.6 18.2-7.7a34.3 34.3 0 0 0 11-17.4c-1-.2-2.6-.3-4.6-.3zm-3.2-8c0 2.3 1 3.6 2.8 3.6 1.6 0 3.2-1.2 4.6-3.5l-3.6-8.6c-1 1-1.9 2.3-2.6 4a11 11 0 0 0-1.2 4.4zm5.9-17.3c-1.3 0-2 1.2-2 3.8a8 8 0 0 1 4.4-1.5h.5c-.6-1.5-1.6-2.3-3-2.3zm4.7 8.4c0-1.3-.2-2.5-.6-3.5l-3.4 1.5c-1.4.8-2.2 1.4-2.2 1.7 0 .4 1.2 3.1 3.7 8.3 1.7-2.4 2.5-5.1 2.5-8z" />
<path d="M388 118.2l.1.2-.5 1c-5 6-8.5 11.2-10.5 15.5l-.6 1.9c-.3.5-.6.7-1 .7-.5 0-1 0-1.5-.3s-.7-.5-.7-.9c0-.7.7-3.5 2.3-8.4 1.5-4.8 2.3-8.4 2.3-10.8 0-.7-.2-1-.5-1.2l-1-.2c-.3 0-.5 0-.5-.3 0-.4.4-.6 1-.6 3.2 0 4.7 1.3 4.7 3.8 0 1-1 4.8-3.3 11.4 2-3.2 4-6 6-8.3 1.8-2.3 3.1-3.5 3.8-3.5zm5.5-.7a45.6 45.6 0 0 0-5.4 15.5c0 2.8.6 4.3 1.6 4.3.3 0 .7-.3 1.3-.7.5-.4.7-.7.6-.7.2 0 .2.2.2.6 0 1.2-.7 1.8-2 1.8-1.5 0-2.5-.6-3.3-1.8-.7-1.3-1-3-1-5.3s.5-5.3 1.7-9c1.2-3.8 2.4-5.7 3.5-5.7h.4c1.6 0 2.4.4 2.4 1zM425 123.4c0 3.4-1 6.5-3 9.4-1.9 2.9-4.2 4.3-6.8 4.3-1.8 0-3.2-1-4.2-3.2a21 21 0 0 1-1.2-11.6c-4 6.4-7 10.6-8.7 12.6-1.8 2-3.5 3-5.3 3-.8 0-1.4-.3-2-1-.4-.6-.6-1.4-.6-2.3 0-3 2.9-8 8.7-15 .6-.8 1.1-1.2 1.5-1.2.3 0 .5.2.5.4l-.1.2a47 47 0 0 0-4.5 8.2c-1.8 4-2.7 6.4-2.7 7.3 0 .9.2 1.4.6 1.4.7 0 2.7-2.2 6.1-6.5 3.4-4.2 5.4-7.2 6.1-8.7.2-.1.9-.2 2.1-.2 1.3 0 2 .2 2 .6-.2 0-.3 2-.3 6.2 0 6 .8 8.9 2.2 8.9 1.3 0 2.5-1.5 3.9-4.4 1.3-2.9 1.9-5.6 1.9-8.2 0-3.3-1-5.2-3-5.9.2-.5 1-.7 2.4-.7 3 0 4.4 2.1 4.4 6.4zM444 120.8l-1.8-.3.2 2.2c0 3.9-1 7.3-3 10.3-2 3-4.4 4.4-7.3 4.4-3.8 0-5.7-2-5.7-6 0-1.5.4-3.2 1.1-5 .8-1.8 1.6-3.2 2.7-4.4-.5-.8-.8-1.9-.8-3.2a5 5 0 0 1 1.7-3.7c1.1-1 2.5-1.6 4.1-1.6 3.1 0 5.2 1.5 6.2 4.7 2.2.4 3.3 1 3.3 1.5 0 .7-.3 1-.7 1zm-10.4 3c.5.3.9.5 1.2.4h.4c.3 0 .4.1.4.4 0 .3-.3.5-1 .5-.6 0-1.1-.1-1.7-.5-2.4 3-3.7 5.6-3.7 8.2 0 2.5 1 3.8 2.9 3.8s3.6-1.5 5.3-4.5c1.7-3 2.5-6 2.5-8.7a6 6 0 0 0-.6-2.9 11 11 0 0 0-5.7 3.3zm.8-8.4a3 3 0 0 0-2.4 1.3c-.7 1-1 1.8-1 2.7 0 1 0 1.6.2 2 3.2-2.4 5.3-3.5 6.6-3.5h.2c-.6-1.7-1.8-2.5-3.6-2.5zM463.9 116.3c0-.2-.3 0-.8.8a14.4 14.4 0 0 0-2.9 5.4c0 1.3.5 2 1.3 2.3l.5.2c0 .4-.4.6-1.3.6a3 3 0 0 1-2.4-1c-.6-.8-1-1.6-1-2.5 0-1 .2-1.7.4-2.4a35 35 0 0 0-5.7 5.6 20.8 20.8 0 0 0-4.3 8.8l-.7 2.6c-.2.5-.5.8-1 .8-.4 0-.8 0-1.3-.3-.6-.2-.8-.5-.8-.9 0-.7.8-3.5 2.3-8.4 1.5-4.8 2.3-8.4 2.3-10.8 0-.8-.3-1.2-1-1.3-.6 0-1-.2-1-.4 0-.4.4-.6 1-.6 3.2 0 4.8 1.3 4.8 3.8 0 .8-.8 3.5-2.3 8.3 2.5-4.1 5.3-7 8.3-8.5.8-1.7 1.9-2.5 3.4-2.5 1.4 0 2.2.1 2.2.4zM470.2 101.6l-2.4.5c-.3 0-.5-.2-.5-.4 0-.7 1-1 2.7-1 1.8 0 3.2.2 4 .9 1 .6 1.4 1.4 1.4 2.3 0 .9-1.8 5.4-5.5 13.7-3.9 8.5-6.1 13.7-6.7 15.5a94 94 0 0 1 4.8-6.5l-1.4-1.2c0-.3.3-.9 1-1.7.7-.8 1.1-1.2 1.3-1.2.2 0 .7.3 1.6 1 2.1-2.5 4.3-4.6 6.6-6.5 2.3-2 4-2.8 5-2.8.4 0 .7.5.7 1.5 0 2.5-1 4.8-2.9 6.9a12 12 0 0 1-6.6 4 18.6 18.6 0 0 1 2.4 14.1c-.3 1.5-.7 2.2-1 2.2-.5 0-.7-.2-.7-.5l.4-2.8c0-4-1.9-8.1-5.7-12.1a71 71 0 0 0-6.1 9.5l.2.5c0 .4-.3.6-.8.6-.8 0-1.2-.7-1.2-2 0-1.4.4-3.5 1.2-6.3l5.3-13.5a66.4 66.4 0 0 0 4.2-12.8c0-1.3-.4-2-1.3-2zm8.7 15.6v-.2a64.2 64.2 0 0 0-7.6 7.1c.2.5.8.7 1.8.7s2.2-1 3.6-2.8c1.5-1.8 2.2-3.4 2.2-4.8zM493.7 116.7c1 1 1.5 1.6 1.5 1.8 0 .3-.1.4-.4.4l-2-.3c-2 0-4.2.7-6.4 2.3-2.2 1.5-3.3 3-3.3 4.6 0 .4 1.1 1.8 3.3 4.3 2.2 2.4 3.3 4.1 3.3 5 0 1-.7 1.9-2 2.8a6.7 6.7 0 0 1-4 1.4c-1.3 0-2.4-.2-3.3-.6-1-.4-1.4-.8-1.4-1.2 5.3-1.1 8-2.5 8-4 0-.4-.6-1.1-1.9-2.2a9.5 9.5 0 0 1-3.6-7.2c0-1.9 1.2-3.8 3.6-5.7 2.4-2 4.6-2.9 6.7-2.9.3 0 1 .5 2 1.5zM269.6 193.6v-8.7h1.7v7.2h4.5v1.5h-6.2zM279.4 193.7c-.6 0-1 0-1.5-.3-.4-.1-.7-.4-1-.7a3.3 3.3 0 0 1-1-2.3c0-.5.1-.9.3-1.3a3.2 3.2 0 0 1 1.7-1.8l1.5-.3c.5 0 1 .1 1.4.3l1 .7.7 1.1a3.5 3.5 0 0 1 0 2.5 3.2 3.2 0 0 1-1.7 1.8l-1.4.3zm-1.7-3.3l.1.8.4.6a1.5 1.5 0 0 0 1.2.5 1.6 1.6 0 0 0 1.2-.5l.3-.6.1-.8v-.8a2 2 0 0 0-.4-.6l-.6-.4-.6-.2c-.3 0-.5 0-.7.2-.2 0-.4.2-.5.4l-.4.6-.1.8zM286.3 193.6a2.7 2.7 0 0 1-2-1c-.3-.2-.5-.6-.6-1l-.3-1.2a3.7 3.7 0 0 1 .9-2.4 2.8 2.8 0 0 1 3.5-.6l.9.9V187h1.4v6.2a2.9 2.9 0 0 1-1 2.2c-.3.3-.7.5-1.1.6-.5.2-1 .2-1.4.2a3.5 3.5 0 0 1-3-1.3l.8-.9 1 .7a2.8 2.8 0 0 0 1.9.2l.6-.3.4-.6.2-.8v-.8c-.2.3-.5.6-1 .8-.3.2-.7.3-1.2.3zm.6-1.3h.5a1.8 1.8 0 0 0 1-1v-1.6a2 2 0 0 0-.6-1l-1-.3-.7.2-.5.4a2 2 0 0 0-.4.7v.7a2 2 0 0 0 .4 1.4 1.7 1.7 0 0 0 1.3.5zM294.6 193.7c-.5 0-1 0-1.4-.3-.4-.1-.8-.4-1-.7-.4-.3-.6-.7-.8-1a3.5 3.5 0 0 1 .7-3.7l1-.7 1.5-.3c.5 0 1 .1 1.4.3l1 .7c.4.4.6.7.7 1.1a3.5 3.5 0 0 1-.6 3.6 3 3 0 0 1-1 .7l-1.5.3zm-1.7-3.3l.1.8.4.6.5.4.7.1a1.6 1.6 0 0 0 1.2-.5l.3-.6.2-.8c0-.3 0-.6-.2-.8l-.3-.6-.5-.4-.7-.2c-.2 0-.5 0-.7.2l-.5.4a2 2 0 0 0-.4.6v.8zM304.7 193.7a2.9 2.9 0 0 1-2.2-1l-.7-1-.2-1.3c0-.5 0-1 .2-1.3l.6-1.1 1-.7a2.6 2.6 0 0 1 3.3 1v-3.7h1.6v7l.1.5h.3v1.5h-.7c-.3 0-.5 0-.7-.2a.8.8 0 0 1-.3-.5v-.4c-.3.4-.6.7-1 .9-.4.2-.9.3-1.3.3zm.4-1.4h.5c.2 0 .3-.2.4-.3l.4-.3.3-.5v-1.5c0-.2-.2-.4-.3-.5a2.3 2.3 0 0 0-.9-.7 1.4 1.4 0 0 0-1.2 0l-.5.5a2.1 2.1 0 0 0-.5 1.4 2 2 0 0 0 .5 1.3l.6.5.7.1zM313 193.7c-.6 0-1 0-1.5-.3a3.2 3.2 0 0 1-2-3c0-.5.1-.9.3-1.3.1-.4.4-.8.6-1l1.1-.8a3.5 3.5 0 0 1 2.8 0l1.1.7.7 1a3.6 3.6 0 0 1 .2 1.9h-5c0 .2 0 .5.2.7 0 .2.2.3.4.5l.5.3.6.1c.3 0 .6 0 1-.2l.5-.7 1.4.4c-.2.5-.6 1-1.1 1.2s-1.1.5-1.9.5zm1.6-3.9c0-.5-.2-.8-.5-1.1-.3-.3-.7-.5-1.2-.5l-.6.1a1.7 1.7 0 0 0-1 1.5h3.3zM319.7 193.7c-.5 0-1 0-1.5-.3-.6-.1-1-.4-1.4-.7l.6-1 1.2.6c.4.2.7.2 1.1.2.3 0 .6 0 .8-.2.2 0 .3-.3.3-.5s-.2-.4-.4-.5l-1-.4c-.5 0-.8-.2-1.1-.3-.3 0-.6-.2-.7-.3l-.4-.5-.2-.7.2-.8.6-.7.8-.4 1-.2c.5 0 1 0 1.3.2l1.2.7-.7 1-1-.5-.8-.2c-.3 0-.5 0-.7.2-.2 0-.3.3-.3.5v.3l.3.2.4.2.5.1 1.2.4c.3 0 .6.2.8.4a1.3 1.3 0 0 1 .5 1.2c0 .6-.2 1.1-.7 1.5a3 3 0 0 1-1.9.5zM323.4 186.2v-1.6h1.7v1.6h-1.7zm0 7.4V187h1.7v6.5h-1.7zM329 193.6a2.7 2.7 0 0 1-2-1c-.3-.2-.5-.6-.6-1-.2-.4-.2-.8-.2-1.2a3.7 3.7 0 0 1 .8-2.4 2.8 2.8 0 0 1 3.5-.6c.4.2.7.5 1 .9V187h1.4v6.2c0 .4-.1.9-.3 1.2l-.8 1c-.3.3-.7.5-1 .6-.5.2-1 .2-1.5.2a3.6 3.6 0 0 1-3-1.3l.9-.9c.2.3.5.5.9.7a2.8 2.8 0 0 0 2 .2l.5-.3.5-.6.1-.8v-.8a2.6 2.6 0 0 1-2.1 1.2zm.6-1.3h.5a1.8 1.8 0 0 0 1.1-1v-1.6a2 2 0 0 0-.7-1c-.3-.1-.6-.3-1-.3l-.7.2-.5.4a2.3 2.3 0 0 0-.5 1.4 2 2 0 0 0 .6 1.4l.5.4.7.1zM340.3 193.6h-1.6V190c0-.5-.1-1-.3-1.2s-.4-.3-.7-.3h-.5a1.9 1.9 0 0 0-1 .8l-.2.5v3.8h-1.7v-6.4h1.5v1.1l1-1c.5-.1 1-.3 1.6-.3.4 0 .7.1 1 .3l.6.5.2.9.1.9v4zM348.4 193.7c-.5 0-1-.1-1.3-.3-.4-.2-.7-.5-1-1v1.2h-1.4v-9h1.7v3.7a2.4 2.4 0 0 1 2.2-1.3c.4 0 .8.1 1.1.3l1 .7.5 1.1.2 1.3c0 .5 0 .9-.2 1.3l-.7 1a3 3 0 0 1-2.1 1zm-.5-1.4a1.7 1.7 0 0 0 1.3-.6c.2-.1.3-.3.4-.6l.1-.7-.1-.7a1.9 1.9 0 0 0-.9-1c-.2-.2-.4-.3-.7-.3a2 2 0 0 0-1.7 1.3v1.5l.3.5a1.8 1.8 0 0 0 1.3.6zM352.4 194.8a3.6 3.6 0 0 0 .8.2l.3-.1.2-.2.2-.4.3-.7-2.6-6.5h1.7l1.8 5 1.5-5h1.6l-2.8 7.8c-.1.4-.4.8-.8 1-.3.4-.8.5-1.4.5a2.9 2.9 0 0 1-.8-.1v-1.5zM368 186.3h-2.8v7.3h-1.7v-7.3h-2.8V185h7.3v1.4z" />
<path d="M371.4 188.6c-.5 0-1 0-1.3.3-.4.1-.7.4-.9.8v3.9h-1.6V187h1.5v1.4a3 3 0 0 1 1.4-1.3l.6-.1H371.4v1.5zM374 193.7l-.9-.1-.7-.5a2 2 0 0 1-.4-2.3c.1-.2.3-.5.6-.6l.8-.5 1.1-.1a4.5 4.5 0 0 1 1.6.3v-.4c0-.4-.1-.7-.3-1-.3-.2-.6-.3-1.1-.3-.4 0-.7 0-1 .2-.4 0-.7.3-1 .5l-.5-1c.8-.6 1.7-.9 2.6-.9 1 0 1.7.3 2.2.7.5.5.8 1.1.8 2v2.4h.4v1.5h-.8l-.7-.1a.9.9 0 0 1-.3-.6v-.3a2.9 2.9 0 0 1-2.4 1.1zm.5-1.2l.8-.1.6-.4.2-.5v-.7a3.9 3.9 0 0 0-1.3-.3c-.4 0-.8.1-1 .3-.3.2-.4.4-.4.7 0 .3 0 .5.3.7.2.2.5.3.8.3zM385.3 193.6h-1.7V190c0-.5 0-1-.2-1.2a.9.9 0 0 0-.8-.3h-.5l-.5.4-.4.4-.2.5v3.8h-1.7v-6.4h1.5v1.1c.2-.4.6-.7 1-1l1.5-.3c.4 0 .8.1 1 .3.3.1.5.3.6.5.2.3.3.5.3.9v4.9zM221.2 40.4h3.3v175.1h-3.3z" /></svg>
</div>
</div>
</div>
<div class="ui-container">
<div class="ui-title">Welcome to my portfolio<noscript>, but you disabled JavaScript. No JavaScript, no fun. Tsk, tsk.</noscript></div>
<div class="ui-subtitle">Please click/touch on one of those buttons</div>
<div class="ui-buttons-container">
<div class="ui-button-1" title="Portfolio" id="portfolio-btn" onclick="expand('portfolio-btn', 'about-btn', 'contact-btn');">
<div class="icon" id="portfolio-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 384 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M320 464c8.8 0 16-7.2 16-16V160H256c-17.7 0-32-14.3-32-32V48H64c-8.8 0-16 7.2-16 16V448c0 8.8 7.2 16 16 16H320zM0 64C0 28.7 28.7 0 64 0H229.5c17 0 33.3 6.7 45.3 18.7l90.5 90.5c12 12 18.7 28.3 18.7 45.3V448c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64z"/></svg>
</div>
<div class="expand-circle" id="expand1"></div>
</div>
<div class="ui-button-2" title="About" id="about-btn" onclick="expand('about-btn', 'portfolio-btn', 'contact-btn');">
<div class="icon why" id="about-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M304 128a80 80 0 1 0 -160 0 80 80 0 1 0 160 0zM96 128a128 128 0 1 1 256 0A128 128 0 1 1 96 128zM49.3 464H398.7c-8.9-63.3-63.3-112-129-112H178.3c-65.7 0-120.1 48.7-129 112zM0 482.3C0 383.8 79.8 304 178.3 304h91.4C368.2 304 448 383.8 448 482.3c0 16.4-13.3 29.7-29.7 29.7H29.7C13.3 512 0 498.7 0 482.3z"/></svg>
</div>
<div class="expand-circle" id="expand2"></div>
</div>
<div class="ui-button-3" title="Contact" id="contact-btn" onclick="expand('contact-btn', 'portfolio-btn', 'about-btn');">
<div class="icon wtf" id="contact-icon">
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 512 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><path d="M384 48c8.8 0 16 7.2 16 16V448c0 8.8-7.2 16-16 16H96c-8.8 0-16-7.2-16-16V64c0-8.8 7.2-16 16-16H384zM96 0C60.7 0 32 28.7 32 64V448c0 35.3 28.7 64 64 64H384c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H96zM240 256a64 64 0 1 0 0-128 64 64 0 1 0 0 128zm-32 32c-44.2 0-80 35.8-80 80c0 8.8 7.2 16 16 16H336c8.8 0 16-7.2 16-16c0-44.2-35.8-80-80-80H208zM512 80c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V80zM496 192c-8.8 0-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V208c0-8.8-7.2-16-16-16zm16 144c0-8.8-7.2-16-16-16s-16 7.2-16 16v64c0 8.8 7.2 16 16 16s16-7.2 16-16V336z"/></svg>
</div>
<div class="expand-circle" id="expand3"></div>
</div>
</div>
<div class="ui-footer">© 2023 Blackbeard. All rights reserved.<br/>
To access other projects, <a href="/pb">click here.</a></div>
</div>
</div>
</body>
<script>
setTimeout(function() {
document.getElementById("intro").classList.add("fade");
console.log("fading");
}, 1500);
setTimeout(function() {
document.getElementById("intro").display = "none";
document.getElementById("intro").classList.add("hide");
console.log("faded");
}, 2100);
function expand(id, hide1, hide2) {
// Get DOM for each function
var show = document.getElementById(id);
var a = document.getElementById(hide1);
var b = document.getElementById(hide2);
// Block mouse input by spawning an invisible div that covers the entire screen
var block = document.getElementById("curtain");
// Add shrink effect to buttons defined
a.classList.add("shrink");
b.classList.add("shrink");
// Spawn blocker
block.style.display = "block";
if (id == "portfolio-btn") {
document.getElementById("expand2").display = "none";
document.getElementById("expand3").display = "none";
} else if (id == "about-btn") {
document.getElementById("expand1").display = "none";
document.getElementById("expand3").display = "none";
} else {
document.getElementById("expand1").display = "none";
document.getElementById("expand2").display = "none";
}
setTimeout(function() {
if (id == "portfolio-btn") {
document.getElementById("expand1").classList.add("expand");
setTimeout(function() {
window.location.href = "portfolio.html"
}, 500);
} else if (id == "about-btn") {
document.getElementById("expand2").classList.add("expand");
setTimeout(function() {
window.location.href = "about.html"
}, 500);
} else {
document.getElementById("expand3").classList.add("expand");
setTimeout(function() {
window.location.href = "contact.html"
}, 500);
}
}, 250);
}
</script>
</html>