-
-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathcatppuccin.user.less
569 lines (469 loc) Β· 74.9 KB
/
catppuccin.user.less
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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
/* ==UserStyle==
@name Grabify Catppuccin
@namespace github.com/catppuccin/userstyles/styles/grabify
@homepageURL https://github.com/catppuccin/userstyles/tree/main/styles/grabify
@version 2024.12.31
@updateURL https://github.com/catppuccin/userstyles/raw/main/styles/grabify/catppuccin.user.less
@supportURL https://github.com/catppuccin/userstyles/issues?q=is%3Aopen+is%3Aissue+label%3Agrabify
@description Soothing pastel theme for Grabify
@author Catppuccin
@license MIT
@preprocessor less
@var select lightFlavor "Light Flavor" ["latte:Latte*", "frappe:FrappΓ©", "macchiato:Macchiato", "mocha:Mocha"]
@var select darkFlavor "Dark Flavor" ["latte:Latte", "frappe:FrappΓ©", "macchiato:Macchiato", "mocha:Mocha*"]
@var select accentColor "Accent" ["rosewater:Rosewater", "flamingo:Flamingo", "pink:Pink", "mauve:Mauve*", "red:Red", "maroon:Maroon", "peach:Peach", "yellow:Yellow", "green:Green", "teal:Teal", "blue:Blue", "sapphire:Sapphire", "sky:Sky", "lavender:Lavender", "subtext0:Gray"]
==/UserStyle== */
@-moz-document domain("grabify.link") {
:root {
@media (prefers-color-scheme: light) {
#catppuccin(@lightFlavor);
}
@media (prefers-color-scheme: dark) {
#catppuccin(@darkFlavor);
}
}
#catppuccin(@flavor) {
@rosewater: @catppuccin[@@flavor][@rosewater];
@flamingo: @catppuccin[@@flavor][@flamingo];
@pink: @catppuccin[@@flavor][@pink];
@mauve: @catppuccin[@@flavor][@mauve];
@red: @catppuccin[@@flavor][@red];
@maroon: @catppuccin[@@flavor][@maroon];
@peach: @catppuccin[@@flavor][@peach];
@yellow: @catppuccin[@@flavor][@yellow];
@green: @catppuccin[@@flavor][@green];
@teal: @catppuccin[@@flavor][@teal];
@sky: @catppuccin[@@flavor][@sky];
@sapphire: @catppuccin[@@flavor][@sapphire];
@blue: @catppuccin[@@flavor][@blue];
@lavender: @catppuccin[@@flavor][@lavender];
@text: @catppuccin[@@flavor][@text];
@subtext1: @catppuccin[@@flavor][@subtext1];
@subtext0: @catppuccin[@@flavor][@subtext0];
@overlay2: @catppuccin[@@flavor][@overlay2];
@overlay1: @catppuccin[@@flavor][@overlay1];
@overlay0: @catppuccin[@@flavor][@overlay0];
@surface2: @catppuccin[@@flavor][@surface2];
@surface1: @catppuccin[@@flavor][@surface1];
@surface0: @catppuccin[@@flavor][@surface0];
@base: @catppuccin[@@flavor][@base];
@mantle: @catppuccin[@@flavor][@mantle];
@crust: @catppuccin[@@flavor][@crust];
@accent: @catppuccin[@@flavor][@@accentColor];
color-scheme: if(@flavor = latte, light, dark);
::selection {
background-color: fade(@accent, 30%);
}
input,
textarea {
&::placeholder {
color: @subtext0 !important;
}
}
background-color: @base;
a {
color: @accent;
&:hover,
&:focus {
color: darken(@accent, 5%);
}
&[style*="color: "] {
color: @accent !important;
&:hover,
&:focus {
color: darken(@accent, 5%) !important;
}
}
}
hr,
.light-shaded {
background-color: @surface0;
}
body,
strong,
article :is(h1, h2, li),
.content :is(h1, h2, h3),
.label,
.radio:hover,
.checkbox:hover,
.title,
.subtitle,
.pw-post-title,
.pw-post-body-paragraph {
color: @text;
}
// Live support box
#wrapper ~ div:has(iframe[style*="color-scheme:light"]) {
display: none !important;
}
.has-text-white {
color: @text !important;
}
.has-text-white-ter {
color: @subtext1 !important;
}
.has-text-grey,
.is-author-metadata,
figcaption,
article blockquote p {
color: @subtext0 !important;
}
.navbar {
background-color: @crust;
border-color: @surface0;
}
.navbar-item,
.navbar-link {
color: @text;
&:hover,
&:focus {
color: @accent !important;
}
}
.navbar-link:not(.is-arrowless)::after {
border-color: @accent;
}
.navbar-dropdown {
background-color: @crust;
color: @text;
border-top-color: @surface0;
box-shadow: none;
}
.has-gradient-bg.to-bottom-left {
background: @mantle;
}
.landing-hero {
background: @mantle;
}
polygon[fill="white"] {
fill: @base !important;
}
[style*="color: red"],
[style*="color: rgb(224, 36, 36);"],
[style*="color: rgb(224, 185, 36);"],
[style="color: rgb(33, 150, 243);"] {
color: @accent !important;
}
[style="color: rgb(44, 62, 80);"],
[style="font-style: italic; color: rgb(0, 0, 0);"] {
color: @subtext0 !important;
}
[style="color: rgb(41, 182, 246);"] {
color: @blue !important;
}
[style="color: rgb(0, 150, 136);"] {
color: @teal !important;
}
[style="color: rgb(139, 195, 74);"] {
color: @green !important;
}
.how-it-works-box {
background-color: @mantle;
box-shadow: none;
}
[data-tooltip] {
&.has-tooltip-arrow {
&.has-tooltip-right::after {
border-right-color: @surface0;
}
&.has-tooltip-bottom::after {
border-bottom-color: @surface0;
}
&.has-tooltip-left::after {
border-left-color: @surface0;
}
&.has-tooltip-top::after {
border-top-color: @surface0;
}
}
&::before {
background-color: @surface0;
color: @text;
}
}
[aria-label="Share Post"] path {
fill: @text;
}
.dropdown-content {
background-color: @mantle;
a.dropdown-item {
color: @text !important;
&:hover {
background-color: @crust;
}
}
}
.footer {
background-color: @mantle !important;
color: @text;
.footer-separator {
background-color: @surface0;
}
}
.switch[type="checkbox"] {
+ label {
&::before {
background-color: @surface0;
}
&::after {
background-color: @text;
}
}
&:checked + label {
&::before {
background-color: @accent;
}
&::after {
background-color: @base;
}
}
}
.message.is-primary {
background: transparent;
.message-header {
background-color: @mantle;
color: @text;
}
.message-body {
background-color: @surface0;
color: @text;
}
}
.button {
&:not(.is-ghost),
&.is-light {
border-color: @surface0;
background-color: @mantle;
&,
strong {
color: @text;
}
&:hover,
&.is-hovered {
background-color: @crust;
}
}
&.is-primary,
&.is-info,
&.is-link {
background-color: @accent;
&,
strong {
color: @crust;
}
&:hover,
&.is-hovered {
background-color: darken(@accent, 5%);
}
}
&.is-info.is-outlined {
border-color: @accent;
background: transparent;
&,
strong {
color: @text;
}
&:hover,
&.is-hovered {
color: @accent;
}
}
&.is-danger {
background-color: @red;
&,
strong {
color: @crust;
}
&:hover,
&.is-hovered {
background-color: darken(@red, 5%);
}
}
}
.input {
background-color: @mantle;
box-shadow: none;
border-color: @surface0;
color: @text;
}
.card {
background-color: @mantle;
color: @text;
border-color: @surface0;
.card__description,
.card__title,
.card__website {
color: @text;
}
.card__image {
border-bottom-color: @surface0;
}
}
.box {
box-shadow: none;
color: @text;
background-color: @mantle !important;
border-color: @surface0 !important;
}
.table {
background-color: @mantle;
&.is-hoverable tbody tr:hover,
&.is-striped tbody tr:nth-child(2n) {
background-color: @crust !important;
}
.sortable th[data-sorted] {
&:hover {
background-color: @crust;
color: @text;
}
&::after {
color: @text;
}
}
th,
td {
border-color: @surface0;
color: @text;
&[style*="color:"] {
color: @subtext0 !important;
}
}
}
.log-table {
:is(.is-table-date, .is-table-ip, .is-table-country) div:nth-child(2),
.is-table-referrer .is-no-referrer {
color: @subtext0;
}
}
.notification {
&.is-success {
background-color: @green;
}
&.is-warning {
background-color: @yellow;
}
&.is-danger {
background-color: @red;
}
&,
strong {
color: @crust;
}
}
#ab {
// Ad block detection modal
.css1.css2,
.ab_footer {
background-color: @base !important;
box-shadow: 0 2px 12px 0 fade(@crust, 20%);
}
[style*="color: rgb(44, 62, 80)"] {
color: @text !important;
}
}
#ab,
.modal-background {
background-color: fade(@crust, 65%) !important;
}
.modal-card-head,
.modal-card-body,
.modal-card-foot {
background-color: @base;
border-color: @surface0;
}
.modal-card-title {
color: @text;
}
.delete {
&::before,
&::after {
background-color: @text;
}
}
#root .app {
// Ad block disable instructions
[style="color: rgb(0, 0, 0);"] {
color: @text !important;
}
.btn {
background-color: @accent;
&[style="background-color: rgb(23, 188, 156);"] {
background-color: @accent !important;
}
[style="color: rgb(255, 255, 255);"] {
color: @mantle !important;
}
&.btn-outline {
background: @crust;
box-shadow: inset 0 0 0 1px
@surface0; // the outline property exists for a reason...
}
}
.blockers {
.blocker.selected,
.blocker:hover {
background-color: @mantle;
}
.arrow-icon path {
fill: @text !important;
}
}
}
.select {
&:not(.is-multiple, .is-loading)::after {
border-color: @text;
}
select {
background-color: @mantle;
border-color: @surface0;
color: @text;
&:focus {
box-shadow: 0 0 0 0.125em @surface0; // once again, just use outline
}
}
}
img[src$="images/grabify.svg"] {
@svg: escape(
'<svg viewBox="0 0 610 132" xmlns="http://www.w3.org/2000/svg"><path d="M65.92 131.88c-9.22 0-17.96-1.69-25.97-5.02-8-3.32-15.06-8.01-20.99-13.94S8.33 99.91 5.01 91.88C1.69 83.86 0 75.12 0 65.91c0-9.24 1.59-17.96 4.74-25.9 3.24-8.18 7.96-15.37 14.06-21.37C24.86 12.67 32.2 8 40.6 4.75 48.77 1.6 57.85 0 67.59 0c5 0 9.81.43 14.32 1.27 4.49.84 8.74 2.03 12.65 3.53.81.31 1.6.63 2.38.97V1.02h48.56c8.45 0 15.98.95 22.38 2.81 7.12 2.08 13.22 5.18 18.13 9.21 5.36 4.41 9.35 9.79 11.86 15.98 2.24 5.54 3.38 11.55 3.38 17.85 0 2.37-.16 4.71-.49 7l20.46-52.85h47.02l13.37 34.53V1.02h52.54c8.11 0 15.02.78 21.14 2.4 4.46 1.18 8.51 2.76 12.1 4.72V1.02h138.57c7.52 0 12.68 2.82 15.69 5.19 3.22 2.54 5.8 5.73 7.68 9.49l2.29 4.71 2.1-4.37c.87-1.84 1.99-3.62 3.33-5.28 1.33-1.64 2.85-3.13 4.51-4.43a25.5 25.5 0 0 1 6.78-3.76c2.78-1.03 5.74-1.55 8.78-1.55h50.81l-47.38 81.03v48.8h-57.89v-48.8l-9.46-16.18V94.4h-32.01v36.45h-93.8v-7.27c-2.97 1.67-6.2 3.08-9.66 4.22-6.17 2.03-13.11 3.06-20.62 3.06h-61.84c-5.75 0-10.87-1.59-15.22-4.72-4.26-3.06-7.4-7.27-9.08-12.18l-1.39-4.12h-9.68l-1.47 4.33c-1.6 4.49-4.45 8.34-8.45 11.45-4.43 3.43-9.84 5.24-15.65 5.24h-42.34c-6.57 0-12.48-2.02-17.14-5.73v5.73H96.96v-4.01c-1.98.76-4.03 1.43-6.11 2-3.81 1.06-7.89 1.84-12.13 2.34-4 .45-8.31.69-12.8.69" fill="@{surface0}"/><path d="M47.5 44.24c2.29-2.61 5.07-4.64 8.32-6.07 3.26-1.44 6.92-2.15 10.99-2.15 2.19 0 4.16.11 5.91.32 1.76.21 3.43.56 5.01 1.03s3.14 1.08 4.66 1.83 3.14 1.64 4.85 2.67q2.055 1.29 3.99 1.29c.99 0 1.9-.26 2.73-.77s1.55-1.22 2.15-2.12l6.3-9.58c-1.89-1.8-4.03-3.47-6.43-5.01s-5.05-2.87-7.94-3.99q-4.335-1.665-9.48-2.64c-3.43-.64-7.09-.96-10.99-.96-7.54 0-14.37 1.18-20.47 3.54-6.11 2.36-11.31 5.66-15.62 9.9s-7.62 9.29-9.93 15.14-3.47 12.27-3.47 19.25c0 6.86 1.21 13.21 3.63 19.06s5.76 10.91 10.03 15.17c4.26 4.26 9.31 7.61 15.14 10.03s12.17 3.63 19.03 3.63c3.81 0 7.38-.19 10.7-.58s6.45-.99 9.39-1.8 5.7-1.85 8.29-3.12c2.59-1.26 5.09-2.77 7.49-4.53V64.25h-33.3v11.96c0 1.12.39 2.04 1.16 2.76.77.73 1.84 1.09 3.21 1.09h9.26v14.21c-2.06.86-4.24 1.54-6.56 2.06-2.31.51-4.97.77-7.97.77-3.94 0-7.58-.7-10.9-2.09s-6.19-3.42-8.61-6.07c-2.42-2.66-4.32-5.91-5.69-9.77s-2.06-8.27-2.06-13.24c0-4.5.62-8.58 1.86-12.25 1.26-3.68 3.03-6.82 5.32-9.44m186.12-25.13-36.26 93.66h16.97c1.8 0 3.32-.48 4.56-1.45 1.24-.96 2.08-2.05 2.51-3.25l5.53-16.33h35.61l5.53 16.33c.47 1.37 1.32 2.5 2.54 3.38s2.77 1.32 4.66 1.32h16.84l-36.26-93.66zm-1.67 57.85 8.61-25.52c.64-1.63 1.33-3.56 2.06-5.79s1.44-4.65 2.12-7.26q1.095 3.855 2.22 7.17c1.125 3.315 1.4 4.13 1.96 5.75l8.61 25.65zm-63.53-.7a20.6 20.6 0 0 0-4.08-2.7q4.56-1.74 8.07-4.44c3.51-2.7 4.31-3.85 5.91-6.14 1.61-2.29 2.82-4.79 3.63-7.49s1.22-5.57 1.22-8.61c0-3.99-.69-7.67-2.06-11.06s-3.57-6.32-6.59-8.81-6.92-4.42-11.7-5.82c-4.78-1.39-10.55-2.09-17.32-2.09h-30.47v93.66h21.73V78.11h5.53c1.67 0 2.97.26 3.89.77s1.72 1.37 2.41 2.57l15.56 27.19c1.59 2.74 4.2 4.11 7.84 4.11h19.67l-19.93-32.59c-.94-1.53-2.05-2.83-3.31-3.9m-7.36-22.02c-.6 1.78-1.56 3.33-2.89 4.66s-3.03 2.37-5.11 3.12-4.6 1.13-7.55 1.13h-8.74V35.37h8.73c5.61 0 9.76 1.16 12.44 3.47s4.02 5.53 4.02 9.64q0 3.09-.9 5.76M354.09 64.3q4.245-1.545 7.26-3.63c3.015-2.085 3.66-2.95 4.95-4.66s2.23-3.55 2.83-5.5.9-3.97.9-6.08c0-3.86-.65-7.35-1.96-10.48s-3.4-5.79-6.27-7.97c-2.87-2.19-6.58-3.88-11.12-5.08s-10.05-1.8-16.52-1.8H299.7v93.66h37.41c5.61 0 10.61-.72 14.98-2.15 4.37-1.44 8.05-3.43 11.02-5.98q4.47-3.825 6.78-8.97c2.31-5.145 2.31-7.14 2.31-11.12 0-5.27-1.48-9.59-4.44-12.95-2.94-3.36-7.5-5.79-13.67-7.29m-32.66-28.93h12.73c2.44 0 4.55.19 6.33.58s3.25 1.03 4.4 1.93c1.16.9 2.01 2.09 2.57 3.57s.84 3.33.84 5.56c0 2.27-.35 4.16-1.06 5.66s-1.74 2.68-3.09 3.54-2.99 1.46-4.92 1.8-4.09.51-6.49.51h-11.31zm28.73 53.16c-.39 1.46-1.09 2.76-2.12 3.92s-2.45 2.1-4.28 2.83c-1.82.73-4.17 1.09-7.04 1.09h-15.3V73.04h15.17c2.74 0 5.01.26 6.81.77s3.25 1.24 4.34 2.19c1.09.94 1.86 2.1 2.31 3.47s.68 2.92.68 4.63c.01 1.5-.18 2.98-.57 4.43m71.1 24.24h21.86V76.32h32.01V59.54h-32.01V35.82h38.44V19.11h-60.3zm135.88-93.66c-.9 0-1.73.14-2.48.42s-1.41.64-1.99 1.09-1.09.95-1.54 1.51-.8 1.12-1.06 1.67l-13.11 27.26c-1.03 2.14-1.99 4.14-2.89 5.98s-1.67 3.69-2.31 5.53c-.69-1.8-1.48-3.62-2.38-5.46s-1.89-3.86-2.96-6.04l-13.24-27.26c-.69-1.37-1.59-2.5-2.7-3.38s-2.61-1.32-4.5-1.32h-19.16l33.94 58.05v35.61h21.73V77.16l33.94-58.05zm-171.66 93.66h21.86V19.11h-21.86z" fill="@{text}"/></svg>'
);
content: url("data:image/svg+xml,@{svg}");
}
img[src$="images/grabify-inverted.svg"] {
@svg: escape(
'<svg viewBox="0 0 610 132" xmlns="http://www.w3.org/2000/svg"><path d="M65.92 131.88c-9.22 0-17.96-1.69-25.97-5.02-8-3.32-15.06-8.01-20.99-13.94S8.33 99.91 5.01 91.88C1.69 83.86 0 75.12 0 65.91c0-9.24 1.59-17.96 4.74-25.9 3.24-8.18 7.96-15.37 14.06-21.37C24.86 12.67 32.2 8 40.6 4.75 48.77 1.6 57.85 0 67.59 0c5 0 9.81.43 14.32 1.27 4.49.84 8.74 2.03 12.65 3.53.81.31 1.6.63 2.38.97V1.02h48.56c8.45 0 15.98.95 22.38 2.81 7.12 2.08 13.22 5.18 18.13 9.21 5.36 4.41 9.35 9.79 11.86 15.98 2.24 5.54 3.38 11.55 3.38 17.85 0 2.37-.16 4.71-.49 7l20.46-52.85h47.02l13.37 34.53V1.02h52.54c8.11 0 15.02.78 21.14 2.4 4.46 1.18 8.51 2.76 12.1 4.72V1.02h138.57c7.52 0 12.68 2.82 15.69 5.19 3.22 2.54 5.8 5.73 7.68 9.49l2.29 4.71 2.1-4.37c.87-1.84 1.99-3.62 3.33-5.28 1.33-1.64 2.85-3.13 4.51-4.43a25.5 25.5 0 0 1 6.78-3.76c2.78-1.03 5.74-1.55 8.78-1.55h50.81l-47.38 81.03v48.8h-57.89v-48.8l-9.46-16.18V94.4h-32.01v36.45h-93.8v-7.27c-2.97 1.67-6.2 3.08-9.66 4.22-6.17 2.03-13.11 3.06-20.62 3.06h-61.84c-5.75 0-10.87-1.59-15.22-4.72-4.26-3.06-7.4-7.27-9.08-12.18l-1.39-4.12h-9.68l-1.47 4.33c-1.6 4.49-4.45 8.34-8.45 11.45-4.43 3.43-9.84 5.24-15.65 5.24h-42.34c-6.57 0-12.48-2.02-17.14-5.73v5.73H96.96v-4.01c-1.98.76-4.03 1.43-6.11 2-3.81 1.06-7.89 1.84-12.13 2.34-4 .45-8.31.69-12.8.69" fill="@{text}"/><path d="M47.5 44.24c2.29-2.61 5.07-4.64 8.32-6.07 3.26-1.44 6.92-2.15 10.99-2.15 2.19 0 4.16.11 5.91.32 1.76.21 3.43.56 5.01 1.03s3.14 1.08 4.66 1.83 3.14 1.64 4.85 2.67q2.055 1.29 3.99 1.29c.99 0 1.9-.26 2.73-.77s1.55-1.22 2.15-2.12l6.3-9.58c-1.89-1.8-4.03-3.47-6.43-5.01s-5.05-2.87-7.94-3.99q-4.335-1.665-9.48-2.64c-3.43-.64-7.09-.96-10.99-.96-7.54 0-14.37 1.18-20.47 3.54-6.11 2.36-11.31 5.66-15.62 9.9s-7.62 9.29-9.93 15.14-3.47 12.27-3.47 19.25c0 6.86 1.21 13.21 3.63 19.06s5.76 10.91 10.03 15.17c4.26 4.26 9.31 7.61 15.14 10.03s12.17 3.63 19.03 3.63c3.81 0 7.38-.19 10.7-.58s6.45-.99 9.39-1.8 5.7-1.85 8.29-3.12c2.59-1.26 5.09-2.77 7.49-4.53V64.25h-33.3v11.96c0 1.12.39 2.04 1.16 2.76.77.73 1.84 1.09 3.21 1.09h9.26v14.21c-2.06.86-4.24 1.54-6.56 2.06-2.31.51-4.97.77-7.97.77-3.94 0-7.58-.7-10.9-2.09s-6.19-3.42-8.61-6.07c-2.42-2.66-4.32-5.91-5.69-9.77s-2.06-8.27-2.06-13.24c0-4.5.62-8.58 1.86-12.25 1.26-3.68 3.03-6.82 5.32-9.44m186.12-25.13-36.26 93.66h16.97c1.8 0 3.32-.48 4.56-1.45 1.24-.96 2.08-2.05 2.51-3.25l5.53-16.33h35.61l5.53 16.33c.47 1.37 1.32 2.5 2.54 3.38s2.77 1.32 4.66 1.32h16.84l-36.26-93.66zm-1.67 57.85 8.61-25.52c.64-1.63 1.33-3.56 2.06-5.79s1.44-4.65 2.12-7.26q1.095 3.855 2.22 7.17c1.125 3.315 1.4 4.13 1.96 5.75l8.61 25.65zm-63.53-.7a20.6 20.6 0 0 0-4.08-2.7q4.56-1.74 8.07-4.44c3.51-2.7 4.31-3.85 5.91-6.14 1.61-2.29 2.82-4.79 3.63-7.49s1.22-5.57 1.22-8.61c0-3.99-.69-7.67-2.06-11.06s-3.57-6.32-6.59-8.81-6.92-4.42-11.7-5.82c-4.78-1.39-10.55-2.09-17.32-2.09h-30.47v93.66h21.73V78.11h5.53c1.67 0 2.97.26 3.89.77s1.72 1.37 2.41 2.57l15.56 27.19c1.59 2.74 4.2 4.11 7.84 4.11h19.67l-19.93-32.59c-.94-1.53-2.05-2.83-3.31-3.9m-7.36-22.02c-.6 1.78-1.56 3.33-2.89 4.66s-3.03 2.37-5.11 3.12-4.6 1.13-7.55 1.13h-8.74V35.37h8.73c5.61 0 9.76 1.16 12.44 3.47s4.02 5.53 4.02 9.64q0 3.09-.9 5.76M354.09 64.3q4.245-1.545 7.26-3.63c3.015-2.085 3.66-2.95 4.95-4.66s2.23-3.55 2.83-5.5.9-3.97.9-6.08c0-3.86-.65-7.35-1.96-10.48s-3.4-5.79-6.27-7.97c-2.87-2.19-6.58-3.88-11.12-5.08s-10.05-1.8-16.52-1.8H299.7v93.66h37.41c5.61 0 10.61-.72 14.98-2.15 4.37-1.44 8.05-3.43 11.02-5.98q4.47-3.825 6.78-8.97c2.31-5.145 2.31-7.14 2.31-11.12 0-5.27-1.48-9.59-4.44-12.95-2.94-3.36-7.5-5.79-13.67-7.29m-32.66-28.93h12.73c2.44 0 4.55.19 6.33.58s3.25 1.03 4.4 1.93c1.16.9 2.01 2.09 2.57 3.57s.84 3.33.84 5.56c0 2.27-.35 4.16-1.06 5.66s-1.74 2.68-3.09 3.54-2.99 1.46-4.92 1.8-4.09.51-6.49.51h-11.31zm28.73 53.16c-.39 1.46-1.09 2.76-2.12 3.92s-2.45 2.1-4.28 2.83c-1.82.73-4.17 1.09-7.04 1.09h-15.3V73.04h15.17c2.74 0 5.01.26 6.81.77s3.25 1.24 4.34 2.19c1.09.94 1.86 2.1 2.31 3.47s.68 2.92.68 4.63c.01 1.5-.18 2.98-.57 4.43m71.1 24.24h21.86V76.32h32.01V59.54h-32.01V35.82h38.44V19.11h-60.3zm135.88-93.66c-.9 0-1.73.14-2.48.42s-1.41.64-1.99 1.09-1.09.95-1.54 1.51-.8 1.12-1.06 1.67l-13.11 27.26c-1.03 2.14-1.99 4.14-2.89 5.98s-1.67 3.69-2.31 5.53c-.69-1.8-1.48-3.62-2.38-5.46s-1.89-3.86-2.96-6.04l-13.24-27.26c-.69-1.37-1.59-2.5-2.7-3.38s-2.61-1.32-4.5-1.32h-19.16l33.94 58.05v35.61h21.73V77.16l33.94-58.05zm-171.66 93.66h21.86V19.11h-21.86z" fill="@{surface0}"/></svg>'
);
content: url("data:image/svg+xml,@{svg}");
}
img[src$="images/homepage/2.svg"] {
@svg: escape(
'<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 64 64"><path d="M4 55h35.42a10.94 10.94 0 0 0 2.801 4.778A10.93 10.93 0 0 0 50 63c6.065 0 11-4.935 11-11V42c0-1.653-1.346-3-3-3-.537 0-1.034.153-1.471.401A3 3 0 0 0 55 38.184v-5.775c4.828-3.026 8-8.389 8-14.409 0-9.374-7.626-17-17-17-6.067 0-11.387 3.205-14.396 8H4c-1.654 0-3 1.346-3 3v40c0 1.654 1.346 3 3 3m0-2c-.552 0-1-.449-1-1V23h26.765C31.607 28.967 36.651 33.586 43 34.717v8.513c-.927-.756-2.094-1.23-3.382-1.23a2.622 2.622 0 0 0-2.342 3.79l1.195 2.391c.346.691.529 1.464.529 2.236v1.582q.002.505.049 1.001zm38-32a4.004 4.004 0 0 1 5.557-3.686l.779-1.843A6 6 0 0 0 46 15a5.97 5.97 0 0 0-3.767 1.336A4 4 0 0 1 42 15v-4c0-2.206 1.794-4 4-4s4 1.794 4 4v4a4.004 4.004 0 0 1-5.6 3.667l-.802 1.833c.758.332 1.567.5 2.402.5a5.97 5.97 0 0 0 3.767-1.336c.151.424.233.873.233 1.336v4a3.99 3.99 0 0 1-1.615 3.2A2.99 2.99 0 0 0 46 27c-.977 0-1.837.476-2.385 1.201A3.99 3.99 0 0 1 42 25zm16 20c.551 0 1 .449 1 1v10c0 4.962-4.037 9-9 9a8.94 8.94 0 0 1-6.364-2.637A8.94 8.94 0 0 1 41 51.998v-1.582a7.04 7.04 0 0 0-.739-3.131l-1.195-2.39a.62.62 0 0 1 .552-.895A3.387 3.387 0 0 1 43 47.382V50h2V30a1.001 1.001 0 0 1 2 0v20h2V40a1.001 1.001 0 0 1 2 0v10h2v-9a1.001 1.001 0 0 1 2 0v9h2v-8c0-.551.448-1 1-1m-5-2.816a3 3 0 0 0-.471.217A3 3 0 0 0 50 37c-.352 0-.686.072-1 .184v-2.467a16.8 16.8 0 0 0 4-1.235zM46 3c8.271 0 15 6.729 15 15 0 7.168-5.086 13.288-12 14.69v-2.504A5.99 5.99 0 0 0 52 25v-4a5.94 5.94 0 0 0-.815-2.995A5.95 5.95 0 0 0 52 15v-4c0-3.309-2.691-6-6-6s-6 2.691-6 6v4a5.93 5.93 0 0 0 .816 2.993A5.95 5.95 0 0 0 40 21v4a5.98 5.98 0 0 0 3 5.187v2.503C36.086 31.288 31 25.168 31 18c0-8.271 6.729-15 15-15M4 11h26.526A16.9 16.9 0 0 0 29 18c0 1.022.097 2.024.272 3H3v-9c0-.551.448-1 1-1m4 8h8c1.654 0 3-1.346 3-3s-1.346-3-3-3H8c-1.654 0-3 1.346-3 3s1.346 3 3 3m3-2v-2h2v2zm6-1c0 .551-.448 1-1 1h-1v-2h1c.552 0 1 .449 1 1m-9-1h1v2H8a1.001 1.001 0 0 1 0-2m10 10c-7.168 0-13 5.832-13 13s5.832 13 13 13 13-5.832 13-13-5.832-13-13-13m0 24c-1.075 0-2.22-1.527-3.009-4h6.019c-.79 2.473-1.935 4-3.01 4m-3.519-6a25 25 0 0 1-.46-4h7.958a25 25 0 0 1-.46 4zm-7.43-4h4.971c.046 1.419.184 2.763.409 4H8.214a10.9 10.9 0 0 1-1.163-4M18 27c1.075 0 2.22 1.527 3.009 4H14.99c.79-2.473 1.935-4 3.01-4m3.519 6c.244 1.209.408 2.553.46 4h-7.958a25 25 0 0 1 .46-4zm-9.497 4H7.051a10.9 10.9 0 0 1 1.164-4h4.216a27 27 0 0 0-.409 4m11.956 2h4.971a10.9 10.9 0 0 1-1.164 4h-4.216c.225-1.237.364-2.581.409-4m0-2a27.4 27.4 0 0 0-.409-4h4.216a10.9 10.9 0 0 1 1.164 4zm2.501-6h-3.373c-.368-1.295-.837-2.422-1.391-3.341A11.05 11.05 0 0 1 26.479 31m-12.193-3.341c-.553.919-1.023 2.046-1.391 3.341H9.521a11.05 11.05 0 0 1 4.765-3.341M9.521 45h3.373c.368 1.295.837 2.422 1.391 3.341A11.05 11.05 0 0 1 9.521 45m12.193 3.341c.553-.919 1.023-2.046 1.391-3.341h3.373a11.04 11.04 0 0 1-4.764 3.341" fill="@{accent}"/></svg>'
);
content: url("data:image/svg+xml,@{svg}");
}
img[src$="images/homepage/4.svg"] {
@svg: escape(
'<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 64 64"><path d="M31 18c0-7.168-5.832-13-13-13S5 10.832 5 18s5.832 13 13 13 13-5.832 13-13m-16.009 7h6.018c-.789 2.473-1.935 4-3.009 4s-2.22-1.527-3.009-4m-7.94-6h4.971c.046 1.419.184 2.763.409 4H8.214a10.9 10.9 0 0 1-1.163-4M18 7c1.075 0 2.22 1.527 3.009 4h-6.018C15.78 8.527 16.925 7 18 7m3.519 6c.244 1.209.408 2.553.46 4h-7.958a25 25 0 0 1 .46-4zm7.43 4h-4.971a27.4 27.4 0 0 0-.409-4h4.217a10.9 10.9 0 0 1 1.163 4m0 2a10.9 10.9 0 0 1-1.164 4h-4.217c.225-1.237.364-2.581.409-4zm-16.927-2H7.051a10.9 10.9 0 0 1 1.164-4h4.217a27 27 0 0 0-.41 4m1.999 2h7.958a25 25 0 0 1-.46 4h-7.038a25 25 0 0 1-.46-4m7.693 9.341c.553-.919 1.023-2.046 1.391-3.341h3.374a11.04 11.04 0 0 1-4.765 3.341M26.479 11h-3.374c-.368-1.295-.838-2.422-1.391-3.341A11.04 11.04 0 0 1 26.479 11M14.286 7.659c-.553.919-1.023 2.046-1.391 3.341H9.521a11.04 11.04 0 0 1 4.765-3.341M9.521 25h3.374c.368 1.295.838 2.422 1.391 3.341A11.04 11.04 0 0 1 9.521 25m45.14-1.424C58.43 21.55 61 17.57 61 13c0-6.617-5.383-12-12-12-5.213 0-9.647 3.347-11.3 8h-5.304C29.387 4.205 24.067 1 18 1 8.626 1 1 8.626 1 18c0 7.994 5.553 14.699 13 16.505V38c0 .395.081.77.22 1.116A2.995 2.995 0 0 0 12 42v15c0 3.309 2.691 6 6 6s6-2.691 6-6v-8h2.181c-.11.652-.181 1.317-.181 2 0 6.617 5.383 12 12 12s12-5.383 12-12c0-1.418-.279-2.818-.772-4.146A12 12 0 0 0 51 47c6.617 0 12-5.383 12-12 0-5.34-3.508-9.872-8.339-11.424M46 10c0-1.654 1.346-3 3-3s3 1.346 3 3-1.346 3-3 3-3-1.346-3-3m5.577 5.493C51.053 16.405 50.084 17 49 17s-2.053-.595-2.577-1.507A7 7 0 0 1 49 15a7 7 0 0 1 2.577.493m-6.883.992C45.568 18.006 47.186 19 49 19s3.432-.994 4.306-2.515a6.97 6.97 0 0 1 2.479 3.84C54 21.979 51.62 23 49 23s-5-1.021-6.785-2.675a6.96 6.96 0 0 1 2.479-3.84M49 3c5.514 0 10 4.486 10 10a9.94 9.94 0 0 1-1.695 5.562 8.95 8.95 0 0 0-4.925-4.901A4.97 4.97 0 0 0 54 10c0-2.757-2.243-5-5-5s-5 2.243-5 5c0 1.45.631 2.747 1.62 3.661a8.95 8.95 0 0 0-4.925 4.901A9.94 9.94 0 0 1 39 13c0-5.514 4.486-10 10-10m-11.819 8c-.11.652-.181 1.317-.181 2 0 5.34 3.508 9.872 8.339 11.424A12.06 12.06 0 0 0 39.7 31H28.932C32.637 27.879 35 23.212 35 18c0-2.497-.555-4.862-1.526-7zM3 18C3 9.729 9.729 3 18 3s15 6.729 15 15-6.729 15-15 15S3 26.271 3 18m15 17c.678 0 1.343-.051 2-.128V38c0 .551-.449 1-1 1h-2c-.551 0-1-.449-1-1v-3.128c.657.077 1.322.128 2 .128m4 22c0 2.206-1.794 4-4 4s-4-1.794-4-4V42c0-.551.449-1 1-1h6c.551 0 1 .449 1 1zm2-10v-5a2.995 2.995 0 0 0-2.22-2.884c.139-.346.22-.721.22-1.116v-3.495c1.402-.34 2.74-.841 3.983-1.505h13.198c-.11.652-.181 1.317-.181 2 0 1.456.274 2.846.751 4.138A12 12 0 0 0 38 39c-5.213 0-9.647 3.347-11.3 8zm7.215 11.325a6.96 6.96 0 0 1 3.051-4.244L38 58.562l3.734-4.481a6.96 6.96 0 0 1 3.051 4.244C43 59.979 40.62 61 38 61s-5-1.021-6.785-2.675M35 48c0-1.654 1.346-3 3-3s3 1.346 3 3-1.346 3-3 3-3-1.346-3-3m3 5a7 7 0 0 1 1.83.242L38 55.438l-1.83-2.196A7 7 0 0 1 38 53m10-2a9.94 9.94 0 0 1-1.695 5.562 8.95 8.95 0 0 0-4.925-4.901A4.97 4.97 0 0 0 43 48c0-2.757-2.243-5-5-5s-5 2.243-5 5c0 1.45.631 2.747 1.62 3.661a8.95 8.95 0 0 0-4.925 4.901A9.94 9.94 0 0 1 28 51c0-5.514 4.486-10 10-10 .972 0 1.943.155 2.894.444a12.05 12.05 0 0 0 5.853 4.763A10 10 0 0 1 48 51m-3.785-8.675a6.96 6.96 0 0 1 2.479-3.84C47.568 40.006 49.186 41 51 41s3.432-.994 4.306-2.515a6.97 6.97 0 0 1 2.479 3.84C56 43.979 53.62 45 51 45s-5-1.021-6.785-2.675M48 32c0-1.654 1.346-3 3-3s3 1.346 3 3-1.346 3-3 3-3-1.346-3-3m5.577 5.493C53.053 38.405 52.084 39 51 39s-2.053-.595-2.577-1.507A7 7 0 0 1 51 37a7 7 0 0 1 2.577.493m5.728 3.069a8.95 8.95 0 0 0-4.925-4.901A4.97 4.97 0 0 0 56 32c0-2.757-2.243-5-5-5s-5 2.243-5 5c0 1.45.631 2.747 1.62 3.661a8.95 8.95 0 0 0-4.925 4.901A9.94 9.94 0 0 1 41 35c0-5.514 4.486-10 10-10s10 4.486 10 10a9.94 9.94 0 0 1-1.695 5.562" fill="@{accent}"/></svg>'
);
content: url("data:image/svg+xml,@{svg}");
}
img[src$="images/homepage/5.svg"] {
@svg: escape(
'<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><path d="M488 360a8 8 0 0 0-8-8h-49.378a21.65 21.65 0 0 0-7.346-9.884l-3.508-2.633a21.833 21.833 0 0 0-30.531 4.363L383.122 352H320a8 8 0 0 0-8 8v128a8 8 0 0 0 8 8h160a8 8 0 0 0 8-8zm-85.962-6.555a5.81 5.81 0 0 1 8.13-1.162l3.509 2.633a5.81 5.81 0 0 1 1.161 8.13L389.522 396.8l-12.8-9.6zM379.921 409.6l-2.812 3.749-11.2 1.6-1.6-11.2 2.813-3.749zM440 480H328V368h43.122l-12 16-9.6 12.8a8 8 0 0 0-1.522 5.931l3.2 22.4a8 8 0 0 0 9.052 6.788l22.4-3.2a8 8 0 0 0 5.269-3.12l9.6-12.8v-.006l30.113-40.148a21.8 21.8 0 0 0 2.641-4.645H440zm32 0h-16V368h16zM193.51 332.678A8 8 0 0 0 200 336h112a8 8 0 0 0 7.59-10.53L307.1 288H422a34.04 34.04 0 0 0 34-34V50a34.04 34.04 0 0 0-34-34H90a34.04 34.04 0 0 0-34 34v204a34.04 34.04 0 0 0 34 34h114.9l-5.333 16H136a24 24 0 0 0 0 48h8a8.01 8.01 0 0 1 8 8v8H32a8 8 0 0 0-8 8v96a8 8 0 0 0 8 8h256a8 8 0 0 0 8-8v-96a8 8 0 0 0-8-8H168v-8a24.03 24.03 0 0 0-24-24h-8a8 8 0 0 1 0-16h58.233l-1.823 5.47a8 8 0 0 0 1.1 7.208M211.1 320l10.666-32h68.468l10.666 32zM72 50a18.02 18.02 0 0 1 18-18h332a18.02 18.02 0 0 1 18 18v174H72zm18 222a18.02 18.02 0 0 1-18-18v-14h368v14a18.02 18.02 0 0 1-18 18zm190 112v80H40v-80zM72 416H56v-16h16zm32 0H88v-16h16zm32 0h-16v-16h16zm32 0h-16v-16h16zm32 0h-16v-16h16zm32 0h-16v-16h16zm32 0h-16v-16h16zm-32 32h-16v-16h16zm32 0h-16v-16h16zm-64 0h-80v-16h80zm-128 0H56v-16h16zm32 0H88v-16h16zm280 0a8 8 0 0 1-8 8h-24a8 8 0 0 1 0-16h24a8 8 0 0 1 8 8m40 0a8 8 0 0 1-8 8h-8a8 8 0 0 1 0-16h8a8 8 0 0 1 8 8m-55.432-273.941 5.658-5.657a8 8 0 0 0-4.088-13.5l-36.565-7.313a80.1 80.1 0 1 0-22.768 38.665l4.664 23.317a8 8 0 0 0 13.5 4.088l5.658-5.659 5.658 5.657a8 8 0 0 0 11.314 0l22.627-22.627a8 8 0 0 0 0-11.313zM315.313 104a63.4 63.4 0 0 1 4.169 16h-31.627a213 213 0 0 0-1.171-16zm-9.406-16h-21.75a106 106 0 0 0-6.085-20.075A64.26 64.26 0 0 1 305.907 88m-59.288-8.382C250.92 66.715 255.313 64 256 64s5.08 2.715 9.381 15.618c.872 2.617 1.66 5.426 2.369 8.382h-23.5c.709-2.956 1.497-5.765 2.369-8.382M196.687 104h28.629a213 213 0 0 0-1.171 16h-31.627a63.4 63.4 0 0 1 4.169-16m0 48a63.4 63.4 0 0 1-4.169-16h31.627c.193 5.375.582 10.748 1.171 16zm9.406 16h21.75a106 106 0 0 0 6.085 20.075A64.26 64.26 0 0 1 206.093 168m21.75-80h-21.75a64.26 64.26 0 0 1 27.835-20.075A106 106 0 0 0 227.843 88m37.538 88.382C261.08 189.285 256.687 192 256 192s-5.08-2.715-9.381-15.618c-.872-2.617-1.66-5.426-2.369-8.382h23.5c-.709 2.956-1.497 5.765-2.369 8.382m5.2-24.382h-29.163a191 191 0 0 1-1.262-16h31.688a191 191 0 0 1-1.262 16zm-30.426-32c.209-5.523.633-10.886 1.262-16h29.164a191 191 0 0 1 1.262 16zm37.884 68.147A106 106 0 0 0 284.157 168h21.776a63.5 63.5 0 0 1-27.893 20.147zm39.823-43.7-4.294-.859a8 8 0 0 0-9.547 8.412h-17.337c.589-5.252.978-10.625 1.171-16H319.5a64 64 0 0 1-1.637 8.446zm28.078 52.241-5.658-5.658a8 8 0 0 0-11.313 0l-.743.744-6.026-30.144 30.144 6.028-.744.743a8 8 0 0 0 0 11.314l5.657 5.658zm-191.5-44.781a7.99 7.99 0 0 1-9.128-6.684A113 113 0 0 1 144 128a111.46 111.46 0 0 1 31.182-77.539 8 8 0 0 1 11.543 11.078A95.54 95.54 0 0 0 160 128a97 97 0 0 0 1.13 14.778 8 8 0 0 1-6.685 9.128zm20.641 27.779a8 8 0 1 1-13.473 8.63 112 112 0 0 1-4.993-8.62 8 8 0 1 1 14.192-7.39 97 97 0 0 0 4.279 7.379z" fill="@{accent}"/></svg>'
);
content: url("data:image/svg+xml,@{svg}");
}
.is-world-background {
@svg: escape(
'<svg viewBox="0 0 950 620" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" fill="@{base}"><path d="m781.68 324.4-2.31 8.68-12.53 4.23-3.75-4.4-1.82.5 3.4 13.12 5.09.57 6.79 2.57v2.57l3.11-.57 4.53-6.27v-5.13l2.55-5.13 2.83.57-3.4-7.13-.52-4.59zm71.08 23.89-.37 24.44 3.52-.19 4.63-5.41 3.89.19 2.5 2.24.83 6.9 7.96 4.2 2.04-.75v-2.52l-6.39-5.32-3.15-7.28 2.5-1.21-1.85-4.01-3.7-.09-.93-4.29-9.81-6.62zM137.49 225.43l4.83 15.21-2.25 1.26.25 3.02 4.25 3.27v6.05l5.25 5.04-2.25-14.86-3-9.83.75-6.8 2.5.25 1 2.27-1 5.79 13 25.44v9.07l10.5 12.34 11.5 5.29 4.75-2.77 6.75 5.54 4-4.03-1.75-4.54 5.75-1.76 1.75 1.01 1.75-1.76h2.75l5-8.82-2.5-2.27-9.75 2.27-2.25 6.55-5.75 1.01-6.75-2.77-3-9.57 2.27-12.07-4.64-2.89-2.21-11.59-1.85-.79-3.38 3.43-3.88-2.07-1.52-7.73-15.37-1.61-7.94-5.97zm380.28-81.77-5.6-.2-3.55 2.17-.05 1.61 2.3 2.17 7.15 1.21zm-43.89 83.83-4.08-1.37-16.98 3.19-3.7 2.81 2.26 11.67-6.75.27-4.06 6.53-9.67 2.32.03 4.75 31.85 24.35 5.43.46 18.11-14.15-1.81-2.28-3.4-.46-2.04-3.42v-14.15l-1.36-1.37.23-3.65-3.62-3.65-.45-3.88 1.58-1.14-.68-4.11z"/><path d="M448.29 232.28h-11.55l-2.26 5.02-5.21 2.51-4.3 11.64-8.38 5.02-11.77 19.39 11.55-.23.45-5.7h2.94v-7.76h10.19l.23-10.04 9.74-2.28 4.08-6.62 6.34-.23z"/><path d="m404.9 276.66 2.18 2.85-.45 12.32 3.17-2.28 2.26-.46 3.17 1.14 3.62 5.02 3.4-2.28 16.53-.23-4.08-27.61 4.38-.02-8.16-6.25.01 4.06-10.33.01-.05 7.75-2.97-.01-.38 5.72z"/><path d="m410.12 290.32-3.94 2.86-.9 1.6-.28 1.6 1.45 1.04 4.84-.07 3.11-.84.35 1.53-.28 2.02 2.97 1.46.62.7 3.94.14.14-1.74-3.6-4.32-4.01-5.43-2.49-1.04z"/><path d="m406.89 298.34-.13 1.11 6.92-.1.35-1.03-.15-1.04-1.99.81zm-.1 1.88 1.24 3.01.69-1.86 8.41.88-3.64-1.87z"/><path d="m408.6 304.53 1.4 2.77 3.93-3.38.04-1.04-4.63-.67z"/><path d="m410.42 307.94 3.04 4.68 3.96-3.44 4.06-.18 3.38 4.49 2.87 1.89 1.08-2.1.96-.54-.07-4.62-1.91-5.48-5.86.65-7.25-.58-.04 1.86z"/><path d="m413.93 313.13 5.65 5.46 4.03-4.89-2.52-3.95-3.47.35zm6.24 6.06 10.98 7.34-.26-5.56-3.32-3.91-3.24-2.87z"/><path d="m432.07 326.75 4.28-3.03 5.32-.93 5.43 1.17-2.77-4.19-.81-2.56.81-7.57-4.85.23-2.2-2.1-4.62.12-2.2.35.23 5.12-1.16.47-1.39 2.56 3.58 4.19zm-12.61-30.91 3.08-2.11 17.12-.1-3.96-27.54 4.52-.13 21.87 16.69 2.94.42-1.11 9.28-13.75 1.25-10.61 7.92-1.93 5.42-7.37.31-1.88-5.41-5.65.4.22-1.77z"/><path d="m450.59 294.28 3.64-.29 5.97 8.44-5.54 4.18-4.01-1.03-5.39.07-.87 3.16-4.52.22-1.24-1.69 1.6-5.14zm10.3 7.72 2.55-.06 2.3-3.45 3.86-.69 4.11 2.51 8.77.25 6.78-2.76 2.55-2.19.19-2.88 4.73-4.77 1.25-10.53-3.11-6.52-7.96-1.94-18.42 14.36-2.61-.25-1.12 9.97-9.4.94z"/><path d="m444.34 317.05 1.12 2.63 2.92 4.58 1.62-.06 4.42-2.51-.31-14.29-3.42-1-4.79.13zm10.88 4.2 2.68-1.57-.06-10.35-1.74-2.82-1.12.94z"/><path d="M458.71 319.49h2.12l.12-6.02 2.68-3.89-.12-6.77-2.43-.06-4.17 3.26 1.74 3.32z"/><path d="m461.57 319.37 3.92.19 4.73 5.27 2.3.63 1.8-.88 2.74-.38.93-3.82 3.73-2.45 4.04-.19 7.4-13.61-.12-3.07-3.42-2.63-6.84 3.01-9.15-.13-4.36-2.76-3.11.69-1.62 2.82-.12 7.96-2.61 3.7zm13.34-92.04 5.53-2.23 1.82 1.18.07 1.44-.85 1.11.13 1.97.85.46v3.54l-.98 1.64.13 1.05 3.71 1.31-2.99 4.65-1.17-.07-.2 3.74-1.3.2-1.11-.98.26-3.8-3.64-3.54-.46-3.08 1.76-1.38z"/><path d="m480.05 248.03 1.56-.26.46-3.6h.78l3.19-5.24 7.87 2.29 2.15 3.34 7.74 3.54 4.03-1.7-.39-1.7-1.76-1.7.2-1.18 2.86-2.42h5.66l2.15 2.88 4.55.66.59 36.89-3.38-.13-20.42-10.62-2.21 1.25-8.39-2.1-2.28-3.01-3.32-.46-1.69-3.01zm41.88-4.97 2.67.07 5.2 1.44 2.47.07 3.06-2.56h1.43l2.6 1.44h3.29l.59-.04 2.08 5.98.59 1.93.55 2.89-.98.72-1.69-.85-1.95-6.36-1.76-.13-.13 2.16 1.17 3.74 9.37 11.6.2 4.98-2.73 3.15-25.64-.29z"/><path d="m492.79 296 .13-2.95 4.74-4.61 1.27-11.32-3.16-6.04 2.21-1.13 21.4 11.15-.13 10.94-3.77 3.21v5.64l2.47 4.78h-4.36l-7.22 7.14-.19 2.16-5.33-.07-.07.98-3.04-.4-2.08-3.93-1.56-.77.2-1.2 1.96-1.5v-7.02l-2.71-.42-3.27-2.43zm56.29 14.34-2.943-4.943-.309-3.596-.707.135-.191 1.107-3.858 5.635-3.078-1.469-3.07 2.572-6.352-.365-2.81-2.246-4.034 2.065-.152 1.375-1.23.74 12.32 12.68 6.71.38.979 1.49 9.602.17.078-2.15.82-1.49 3.201-.41-3.99-5.79h-2.94l-.75-4.11 2.36-1.04z"/><path d="m552 270.61-3.69 3.72-25.8-.23.279 6.57-2.46-.07-.179 11.83-3.73 3.211-.15 4.94 2.69 5.31 2.95 1.74-.045.414 4.02-2.058 3.066 2.449 5.639.324 3.257-2.728 2.887 1.375 3.25-4.748.274-1.576 2.476-.471.385 4.47 2.476 4.16 6.004-12.911v-7.85l4.362-5.14zm-74.18 53.67 3.22 2.96-.23 4.58 17.66-.41 1.44-1.62-5.06-5.45-.75-1.97 3.22-6.03-2.19-4-1.84-.99v-2.03l2.13-1.39.12-6.32-1.69-.19-.03 3.32-7.42 13.85-4.54.23-3.11 2.14z"/><path d="m556.71 294.7-.25-5.89 3.96-4.62 1.07.82 1.95 6.52 9.36 6.97-1.7 2.09-6.85-5.89zm14.77 6.84-.57 3.36 3.96-.06.06-4.94-1.45-.89z"/><path d="m549.49 311.76 7.28-16.2 7.23.04 6.41 5.57-.45 4.59h4.97l.51 2.76 8.04 4.81 4.96.25-9.43 10.13-12.95 3.99h-3.21l-5.72-4.88-2.26-.95-4.38-6.45-2.89.04-.34-2.96z"/><path d="m575.74 305.04 4.08 2.78 1.21-.06 10.13-3.48 1.15 3.71-.81 3.13-2.19 1.74-5.47-.35-7.83-4.81zm23.88-5.39 2.13 2.38 2.88-1.74 1.04-.35-1.32-1.28-2.53.75z"/><path d="m591.97 304.05 4.37-1.68 1.55.93-.17 3.88-4.03 11.48-21.81 23.36-2.53-1.74-.17-9.86 3.28-3.77 6.96-2.15 10.21-10.78 2.67-2.38.75-3.48zm-96.31 20 4.66 5.04 1.84-2.38 2.93.12.63-2.32 2.88-1.8 5.98 4.12 3.45-3.42 13.39.59L519 311.18l1.67-1.04.23-2.26-2.82-1.33h-4.14l-6.67 6.61-.23 2.72-5.29-.17-.17 1.16-3.45-.35-3.11 5.91zm-24.92 13.1 1.15-.58.86.7-.86 1.33-1.04-.41zm2.31-3.65 1.73-.29.58 1.1-.86.93-.86-.12zm3.79-6.09-.46 1.97 1.38.75 1.32-.99-.46-2.03zm9.55 5.22-.12 2.49-5.64-.12-3.45 6.67 8.11 8.87 2.01-1.68-.06-1.74-1.38-.64v-1.22l3.11-1.97 2.76 2.09 3.05.06-.06-10.49-4.83-.23-.06-2.2z"/><path d="m480.99 332.69-.06 1.39 4.54.23-.06-1.57zm10.01-.17-.06 1.45 4.78.12.17 12.41-4.37-.12-2.53-1.97-1.96 1.1-.09.55 1.01.49.29 2.55-2.7 2.32.58 1.22 2.99-2.32h1.44l.46 1.39 1.9.81 6.1-5.16-.12-3.77 1.27-3.07 3.91-2.9 1.05-9.81-2.78.01-3.22 4.41z"/><path d="m486.55 353.23 1.74 2.26 2.25-2.13-.66-2.21-.56-.04zm2.83 2.48 10.31-.18 2.09 2.97-.08 2.19.77.7h5.12l1.47-2.89h2.09l.85.86 2.87-.08.85 10.08 4.96.16v.78l13.33 6.01.62 1.17h2.79l-.31-4.22-5.04-2.42.31-3.2 2.17-5.08 4.96-.16-4.26-14.14.08-6.01 6.74-10.54.08-1.48-1.01-.55.04-2.86-1.23-.11-1.24-1.58-20.35-.92-3.73 3.63-6.11-4.02-2.15 1.32-1.56 13.13-3.86 2.98-1.16 2.64.21 3.91-6.96 5.69-1.85-.84.25 1.09z"/><path d="m537.82 339.9 2.81 2.59-.12 2.77-4.36.09v-3.06zm-1.61 6.31 4.27-.09-1.11 3.74-1.08.94h-1.32l-.94-2.53zm2.09-7.12 3.03 2.84 1.9-1.21 5.14-.84.88.09.33-1.95 2.9-6.1-2.44-5.08-7.91.05-.05 2.09 1.06 1.02-.16 2.09z"/><path d="m550.83 326.52 2.66 5.19-3.19 6.69-.42 2.03 15.93 9.85 4.94-7.76-2.5-2.03-.05-10.22 3.13-3.42-4.99 1.66-3.77.05-5.9-4.98-1.86-.8-3.45.32-.61 1.02zm-.26 44.9 17.47-2.14-3.93-7.6-.21-7.28 1.27-3.48-16.62-10.44-5.21.86-1.81 1.34-.16 3.05-1.17 4.23-1.22 1.45-1.75.16 3.35 11.61 5.47 2.57 3.77.11z"/><path d="m514.55 384.7 3.17 4.4 4.91.3 1.74.96 5.14.06 4.43-6.21 12.38-5.54 1.08-4.88-1.44-6.99-6.46-3.68-4.31.3-2.15 4.76.06 2.17 5.08 2.47.3 5.37-4.37.24-1.08-1.81-12.14-5.18-.36 3.98-5.74.18z"/><path d="m488.62 356.71 3.41 12.73-.08 4.02-4.99 5.36-.75 8.71 19.2.17 6.24 2.26 5.15-.67-3-3.76.01-10.74 5.9-.25v-4.19l-4.79-.2-.96-9.92-2.02.03-1.09-.98-1.19.06-1.58 3.06H502l-1.41-1.42.42-2.01-1.66-2.43zm58.54 22.69 3.11 3.25-.06 4.16.6 1.75 4.13-4.46-.48-5.67-2.21-1.69-1.97-9.95-3.41-.12 1.55 7.17z"/><path d="m541.17 413.28 2.69 2.23 6.34-3.86 1.02-5.73v-9.46l10.17-8.32 1.74.06 6.16-5.91-.96-12.18-16.33 2.06.48 3.68 2.81 2.17.66 6.63-5.5 5.37-1.32-3.01.24-3.98-3.17-3.44-7.78 3.62 7.24 3.68.24 10.73-4.79 7.11z"/><path d="m524.66 392.3 8.97 10.13 6.88 1.75 4.61-7.23-.36-9.58-7.48-3.86-2.81 1.27-4.19 6.39-5.8-.06zm-28.11 29.66 3.35.24 1.97 1.99 4.67.06 1.14-13.26v-8.68l2.99-.6 1.14-9.1 7.6-.24 2.69-2.23-4.55-.18-6.16.84-6.64-2.41h-18.66l.48 5.3 6.22 9.16-1.08 4.7.06 2.47z"/><path d="m508.51 411.23 2.15.66-.3 6.15 2.21.3 5.08-4.58 6.1.66 1.62-4.1 7.72-7.05-9.27-10.67-.12-1.75-1.02-.3-2.81 2.59-7.3.18-1.02 9.1-2.87.66zm32.36 2.77-2.51.42-1.08 2.95 1.92 1.75h2.33l1.97-2.83zm-13.46 11.39 3.05-2.35 1.44.06 1.74 2.17-.18 2.17-2.93 1.08v.84l-3.23-.18-.78-2.35z"/><path d="m534.16 403.63-7.9 7.3-1.88 4.51-6.26-.78-5.21 4.63-3.46-.34.28-6.4-1.23-.43-.86 13.09-6.14-.06-1.85-2.18-2.71-.03 2.47 7.09 4.41 4.17-3.15 3.67 2.04 4.6 4.72 1.8 3.76-3.2 10.77.06.77-.96 4.78-.84 16.17-16.1-.06-5.07-1.73 2.24h-2.59l-3.15-2.64 1.6-3.98 2.75-.56-.25-8.18zm-3.79 18.5 1.51-.06 2.45 2.66-.07 3.08-2.87 1.45-.18 1.02-4.38.05-1.37-3.3 1.25-2.42zM321.13 50.07l-1.36 2.17 2.45 2.45-1.09 2.45 3.54 4.62 4.35-1.36 5.71-.54 6.53 7.07 4.35 11.69-3.53 7.34 4.89-.82 2.72 1.63.27 3.54-5.98.27 3.26 3.26 4.08.82-8.97 11.96-1.09 7.34 1.9 5.98-1.36 3.54 2.45 7.61 4.62 5.17 1.36-.27 2.99-.82.27 4.35 1.9 2.72 3.53-.27 2.72-10.06 8.16-10.06 12.24-4.89 7.61-9.52 3.53 1.63h7.34l5.98-5.98 7.34-2.99.82-4.62-4.62-4.08-4.08-1.36-2.18-5.71 5.17-2.99 8.16 4.35 2.72-2.99-4.35-2.45 9.25-12.51-1.63-5.44-4.35-.27 1.63-4.89 5.44-2.45 11.15-9.79-3.26-3.53-12.51 1.09-6.53 6.53 3.81-8.43-4.35-1.09-2.45 4.35-3.53-2.99-9.79 1.09 2.72-4.35 16.04-.54-4.08-5.44-17.4-3.26-7.07 1.09.27 3.54-7.34-2.45.27-2.45-5.17 1.09-1.09 2.72 5.44 1.9-5.71 4.08-4.08-4.62-5.71-1.63-.82 4.35h-5.71l-2.18-4.62-8.97-1.36-4.89 2.45-.27 3.26-6.25-.82-3.81 1.63.27 3.81v1.9l-7.07 1.36-3.26-2.17-2.18 3.53 3.26 3.54 6.8-.82.54 2.18-5.17 2.45z"/><path d="m342.89 92.49 1.63 2.45-.82 2.99h-1.63l-2.18-2.45.54-1.9zm67.98-6.8 4.62 1.36-.27 3.81-4.89-2.45-1.09-1.36zm-22.35 537.3 3.83-5.11 14.89-7.66 2.55-5.53 6.38-1.28 5.96-7.66 5.96-.43 1.28-5.96 5.11-3.83 4.26 1.28 12.34-3.83 2.98 2.98 5.53.43 5.11-2.55 30.64-.43 11.06 2.98 14.04-2.98 4.68.43 1.28-4.26h4.68l6.38 6.81 11.92-7.66 13.19-3.83 4.68 2.98.43-5.96 6.81-.85 7.23 3.4v3.4l18.3 7.66 5.11-.43 2.13 2.55-5.96 6.81v4.68l5.53 2.98 1.28-2.98 25.11-9.79 18.3-1.7 3.83 2.13 14.47 2.13 3.4 1.28 4.68-2.55 6.81-.43 6.38 4.68.43 5.11 14.47-2.98 2.13.85.85 4.68 13.19 4.26 4.26-2.98.43 3.83 4.68.43 6.38 5.11 5.96-2.55 5.11.43h3.83l2.55-.43.43 6.81 8.51 5.11zm-128.51 0 13.62-3.83.85-3.83 14.47-3.4 8.51 2.13 18.72-7.66-.43-8.08-5.53-8.51 1.28-2.13-2.13-5.53v-5.96h3.4l-2.13-4.26 15.32-13.19-.43 5.96-2.98.85-2.98 5.11 2.98 1.28-2.98 4.26-3.4-.85-1.7 3.83.43 5.11 5.11-.43 3.4 4.68 1.28 5.96 6.81 8.51.43 10.64-2.55 1.28 2.13 5.53-1.28 2.13zm-9.79-7.66 5.11-.85 2.13 1.7-.85 2.13-.43 2.55-2.98 1.28-2.13-2.55h-8.51v-1.7l3.83-.85z"/><path d="m304.69 587.67-4.26.85 2.55 4.68 2.98 1.28-1.28 2.55v1.7l-8.09 2.13.85 2.55 3.4 1.28 3.83-2.98 3.4.85-2.13 3.4 1.28.85 3.83-1.7 2.98-5.53zm-8.94 19.15-3.4 2.98 2.98.85 3.83.85 3.83-2.55-3.83-.85zm23.82-50.35-2.49.5-.55 2.55 4.76-.7zm4.02-3.93-2.99.57.57 2.31 3.64-.13zm4.75 4.63.02 3.56 2.05.09 1.66-2.64zm.99-9.93-2.16.85-.55 2.04 1.87.68 3.14-2.16zm431.84-119.26-.35 25.38-3.9 2.86-.35 2.5 5.32 3.57 13.13-2.5h6.74l2.48-3.58 14.9-2.86 10.64 3.22-.71 4.29 1.42 4.29 8.16-1.43.35 2.14-5.32 3.93 1.77 1.43 3.9-1.43-1.06 11.8 7.45 5.72 4.26-1.43 2.13 2.14 12.42-1.79 11.71-18.95 4.26-1.07 8.51-15.73 2.13-13.58-5.32-6.79 2.13-1.43-4.26-13.23-4.61-3.22.71-17.87-4.26-3.22-1.06-10.01h-2.13l-7.1 23.59-3.9.36-8.87-8.94 4.97-13.23-9.22-1.79-10.29 2.86-2.84 8.22-4.61 1.07-.35-5.72-18.8 11.44.35 4.29-2.84 3.93h-7.1l-15.26 6.43zm64.57 68.28-1.77 7.15.35 5 5.32-.36 6.03-9.29zm87.28-14.3 1.06 11.8-1.42 5.36-5.32 3.93.35 4.65v5l1.42 1.79 14.55-12.51v-2.86h-3.55l-4.97-16.8zm-10.64 25.74 2.84 5.36-7.81 7.51-.71 3.93-5.32.71-8.87 8.22-8.16-3.93-.71-2.86 14.9-6.43zm4.26-87.23-.35 1.79 4.61 6.43 2.48 1.07.35-2.5zm-184.16-102.9-.28 2.28 6.79 11.41h1.98l14.15 23.67 5.66.57 2.83-8.27-4.53-2.85-.85-4.56zm41.66 15.35 3.02 3.49 11.58-4.01 2.29-8.84 5.16-.37 4.72-3.42-6.12-4.46-1.4-2.45-3.02 5.57 1.11 3.2-1.84 2.67-3.47-.89-8.41 6.17.22 3.57z"/><path d="m779.77 319.25-2.88 3.49 2.36.74 1.33-1.86zm9.76 29.86 2.26 2.77-1.47 4.16v.79h3.34l1.18-10.4 1.08.3 1.96 9.5 1.87.5 1.77-4.06-1.77-6.14-1.47-2.67 4.62-3.37-1.08-1.49-4.42 2.87h-1.18l-2.16-3.17.69-1.39 3.64-1.78 5.5 1.68 1.67-.1 4.13-3.86-1.67-1.68-3.83 2.97h-2.46l-3.73-1.78-2.65.1-2.95 4.75-1.87 8.22zm24.66-18.61-1.87 4.55 2.95 3.86h.98l1.28-2.57.69-.89-1.28-1.39-1.87-.69zm5.8 14.95-4.03.89-1.18 1.29.98 1.68 2.65-.99 1.67-.99 2.46 1.98 1.08-.89-1.96-2.38zm-66.82 12.87-2.75 1.88.59 1.58 8.75 1.98 4.42.79 1.87 1.98 5.01.4 2.36 1.98 2.16-.5 1.97-1.78-3.64-1.68-3.14-2.67-8.16-1.98zm28.6 8.61-2.16 1.19 1.28 1.39 3.14-1.19zm3.73-.89.39 1.88 2.26.59.88-1.09-.98-1.49zm5.41 4.95-2.75.4 2.46 2.08h1.96zm.78-3.27-.59 1.19 4.42.69 3.44-1.98-1.96-.59-3.14.89-1.18-.99zm14.45.7-5.11 4.26.49 1.09 2.16-.4 2.55-2.38 5.01-.69-.98-1.68zM880.48 349l-.88 1.25 4.81 4.26.66 2.5 1.31-.15.15-2.57-1.46-1.32zm2.41 6.03-.95.22-.58 2.57-1.82 1.18-5.47.96.22 2.06 5.76-.29 3.65-2.28-.22-3.97zm6.49 4.48 1.24 3.45 2.19 2.13.66-.59-.22-2.28-2.48-3.01zm6.05 5.14.15 2.28 1.39 1.32 1.31-.81-1.17-2.43zm1.75 5.66-1.17 1.25 1.24 2.28 1.46.44-.07-1.54zm2.85-1.32 1.02 2.5 1.97 2.35 1.09-1.76-1.46-2.5zm5.11 3.75.58 3.09 1.39 1.91 1.17-2.42zm1.6 6.91-.51.88 1.68 2.21 1.17.07-.73-2.87zm-3.72 4.4-1.75.81 1.53 2.13 1.31-.74zm17.85 13.17-1.24 1.66.52 1.87.62.42 1.13-1.46zm.62 5.09.1 1.35 1.34.42.93-.52-.93-1.46zm1.96 12.06-.62.94.93 1.04 1.55-.52zm25.17-2.08-1.24 1.66-.1 1.87 1.44 1.46zM789.37 297.53l-.86 1.64-.48 2.02-4.78 6.07.29 1.25 2.01-.29 6.21-6.94zm7.74-2.31-.1 5.01 1.82 1.83.67 3.56 1.82.39.86-2.22-1.43-1.06-.38-6.26zm5.17 1.93-.1 4.43 1.05 1.73 1.82-2.12-.48-3.85zm1.14-3.86 1.82 2.41.86 2.31h1.63l-.29-3.95-1.82-1.25zm3.54 9.06.38 2.89-3.35 2.7-2.77.29-2.96 3.18.1 1.45 2.77-.87 1.91-1.25 1.63 4.14 2.87 2.02 1.15-.39 1.05-1.25-2.29-2.31 1.34-1.06 1.53 1.25 1.05-1.73-1.05-2.12-.19-4.72zm-15.58-29.38-2.58 1.83-.29 5.78 4.02 7.8 1.34 1.06 1.72-1.16 2.96.48.57 2.6 2.2.19 1.05-1.44-1.34-1.83-1.63-1.54-3.44-.38-1.82-2.99 2.1-3.18.19-2.79-1.43-3.56zm1.34 17.24.76 2.7 1.34.87.96-1.25-1.53-2.12zm-32.89-20.04-2.39.67-1.72 2.12 1.43 2.79 2.1.19 2.39-2.12.57-2.79zm27.63-21.86-3.54 2.7-.19 5.2 3.06 3.56.76-.67zm15.77-31.89-1.63 1.64.67 2.31 1.43.1.96 5.01 1.15 1.25 2.01-1.83.86-3.28-2.49-3.56zm8.8-3.27-2.77 2.6-.1 2.99.67.87 3.73-3.18-.29-3.18z"/><path d="m808.2 206.98-4.88 5.59.86 1.35 2.39.29 4.49-3.47 3.16-.58 2.87 3.37 2.2-.77.86-3.28 4.11-.1 4.02-4.82-2.1-8-.96-4.24 2.1-1.73-4.78-7.22-1.24.1-2.58 2.89v2.41l1.15 1.35.38 6.36-2.96 3.66-1.72-1.06-1.34 2.99-.29 2.79 1.05 1.64-.67 1.25-2.2-1.83h-1.53l-1.34.77zm8.23-43.54-1.53 1.35.77 2.89 1.34 1.35-.1 4.43-1.72.67-1.34 2.99 3.92 5.39 2.58-.87.48-1.35-2.77-2.5 1.72-2.22 1.82.29 1.43 1.54.1-3.18 3.92-3.18 2.2-.58-1.82-3.08-.86-1.35-1.43.96-1.24 1.54-2.68-.58-2.77-1.83zm14.43-2.99-2.68 3.76.19 1.83 1.34-.58 3.15-3.95zm3.54-5.49-.96 2.6.1 1.73 1.63-1.06 1.53-3.08V154zm5.64-22.93-1.24 1.54.1 2.41 1.15-.1 1.91-3.37zm-2.29 5.88v4.24l1.34.48.96-1.54v-3.27zm-39.11-15.32-.09 6.17 7.74 11.95 2.77 10.4 4.88 9.25 1.91.67 1.63-1.35.76-2.22-6.98-7.61.19-3.95 1.53-.67.38-2.31-13.67-19.36zm53.93-19.17-1.91.19 1.15 1.64 2.39 1.64.67-.77zm3.72 1.16.29 1.64 2.96.87.29-1.16zm16.25 6.29 1.25 2.24 2.08-.14.42-1.54zm20.97 3.5 1.67 3.08 1.25-1.4v-2.1zm14.3-9.8-2.36 3.08.55 1.4 2.92-1.82.28-1.82zm11.8-9.65-2.08 2.52 2.22.84zm2.92-4.2-1.39 2.24.14 2.24 1.94-.84zm-41.24-52.33-2.36 1.54-.56 1.96 1.11 1.26 2.5-.84 2.5.84 1.39.42-.14-4.62zM69.17 53.35l3.46 6.47 2.22-.5v-2.24zM883.4 17.54l-4.22 7.57 8.08 5.11 9.05-7.59 5.5 9.17-5.74 1.18-2.27 5.88 12.71 17.22 7.65 1.27 11.03 2.17 1.36-4L930.4 57l.73 16.75L924 85.62l3.44.75 8.98-18.92 2.73-14.16-5.54-2.59-.89-19 4.27.83-.04 11.43 4.66 4.07 2.72-9.93-2.18-5.9 6.58 3.15.69-34.99-75.76.14-4.36 3.35.59 6.77 13.43 1.84 10.31-2.35-3.7 6.92zM1.17 54.95l14.01 1.57 2.34 4.84 11.16-6.54 18.68-2.61 1.3-9.67 9.34-3.4 6.1-5.75v7.84l6.23 8.5L83.3 41.5l-6.23-7.06-7.78-21.04-9.35-10.73-6.62-.52-.26 5.75-5.45 2.75-1.69-3.4L49.16.32 1.3.45zM78.49 3.32 74.6 6.85l1.17 2.61 2.08-1.44 1.17 1.31L82.9 7.9l-.13-2.22zM49.66 110.26l-.17 3.01 2.16-.5v-1.34zm-3.32 1.34-4.32 2.18.67 2.34 1.66-1.34 3.32-1.51zm-17.95 2.84-2.99-.67-.5 1.34.33 2.51zm-6.32-.16-2.83-1.17-1 1.84 1.83 1.84zm-9.8-2.68-1.33-1.84-1.33.5v2.51l1.5 1zM1.47 99.71l1.66 1.17-.5 1.34H1.47zm621.29 399.91-.15 4.29 5.94 1.38 1.37-3.53-2.13.61-2.74.61-.76-3.22zm-9.75-100.63-1.52 1.99.3 2.15 3.2-2.61zm-5.63 3.38-2.28.15-.15 1.99 1.52.31 2.28-1.07zm-15.08-29.45-2.13 5.06-3.65 6.44-6.39.46-2.74 3.22.46 9.82-3.96 4.6.46 7.82 3.35 3.83 3.96-.46 3.96-2.92-.91-4.6 9.13-15.8-1.83-1.99 1.83-3.83 1.98.61.61-1.53-1.83-7.82-1.07-3.22zm-14.61-1.69.46 1.53 1.98.31.76-1.99zm2.89 3.07.76 1.69h1.22l.61-2.15zm21.77-15.96-.61 1.23 1.67 1.38 1.22-1.38zm8.53-9.2-1.83 1.23 1.37 2.15h1.83zm.76 5.37-1.22 1.38.91 1.38 1.67.31.15-2.92zm44.76-33.75.3 2.61 1.67.61.3-2.3zm2.13 5.52-.15 3.22 1.22.61 1.07-2.15zm.31 6.29-1.07 1.07 1.22 1.07 1.52-1.07zm-286.2-115.55-1.36 1.37 2.44 1.37.27-1.91zm7.33-.82-1.63 1.09 1.36 1.09 2.17-.55zm1.08 3.83-.81 2.19 1.08 1.37 1.36-1.09zm6.51 4.37-.54 1.37.81.82 2.17-1.37zm20.62 12.02-1.08 1.37 1.08 1.37 1.63-.82zm7.44 17.31-1.75 1.01.81.82zm-6.08.19-2.17.55 1.08 1.64h1.63zm-5.16-1.64-1.36 1.37 1.9 1.64 1.08-2.46zm-16.82 38.26-1.9 1.09 1.36 1.09 1.63-.82zm4.67 2.2-1.24 1.1.88 1.63 2.12-.95zm-2.71 3.09-1.59.95 1.71 2.29 1.35-.71zM10 248.7l-.14 2.33 2.04 1.37 1.22-1.09zm5.29 3.43-1.9 1.37 1.63 2.05 1.9-1.64zm3.81 3.28-1.63 2.19.54 1.37 2.31-1.09zm2.71 4.24-.95 5.47.95 2.05 3.12-.96 1.63-2.74-3.4-3.15zm5.44 143.03-1.9-.14-.14 1.78 1.49.96 1.77-1.09zm6.52 1.92-2.72 1.78 2.04 2.46 1.77-.41.95-1.23zM276.6 283.37l-1.5.62.53 1.33 1.76-1.15-.35-.36zm2.47 1.51-.88 1.87 1.06 1.42 1.32-1.15zm3 5.15-1.06.98.79 1.6 1.5-.44zm-.09 4-.71 1.51 1.15 1.24 1.5-.8zm.09 3.82-1.23.89.97 1.78 1.59-.89zm-1.5 3.46-1.15 1.15.44.71h1.41l.44-1.16zm1.67 3.47-1.06.98-1.15.18v1.42l2.12 1.95.88-1.42.53-1.6-.18-1.33zm-11.19-23.72-2.64-.89-2.12 1.33 1.06 1.24 3.61.53zm-20.18-5.68-1.67 1.71 1.91.78.28 2.39-4.23.37.43 2.3 1.23.09.71-1.06 4.94.16.89 1.71 1.14-1.34 3.33-.9 2.93.62.34-1.77-5.28-3.45-3.42-1.28z"/><path d="m263.11 280.44-5.29-3.46-2.5-.85-.84 6 .88 1.69 1.15-1.33 3.35-.89 2.91.62zm-12.25-5.06 3.44.36-.41 4.22-.34 2.22-4.01-.22-.71 1.07-1.23-.09-.44-2.31 4.23-.35-.26-2.4-1.94-.8zm57.09 232.8-2.63-.29-2.62 1.76 1.9 2.06zm2.62-1.32-.87 2.79-2.48 2.2.15.73 4.23-1.62 1.75-2.2zm95.79-389.55-1.96-1.11-2.64 1.67-2.27 2.1.06 1.17 2.94.37-.18 2.1-1.04 1.05.25.68 2.94.19v3.4l4.23.74 2.51 1.42 2.82.12 4.84-2.41 3.74-4.94.06-3.34-2.27-1.92-1.9-1.61-.86.62-1.29 1.67-1.47-.19-1.47-1.61-1.9.18-2.76 2.29-1.66 1.79-.92-.8-.06-1.98.92-.62zm81.9-63.35-1.65-1.66-3.66 1.78h-6.72L475.17 58l3.77 3.33 1.65-.24 2.36-4.04 2 1.43-1.42 2.85-.71 4.16 1.65 2.61 3.54-5.94 4.6-5.59-1.77-1.54zm2-7.13-2.95 2.73 1.77 2.73h3.18l1.3 1.78 3.89 2.02 4.48-2.61 3.07-2.61-1.06-2.14-3.07-1.78-2.24 2.02-1.53-1.9-1.18.12-1.53 3.33-2.24-2.26-.24-1.54zm6.72 12.24-2.36 2.14-2 1.54.94 1.66 1.89.59 3.07-1.43 1.42-1.78-1.3-2.14zm50.84-20.28 1.72.69-1.21 2.08v2.95l-2.58 1.56H543l-1.55-1.91.17-2.08 1.21-1.56h2.41zm6.54-1.91v2.08l1.72 1.39 2.41-.17 2.07-1.91v-1.39h-1.89l-1.55.52-1.21-1.39zm9.82.18 1.21 2.6 2.41.17 1.72-.69-.86-2.43-2.24-.52zm9.81-3.47-1.89-.35-1.72 1.74.86 1.56.52 2.43 2.24-1.73.52-1.91zm10.5 18.39-.52 2.43-3.96 3.47-8.44 1.91-6.89 11.45-1.21 3.3 6.89 1.74 1.03-4.16 2.07-6.42 5.34-2.78 4.48-3.47 3.27-1.39h1.72v-4.68zm-22.21 25.33 4.65.52 1.55 5.38 3.96 4.16-1.38 2.78h-2.41l-2.24-2.6-4.99-.17-2.07-2.78v-1.91l3.1-.87zm72.67-59.16-2.24-1.39h-2.58l-.52 1.56-2.75 1.56-2.07.69-.34 2.08 4.82.35zm5.33.52-1.21 2.6-2.41-.17-3.79 2.78-1.03 3.47h2.41l1.38-2.26 3.27 2.43 3.1-1.39 2.24-1.91-.86-2.95-1.21-2.08zm5 1.91 1.21 4.86 1.89 4.51 2.07-3.64 3.96-.87v-2.6l-2.58-1.91zm94.48-7.78 2.69 2.26 1.91-.79.56-3.17L741 8.39l-2.58 1.7-6.28.57v2.83l-6.62.11v4.63l7.74 5.76 2.02-1.47-.45-4.07 4.94-1.24-1.01-1.92-1.79-1.81zm7.18-2.71 1.79 3.39 6.96-.79 1.91-2.49-.45-2.15-1.91-.79-1.79 1.36-5.16 1.13zm-.45 13.22-3.48-.9-2.01 2.15-.9 2.94 4.71-.45 3.59-1.81zm90.19-19.55-2.92-.9-3.36 1.24-1.68 2.49 2.13 2.83 5.61-2.49 1.12-1.24zM680.54 308.05l.25 2.72.25 1.98-1.47.25.74 4.45 2.21 1.24 3.43-1.98-.98-4.69.25-1.73-3.19-2.96zm-459.69-41.13v1.27l5.32.1 2.51-1.46.39 1.07 5.22 1.27 4.64 4.19-1.06 1.46.19 1.66 3.87.97 3.87-1.75 1.74-1.75-2.51-1.27-12.95-7.6-4.54-.49zm18.76-7.79-1.26-.39-.1 2.43 1.55 1.56 1.06-1.56zm2.51 3.8-1.74.97 1.64 2.34.87-1.17zm5.61 1.75-1.84-.1.19 1.17 1.35 1.95 1.16-1.27zm-.87-2.33-3-1.27-.58-3.02 1.16-.49 1.16 2.34 1.16.88zm-2.9-6.14-1.55-.39-.29-1.95-1.64-.58 1.06-1.07 1.93.68 1.45.88zm-5.03 23.38-3.48.88v.97l2.03 1.17h2.13l1.35-1.56zm593 59.75-4.17.47-2.68 1.96 1.11 2.24 4.54.84v.84l-2.87 2.33 1.39 4.85 1.39.09 1.2-4.76h2.22l.93 4.66 10.83 8.96.28 7 3.7 4.01 1.67-.09.37-24.72-6.29-4.38-5.93 4.01-2.13 1.31-3.52-2.24-.09-7.09zM93.11 44.89l-8.39 1.99 1.73 9.45 9.13 2.49.49 1.99-13.57 4.23-7.65 12.68 2.71 13.43L82 94.13l3.46-3.23.99 1.99-4.2 4.97-16.29 7.46-10.37 2.49-.25 3.73 23.94-6.96 9.87-2.74 9.13-11.19 10.12-6.71-5.18 8.7 5.68.75 9.63-4.23 1.73 6.96 6.66 1.49 6.91 6.71.49 4.97-.99 1.24 1.23 4.72h1.73l.25-7.96h1.97l.49 19.64 4.94-4.23-3.46-20.39h-5.18l-5.68-7.21 27.89-47.25-27.64-21.63-30.85 5.97-1.23 9.45 6.66 3.98-2.47 6.47zm101.86 293.29-.62 2.75-1.15 1.16.79 1.42 2.03-.8.97-1.69-.62-1.78zm8.76-302.29.22 4.02-7.98 8.27 2 6.7 5.76-1.56 3.33-4.92 8.42-3.13 6.87-.45-5.32-5.81-2.66 2.01-2-.67-1.11-2.46-2.44-2.46zm10.42-11.84-1.77 3.13 8.65 3.13 3.1-4.69 1.33 3.13h2.22l4.21-4.69-5.1-1.34-2-1.56-2.66 2.68zm15.08 6.26-6.87 2.9v2.23l8.87 3.35-2 2.23 1.33 2.9 5.54-2.46h4.66l2.22 3.57 3.77-3.8-.89-3.58-3.1 1.12-.44-4.47 1.55-2.68h-1.55l-2.44 1.56-1.11.89.67 3.13-1.77 1.34-2.66-.22-.67-4.02zm9.09-6.93-.67 2.23 4.21 2.01 3.1-1.79-.22-1.34zm3.32-3.8-3.1 1.12.22 1.56 6.87-.45-.22-1.56zm14.86 3.8-.44 1.56-1.11 1.56v2.23l4.21-.67 4.43 3.8h1.55v-3.8l-4.43-4.92zm11.31 4.47 1.77 2.01-1.55 2.68 1.11 2.9 4.88-2.68v-2.01l-2.88-3.35zm6.43-5.14.22 3.57h5.99l1.55 1.34-.22 1.56-5.32.67 3.77 5.14 5.1.89 7.09-3.13-10.2-15.42-3.1 2.01.22 2.68-3.55-1.34zm-51.66 25.25-8.42 2.23-4.88 4.25.44 4.69 8.87 2.68-2 4.47-6.43-4.02-1.77 3.35 4.21 2.9-.22 4.69 6.43 1.79 7.76-.45 1.33-2.46 5.76 6.48 3.99-1.34.67-4.47 2.88 2.01.44-4.47-3.55-2.23.22-14.07-3.1-2.46-3.32 4.47zm27.05 9.83-2.88-1.34-1.55 2.01 3.1 4.92.22 4.69 6.65-4.02v-5.81l2.44-2.46-2.44-1.79h-3.99zm14.19-2.01-4.66 3.8 1.11 4.69h2.88l1.33-2.46 2 2.01 2-.22 5.32-4.47zm-.45-7.38-1.11 2.23 4.88 1.79 1.33-2.01zm-2.88-8.49-4.88.67-2.88 2.68 5.32.22-1.55 4.02 1.11 1.79 1.55-.22 3.77-6.03zm8.43-1.56-2.66.89.44 3.57 4.43 2.9.22 2.23-1.33 1.34.67 4.47 17.07 5.58 4.66 1.56 4.66-4.02-5.54-4.47-5.1 1.34-7.09-.67-2.66-2.68-.67-7.37-4.43-2.23zm13.96 23.24-4.88-.45-5.76 2.23-3.1 4.24.89 11.62 9.53.45 9.09 4.47 6.43 7.37 4.88-.22-1.33 6.92-4.43 7.37-4.88 2.23-3.55-.67-1.77-1.56-2.66 3.57 1.11 3.57 3.77.22 4.66-2.23 3.99 10.28 9.98 6.48 6.87-8.71-5.76-9.38 3.33-3.8 4.66 7.82 8.42-7.37-1.55-3.35-5.76 1.79-3.99-10.95 3.77-6.25-7.54-8.04-4.21 2.9-3.99-8.71-8.42 1.12-2.22-10.5-6.87 4.69-.67 5.81h-3.77l.44-5.14z"/><path d="m292.86 65.61-1.77 1.79 1.55 2.46 7.32.89-4.66-4.92zm-7.09-25.25v2.01l-4.88 1.12 1.33 2.23 5.54 2.23 6.21.67 4.43 3.13 4.43-2.46-3.1-3.13h3.99l2.44-2.68 5.99-.89v-1.34l-3.33-2.23.44-2.46 9.31 1.56 13.75-5.36-5.1-1.56 1.33-1.79h10.64l1.77-1.79-21.51-7.6-5.1-1.79-5.54 4.02-6.21-5.14-3.33-.22-.67 4.25-4.21-3.8-4.88 1.56.89 2.46 7.32 1.56-.44 3.57 3.99 2.46 9.76-2.46.22 3.35-7.98 3.8-4.88-3.8-4.43.45 4.43 6.26-2.22 1.12-3.33-2.9-2.44 1.56 2.22 4.24h3.77l-.89 4.02-3.1-.45-3.99-4.25zm-19.76 61.49-4.23 5.32-.26 5.86 3.7-2.13h4.49l3.17 2.93 2.91-2.4zm51.51 69.2-10.57 10.12 1.06 2.4 12.94 4.79 1.85-3.19-1.06-5.32-4.23.53-2.38-2.66 3.96-3.99z"/><path d="m158.22 48.66 1.99 3.01 1 4.02 4.98 1.25 3.49-3.76 2.99 1.51 8.47.75 5.98-2.51 1 8.28h3.49V57.7l3.49.25 8.72 10.29 5.73 3.51-2.99 4.77 1.25 1.25L219 80.03l.25 5.02 2.99.5.75-7.53 4.73-1.25 3.49 5.27 7.47 3.51 3.74.75 2.49-3.01.25-4.77 4.48-2.76 1.49 4.02-3.99 7.03.5 3.51 2.24-3.51 4.48-4.02.25-5.27-2.49-4.02.75-3.26 5.98-3.01 2.74 2.01.5 17.57 4.23-3.76 2.49 1.51-3.49 6.02 4.48 1 6.48-10.04 5.48 5.77-2.24 10.29-5.48 3.01-5.23-2.51-9.46 2.01 1 3.26-2.49 4.02-7.72 1.76-8.72 6.78-7.72 10.29-1 3.26 5.23 2.01 1.99 5.02 7.22 7.28 11.46 5.02-2.49 11.54-.25 3.26 2.99 2.01 3.99-5.27.5-10.04 6.23-.25 2.99-5.77.5-8.78 7.97-15.56 9.96 3.51 5.23 7.28-2.24 7.28 3.99 2.26 9.71-6.53 2.74 17.82 8.97 10.79.25 5.52-9.96 2.51-4.73 5.02-9.96-2.26-4.98-.25-8.72 6.78 5.23-1.25 6.48-1.25 1.25 1.51-1.74 5.52.25 5.02 2.99 2.01 2.99-.75 1.5-2.26h1.99l-3.24 6.02-6.23.25-2.74 4.02h-3.49l-1-3.01 4.98-5.02-5.98 2.01-.27-8.53-1.72-1-5.23 2.26-.5 4.27h-11.96l-10.21 7.03-13.7 4.52-1.49-2.01 6.9-10.3-3.92-3.77-2.49-4.78-5.07-3.87-5.44-.45-9.75-6.83-70.71-11.62-1.17-4.79-6.48-6.02v-5.02l1-4.52-.5-2.51-2.49-2.51-.5-4.02 6.48-4.52-3.99-21.58-5.48-.25-4.98-6.53z"/><path d="m148.76 158.34-1 4.02-3.49-2.26h-1.74l-1 4.27-12.21 27.36 3.24 23.84 3.99 2.01.75 6.53h8.22l7.97 6.02 15.69 1.51 1.74 8.03 2.49 1.76 3.49-3.51 2.74 1.25 2.49 11.54 4.23 2.76 3.49-6.53 10.71-7.78 6.97 3.26 5.98.5.25-3.76 12.45.25 2.49 2.76.5 6.27-1.49 3.51 1.74 6.02h3.74l3.74-5.77-1.49-2.76-1.49-6.02 2.24-6.78 10.21-8.78 7.72-2.26-1-7.28 10.71-11.55 10.71-1.76-1.74-6.01 10.46-6.02v-8.03l-1-.5-3.74 1.25-.5 4.92-12.43.15-9.74 6.47-15.29 5-2.44-2.99 6.94-10.5-3.43-3.27-2.33-4.44-4.83-3.88-5.25-.44-9.92-6.77zm-14.93-29.93-1.7 3.26.59 2.31 1.11.69-.26.94-1.19.34.34 3.43 1.28 1.29 1.02-1.11-1.28-3.34.76-2.66 1.87-2.49-1.36-2.31zm5.62 19.54-1.53.6 2.81 3.26.68 3.86 2.81 3 2.38-.43v-3.94l-2.89-1.8zm55.43 143.57 5.93 4.34 5.98-7.43-1.02-1.54-2.04-.07v-4.35l-1.53-.93-4.63 1.38 1.77 4.08zm12.67-2.74 9.24-.35 2.74 3.26-1.71-.39-3.29.14-4.3 4.04-1.84 4.09-1.21-.64-.01-4.48-2.66-1.78z"/><path d="m201.65 296.27 4.7 2.34-.07-3.71-2.41-1.47zm16.09-4.16 2.19.44.07 4.49-2.55 7.28-6.87-.68-1.53-3.51 2.04-4.26 3.87-3.6zm-.36 12.87 1.39 2.72 1.13 1.5-1.52 4.51-2.9-2.04-4.74-4.34v-2.87zm3.21 4.63-1.46 4.56 4.82 1.25 2.99.59.51-3.53 3.21-1.62 2.85 1.47 1.12 1.79 1.36-.16 1.07-3.25-3.56-1.47-2.7-1.47-2.7 1.84-3.21 1.62-3.28-1.32z"/><path d="m253.73 299.78-2.06-.21-13.62 11.23-1.44 3.95-1.86.21.83 8.73-4.75 11.65 5.16 4.37 6.61.42 4.54 6.66 6.6.21-.21 4.99H256l2.68-9.15-2.48-3.12.62-5.82 5.16-.42-.62-13.52-11.56-3.74-2.68-7.28z"/><path d="m250.46 305.92.44 2.59 3.25 1.03.74-4.77 3.43-3.55 3.43 4.02 7.89 2.15 6.68-1.4 4.55 5.61 3.43 2.15-3.76 5.73 1.26 4.34-2.15 2.66-2.23 1.87-4.83-2.43-1.11 1.12v3.46l3.53 1.68-5.2 5.62-3.43-.28-3.45-3.79-.73-14.26-11.78-4.02-2.14-6.27z"/><path d="m285.05 314.13 7.22 6.54-2.87 3.32-.23 1.97 3.77 3.89-.09 3.74-6.56 2.5-3.93-5.31.84-6.38-1.68-4.75z"/><path d="m293.13 321.14 2.04 1.87 3.16-1.96 2.88.09-.37 1.12-1.21 2.52-.19 6.27-5.75 2.34.28-4.02-3.71-3.46.19-1.78zm9 .66 5.85 3.65-3.06 6.08-1.11 1.4-3.25-1.87.09-6.55zm-71.93 14.05-4.73 2.94-.34 4.36-.95 1.43 2.98 2.86-1.29 1.41.3 3.6 5.33 1.27 8.07-9.55-.02-3.33-3.87-.25z"/><path d="m225.03 349.52-1.94 1.96.13 3.13 16.94 30.88 17.59 11.34 2.72-4.56.65-10.03-1.42-6.25-4.79-8.08-2.85.91-1.29 1.43-5.69-6.52 1.42-7.69 6.6-4.3-.52-4.04-6.72-.26-3.49-5.86-1.94-.65.13 3.52-8.66 10.29-6.47-1.56z"/><path d="m258.71 372.79 8.23-3.59 2.72.26 1.81 7.56 12.54 4.17 2.07 6.39 5.17.65 2.2 5.47-1.55 4.95-8.41.65-3.1 7.95-6.6-.13-2.07-.39-3.81 3.7-1.88-.18-6.47-14.99 1.79-2.68.63-10.6-1.6-6.31z"/><path d="m291.76 399.51 2.2 2.4-.26 5.08 6.34-.39 4.79 6.13-.39 5.47-3.1 4.69-6.34.26-.26-2.61 1.81-4.3-6.21-3.91h-5.17l-3.88-4.17 2.82-8.06zm8.6 32.42-2.05 2.19.85 11.78 6.44 1.87 8.19-8.21z"/><path d="m305.47 418.2 1.94 1.82-7.37 10.95-2.59 2.87.9 12.51 5.69 6.91-4.78 8.34-3.62 1.56h-4.14l1.16 6.51-6.47 2.22 1.55 5.47-3.88 12.38 4.79 3.91-2.59 6.38-4.4 6.91 2.33 4.82-5.69.91-4.66-5.73-.78-17.85-7.24-30.32 2.19-10.6-4.66-13.55 3.1-17.59 2.85-3.39-.7-2.57 3.66-3.34 8.16.56 4.56 4.87 5.27.09 5.4 3.3-1.59 3.72.38 3.76 7.65-.36zm-20.43 95.9-4.27 9.38 7.37.78.13-6.25zm3.88 4.69.26 5.73 4.4-.39 3.75-2.48-6.34-1.3z"/><path d="m283.59 512.63-3.21 3.55-.39 4.17-6.21-3.52-6.6-9.51-1.94-3.39 2.72-3.52-.26-4.43-3.1-1.3-2.46-1.82.52-2.48 3.23-.91.65-14.33-5.04-2.87-3.29-74.59.85-1.48 6.44 14.85 2.06.04.67 2.37-2.74 3.32-3.15 17.87 4.48 13.76-2.07 10.42 7.3 30.64.77 17.92 5.23 6.05z"/><path d="m262.28 475.14-1.29 1.95.65 3.39 1.29.13.65-4.3zm51.96-36.29 6.25-12.02.23-10.1 11.66-7.52h6.53l5.13-8.69.93-16.68-2.1-4.46 12.36-11.28.47-12.45-16.79-8.22-20.28-6.34-9.56-.94 2.57-5.4-.7-8.22-2.09-.69-3.09 6.14-1.62 2.03-4.16-1.84-13.99 4.93-4.66-5.87.75-6.13-4.4 4.48-4.86-2.62-.49.69.01 2.13 4.19 2.25-6.29 6.63-3.97-.04-4.02-4.09-4.55.14-.56 4.86 2.61 3.17-3.08 9.87-3.6.28-5.73 3.62-1.4 7.11 4.97 5.32.91-1.03 3.49-.94 2.98 5.02 8.53-3.66 3.31.19 2.28 8.07 12.17 3.86 2.1 6.44 5.18.62 2.47 6.15-1.67 5.47 2.18 2.86-.32 4.26 5.84-.55 5.35 6.76-.42 4.75 3.17 2.68-7.6 11.51zM204.56 282.4l-.05 3.65h.84l2.86-5.34h-1.94zM817.97 72.93l1.76 6.08 3.52 1.01 3.52-5.57-2.01-3.8.75-3.29h5.28l-1.26 2.53.5 9.12-7.54 18.74.75 4.05-.25 6.84 14.07 20.51 2.76.76.25-16.71 2.76-2.53-3.02-6.58 2.51-2.79-5.53-7.34-3.02.25-1-12.15 7.79-2.03.5-3.55 4.02-1.01 2.26 2.03 2.76-11.14 4.77-8.1 3.77-2.03 3.27.25v-3.8l-5.28-1.01-7.29-6.08 3.52-4.05-3.02-6.84 2.51-2.53 3.02 4.05 7.54 2.79 8.29.76 1.01-3.54-4.27-4.3 4.77-6.58-10.81-3.8-2.76 5.57-3.52-4.56-19.85-6.84-18.85 3.29-2.76 1.52v1.52l4.02 2.03-.5 4.81-7.29-3.04-16.08 6.33-2.76-5.82h-11.06l-5.03 5.32-17.84-4.05-16.33 3.29-2.01 5.06 2.51.76-.25 3.8-15.83 1.77 1.01 5.06-14.58-2.53 3.52-6.58-14.83-.76 1.26 6.84-4.77 2.28-4.02-3.8-16.33 2.79-6.28 5.82-.25 3.54-4.02.25-.5-4.05 12.82-11.14v-7.6l-8.29-2.28-10.81 3.54-4.52-4.56h-2.01l-2.51 5.06 2.01 2.28-14.33 7.85-12.31 9.37-7.54 10.38v4.3l8.04 3.29-4.02 3.04-8.54-3.04-3.52 3.04-5.28-6.08-1.01 2.28 5.78 18.23 1.51.51 4.02-2.03 2.01 1.52v3.29l-3.77-1.52-2.26 1.77 1.51 3.29-1.26 8.61-7.79.76-.5-2.79 4.52-2.79 1.01-7.6-5.03-6.58-1.76-11.39-8.04-1.27-.75 4.05 1.51 2.03-3.27 2.79 1.26 7.6 4.77 2.03 1.01 5.57-4.78-3.04-12.31-2.28-1.51 4.05-9.8 3.54-1.51-2.53-12.82 7.09-.25 4.81-5.03.76 1.51-3.54v-3.54l-5.03-1.77-3.27 1.27 2.76 5.32 2.01 3.54v2.79l-3.77-.76-.75-.76-3.77 4.05 2.01 3.54-8.54-.25 2.76 3.55-.75 1.52h-4.52l-3.27-2.28-.75-6.33-5.28-2.03v-2.53l11.06 2.28 6.03.51 2.51-3.8-2.26-4.05-16.08-6.33-5.55 1.38-1.9 1.63.59 3.75 2.36.41-.55 5.9 7.28 17.1-5.26 8.34-.36 1.88 2.67 1.88-2.41 1.59-1.6.03.3 7.35 2.21 3.13.03 3.04 2.83.26 4.33 1.65 4.58 6.3.05 1.66-1.49 2.55 3.42-.19 3.33.96 4.5 6.37 11.08 1.01-.48 7.58-3.82 3.27.79 1.28-3.77 4.05-1 3.8 2.26 3.29 7.29 2.53 3.02-1.77 19.35 7.34.75-2.03-4.02-3.8v-4.81l-2.51-.76.5-4.05 4.02-4.81-7.21-5.4.5-7.51 7.71-5.07 9.05.51 1.51 2.79 9.3.51 6.79-3.8-3.52-3.8.75-7.09 17.59-8.61 13.53 6.1 4.52-4.05 13.32 12.66 10.05-1.01 3.52 3.54 9.55 1.01 6.28-8.61 8.04 3.55 4.27.76 4.27-3.8-3.77-2.53 3.27-5.06 9.3 3.04 2.01 4.05 4.02.25 2.51-1.77 6.79-.25.75 1.77 7.79.51 5.28-5.57 10.81 1.27 3.27-1.27 1-6.08-3.27-7.34 3.27-2.79h10.3l9.8 11.65 12.56 7.09h3.77l.5-3.04 4.52-2.79.5 16.46-4.02.25v4.05l2.26 2.79-.42 3.62 1.67.69 1.01-2.53 1.51.51 1 1.01 4.52-1.01 4.52-13.17.5-16.46-5.78-13.17-7.29-8.86-3.52.51v2.79l-8.54-3.29 3.27-7.09 2.76-18.74 11.56-3.54 5.53-3.54h6.03L805.86 96l1.51 2.53 5.28-5.57 3.02.25-.5-3.29-4.78-1.01 3.27-11.9z"/><path d="m670.4 170.07-3.46 8.7-4.77-.25-5.03 11.01 4.27 5.44-8.8 12.15-4.52-.76-3.02 3.8.75 2.28 3.52.25 1.76 4.05 3.52.76 10.81 13.93v7.09l5.28 3.29 5.78-1.01 7.29 4.3 8.8 2.53 4.27-.51 4.78-.51 10.05-6.58 3.27.51 1.25 2.97 2.77.83 3.77 5.57-2.51 5.57 1.51 3.8 4.27 1.52.75 4.56 5.03.51.75-2.28 7.29-3.8 4.52.25 5.28 5.82 3.52-1.52 2.26.25 1.01 2.79 1.76.25 2.51-3.54 10.05-3.8 9.05-10.89 3.02-10.38-.25-6.84-3.77-.76 2.26-2.53-.5-4.05-9.55-9.62v-4.81l2.76-3.54 2.76-1.27.25-2.79h-7.04l-1.26 3.8-3.27-.76-4.02-4.3 2.51-6.58 3.52-3.8 3.27.25-.5 5.82 1.76 1.52 4.27-4.3 1.51-.25-.5-3.29 4.02-4.81 3.02.25 1.76-5.57 2.06-1.09.21-3.47-2-2.1-.17-5.48 3.85-.25-.25-14.13-2.7 1.62-1.01 3.62-4.51-.01-13.07-7.35-9.44-11.38-9.58-.1-2.44 2.12 3.1 7.1-1.08 6.66-3.86 1.6-2.17-.17-.16 6.59 2.26.51 4.02-1.77 5.28 2.53v2.53l-3.77.25-3.02 6.58-2.76.25-9.8 12.91-10.3 4.56-7.04.51-4.77-3.29-6.79 3.55-7.29-2.28-1.76-4.81-12.31-.76-6.53-10.63h-2.76l-2.22-4.93z"/><path d="m673.8 170.17 5.82-7.72 6.99 3.23 4.75 1.27 5.82-5.34-3.95-2.91 2.6-3.67 7.76 2.74 2.69 4.41 4.86.13 2.54-1.89 5.23-.21 1.14 1.94 8.69.44 5.5-5.61 7.61.8-.44 7.64 3.33.76 4.09-1.86 4.33 2.14-.1 1.08-3.14.09-3.27 6.86-2.54.25-9.88 12.91-10.09 4.45-6.31.49-5.24-3.38-6.7 3.58-6.6-2.05-1.87-4.79-12.5-.88-6.4-10.85-3.11-.2zm104.48 24.1 1.84.77.56 6.44 3.65.21 3.44-4.03-1.19-1.06.14-4.32 3.16-3.82-1.61-2.9 1.05-1.2.58-3-1.83-.83-1.56.79-1.93 5.86-3.12-.27-3.61 4.26zm10.06 3.93 6.18 5.04 1.05 4.88-.21 2.62-3.02 3.4-2.6.14-2.95-6.37-1.12-3.04 1.19-.92-.28-1.27-1.47-.66zm-211.65-9.58 4.1-1.75 4.58-.16.32 7h-2.68l-2.05 3.34 2.68 4.45 3.95 2.23.36 2.55 1.45-.48 1.34-1.59 2.21.48 1.11 2.23h2.84v-2.86l-1.74-5.09-.79-4.13 5.05-2.23 6.79 1.11 4.26 4.29 9.63-.95 5.37 7.63 6.31.32 1.74-2.86 2.21-.48.32-3.18 3.31-.16 1.74 2.07 1.74-4.13 14.99 2.07 2.52-3.34-4.26-5.25 5.68-12.4 4.58.32 3.16-7.63-6.31-.64-3.63-3.5-10 1.16-12.88-12.45-4.54 4.03-13.77-6.25-16.89 8.27-.47 5.88 3.95 4.61-7.7 4.35-9.99-.22-2.09-3.07-7.83-.43-7.42 4.77-.16 6.52z"/><path d="m593.85 207.59-.62 2.63h-4.15v3.56l4.46 2.94-1.38 4.03v1.86l1.85.31 2.46-3.25 5.54-1.24 11.84 4.49.15 3.25 6.61.62 7.38-7.75-.92-2.48-4.92-1.08-13.84-8.99-.62-3.25h-5.23l-2.31 4.34h-2.31z"/><path d="m628.92 219.06 3.08.16v-5.27l-2.92-1.7 4.92-6.2h2l2 2.33 5.23-2.01-7.23-2.48-.28-1.5-1.72.42-1.69 2.94-7.29-.24-5.35-7.57-9.4.93-4.48-4.44-6.2-1.05-4.5 1.83 2.61 8.68.03 2.92 1.9.04 2.33-4.44 6.2.08.92 3.41 13.29 8.82 5.14 1.18z"/><path d="m630.19 211.84 4.11-5.1h1.55l.54 1.14-1.9 1.38v1.14l1.25.9 6.01.36 1.96-.84.89.18.6 1.92 3.57.36 1.79 3.78-.54 1.14-.71.06-.71-1.44-1.55-.12-2.68.36-.18 2.52-2.68-.18.12-3.18-1.96-1.92-2.98 2.46.06 1.62-2.62.9h-1.55l.12-5.58z"/><path d="m636.81 199.21-.31 2.53.25 1.56 8.7 2.92-7.64 3.08-.87-.72-1.65 1.06.08.58.88.4 5.36.14 2.72-.82 3.49-4.4 4.37.76 5.27-7.3-14.1-1.92-1.95 4.73-2.46-2.64zm-22.69 27.84 1.59 12.46 3.96.87.37 2.24-2.84 2.37 5.29 4.27 10.28-3.7.82-4.38 6.47-4.04 2.48-9.36 1.85-1.99-1.92-3.34 6.26-3.87-.8-1.12-2.89.18-.26 2.66-3.88-.04-.07-3.55-1.25-1.49-2.1 1.91.06 1.75-3.17 1.2-5.85-.37-7.6 7.96z"/><path d="m623.13 249.84 2.6 3.86-.25 1.99-3.46 1.37-.25 3.24h3.96l1.36-1.12h7.54l6.8 5.98.87-2.87h5.07l.12-3.61-5.19-4.98 1.11-2.74 5.32-.37 7.17-14.95-3.96-3.11-1.48-5.23 9.64-.87-5.69-8.1-3.03-.82-1.24 1.5-.93.07-5.69 3.61 1.86 3.12-2.1 2.24-2.6 9.59-6.43 4.11-.87 4.49z"/><path d="m670.98 313.01 4.58-2.24 2.72-9.84-.12-12.08 15.58-16.82v-3.99l3.21-1.25-.12-4.61-3.46-6.73 1.98-3.61 4.33 3.99 5.56.25v2.24l-1.73 1.87.37 1 2.97.12.62 3.36h.87l2.23-3.99 1.11-10.46 3.71-2.62.12-3.61-1.48-2.87-2.35-.12-9.2 6.08.58 3.91-6.46-.02-2.28-2.79-1.24.16.42 3.88-13.97-1-8.66-3.86-.46-4.75-5.77-3.58-.07-7.37-3.96-4.53-9.1.87.99 3.96 4.46 3.61-7.71 15.78-5.16.39-.85 1.9 5.08 4.7-.25 4.75-5.19-.08-.56 2.36 4.31-.19.12 1.87-3.09 1.62 1.98 3.74 3.83 1.25 2.35-1.74 1.11-3.11 1.36-.62 1.61 1.62-.49 3.99-1.11 1.87.25 3.24z"/><path d="m671.19 242.56.46 4.27 8.08 3.66 12.95.96-.49-3.13-8.65-2.38-7.34-4.37zm24.21 5.52 1.55 2.12 5.24.04-.53-2.9zm.17 5.03-1.31 2.37 3.4 6.46.1 5.04.62 1.35 3.99.07 2.26-2.17 1.64.99.33 3.07 1.31-.82.08-3.92-1.1-.13-.69-3.33-2.78-.1-.69-1.85 1.7-2.27.03-1.12h-4.94z"/><path d="m729.44 303.65-2.77-4.44 2.01-2.82-1.9-3.49-1.79-.34-.34-5.86-2.68-5.19-.78 1.24-1.79 3.04-2.24.34-1.12-1.47-.56-3.95-1.68-3.16-6.84-6.45 1.68-1.11.31-4.67 2.5-4.2 1.08-10.45 3.62-2.47.12-3.81 2.17.72 3.42 4.95-2.54 5.44 1.71 4.27 4.23 1.66.77 4.65 5.68.88-1.57 2.71-7.16 2.82-.78 4.62 5.26 6.76.22 3.61-1.23 1.24.11 1.13 3.92 5.75.11 5.97z"/><path d="m730.03 270.47 3.24 4.17v5.07l1.12.56 5.15-2.48 1.01.34 6.15 7.1-.22 4.85-2.01-.34-1.79-1.13-1.34.11-2.35 3.94.45 2.14 1.9 1.01-.11 2.37-1.34.68-4.59-3.16v-2.82l-1.9-.11-.78 1.24-.4 12.62 2.97 5.42 5.26 5.07-.22 1.47-2.8-.11-2.57-3.83h-2.69l-3.36-2.71-1.01-2.82 1.45-2.37.5-2.14 1.58-2.8-.07-6.44-3.86-5.58-.16-.68 1.25-1.26-.29-4.43-5.14-6.51.6-3.75z"/><path d="m732.71 315.45 2.01 4.51.45 5.86 2.69 4.17 6.49 3.94 2.46.23-.45-4.06-2.13-5.18-3.12-6.63-.26 1.16-3.76-.17-2.7-3.88zm7.77-15.98 4.09 4.37 7.61-5.64.67-8.9-3.93 2.71-2.04-1.14-2.77-.37-1.55-1.09-.75.04-2.03 3.33.33 1.54 2.06 1.15-.25 3.13z"/><path d="m735.47 262.93-2.42 1.23-2.01 5.86 3.36 4.28-.56 4.73.56.23 5.59-2.71 7.5 8.38-.18 5.28 1.63.88 4.03-3.27-.33-2.59-11.63-11.05.11-1.69 1.45-1.01-1.01-2.82-4.81-.79z"/><path d="m745.06 304.45 1.19 1.87.22 2.14 3.13.34 3.8-5.07 3.58-1.01 1.9-5.18-.89-8.34-3.69-5.07-3.89-3.11-4.95-8.5 3.55-5.94-5.08-5.83-4.07-.18-3.66 1.97 1.09 4.71 4.88.86 1.31 3.63-1.72 1.12.11.9 11.45 11.2.45 3.29-.69 10.4zm-189.6-100.29 3.27 4.27 4.08 1.88 2.51-.01 4.31-1.17 1.08-1.69-12.75-4.77zm14.26 5.73 4.8 6.26-1.41 1.65-3.4-.59-4.22-3.78.23-2.48zm1.69-2.17-1.01 1.72 4.71 6.18 1.64-.53 2.7 2.83 1.17-4.96 2.93.47-.12-1.42-4.82-4.22-.92 2.48z"/><path d="m569.65 217.95-1.22 1.27.12 2.01 1.52 2.13 5.39 5.9-.82 2.36h-.94l-.47 2.36 3.05 3.9 2.81.24 5.63 7.79 3.16.24 2.46 1.77.12 3.54 9.73 5.67h3.63l2.23-1.89 2.81-.12 1.64 3.78 10.51 1.46.31-3.86 3.48-1.26.16-1.38-2.77-3.78-6.17-4.96 3.24-2.95-.23-1.3-4.06-.63-1.72-13.7-.2-3.15-11.01-4.21-4.88 1.1-2.73 3.35-2.42-.16-.7.59-5.39-.35-6.8-4.96-2.53-2.77-1.16.28-2.09 2.39z"/><path d="m558.7 209.19-2.23 2.36-8.2-.24-4.92-2.95-4.8-.12-5.51 3.9-5.16.24-.47 2.95h-5.86l-2.34 2.13v1.18l1.41 1.18v1.3l-.59 1.54.59 1.3 1.88-.94 1.88 2.01-.47 1.42-.7.95 1.05 1.18 5.16 1.06 3.63-1.54v-2.24l1.76.35 4.22 2.48 4.57-.71 1.99-1.89 1.29.47v2.13h1.76l1.52-2.95 13.36-1.42 5.83-.71-1.54-2.02-.03-2.73 1.17-1.4-4.26-3.42.23-2.95h-2.34zm13.29 80.04 1.44 4.28v4.18l3.46 3.14 24.38-9.93.23-2.73-3.91-7.02-9.81 3.13-5.63 5.54-6.53-3.86zm26.39-8.39 7.39-4.26 1.31-6.25-1.62-.93.67-6.7 1.41-.82 1.51 2.37 8.99 4.7v2.61l-10.89 16.03-5.01.17z"/><path d="m594.01 264.94.87 3.48 9.86.87.69-7.14 1.9-1.04.52-2.61-3.11.87-3.46 5.23zm-1.38-5.92-.52 4.01 1.54 1.17 1.4-.13.52-5.05-1.21-.87zm-9.34-11.85-2.25-1.22-1.56 1.57.17 3.14 3.63 1.39z"/><path d="m584 253.24 7.01 9.77 2.26 1.8 1.01 4.38 10.79.85 1.22.64-1.21 5.4-7.09 4.18-10.37 3.14-5.53 5.4-6.57-3.83-3.98 3.48-5.54-9.05-3.8-1.74-1.38-2.09v-4.53l-13.83-16.72-.52-2.96h3.98l4.84-4.18.17-2.09-1.38-1.39 2.77-2.26 5.88.35 10.03 8.36 5.92-.27.38 1.46zm-37.33-24.11-.35 2.54 2.82 1.18-.12 7.04 2.82-.06 2.82-2.13 1.06-.18 6.4-5.09 1.29-7.39-12.79 1.3-1.35 2.96z"/><path d="m564.31 225.03-1.56 7.71-6.46 5.38.41 2.54 6.31.43 10.05 8.18 5.62-.16.15-1.89 2.06-2.21 2.88 1.63.38-.36-5.57-7.41-2.64-.16-3.51-4.51.7-3.32 1.07-.14.37-1.47-4.78-5.03zm-15.41 15.75-2.46 8.58-.11 1.31h3.87l4.33-3.82.11-1.45-1.77-1.81 3.17-2.63-.46-2.44-.87.2-2.64 1.89zm-2.7-8.34.06 1.95-.82 2.96 2.82.24.18-4.2zm-.88 5.62-1.58 5.03 2.05 6.03 2.35-8.81v-1.89zm-2.11-8.22 1.23.89-3.81 3.61-1.82-.06-1.35-.95.18-1.77 2.76-.18zm-27.75-127.7 2.02-1.48-.18-1.66-1.28-.74.18-2.03h1.1v-1.11l-4.77-1.29-7.15.74-.73 3.14-1.65-.55-1.1-1.85-3.49.18-.37 3.51-1.65.74-.92-1.85-7.34 5.91 1.47 1.66-2.75 1.29-6.24 12.38-2.2 1.48.18 1.11 2.2 1.11-.55 2.4-3.67-.19-1.1-1.29-2.38 2.77-1.47 1.11-.37 2.59-1.28.74-3.3.74-1.65 5.18 1.1 8.5 1.28 3.88 1.47 1.48 3.3-.18 4.77-4.62 1.83-3.14.55 4.62 3.12-5.54.18-15.53 2.54-1.6.76-8.57 7.7-11.09 3.67-1.29 1.65-2.03 5.5 1.29 2.75 1.66.92-4.62 4.59-2.77zm-69.34 46.94-1.83 2.77.73 1.11h4.22v1.85l-1.1 1.48.73 3.88 2.38 4.62 1.83 4.25 2.93 1.11 1.28 2.22-.18 2.03-1.83 1.11-.18.92 1.28.74-1.1 1.48-2.57 1.11-4.95-.55-7.71 3.51-2.57-1.29 7.34-4.25-.92-.55-3.85-.37 2.38-3.51.37-2.96 3.12-.37-.55-5.73-3.67-.18-1.1-1.29.18-4.25-2.2.18 2.2-7.39 4.04-2.96z"/><path d="m438.42 161.47-3.3.37-.18 2.96 2.2 1.48 2.38-.55.92-1.66z"/><path d="m439.51 166.55-.91 6-8.07 2.96h-2.57l-1.83-1.29v-1.11l4.04-2.59-1.1-2.22.18-3.14 3.49.18 1.6-3.76-.21 3.34 2.71 2.15zm58.21-61.97 1.96 1.81h3.67l2.02 3.88.55 6.65-4.95 3.51v3.51l-3.49 4.81-2.02.18-2.75 4.62.18 4.44 4.77 3.51-.37 2.03-1.83 2.77-2.75 2.4.18 7.95-4.22 1.48-1.47 3.14h-2.02l-1.1-5.54-4.59-7.04 3.77-6.31.26-15.59 2.6-1.43.63-8.92 7.41-10.61z"/><path d="m506.79 116.94 2.07.91 1.28 2.4-1.28 1.66-6.42 7.02-1.1 3.7 1.47 5.36 4.95 3.7 6.6-3.14 5.32-.74 4.95-7.95-3.67-8.69-3.49-8.32.55-5.36-2.2-.37-.57-3.91-2.96-4.83-3.28 2.27-1.29 5.27-3.48-2.09-4.84-1.18-1.08 1.26 1.86 1.68 3.39-.06 2.73 4.41zm11.28 34.43-6.85-1.11.15 3.83 6.35 3.88 2.6-.76-.15-2.92zm-11.31-3.73-1.55-.05-.9.91.65.96 1.55.1.8-1.16zm-.15 4.08-1.5-.15-2.7 3.23v1.51l.9.35 1.75.05 2.9-2.37.4-.81z"/><path d="m510.81 154.7-2.15-.05-2.95 2.82h-2.5l.15 3.53-1.5 2.77 5.4.05 1.55-.2 1.55 1.87 3.55-.15 3.4-4.33-.2-2.57z"/><path d="m510.66 166.29 1.5 2.47-.6 1.97.1 1.56.55 1.87 3.1-1.76 3.85.1 2.7 1.11h6.85l2-4.79 1.2-1.81v-1.21l-4.3-6.05-3.8-1.51-3.1-.35-2.7.86.1 2.72-3.75 4.74z"/><path d="m511.46 174.76.85 1.56.2 1.66-.7 1.61-1.6 3.08-1.35.61-1.75-.76-1.05.05-2.55.96-2.9-.86-4.7-3.33-4.6-2.47-1.85-2.82-.35-6.65 3.6-3.13 4.7-1.56 1.75-.2-.7 1.41.45.55 7.91.15 1.7-.05 2.8 4.29-.7 1.76.3 2.07zM448.36 205h-12.74l-2.57-1.16-1.24.09-1.5 3.12.53 3.21 4.87.45.62 2.05-2.12 11.95.09 2.14 3.45 1.87 3.98.27 7.96-1.96 3.89-4.9.09-4.99 6.9-6.24.35-2.76-6.28-.09z"/><path d="m430.93 211.24-.62 8.65-1.77 1.6.18.98 1.24 2.05-.8 2.5 1.33.45 3.1-.36-.18-2.5 2.03-11.59-.44-1.6zm30.17 5.97-1.59.54.35 1.43h2.3l.97-1.07zm16.46-3.83-2.65 1.34.35 5.17 2.12.36 1.59-1.52v-4.9zm.27-6.42-1.95 1.96-.18 1.78 1.59.98.62-.09.35-2.59zM460.4 178.7l-2.21.54-4.42 4.81-1.33.09-1.77-1.25-1.15.27-.88 2.76-6.46.18.18 1.43 4.42 2.94 5.13 4.1-.09 4.9-2.74 4.81 5.93 2.85 6.02.18 1.86-2.14 3.8.09 1.06.98 3.8-.27 1.95-2.5-2.48-2.94-.18-1.87.53-2.05-1.24-1.78-2.12.62-.27-1.6 4.69-5.17v-3.12l-3.1-1.78-1.59-.27zm9.69-10.43-4.53 2.23.96.87.1 2.23-.96-.19-1.06-1.65-2.53 4.01 3.89.81 1.45 1.53.77.02.51-3.46 2.45-1.03zm-8.48 8.25-.64 1.6 6.88 4.54 1.98.47.07-2.15-1.73-1.94h-1.06l-1.45-1.65z"/><path d="m471.14 167.88 3.57-.58v-2.52l2.99-.49 1.64 1.65 1.73.19 2.7-1.17 2.41.68 2.12 1.84.29 6.89 2.12 2.82-2.79.39-4.63 2.91.39.97 4.14 3.88-.29 1.94-3.85 1.94-3.57.1-.87 1.84h-1.83l-.87-1.94-3.18-.78-.1-3.2-2.7-1.84.29-2.33-1.83-2.52.48-3.3 2.5-1.17zm5.63-16.38-4.15 4.59-.15 2.99 1.89 4.93 2.96-.56-.37-4.03 2.04-2.28-.04-1.79-1.44-3.73zm4.67 8.14-.93-.04-1.22 1.12.15 1.75 2.89.08.15-1.98zm17.05-9.47-2.11 1.67 1.06 2.45 1.87-1.82z"/><path d="m472.91 189.38-4.36 4.64.09.47 1.79-.56 1.61 2.24 2.72-.96 1.88 1.46.77-.44 2.32-3.64-.59-.56-2.29-.06-1.11-2.27zm15.52-4.51h4.43l2.37 1.69 4.39-3.65-4.26-3.04-4.22-2.04-2.89.52-3.92 2.52zm7.41 2.26.69.61.09 1.04 7.63-.17 5.64-2.43-.09-2.47-1.08.48-1.55-.83-.95-.04-2.5 1-3.4-.82z"/><path d="m480.63 190.12-.65 1.35.56.96 2.33-.48h1.98l2.15 1.82 4.57-.83 3.36-2 .86-1.35-.13-1.74-3.02-2.26-4.05.04-.34 2.3-4.26 2.08zm16.11-.52-1.16 1.82.09 2.78 1.85.95 5.69.17 7.93-6.68.04-1.48-.86-.43-5.73 2.6zm-1.94 2.39-2.54 1.52-4.74 1.04.95 2.74 3.32.04 3.06-2.56z"/><path d="m495.62 195.16-3.53 2.91h-3.58l-.43 2.52 1.64.43.82-1.22 1.29 1.13 1.03 3.6 7.07 3.3.7-.8-7.17-7.4.73-1.35 6.81-.26.69-2.17-4.44.13z"/><path d="m494.8 198.94-.37.61 6.71 6.92 2.46-3.62-.09-1.43-2.15-2.61zm-22.53-1.96-.62 1.57.17 1.71 2.39 2.79 3.76-.13 8.3 9.64 5.18 1.5 3.06 2.89.73 6.59 1.64-.96 1.42-3.59-.35-2.58 2.43-.22.35-1.46-6.85-3.28-6.5-6.39-2.59-3.82-.63-3.63 3.31-.79-.85-2.39-2.03-1.71-1.75-.08-2.44.67-2.3 3.22-1.39.92-2.15-1.32zm20.17 26.04-1.45-.78-4.95.78.17 1.34 4.45 2.24.67.73 1.17.17zm.17 7.45-1.67.34.06 1.85 1.5.5.67-.56zm22.96-57.32-2.9 1.63.72 3.08-2.68 5.65.02 2.49 1.26.8 8.08.4 2.26-1.87 2.42.81 3.47 4.63-2.54 4.56 3.02.88 3.95-4.55 2.26.41 2.1 1.46-1.85 2.44 2.5 3.9h2.66l1.37-2.6 2.82-.57.08-2.11-5.24-.81.16-2.27h5.08l5.48-4.39 2.42-2.11.4-6.66-10.8-.97-4.43-6.25-3.06-1.05-3.71.16-1.67 4.13-7.6.1-2.47-1.14z"/><path d="m520.75 187.71 3.1 4.77-.26 2.7 1.11.05 2.63-4.45-3.16-3.92-1.79-.74z"/><path d="m512.18 187.6-.26 1.48-5.79 4.82 4.84 7.1 3.1 2.17h5.58l1.84-1.54 2.47-.32 1.84 1.11 3.26-3.71-.63-1.86-3.31-.85-2.26-.11.11-3.18-3-4.72zm-7.28 19.65-.045-.936-1.32-1.853-2.137 3.021.42 1.27 1.74.32z"/><path d="m505.55 194.54-2.05 1.541h-1l-.68 2.12 2.42 2.81.16 2.23-.342.483 1.636 2.298.057 1.22 1.178 1.14 3.84-1.17-.32-5.461z"><desc>includes kosovo</desc></path><path d="m511.44 202.39.16 4.98 1.68 3.5 6.31.11 2.84-2.01 2.79-1.11-.68-3.18.63-1.7-1.42-.74-1.95.16-1.53 1.54-6.42.05zm-7.42 7.37v4.61l1.32 2.49.95-.11 1.63-2.97-.95-1.33-.37-3.29-1.26-1.17zm6.9-1.75-3.37 1.11.16 2.86.79 1.01 4-1.86z"/><path d="m506.71 217.6-.11 1.33 4.63 2.33 2.21.85-1.16 1.22-2.58.26-.37 1.17.89 2.01 2.89 1.54 1.26.11.16-3.45 1.89-2.28-5.16-6.1.68-2.07 1.21-.05 1.84 1.48 1.16-.58.37-2.07 5.42.05.21-3.18-2.26 1.59-6.63-.16-4.31 2.23zm16.31-7.9-.16 3.55 3.1-.95 1.42-.95-.42-1.54-1.47-1.17zm-6.26 20.89 1.63.05.68 1.01h2.37l1.58-.58.53.64-1.05 1.38-4.63.16-.84-1.11-.89-.53z"/></svg>'
);
background-image: url("data:image/svg+xml,@{svg}");
}
}
}
/* deno-fmt-ignore */
@catppuccin: {
@latte: { @rosewater: #dc8a78; @flamingo: #dd7878; @pink: #ea76cb; @mauve: #8839ef; @red: #d20f39; @maroon: #e64553; @peach: #fe640b; @yellow: #df8e1d; @green: #40a02b; @teal: #179299; @sky: #04a5e5; @sapphire: #209fb5; @blue: #1e66f5; @lavender: #7287fd; @text: #4c4f69; @subtext1: #5c5f77; @subtext0: #6c6f85; @overlay2: #7c7f93; @overlay1: #8c8fa1; @overlay0: #9ca0b0; @surface2: #acb0be; @surface1: #bcc0cc; @surface0: #ccd0da; @base: #eff1f5; @mantle: #e6e9ef; @crust: #dce0e8; };
@frappe: { @rosewater: #f2d5cf; @flamingo: #eebebe; @pink: #f4b8e4; @mauve: #ca9ee6; @red: #e78284; @maroon: #ea999c; @peach: #ef9f76; @yellow: #e5c890; @green: #a6d189; @teal: #81c8be; @sky: #99d1db; @sapphire: #85c1dc; @blue: #8caaee; @lavender: #babbf1; @text: #c6d0f5; @subtext1: #b5bfe2; @subtext0: #a5adce; @overlay2: #949cbb; @overlay1: #838ba7; @overlay0: #737994; @surface2: #626880; @surface1: #51576d; @surface0: #414559; @base: #303446; @mantle: #292c3c; @crust: #232634; };
@macchiato: { @rosewater: #f4dbd6; @flamingo: #f0c6c6; @pink: #f5bde6; @mauve: #c6a0f6; @red: #ed8796; @maroon: #ee99a0; @peach: #f5a97f; @yellow: #eed49f; @green: #a6da95; @teal: #8bd5ca; @sky: #91d7e3; @sapphire: #7dc4e4; @blue: #8aadf4; @lavender: #b7bdf8; @text: #cad3f5; @subtext1: #b8c0e0; @subtext0: #a5adcb; @overlay2: #939ab7; @overlay1: #8087a2; @overlay0: #6e738d; @surface2: #5b6078; @surface1: #494d64; @surface0: #363a4f; @base: #24273a; @mantle: #1e2030; @crust: #181926; };
@mocha: { @rosewater: #f5e0dc; @flamingo: #f2cdcd; @pink: #f5c2e7; @mauve: #cba6f7; @red: #f38ba8; @maroon: #eba0ac; @peach: #fab387; @yellow: #f9e2af; @green: #a6e3a1; @teal: #94e2d5; @sky: #89dceb; @sapphire: #74c7ec; @blue: #89b4fa; @lavender: #b4befe; @text: #cdd6f4; @subtext1: #bac2de; @subtext0: #a6adc8; @overlay2: #9399b2; @overlay1: #7f849c; @overlay0: #6c7086; @surface2: #585b70; @surface1: #45475a; @surface0: #313244; @base: #1e1e2e; @mantle: #181825; @crust: #11111b; };
};