-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1204 lines (1019 loc) · 44.3 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
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
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html data-n-head-ssr>
<head>
<title>Cleavr - Your New Site</title>
<meta data-n-head="ssr" charset="utf-8">
<meta data-n-head="ssr" name="viewport" content="width=device-width,initial-scale=1">
<meta data-n-head="ssr" data-hid="description" name="description" content="">
<style>/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
line-height: 1.15;
-webkit-text-size-adjust: 100%
}
body {
margin: 0
}
main {
display: block
}
h1 {
font-size: 2em;
margin: .67em 0
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible
}
pre {
font-family: monospace, monospace;
font-size: 1em
}
a {
background-color: transparent
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted
}
b, strong {
font-weight: bolder
}
code, kbd, samp {
font-family: monospace, monospace;
font-size: 1em
}
small {
font-size: 80%
}
sub, sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline
}
sub {
bottom: -.25em
}
sup {
top: -.5em
}
img {
border-style: none
}
button, input, optgroup, select, textarea {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0
}
button, input {
overflow: visible
}
button, select {
text-transform: none
}
[type=button], [type=reset], [type=submit], button {
-webkit-appearance: button
}
[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
border-style: none;
padding: 0
}
[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
outline: 1px dotted ButtonText
}
fieldset {
padding: .35em .75em .625em
}
legend {
box-sizing: border-box;
color: inherit;
display: table;
max-width: 100%;
padding: 0;
white-space: normal
}
progress {
vertical-align: baseline
}
textarea {
overflow: auto
}
[type=checkbox], [type=radio] {
box-sizing: border-box;
padding: 0
}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
height: auto
}
[type=search] {
-webkit-appearance: textfield;
outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
-webkit-appearance: none
}
::-webkit-file-upload-button {
-webkit-appearance: button;
font: inherit
}
details {
display: block
}
summary {
display: list-item
}
[hidden], template {
display: none
}
blockquote, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, p, pre {
margin: 0
}
button {
background-color: transparent;
background-image: none
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color
}
fieldset, ol, ul {
margin: 0;
padding: 0
}
ol, ul {
list-style: none
}
html {
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
line-height: 1.5
}
*, :after, :before {
box-sizing: border-box;
border: 0 solid #e2e8f0
}
hr {
border-top-width: 1px
}
img {
border-style: solid
}
textarea {
resize: vertical
}
input::-moz-placeholder, textarea::-moz-placeholder {
color: #a0aec0
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
color: #a0aec0
}
input::placeholder, textarea::placeholder {
color: #a0aec0
}
[role=button], button {
cursor: pointer
}
table {
border-collapse: collapse
}
h1, h2, h3, h4, h5, h6 {
font-size: inherit;
font-weight: inherit
}
a {
color: inherit;
text-decoration: inherit
}
button, input, optgroup, select, textarea {
padding: 0;
line-height: inherit;
color: inherit
}
code, kbd, pre, samp {
font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}
audio, canvas, embed, iframe, img, object, svg, video {
display: block;
vertical-align: middle
}
img, video {
max-width: 100%;
height: auto
}
.container {
width: 100%
}
@media (min-width: 640px) {
.container {
max-width: 640px
}
}
@media (min-width: 768px) {
.container {
max-width: 768px
}
}
@media (min-width: 1024px) {
.container {
max-width: 1024px
}
}
@media (min-width: 1280px) {
.container {
max-width: 1280px
}
}
.space-x-3 > :not(template) ~ :not(template) {
--space-x-reverse: 0;
margin-right: calc(.75rem * var(--space-x-reverse));
margin-left: calc(.75rem * (1 - var(--space-x-reverse)))
}
.space-x-4 > :not(template) ~ :not(template) {
--space-x-reverse: 0;
margin-right: calc(1rem * var(--space-x-reverse));
margin-left: calc(1rem * (1 - var(--space-x-reverse)))
}
.space-y-6 > :not(template) ~ :not(template) {
--space-y-reverse: 0;
margin-top: calc(1.5rem * (1 - var(--space-y-reverse)));
margin-bottom: calc(1.5rem * var(--space-y-reverse))
}
.bg-white {
--bg-opacity: 1;
background-color: #fff;
background-color: rgba(255, 255, 255, var(--bg-opacity))
}
.bg-gray-100 {
--bg-opacity: 1;
background-color: #f7fafc;
background-color: rgba(247, 250, 252, var(--bg-opacity))
}
.bg-gray-200 {
--bg-opacity: 1;
background-color: #edf2f7;
background-color: rgba(237, 242, 247, var(--bg-opacity))
}
.bg-gray-400 {
--bg-opacity: 1;
background-color: #cbd5e0;
background-color: rgba(203, 213, 224, var(--bg-opacity))
}
.bg-green-500 {
--bg-opacity: 1;
background-color: #48bb78;
background-color: rgba(72, 187, 120, var(--bg-opacity))
}
.bg-blue-600 {
--bg-opacity: 1;
background-color: #3182ce;
background-color: rgba(49, 130, 206, var(--bg-opacity))
}
.hover\:bg-blue-700:hover {
--bg-opacity: 1;
background-color: #2b6cb0;
background-color: rgba(43, 108, 176, var(--bg-opacity))
}
.border-transparent {
border-color: transparent
}
.border-gray-200 {
--border-opacity: 1;
border-color: #edf2f7;
border-color: rgba(237, 242, 247, var(--border-opacity))
}
.rounded-md {
border-radius: .375rem
}
.rounded-full {
border-radius: 9999px
}
.border {
border-width: 1px
}
.border-t {
border-top-width: 1px
}
.flex {
display: flex
}
.inline-flex {
display: inline-flex
}
.table {
display: table
}
.flow-root {
display: flow-root
}
.grid {
display: grid
}
.flex-col {
flex-direction: column
}
.items-center {
align-items: center
}
.justify-center {
justify-content: center
}
.justify-between {
justify-content: space-between
}
.flex-1 {
flex: 1 1 0%
}
.flex-shrink-0 {
flex-shrink: 0
}
.font-medium {
font-weight: 500
}
.font-bold {
font-weight: 700
}
.h-5 {
height: 1.25rem
}
.h-6 {
height: 1.5rem
}
.h-8 {
height: 2rem
}
.h-full {
height: 100%
}
.text-sm {
font-size: .875rem
}
.text-lg {
font-size: 1.125rem
}
.text-2xl {
font-size: 1.5rem
}
.leading-6 {
line-height: 1.5rem
}
.mx-auto {
margin-left: auto;
margin-right: auto
}
.mt-1 {
margin-top: .25rem
}
.mt-2 {
margin-top: .5rem
}
.mt-3 {
margin-top: .75rem
}
.mt-6 {
margin-top: 1.5rem
}
.mt-8 {
margin-top: 2rem
}
.-mb-8 {
margin-bottom: -2rem
}
.-ml-px {
margin-left: -1px
}
.max-w-xl {
max-width: 36rem
}
.max-w-2xl {
max-width: 42rem
}
.max-w-4xl {
max-width: 56rem
}
.min-h-screen {
min-height: 100vh
}
.min-w-0 {
min-width: 0
}
.focus\:outline-none:focus {
outline: 2px solid transparent;
outline-offset: 2px
}
.py-2 {
padding-top: .5rem;
padding-bottom: .5rem
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem
}
.py-5 {
padding-top: 1.25rem;
padding-bottom: 1.25rem
}
.py-10 {
padding-top: 2.5rem;
padding-bottom: 2.5rem
}
.pt-1 {
padding-top: .25rem
}
.pb-2 {
padding-bottom: .5rem
}
.pb-8 {
padding-bottom: 2rem
}
.static {
position: static
}
.absolute {
position: absolute
}
.relative {
position: relative
}
.shadow-sm {
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05)
}
.shadow {
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06)
}
.text-white {
--text-opacity: 1;
color: #fff;
color: rgba(255, 255, 255, var(--text-opacity))
}
.text-gray-700 {
--text-opacity: 1;
color: #4a5568;
color: rgba(74, 85, 104, var(--text-opacity))
}
.text-gray-900 {
--text-opacity: 1;
color: #1a202c;
color: rgba(26, 32, 44, var(--text-opacity))
}
.text-blue-500 {
--text-opacity: 1;
color: #4299e1;
color: rgba(66, 153, 225, var(--text-opacity))
}
.text-blue-600 {
--text-opacity: 1;
color: #3182ce;
color: rgba(49, 130, 206, var(--text-opacity))
}
.hover\:text-blue-500:hover {
--text-opacity: 1;
color: #4299e1;
color: rgba(66, 153, 225, var(--text-opacity))
}
.hover\:text-blue-700:hover {
--text-opacity: 1;
color: #2b6cb0;
color: rgba(43, 108, 176, var(--text-opacity))
}
.uppercase {
text-transform: uppercase
}
.w-0 {
width: 0
}
.w-5 {
width: 1.25rem
}
.w-6 {
width: 1.5rem
}
.w-8 {
width: 2rem
}
.gap-6 {
grid-gap: 1.5rem;
gap: 1.5rem
}
.grid-cols-1 {
grid-template-columns:repeat(1, minmax(0, 1fr))
}
@-webkit-keyframes spin {
to {
transform: rotate(1turn)
}
}
@keyframes spin {
to {
transform: rotate(1turn)
}
}
@-webkit-keyframes ping {
75%, to {
transform: scale(2);
opacity: 0
}
}
@keyframes ping {
75%, to {
transform: scale(2);
opacity: 0
}
}
@-webkit-keyframes pulse {
50% {
opacity: .5
}
}
@keyframes pulse {
50% {
opacity: .5
}
}
@-webkit-keyframes bounce {
0%, to {
transform: translateY(-25%);
-webkit-animation-timing-function: cubic-bezier(.8, 0, 1, 1);
animation-timing-function: cubic-bezier(.8, 0, 1, 1)
}
50% {
transform: none;
-webkit-animation-timing-function: cubic-bezier(0, 0, .2, 1);
animation-timing-function: cubic-bezier(0, 0, .2, 1)
}
}
@keyframes bounce {
0%, to {
transform: translateY(-25%);
-webkit-animation-timing-function: cubic-bezier(.8, 0, 1, 1);
animation-timing-function: cubic-bezier(.8, 0, 1, 1)
}
50% {
transform: none;
-webkit-animation-timing-function: cubic-bezier(0, 0, .2, 1);
animation-timing-function: cubic-bezier(0, 0, .2, 1)
}
}
@media (min-width: 640px) {
.sm\:container {
width: 100%
}
}
@media (min-width: 640px) and (min-width: 640px) {
.sm\:container {
max-width: 640px
}
}
@media (min-width: 640px) and (min-width: 768px) {
.sm\:container {
max-width: 768px
}
}
@media (min-width: 640px) and (min-width: 1024px) {
.sm\:container {
max-width: 1024px
}
}
@media (min-width: 640px) and (min-width: 1280px) {
.sm\:container {
max-width: 1280px
}
}
@media (min-width: 640px) {
.sm\:rounded-lg {
border-radius: .5rem
}
.sm\:px-6 {
padding-left: 1.5rem;
padding-right: 1.5rem
}
}
@media (min-width: 768px) {
.md\:container {
width: 100%
}
}
@media (min-width: 768px) and (min-width: 640px) {
.md\:container {
max-width: 640px
}
}
@media (min-width: 768px) and (min-width: 768px) {
.md\:container {
max-width: 768px
}
}
@media (min-width: 768px) and (min-width: 1024px) {
.md\:container {
max-width: 1024px
}
}
@media (min-width: 768px) and (min-width: 1280px) {
.md\:container {
max-width: 1280px
}
}
@media (min-width: 768px) {
.md\:space-x-5 > :not(template) ~ :not(template) {
--space-x-reverse: 0;
margin-right: calc(1.25rem * var(--space-x-reverse));
margin-left: calc(1.25rem * (1 - var(--space-x-reverse)))
}
.md\:flex {
display: flex
}
.md\:items-center {
align-items: center
}
.md\:justify-between {
justify-content: space-between
}
}
@media (min-width: 1024px) {
.lg\:container {
width: 100%
}
}
@media (min-width: 1024px) and (min-width: 640px) {
.lg\:container {
max-width: 640px
}
}
@media (min-width: 1024px) and (min-width: 768px) {
.lg\:container {
max-width: 768px
}
}
@media (min-width: 1024px) and (min-width: 1024px) {
.lg\:container {
max-width: 1024px
}
}
@media (min-width: 1024px) and (min-width: 1280px) {
.lg\:container {
max-width: 1280px
}
}
@media (min-width: 1024px) {
.lg\:px-8 {
padding-left: 2rem;
padding-right: 2rem
}
.lg\:grid-flow-col-dense {
grid-auto-flow: column dense
}
.lg\:grid-cols-3 {
grid-template-columns:repeat(3, minmax(0, 1fr))
}
.lg\:col-span-1 {
grid-column: span 1/span 1
}
.lg\:col-span-2 {
grid-column: span 2/span 2
}
.lg\:col-start-1 {
grid-column-start: 1
}
.lg\:col-start-3 {
grid-column-start: 3
}
}
@media (min-width: 1280px) {
.xl\:container {
width: 100%
}
}
@media (min-width: 1280px) and (min-width: 640px) {
.xl\:container {
max-width: 640px
}
}
@media (min-width: 1280px) and (min-width: 768px) {
.xl\:container {
max-width: 768px
}
}
@media (min-width: 1280px) and (min-width: 1024px) {
.xl\:container {
max-width: 1024px
}
}
@media (min-width: 1280px) and (min-width: 1280px) {
.xl\:container {
max-width: 1280px
}
}
.nuxt-progress {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 2px;
width: 0;
opacity: 1;
transition: width .1s, opacity .4s;
background-color: #000;
z-index: 999999
}
.nuxt-progress.nuxt-progress-notransition {
transition: none
}
.nuxt-progress-failed {
background-color: red
}
html {
font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 16px;
word-spacing: 1px;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
box-sizing: border-box
}
*, :after, :before {
box-sizing: border-box;
margin: 0
}
.button--green {
display: inline-block;
border-radius: 4px;
border: 1px solid #3b8070;
color: #3b8070;
text-decoration: none;
padding: 10px 30px
}
.button--green:hover {
color: #fff;
background-color: #3b8070
}
.button--grey {
display: inline-block;
border-radius: 4px;
border: 1px solid #35495e;
color: #35495e;
text-decoration: none;
padding: 10px 30px;
margin-left: 15px
}
.button--grey:hover {
color: #fff;
background-color: #35495e
}</style>
</head>
<body>
<div data-server-rendered="true" id="__nuxt"><!---->
<div id="__layout">
<div>
<div>
<div class="min-h-screen bg-gray-100">
<main class="py-10">
<div class="max-w-4xl mx-auto px-4 sm:px-6 md:flex md:items-center md:justify-between md:space-x-5 lg:max-w-7xl lg:px-8">
<a href="https://cleavr.io" target="_blank" class="flex items-center space-x-3">
<div class="flex-shrink-0">
<div class="relative">
<svg viewBox="0 0 256 256" fill="none" style="width: 3em; color: rgba(29, 78, 216,1) " xmlns="http://www.w3.org/2000/svg"
class="w-auto text-blue-700 h-10 dark:text-gray-500">
<path d="M128 256C198.692 256 256 198.692 256 128C256 57.3075 198.692 0 128 0C57.3075 0 0 57.3075 0 128C0 198.692 57.3075 256 128 256Z"
fill="currentColor"></path>
<g opacity="0.047">
<path opacity="0.047"
d="M204.197 148.146C198.799 135.723 193.493 123.346 189.987 110.266L106.555 132.623C110.059 145.702 111.638 159.299 113.214 172.894C144.754 170.273 187.879 154.438 204.197 148.146ZM179.249 121.41C179.115 120.922 179.08 120.412 179.145 119.91C179.21 119.408 179.374 118.924 179.627 118.485C179.88 118.047 180.217 117.663 180.62 117.356C181.022 117.049 181.481 116.824 181.971 116.695C182.459 116.562 182.968 116.527 183.47 116.592C183.972 116.657 184.456 116.821 184.894 117.074C185.332 117.327 185.716 117.664 186.023 118.066C186.33 118.468 186.555 118.927 186.683 119.416C186.817 119.905 186.852 120.415 186.787 120.917C186.722 121.419 186.558 121.903 186.305 122.341C186.052 122.779 185.715 123.163 185.312 123.471C184.91 123.778 184.451 124.002 183.961 124.131C182.978 124.349 181.948 124.19 181.076 123.687C180.204 123.183 179.552 122.371 179.249 121.41Z"
fill="#E7E8E9"></path>
<path opacity="0.047"
d="M201.231 171.223C207.278 169.012 210.494 162.839 208.316 157.739C206.931 154.498 205.633 151.303 204.197 148.146C187.829 154.525 144.754 170.271 113.213 172.894C113.599 176.258 113.582 174.271 113.968 177.634C114.631 183.139 120.553 186.789 126.897 185.681C152.005 181.092 177.139 179.892 201.231 171.223Z"
fill="white"></path>
<path opacity="0.047"
d="M117.374 129.764L120.895 142.905L101.329 148.151L97.8058 135.008L117.374 129.764Z"
fill="#E7E8E9"></path>
<g opacity="0.047">
<g opacity="0.047" filter="url(#filter0_d)">
<path d="M49.7893 162.811L45.8413 148.077C45.5819 147.115 46.0859 146.242 47.0503 145.983L104.186 130.674C105.15 130.415 106.023 130.919 106.282 131.884L110.229 146.615C110.486 147.577 109.982 148.45 109.019 148.711L51.8843 164.019C50.9227 164.276 49.9614 163.721 49.7886 162.809L49.7893 162.811Z"
fill="black"></path>
</g>
<path opacity="0.047"
d="M49.7893 162.811L45.8413 148.077C45.5819 147.115 46.0859 146.242 47.0503 145.983L104.186 130.674C105.15 130.415 106.023 130.919 106.282 131.884L110.229 146.615C110.486 147.577 109.982 148.45 109.019 148.711L51.8843 164.019C50.9227 164.276 49.9614 163.721 49.7886 162.809L49.7893 162.811Z"
fill="#2B2B2B"></path>
</g>
</g>
<g opacity="0.081">
<path opacity="0.081"
d="M201.412 124.774C193.939 113.477 186.564 102.209 180.84 89.9373L102.557 126.443C108.279 138.714 112.196 151.83 116.108 164.945C146.714 156.887 186.434 133.804 201.412 124.774ZM172.2 102.776C171.984 102.319 171.86 101.823 171.837 101.317C171.814 100.811 171.891 100.306 172.064 99.8305C172.237 99.3548 172.503 98.9182 172.846 98.5458C173.189 98.1734 173.602 97.8726 174.062 97.6608C174.519 97.445 175.015 97.322 175.52 97.2989C176.026 97.2758 176.531 97.353 177.006 97.526C177.482 97.699 177.918 97.9645 178.29 98.3071C178.663 98.6497 178.963 99.0626 179.175 99.522C179.391 99.9798 179.515 100.476 179.538 100.981C179.561 101.487 179.484 101.992 179.311 102.468C179.138 102.944 178.872 103.38 178.529 103.753C178.186 104.125 177.773 104.426 177.313 104.638C176.383 105.023 175.341 105.046 174.395 104.701C173.448 104.357 172.665 103.67 172.2 102.776Z"
fill="#E7E8E9"></path>
<path opacity="0.081"
d="M202.498 148.015C208.07 144.788 210.164 138.15 207.134 133.506C205.207 130.555 203.374 127.634 201.411 124.774C186.4 133.898 146.714 156.885 116.108 164.945C117.072 168.191 116.71 166.237 117.674 169.483C119.283 174.789 125.749 177.355 131.804 175.162C155.734 166.283 180.277 160.737 202.498 148.015Z"
fill="white"></path>
<path opacity="0.081"
d="M112.716 121.748L118.465 134.078L100.107 142.642L94.3556 130.311L112.716 121.748Z"
fill="#E7E8E9"></path>
</g>
<g opacity="0.205">
<path opacity="0.205"
d="M193.348 98.5813C184.027 88.7535 174.808 78.9374 167.04 67.846L96.2855 117.39C104.052 128.481 110.186 140.718 116.316 152.955C145.058 139.705 180.166 110.075 193.348 98.5813ZM160.76 81.9904C160.468 81.5771 160.26 81.11 160.15 80.6161C160.039 80.1222 160.027 79.6112 160.115 79.1127C160.203 78.6142 160.389 78.1381 160.662 77.7118C160.935 77.2855 161.29 76.9176 161.705 76.6291C162.119 76.3372 162.586 76.13 163.079 76.0194C163.573 75.9089 164.084 75.8972 164.582 75.9851C165.08 76.0729 165.556 76.2586 165.982 76.5313C166.408 76.804 166.776 77.1585 167.065 77.5741C167.357 77.9874 167.564 78.4545 167.675 78.9485C167.786 79.4424 167.798 79.9533 167.71 80.4518C167.622 80.9503 167.436 81.4264 167.163 81.8527C166.89 82.279 166.535 82.647 166.119 82.9354C165.27 83.4766 164.248 83.6798 163.256 83.5048C162.264 83.3299 161.373 82.7896 160.76 81.9904Z"
fill="#E7E8E9"></path>