-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1155 lines (1103 loc) · 105 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 lang="en">
<head>
<meta name="generator" content="Hugo 0.83.1" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="Paperchain" />
<title>Faster payments for creators. Paperchain is a wallet and card funded by your digital content revenues. Daily.</title>
<link href="/assets/css/styles.css" rel="stylesheet" />
<link href="/assets/css/custom.css" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="icon" type="image/x-icon" href="/assets/img/favicon.png" />
<script data-search-pseudo-elements defer src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/js/all.min.js" crossorigin="anonymous"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.24.1/feather.min.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.validate.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.validate.min.js"></script>
<script src="https://malsup.github.io/jquery.form.js"></script>
<script>
var TxtRotate = function(el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtRotate.prototype.tick = function() {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">'+this.txt+'</span>';
var that = this;
var delta = 300 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function() {
that.tick();
}, delta);
};
window.onload = function() {
var elements = document.getElementsByClassName('txt-rotate');
for (var i=0; i<elements.length; i++) {
var toRotate = elements[i].getAttribute('data-rotate');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtRotate(elements[i], JSON.parse(toRotate), period);
}
}
var css = document.createElement("style");
css.type = "text/css";
css.innerHTML = ".txt-rotate > .wrap { border-right: 0.08em solid #666 }";
document.body.appendChild(css);
};
</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WDGVKFD');</script>
</head>
<body>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WDGVKFD"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<div id="layoutDefault">
<div id="layoutDefault_content">
<main>
<nav class="navbar navbar-marketing navbar-expand-lg bg-transparent navbar-light fixed-top">
<div class="container-fluid">
<a href="/">
<svg
class="menu__logo-img"
xmlns="http://www.w3.org/2000/svg"
width="200"
height="80"
viewBox="0 0 548.09 115"
>
<g id="Layer_1" data-name="Layer 1"><path class="cls-1" d="M2.56,43.27h9.83v7.15a22.59,22.59,0,0,1,5.84-5.69A15.43,15.43,0,0,1,27,42.38a19.54,19.54,0,0,1,7.35,1.46,18.53,18.53,0,0,1,6.37,4.31,21.81,21.81,0,0,1,4.47,7,24.87,24.87,0,0,1,1.7,9.49v.17a25.27,25.27,0,0,1-1.67,9.49,21,21,0,0,1-4.46,7,19,19,0,0,1-6.37,4.3A19.43,19.43,0,0,1,27,87a16,16,0,0,1-8.85-2.27,22.57,22.57,0,0,1-5.76-5.28V99.12H2.56ZM24.65,78.5a11.69,11.69,0,0,0,4.74-1,11.82,11.82,0,0,0,3.9-2.72,12.69,12.69,0,0,0,2.64-4.3,16,16,0,0,0,1-5.72v-.17a15.75,15.75,0,0,0-1-5.64,13.18,13.18,0,0,0-2.64-4.34,11.76,11.76,0,0,0-8.64-3.74,12,12,0,0,0-4.79,1,11.56,11.56,0,0,0-4,2.8A14,14,0,0,0,13.16,59a14.81,14.81,0,0,0-1,5.6v.17a14.81,14.81,0,0,0,1,5.6,13.9,13.9,0,0,0,2.72,4.34,11.56,11.56,0,0,0,4,2.8A12,12,0,0,0,24.65,78.5Z"/><path class="cls-1" d="M75.06,87a19.7,19.7,0,0,1-5.77-.85,14.43,14.43,0,0,1-4.83-2.52,12.19,12.19,0,0,1-4.58-9.86v-.17a13.38,13.38,0,0,1,1.3-6.08,11.87,11.87,0,0,1,3.61-4.31,16.13,16.13,0,0,1,5.6-2.55,28.49,28.49,0,0,1,7.18-.86,36.39,36.39,0,0,1,6.34.49,41.89,41.89,0,0,1,5.19,1.3V60.56c0-3.08-.9-5.41-2.72-7s-4.45-2.35-7.91-2.35A26.09,26.09,0,0,0,72,52a43.46,43.46,0,0,0-5.76,1.95l-2.6-7.71a41.75,41.75,0,0,1,7.31-2.56,37,37,0,0,1,8.85-.93q9.57,0,14.2,4.79a14.38,14.38,0,0,1,3.49,5.68,23.21,23.21,0,0,1,1.14,7.55V86.14H89V80.78a18.79,18.79,0,0,1-5.6,4.42A17.48,17.48,0,0,1,75.06,87Zm2.76-7.14a15.42,15.42,0,0,0,4.54-.65A10.79,10.79,0,0,0,86,77.37a9.23,9.23,0,0,0,2.39-2.92,7.88,7.88,0,0,0,.89-3.74V67.79a25.53,25.53,0,0,0-4.34-1.22,28.4,28.4,0,0,0-5.4-.48c-3.19,0-5.67.62-7.42,1.86a6.1,6.1,0,0,0-2.64,5.28v.16a5.53,5.53,0,0,0,2.39,4.79A10,10,0,0,0,77.82,79.89Z"/><path class="cls-1" d="M116.05,43.27h9.83v7.15a22.44,22.44,0,0,1,5.84-5.69,15.43,15.43,0,0,1,8.77-2.35,19.45,19.45,0,0,1,7.34,1.46,18.47,18.47,0,0,1,6.38,4.31,21.62,21.62,0,0,1,4.46,7,24.68,24.68,0,0,1,1.71,9.49v.17a25.27,25.27,0,0,1-1.67,9.49,21,21,0,0,1-4.46,7,19,19,0,0,1-6.37,4.3A19.47,19.47,0,0,1,140.49,87a16,16,0,0,1-8.85-2.27,22.57,22.57,0,0,1-5.76-5.28V99.12h-9.83ZM138.13,78.5a11.86,11.86,0,0,0,8.65-3.69,12.69,12.69,0,0,0,2.64-4.3,16,16,0,0,0,1-5.72v-.17a15.75,15.75,0,0,0-1-5.64,13.18,13.18,0,0,0-2.64-4.34,11.76,11.76,0,0,0-8.65-3.74,12.07,12.07,0,0,0-4.79,1,11.62,11.62,0,0,0-4,2.8A13.84,13.84,0,0,0,126.65,59a14.81,14.81,0,0,0-1,5.6v.17a14.81,14.81,0,0,0,1,5.6,13.72,13.72,0,0,0,2.72,4.34,11.62,11.62,0,0,0,4,2.8A12.06,12.06,0,0,0,138.13,78.5Z"/><path class="cls-1" d="M195.93,87.11a22.86,22.86,0,0,1-8.64-1.62,20.94,20.94,0,0,1-11.72-11.57,23.1,23.1,0,0,1-1.72-9V64.7A24.17,24.17,0,0,1,175.4,56a21.66,21.66,0,0,1,4.35-7.1,20.42,20.42,0,0,1,6.63-4.79,20,20,0,0,1,8.46-1.75,20.4,20.4,0,0,1,9,1.87,18.47,18.47,0,0,1,6.42,5,21.69,21.69,0,0,1,3.86,7.35,29.39,29.39,0,0,1,1.31,8.81c0,.43,0,.87,0,1.33s-.07.94-.13,1.42H183.76a12.48,12.48,0,0,0,4.18,8.08,12.31,12.31,0,0,0,8.16,2.8,14.48,14.48,0,0,0,6.33-1.29A20.69,20.69,0,0,0,207.7,74l5.77,5.11a23.72,23.72,0,0,1-7.35,5.85A22.05,22.05,0,0,1,195.93,87.11Zm9.66-25.41a16.71,16.71,0,0,0-1.05-4.42,11.44,11.44,0,0,0-2.18-3.57,10.34,10.34,0,0,0-3.28-2.4,10.14,10.14,0,0,0-4.32-.89,9.88,9.88,0,0,0-7.49,3.12,14.22,14.22,0,0,0-3.59,8.16Z"/><path class="cls-1" d="M230.92,43.27h9.82v9.66a19,19,0,0,1,5.77-7.79,13.78,13.78,0,0,1,9.41-2.68V52.85h-.57a16.07,16.07,0,0,0-5.92,1.06,12.42,12.42,0,0,0-4.63,3.16,14.25,14.25,0,0,0-3,5.32,23.62,23.62,0,0,0-1.06,7.43V86.14h-9.82Z"/><path class="cls-1" d="M288.48,87.11a22,22,0,0,1-8.85-1.75,21.75,21.75,0,0,1-7-4.74A21.52,21.52,0,0,1,268,73.55a22.41,22.41,0,0,1-1.67-8.6v-.16A22.77,22.77,0,0,1,268,56.14,21.56,21.56,0,0,1,272.65,49a22.49,22.49,0,0,1,7.06-4.83,21.91,21.91,0,0,1,8.93-1.79,26.47,26.47,0,0,1,5.48.53,20.76,20.76,0,0,1,4.55,1.5,20.53,20.53,0,0,1,3.81,2.35,33.44,33.44,0,0,1,3.29,3l-6.17,6.57a22.63,22.63,0,0,0-4.83-3.85,12.1,12.1,0,0,0-6.21-1.5,11.22,11.22,0,0,0-4.95,1.09A12.85,12.85,0,0,0,279.67,55a13.16,13.16,0,0,0-2.6,4.35,15,15,0,0,0-.93,5.27v.17a15.27,15.27,0,0,0,.93,5.35,13.23,13.23,0,0,0,2.64,4.39,12.22,12.22,0,0,0,4.06,2.92,12.6,12.6,0,0,0,5.19,1A12.35,12.35,0,0,0,295.09,77a22.33,22.33,0,0,0,5-3.81L306,79.07a26.93,26.93,0,0,1-7.22,5.81A21.24,21.24,0,0,1,288.48,87.11Z"/><path class="cls-1" d="M320.71,26.88h9.82v23A30.52,30.52,0,0,1,332.84,47a13.41,13.41,0,0,1,2.92-2.4A16.4,16.4,0,0,1,339.42,43a15.21,15.21,0,0,1,4.5-.61q7.31,0,11.29,4.47t4,11.93V86.14h-9.82V61.78c0-3.35-.8-5.94-2.39-7.75a8.58,8.58,0,0,0-6.78-2.72,9.2,9.2,0,0,0-7,2.8q-2.68,2.8-2.68,7.84V86.14h-9.82Z"/><path class="cls-1" d="M389.06,87a19.68,19.68,0,0,1-5.76-.85,14.38,14.38,0,0,1-4.84-2.52,12.63,12.63,0,0,1-3.32-4.14,12.45,12.45,0,0,1-1.26-5.72v-.17a13.38,13.38,0,0,1,1.3-6.08,11.87,11.87,0,0,1,3.61-4.31,16.13,16.13,0,0,1,5.6-2.55,28.52,28.52,0,0,1,7.19-.86,36.35,36.35,0,0,1,6.33.49,41.45,41.45,0,0,1,5.19,1.3V60.56c0-3.08-.9-5.41-2.72-7s-4.45-2.35-7.91-2.35A26.09,26.09,0,0,0,386,52a43.46,43.46,0,0,0-5.76,1.95l-2.6-7.71a41.75,41.75,0,0,1,7.31-2.56,37,37,0,0,1,8.85-.93q9.57,0,14.2,4.79a14.52,14.52,0,0,1,3.5,5.68,23.49,23.49,0,0,1,1.13,7.55V86.14H403V80.78a18.79,18.79,0,0,1-5.6,4.42A17.48,17.48,0,0,1,389.06,87Zm2.76-7.14a15.42,15.42,0,0,0,4.54-.65A10.79,10.79,0,0,0,400,77.37a9.23,9.23,0,0,0,2.39-2.92,7.89,7.89,0,0,0,.9-3.74V67.79a25.93,25.93,0,0,0-4.35-1.22,28.36,28.36,0,0,0-5.39-.48q-4.8,0-7.43,1.86a6.1,6.1,0,0,0-2.64,5.28v.16a5.55,5.55,0,0,0,2.39,4.79A10,10,0,0,0,391.82,79.89Z"/><path class="cls-1" d="M430.22,27.36h10.55V36.7H430.22Zm.4,15.91h9.83V86.14h-9.83Z"/><path class="cls-1" d="M459,43.27h9.83v6.58A30.52,30.52,0,0,1,471.09,47a13.41,13.41,0,0,1,2.92-2.4A16.4,16.4,0,0,1,477.67,43a15.17,15.17,0,0,1,4.5-.61q7.31,0,11.28,4.47t4,11.93V86.14h-9.83V61.78c0-3.35-.8-5.94-2.39-7.75a8.58,8.58,0,0,0-6.78-2.72,9.2,9.2,0,0,0-7,2.8q-2.68,2.8-2.68,7.84V86.14H459Z"/></g></svg></a><button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"><i data-feather="menu"></i></button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto mr-lg-5">
<li class="nav-item"><a class="nav-link" href="/">App</a></li>
</ul>
<button id="cta-menu" data-mode="popup" data-hide-footer="true" class="prefinery-form-cta button btn-white btn rounded-pill px-4 ml-lg-4">Join waitlist! <svg class="svg-inline--fa fa-arrow-right fa-w-14 ml-1" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="arrow-right" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" data-fa-i2svg=""><path fill="currentColor" d="M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z"></path></svg></button>
</div>
</div>
</nav>
<header class="page-header page-header-neon-green bg-gradient-paperchain-purple">
<div class="page-header-content mb-n5">
<div class="container px-5">
<div class="row gx-5 justify-content-center align-items-center">
<div class="col-lg-6" data-aos="fade-right">
<h1 class="page-header-title mt-10 mb-5">Instant creator payments</h1>
<p class="page-header-text text-dark mb-5">A money app for creators that pays you every day.</p>
<a class="btn enter_button section-text-sm" href="#paperchain-start">Say hello to Paperchain 👋🏿</a>
</div>
<div class="col-lg-5" data-aos="fade-left" style="background-image: url('./assets/img/paperchain-card-app-06.png');background-size: 100%;background-repeat: no-repeat;">
<div class="device-wrapper mx-auto mb-n15">
<div class="device" data-device="iPhoneX" data-orientation="portrait" data-color="black">
<div class="screen"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="svg-border-waves text-white">
<svg class="wave" style="pointer-events: none" fill="currentColor" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 1920 75">
<defs>
<style>
.a {
fill: none;
}
.b {
clip-path: url(#a);
}
.d {
opacity: 0.5;
isolation: isolate;
}
</style>
</defs>
<clipPath id="a"><rect class="a" width="1920" height="75"></rect></clipPath>
<g class="b"><path class="c" d="M1963,327H-105V65A2647.49,2647.49,0,0,1,431,19c217.7,3.5,239.6,30.8,470,36,297.3,6.7,367.5-36.2,642-28a2511.41,2511.41,0,0,1,420,48"></path></g>
<g class="b"><path class="d" d="M-127,404H1963V44c-140.1-28-343.3-46.7-566,22-75.5,23.3-118.5,45.9-162,64-48.6,20.2-404.7,128-784,0C355.2,97.7,341.6,78.3,235,50,86.6,10.6-41.8,6.9-127,10"></path></g>
<g class="b"><path class="d" d="M1979,462-155,446V106C251.8,20.2,576.6,15.9,805,30c167.4,10.3,322.3,32.9,680,56,207,13.4,378,20.3,494,24"></path></g>
<g class="b"><path class="d" d="M1998,484H-243V100c445.8,26.8,794.2-4.1,1035-39,141-20.4,231.1-40.1,378-45,349.6-11.6,636.7,73.8,828,150"></path></g>
</svg>
</div>
</header>
<section class="bg-white py-10" id="paperchain-start">
<div class="container px-5">
<div class="row gx-5 align-items-center justify-content-center">
<div class="col-lg-6">
<div class="mb-5">
<h2 class="h2-benefits-black">Introducing Paperchain Card</h2>
<p class="lead">The only card that gives you instant access to your creative income.</p>
</div>
</div>
<div class="col-md-9 col-lg-6 aos-init aos-animate" data-aos="slide-left">
<div class="">
<div data-tilt class="app-display [ c-example__tilt ] js-tilt" data-tilt-perspective="300" data-tilt-speed="300" data-tilt-max="10" style="will-change: transform; transform: perspective(300px) rotateX(0deg) rotateY(0deg);"><img class="img-fluid-card rounded-3" src="assets/img/paperchain-card.png"></div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-white pb-10 pt-0" id="creator-network">
<div class="container px-5">
<div class="row gx-5 brands text-black align-items-center mb-10">
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-lg-0">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 559 168">
<path d="m83.996 0.277c-46.249 0-83.743 37.493-83.743 83.742 0 46.251 37.494 83.741 83.743 83.741 46.254 0 83.744-37.49 83.744-83.741 0-46.246-37.49-83.738-83.745-83.738l0.001-0.004zm38.404 120.78c-1.5 2.46-4.72 3.24-7.18 1.73-19.662-12.01-44.414-14.73-73.564-8.07-2.809 0.64-5.609-1.12-6.249-3.93-0.643-2.81 1.11-5.61 3.926-6.25 31.9-7.288 59.263-4.15 81.337 9.34 2.46 1.51 3.24 4.72 1.73 7.18zm10.25-22.802c-1.89 3.072-5.91 4.042-8.98 2.152-22.51-13.836-56.823-17.843-83.448-9.761-3.453 1.043-7.1-0.903-8.148-4.35-1.04-3.453 0.907-7.093 4.354-8.143 30.413-9.228 68.222-4.758 94.072 11.127 3.07 1.89 4.04 5.91 2.15 8.976v-0.001zm0.88-23.744c-26.99-16.031-71.52-17.505-97.289-9.684-4.138 1.255-8.514-1.081-9.768-5.219-1.254-4.14 1.08-8.513 5.221-9.771 29.581-8.98 78.756-7.245 109.83 11.202 3.73 2.209 4.95 7.016 2.74 10.733-2.2 3.722-7.02 4.949-10.73 2.739zm94.56 3.072c-14.46-3.448-17.03-5.868-17.03-10.953 0-4.804 4.52-8.037 11.25-8.037 6.52 0 12.98 2.455 19.76 7.509 0.2 0.153 0.46 0.214 0.71 0.174 0.26-0.038 0.48-0.177 0.63-0.386l7.06-9.952c0.29-0.41 0.21-0.975-0.18-1.288-8.07-6.473-17.15-9.62-27.77-9.62-15.61 0-26.52 9.369-26.52 22.774 0 14.375 9.41 19.465 25.67 23.394 13.83 3.187 16.17 5.857 16.17 10.629 0 5.29-4.72 8.58-12.32 8.58-8.44 0-15.33-2.85-23.03-9.51-0.19-0.17-0.45-0.24-0.69-0.23-0.26 0.02-0.49 0.14-0.65 0.33l-7.92 9.42c-0.33 0.4-0.29 0.98 0.09 1.32 8.96 8 19.98 12.22 31.88 12.22 16.82 0 27.69-9.19 27.69-23.42 0.03-12.007-7.16-18.657-24.77-22.941l-0.03-0.013zm62.86-14.26c-7.29 0-13.27 2.872-18.21 8.757v-6.624c0-0.523-0.42-0.949-0.94-0.949h-12.95c-0.52 0-0.94 0.426-0.94 0.949v73.601c0 0.52 0.42 0.95 0.94 0.95h12.95c0.52 0 0.94-0.43 0.94-0.95v-23.23c4.94 5.53 10.92 8.24 18.21 8.24 13.55 0 27.27-10.43 27.27-30.369 0.02-19.943-13.7-30.376-27.26-30.376l-0.01 0.001zm12.21 30.375c0 10.149-6.25 17.239-15.21 17.239-8.85 0-15.53-7.41-15.53-17.239 0-9.83 6.68-17.238 15.53-17.238 8.81-0.001 15.21 7.247 15.21 17.237v0.001zm50.21-30.375c-17.45 0-31.12 13.436-31.12 30.592 0 16.972 13.58 30.262 30.91 30.262 17.51 0 31.22-13.39 31.22-30.479 0-17.031-13.62-30.373-31.01-30.373v-0.002zm0 47.714c-9.28 0-16.28-7.46-16.28-17.344 0-9.929 6.76-17.134 16.07-17.134 9.34 0 16.38 7.457 16.38 17.351 0 9.927-6.8 17.127-16.17 17.127zm68.27-46.53h-14.25v-14.566c0-0.522-0.42-0.948-0.94-0.948h-12.95c-0.52 0-0.95 0.426-0.95 0.948v14.566h-6.22c-0.52 0-0.94 0.426-0.94 0.949v11.127c0 0.522 0.42 0.949 0.94 0.949h6.22v28.795c0 11.63 5.79 17.53 17.22 17.53 4.64 0 8.49-0.96 12.12-3.02 0.3-0.16 0.48-0.48 0.48-0.82v-10.6c0-0.32-0.17-0.63-0.45-0.8-0.28-0.18-0.63-0.19-0.92-0.04-2.49 1.25-4.9 1.83-7.6 1.83-4.15 0-6.01-1.89-6.01-6.11v-26.76h14.25c0.52 0 0.94-0.426 0.94-0.949v-11.126c0.02-0.523-0.4-0.949-0.93-0.949l-0.01-0.006zm49.64 0.057v-1.789c0-5.263 2.02-7.61 6.54-7.61 2.7 0 4.87 0.536 7.3 1.346 0.3 0.094 0.61 0.047 0.85-0.132 0.25-0.179 0.39-0.466 0.39-0.77v-10.91c0-0.417-0.26-0.786-0.67-0.909-2.56-0.763-5.84-1.546-10.76-1.546-11.95 0-18.28 6.734-18.28 19.467v2.74h-6.22c-0.52 0-0.95 0.426-0.95 0.948v11.184c0 0.522 0.43 0.949 0.95 0.949h6.22v44.405c0 0.53 0.43 0.95 0.95 0.95h12.94c0.53 0 0.95-0.42 0.95-0.95v-44.402h12.09l18.52 44.402c-2.1 4.66-4.17 5.59-6.99 5.59-2.28 0-4.69-0.68-7.14-2.03-0.23-0.12-0.51-0.14-0.75-0.07-0.25 0.09-0.46 0.27-0.56 0.51l-4.39 9.63c-0.21 0.46-0.03 0.99 0.41 1.23 4.58 2.48 8.71 3.54 13.82 3.54 9.56 0 14.85-4.46 19.5-16.44l22.46-58.037c0.12-0.292 0.08-0.622-0.1-0.881-0.17-0.257-0.46-0.412-0.77-0.412h-13.48c-0.41 0-0.77 0.257-0.9 0.636l-13.81 39.434-15.12-39.46c-0.14-0.367-0.49-0.61-0.88-0.61h-22.12v-0.003zm-28.78-0.057h-12.95c-0.52 0-0.95 0.426-0.95 0.949v56.481c0 0.53 0.43 0.95 0.95 0.95h12.95c0.52 0 0.95-0.42 0.95-0.95v-56.477c0-0.523-0.42-0.949-0.95-0.949v-0.004zm-6.4-25.719c-5.13 0-9.29 4.152-9.29 9.281 0 5.132 4.16 9.289 9.29 9.289s9.28-4.157 9.28-9.289c0-5.128-4.16-9.281-9.28-9.281zm113.42 43.88c-5.12 0-9.11-4.115-9.11-9.112s4.04-9.159 9.16-9.159 9.11 4.114 9.11 9.107c0 4.997-4.04 9.164-9.16 9.164zm0.05-17.365c-4.67 0-8.2 3.71-8.2 8.253 0 4.541 3.51 8.201 8.15 8.201 4.67 0 8.2-3.707 8.2-8.253 0-4.541-3.51-8.201-8.15-8.201zm2.02 9.138l2.58 3.608h-2.18l-2.32-3.31h-1.99v3.31h-1.82v-9.564h4.26c2.23 0 3.69 1.137 3.69 3.051 0.01 1.568-0.9 2.526-2.21 2.905h-0.01zm-1.54-4.315h-2.37v3.025h2.37c1.18 0 1.89-0.579 1.89-1.514 0-0.984-0.71-1.511-1.89-1.511z"/>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-lg-0">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 492 110" xmlns:v="https://vecta.io/nano"><path d="M154.3 17.5a19.6 19.6 0 0 0-13.8-13.8C128.4.4 79.7.4 79.7.4S31 .5 18.9 3.8A19.6 19.6 0 0 0 5.1 17.6C1.44 39.1.02 71.86 5.2 92.5A19.6 19.6 0 0 0 19 106.3c12.1 3.3 60.8 3.3 60.8 3.3s48.7 0 60.8-3.3a19.6 19.6 0 0 0 13.8-13.8c3.86-21.53 5.05-54.27-.1-75z" /><path fill="#fff" d="M64.2 78.4L104.6 55 64.2 31.6z"/><g ><path d="M227.9 99.7c-3.1-2.1-5.3-5.3-6.6-9.7s-1.9-10.2-1.9-17.5v-9.9c0-7.3.7-13.3 2.2-17.7 1.5-4.5 3.8-7.7 7-9.7s7.3-3.1 12.4-3.1c5 0 9.1 1 12.1 3.1s5.3 5.3 6.7 9.7 2.1 10.3 2.1 17.6v9.9c0 7.3-.7 13.1-2.1 17.5s-3.6 7.6-6.7 9.7c-3.1 2-7.3 3.1-12.5 3.1-5.4.1-9.6-1-12.7-3zM245.2 89c.9-2.2 1.3-5.9 1.3-10.9V56.8c0-4.9-.4-8.5-1.3-10.7-.9-2.3-2.4-3.4-4.5-3.4s-3.5 1.1-4.4 3.4-1.3 5.8-1.3 10.7v21.3c0 5 .4 8.7 1.2 10.9s2.3 3.3 4.5 3.3c2.1 0 3.6-1.1 4.5-3.3zm219.2-16.3v3.5l.4 9.9c.3 2.2.8 3.8 1.6 4.8s2.1 1.5 3.8 1.5c2.3 0 3.9-.9 4.7-2.7.9-1.8 1.3-4.8 1.4-8.9l13.3.8c.1.6.1 1.4.1 2.4 0 6.3-1.7 11-5.2 14.1s-8.3 4.7-14.6 4.7c-7.6 0-12.9-2.4-15.9-7.1s-4.6-12.1-4.6-22V61.6c.34-17 3.33-29.45 20.9-29.5 5.3 0 9.3 1 12.1 2.9s4.8 4.9 6 9 1.7 9.7 1.7 16.9v11.7h-25.7zm2-28.8c-.8 1-1.3 2.5-1.6 4.7s-.4 10-.4 10v4.9h11.2v-4.9c0 4.9-.1-7.7-.4-10s-.8-3.9-1.6-4.8-2-1.4-3.6-1.4c-1.7.1-2.9.6-3.6 1.5zM190.5 71.4L173 8.2h15.3s7.15 31.7 9.6 46.6h.4c2.78-15.82 9.8-46.6 9.8-46.6h15.3l-17.7 63.1v30.3h-15.1V71.4z"/><path id="A" d="M311.5 33.4v68.3h-12l-1.3-8.4h-.3c-3.3 6.3-8.2 9.5-14.7 9.5-11.77-.03-13.08-10-13.2-18.4v-51h15.4v50.1c0 3 .3 5.2 1 6.5 1.42 2.78 5.1 2.07 7.1.7a8 8 0 0 0 2.7-3.1V33.4z" /><path d="M353.3 20.6H338v81.1h-15V20.6h-15.3V8.2h45.5v12.4zm87.9 23.7c-.9-4.3-2.4-7.4-4.5-9.4-2.1-1.9-4.9-2.9-8.6-2.9a14.1 14.1 0 0 0-7.9 2.4c-2.5 1.6-4.3 3.7-5.7 6.3h-.1v-36h-14.8v96.9h12.7l1.6-6.5h.3a14 14 0 0 0 5.3 5.5c2.4 1.3 5 2 7.9 2 5.2 0 9-2.4 11.5-7.2 2.4-4.8 3.7-12.3 3.7-22.4V62.2c0-7.6-.5-13.6-1.4-17.9zm-14.1 27.9c0 5-.2 8.9-.6 11.7s-1.1 4.8-2.1 6-2.3 1.8-3.9 1.8c-3.1-.1-4.86-1.5-6.1-3.6V49.3c.5-1.9 1.4-3.4 2.7-4.6 2.2-2.47 5.96-2.5 7.7 0 .9 1.2 1.4 3.3 1.8 6.2.3 2.9.5 7 .5 12.4z"/></g><use xlink:href="#A" x="78.9"/></svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-lg-0">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 84.3 20.7" style="enable-background:new 0 0 84.3 20.7;" xml:space="preserve">
<path d="M35.4,20.1V6.6h-0.1l-5.4,13.5h-2.1L22.4,6.6h-0.1v13.5h-2.5V1.8H23l5.8,14.6h0.1l5.8-14.6H38v18.3L35.4,20.1L35.4,20.1z
M52.1,20.1h-2.6v-2.3h-0.1c-0.7,1.6-2.1,2.5-4.1,2.5c-2.9,0-4.6-1.9-4.6-5V6.7h2.7v8.1c0,2,1,3.1,2.8,3.1c2,0,3.1-1.4,3.1-3.5V6.7
h2.7L52.1,20.1L52.1,20.1z M59.5,6.5c3.1,0,5,1.7,5.1,4.2h-2.5c-0.2-1.3-1.1-2.1-2.6-2.1C58,8.6,57,9.3,57,10.4c0,0.8,0.6,1.4,2,1.7
l2.1,0.5c2.7,0.6,3.7,1.7,3.7,3.6c0,2.4-2.2,4.1-5.3,4.1c-3.3,0-5.3-1.6-5.5-4.2h2.7c0.2,1.4,1.2,2.1,2.8,2.1c1.6,0,2.6-0.7,2.6-1.8
c0-0.9-0.5-1.4-1.9-1.7l-2.1-0.5c-2.5-0.6-3.7-1.8-3.7-3.8C54.4,8.1,56.4,6.5,59.5,6.5z M66.8,3.2c0-0.9,0.7-1.6,1.6-1.6
c0.9,0,1.6,0.7,1.6,1.6c0,0.9-0.7,1.6-1.6,1.6C67.5,4.8,66.8,4.1,66.8,3.2L66.8,3.2z M67,6.7h2.7v13.4H67V6.7z M81.1,11.3
c-0.3-1.4-1.3-2.6-3.1-2.6c-2.1,0-3.5,1.8-3.5,4.6c0,2.9,1.4,4.6,3.5,4.6c1.7,0,2.7-0.9,3.1-2.5h2.6c-0.3,2.8-2.5,4.8-5.7,4.8
c-3.8,0-6.2-2.6-6.2-6.9c0-4.2,2.4-6.9,6.2-6.9c3.4,0,5.4,2.2,5.7,4.8L81.1,11.3L81.1,11.3z M11.5,3.6C10.8,4.4,9.7,5.1,8.6,5
C8.4,3.8,9,2.6,9.6,1.9c0.7-0.9,1.9-1.5,2.9-1.5C12.6,1.5,12.2,2.7,11.5,3.6L11.5,3.6z M12.5,5.2c0.6,0,2.4,0.2,3.6,2
c-0.1,0.1-2.1,1.3-2.1,3.8c0,3,2.6,4,2.6,4c0,0.1-0.4,1.4-1.3,2.8c-0.8,1.2-1.7,2.4-3,2.4c-1.3,0-1.7-0.8-3.2-0.8
c-1.5,0-2,0.8-3.2,0.8c-1.3,0-2.3-1.3-3.1-2.5c-1.7-2.5-3-7-1.2-10c0.8-1.5,2.4-2.5,4-2.5c1.3,0,2.5,0.9,3.2,0.9
C9.5,6.1,10.9,5.1,12.5,5.2L12.5,5.2z"/>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-sm-0">
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 454.93066 280.76587"
xml:space="preserve"
version="1.1"
id="svg3355">
<g
transform="matrix(1.3333333,0,0,-1.3333333,-180.53426,935.79824)"
id="g3363">
<g
transform="translate(420.064,651.1567)"
id="g3365">
<path
id="path3367"
d="m 0,0 -13.652,-13.651 -21.445,0 -11.699,-11.697 0,11.697 -17.548,0 0,56.544 L 0,42.893 0,0 Z m -72.146,50.692 -3.899,-15.599 0,-70.19 17.55,0 0,-9.751 9.746,0 9.752,9.751 15.596,0 31.196,31.192 0,54.597 -79.941,0 z" />
</g>
<path
id="path3369"
d="m 377.167,655.053 7.799,0 0,23.401 -7.799,0 0,-23.401 z m 21.446,0 7.799,0 0,23.401 -7.799,0 0,-23.401 z" /><g
transform="translate(468.8057,565.3643)"
id="g3371">
<path
id="path3373"
d="m 0,0 -13.646,13.645 -25.35,0 0,17.55 -21.451,0 0,-79.94 21.451,0 0,40.947 17.545,0 0,-40.947 21.451,0 L 0,0 Z m -68.241,13.645 -33.146,0 L -115.036,0 l 0,-35.094 13.649,-13.651 33.146,0 0,21.445 -25.35,0 0,19.502 25.35,0 0,21.443 z m -54.594,0 -17.545,0 0,17.55 -21.451,0 0,-66.289 13.649,-13.651 25.347,0 0,21.445 -17.545,0 0,19.502 17.545,0 0,21.443 z m -46.795,17.55 -21.445,0 0,-9.752 21.445,0 0,9.752 z m 0,-17.55 -21.445,0 0,-62.389 21.445,0 0,62.389 z m -29.244,0 -21.447,0 0,-40.945 -7.797,0 0,40.945 -21.448,0 0,-40.945 -7.796,0 0,40.945 -21.451,0 0,-62.39 66.293,0 13.646,13.651 0,48.739 z m -87.738,0 -17.546,0 0,17.55 -21.447,0 0,-66.289 13.648,-13.651 25.345,0 0,21.445 -17.546,0 0,19.502 17.546,0 0,21.443 z M 7.793,3.9 l 0,-58.491 -29.244,-19.499 -19.496,0 0,9.752 -13.648,-9.752 -17.545,0 0,9.752 -9.746,-9.752 -31.197,0 -9.752,9.752 -1.952,-9.752 -27.292,0 -11.161,9.752 -0.625,-9.752 -30.935,0 -1.094,9.752 -8.374,-9.752 -47.25,0 -9.75,3.9 0,-3.9 -25.344,0 -29.247,17.552 -17.546,17.539 0,77.991 37.047,0 17.545,-17.549 79.939,0 0,17.549 66.29,0 0,-17.549 17.548,0 0,-9.746 9.752,9.746 19.493,0 17.55,17.549 37.044,0 0,-17.549 21.448,0 L 7.793,3.9 Z" />
</g>
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 291.379" enable-background="new 0 0 1000 291.379" xml:space="preserve">
<g>
<path fill="#7e7e7e" d="M191.102,105.182c18.814,13.442,41.862,21.351,66.755,21.351V78.656c-4.711,0.001-9.41-0.49-14.019-1.466
v37.686c-24.891,0-47.936-7.909-66.755-21.35v97.703c0,48.876-39.642,88.495-88.54,88.495c-18.245,0-35.203-5.513-49.29-14.968
c16.078,16.431,38.5,26.624,63.306,26.624c48.901,0,88.545-39.619,88.545-88.497v-97.701H191.102z M208.396,56.88
c-9.615-10.499-15.928-24.067-17.294-39.067v-6.158h-13.285C181.161,30.72,192.567,47.008,208.396,56.88L208.396,56.88z
M70.181,227.25c-5.372-7.04-8.275-15.652-8.262-24.507c0-22.354,18.132-40.479,40.502-40.479
c4.169-0.001,8.313,0.637,12.286,1.897v-48.947c-4.643-0.636-9.329-0.906-14.013-0.807v38.098c-3.976-1.26-8.122-1.9-12.292-1.896
c-22.37,0-40.501,18.123-40.501,40.48C47.901,206.897,56.964,220.583,70.181,227.25z"/>
<path d="M177.083,93.525c18.819,13.441,41.864,21.35,66.755,21.35V77.189c-13.894-2.958-26.194-10.215-35.442-20.309
c-15.83-9.873-27.235-26.161-30.579-45.225h-34.896v191.226c-0.079,22.293-18.18,40.344-40.502,40.344
c-13.154,0-24.84-6.267-32.241-15.975c-13.216-6.667-22.279-20.354-22.279-36.16c0-22.355,18.131-40.48,40.501-40.48
c4.286,0,8.417,0.667,12.292,1.896v-38.098c-48.039,0.992-86.674,40.224-86.674,88.474c0,24.086,9.621,45.921,25.236,61.875
c14.087,9.454,31.045,14.968,49.29,14.968c48.899,0,88.54-39.621,88.54-88.496V93.525L177.083,93.525z"/>
<path fill="#7e7e7e" d="M243.838,77.189V66.999c-12.529,0.019-24.812-3.488-35.442-10.12
C217.806,67.176,230.197,74.276,243.838,77.189z M177.817,11.655c-0.319-1.822-0.564-3.656-0.734-5.497V0h-48.182v191.228
c-0.077,22.29-18.177,40.341-40.501,40.341c-6.554,0-12.742-1.555-18.222-4.318c7.401,9.707,19.087,15.973,32.241,15.973
c22.32,0,40.424-18.049,40.502-40.342V11.655H177.817z M100.694,114.408V103.56c-4.026-0.55-8.085-0.826-12.149-0.824
C39.642,102.735,0,142.356,0,191.228c0,30.64,15.58,57.643,39.255,73.527c-15.615-15.953-25.236-37.789-25.236-61.874
C14.019,154.632,52.653,115.4,100.694,114.408z"/>
<path fill="#7e7e7e" d="M802.126,239.659c34.989,0,63.354-28.136,63.354-62.84c0-34.703-28.365-62.844-63.354-62.844h-9.545
c34.99,0,63.355,28.14,63.355,62.844s-28.365,62.84-63.355,62.84H802.126z"/>
<path fill="#7e7e7e" d="M791.716,113.975h-9.544c-34.988,0-63.358,28.14-63.358,62.844s28.37,62.84,63.358,62.84h9.544
c-34.993,0-63.358-28.136-63.358-62.84C728.357,142.116,756.723,113.975,791.716,113.975z"/>
<path d="M310.062,85.572v31.853h37.311v121.374h37.326V118.285h30.372l10.414-32.712H310.062z M615.544,85.572v31.853h37.311
v121.374h37.326V118.285h30.371l10.413-32.712H615.544z M432.434,103.648c0-9.981,8.146-18.076,18.21-18.076
c10.073,0,18.228,8.095,18.228,18.076c0,9.982-8.15,18.077-18.228,18.077C440.58,121.72,432.434,113.63,432.434,103.648z
M432.434,134.641h36.438v104.158h-36.438V134.641z M484.496,85.572v153.226h36.452v-39.594l11.283-10.339l35.577,50.793h39.05
l-51.207-74.03l45.997-44.768h-44.258l-36.442,36.153V85.572H484.496z M877.623,85.572v153.226h36.457v-39.594l11.278-10.339
l35.587,50.793H1000l-51.207-74.03l45.995-44.768h-44.256l-36.452,36.153V85.572H877.623z"/>
<path d="M792.578,239.659c34.988,0,63.358-28.136,63.358-62.84c0-34.703-28.37-62.844-63.358-62.844h-0.865
c-34.99,0-63.355,28.14-63.355,62.844s28.365,62.84,63.355,62.84H792.578z M761.336,176.819c0-16.881,13.8-30.555,30.817-30.555
c17.005,0,30.804,13.674,30.804,30.555s-13.799,30.563-30.804,30.563C775.136,207.379,761.336,193.7,761.336,176.819z"/>
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center">
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2562.99 356.19"><defs><style>.cls-1{fill:#141518;}</style></defs><path class="cls-1" d="M118.51,280.62H260.29c75,0,123.42,56.63,123.42,122.44s-48.4,122.43-123.42,122.43H196.9v93.89H118.51ZM304.83,403.06c0-31.46-21.3-58.56-54.21-58.56H196.9V461.61h53.72C283.53,461.61,304.83,434.52,304.83,403.06Z" transform="translate(-118.51 -271.91)"/><path class="cls-1" d="M683.76,619.38,670.7,578.25H550.2l-13.07,41.13H453.39l121-338.76h72.1L768.94,619.38Zm-73.08-242L569.06,516.79h82.26Z" transform="translate(-118.51 -271.91)"/><path class="cls-1" d="M900.56,348.37H824.12V280.62h231.79v67.75H979v271h-78.4Z" transform="translate(-118.51 -271.91)"/><path class="cls-1" d="M1177.86,280.62h142.3c75,0,123.4,56.63,123.4,122.44,0,47.43-25.17,89.52-67.28,109.37l67.76,107h-91l-60-93.89h-36.78v93.89h-78.4Zm186.32,122.44c0-31.46-21.3-58.56-54.2-58.56h-53.72V461.61H1310C1342.88,461.61,1364.18,434.52,1364.18,403.06Z" transform="translate(-118.51 -271.91)"/><path class="cls-1" d="M1655,343.54v76.93h128.25V482H1655v74.51h128.25v62.92H1576.65V280.62h206.64v62.92Z" transform="translate(-118.51 -271.91)"/><path class="cls-1" d="M1910.56,450c0-92.92,66.79-178.09,179.56-178.09,112.26,0,179.05,85.17,179.05,178.09s-66.79,178.09-179.05,178.09C1977.35,628.09,1910.56,542.92,1910.56,450Zm278.76,0c0-55.65-37.75-107.43-99.2-107.43-61.95,0-99.21,51.78-99.21,107.43s37.26,107.43,99.21,107.43C2151.57,557.43,2189.32,505.65,2189.32,450Z" transform="translate(-118.51 -271.91)"/><path class="cls-1" d="M2603.58,501.29V280.62h77.91V619.38h-81.78l-122-217.78V619.38h-78.39V280.62h81.78Z" transform="translate(-118.51 -271.91)"/></svg>
</div>
</div>
</div>
</section>
<section class="bg-black py-10">
<div class="container px-5">
<div class="row gx-5 align-items-center justify-content-center">
<div class="col-lg-6">
<div class="mb-5">
<h2 class="h2-benefits-white">Paperchain Wallet</h2>
<p class="lead text-white">An app built for creators, Paperchain is the home for creator income. Make your money, get paid everyday.</p>
</div>
<div class="row gx-5">
<div class="col-md-10 mb-4">
<h6 class="text-gray-500 lead">Digital first</h6>
<p class="mb-2 text-white">A money app that shows you what you need to know when you login every morning — how much money you made yesterday.</p>
</div>
</div>
<div class="row gx-5">
<div class="col-md-10 mb-4">
<h6 class="text-gray-500 lead">Flexibility</h6>
<p class="mb-2 text-white">With easy card-locking and transaction notifications, we make sure you have complete control over when, where and how your Paperchain card is being used. </p>
</div>
</div>
<div class="row gx-5">
<div class="col-md-10 mb-4">
<h6 class="text-gray-500 lead">Security</h6>
<p class="mb-2 text-white">Create virtual cards in your wallet. Use your virtual card online while keeping your physical card safe.</p>
</div>
</div>
</div>
<div class="col-md-9 col-lg-6 aos-init aos-animate" data-aos="slide-left">
<div class="mb-4">
<div class="content-skewed app-display content-skewed-left"><img class="img-fluid-app rounded-3" src="assets/img/paperchain-app-iphone.png"></div>
</div>
</div>
</div>
<div class="text-uppercase-expanded text-center mb-5 mt-15 text-gray-300">As Featured In</div>
<div class="row gx-5 brands text-white align-items-center mb-10">
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-lg-0">
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
viewBox="0 0 264.58333 99.607416"
version="1.1"
id="yahoo finance"
inkscape:version="1.0.2 (e86c870879, 2021-01-15, custom)"
sodipodi:docname="Yahoo! Finance 2019.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.0289025"
inkscape:cx="504.78367"
inkscape:cy="186.63142"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:window-width="1440"
inkscape:window-height="837"
inkscape:window-x="-8"
inkscape:window-y="-8"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:document-rotation="0" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(260.95542,41.213839)">
<g
id="g911">
<g
id="g884">
<path
d="m -153.40783,34.514137 c 0,-2.145953 1.39884,-3.104783 3.27854,-3.104783 1.00543,0 1.74856,0.228293 2.40427,0.547903 v -6.894445 c -1.00542,-0.502244 -2.40427,-0.776195 -3.84683,-0.776195 -6.16367,0 -9.79193,3.789661 -9.79193,10.044886 v 0.593561 h -2.92884 v 6.711811 h 2.92884 v 16.117477 h 7.95595 V 41.636875 h 5.37682 v -6.711811 h -5.37682 z"
style="font-size:44.6757px;line-height:1.25;font-family:'Centra No2';-inkscape-font-specification:'Centra No2';fill-opacity:1;stroke-width:1.11689"
id="path32" />
<path
d="M -136.84027,57.754352 V 34.925064 h -7.99967 v 22.829288 z m 0.48085,-29.267146 c 0,-2.465563 -1.96713,-4.611516 -4.50254,-4.611516 -2.44799,0 -4.45883,2.100294 -4.45883,4.611516 0,2.511221 2.01084,4.611515 4.45883,4.611515 2.53541,0 4.50254,-2.145953 4.50254,-4.611515 z"
style="font-size:44.6757px;line-height:1.25;font-family:'Centra No2';-inkscape-font-specification:'Centra No2';fill-opacity:1;stroke-width:1.11689"
id="path34" />
<path
d="m -125.57595,45.609171 c 0,-2.374246 1.13656,-3.698344 2.88512,-3.698344 1.74856,0 2.79769,1.27844 2.79769,3.607027 v 12.236498 h 7.99967 V 43.234925 c 0,-5.524687 -2.88513,-8.94908 -7.60624,-8.94908 -2.66655,0 -4.85225,1.187123 -6.07624,3.424393 v -2.785174 h -7.99966 v 22.829288 h 7.99966 z"
style="font-size:44.6757px;line-height:1.25;font-family:'Centra No2';-inkscape-font-specification:'Centra No2';fill-opacity:1;stroke-width:1.11689"
id="path36" />
<path
d="m -98.811227,34.468479 c -6.612083,0 -10.852933,5.981273 -10.852933,11.962547 0,6.666151 4.65126,11.962547 10.761733,11.962547 4.56005,0 6.29287,-2.785174 6.29287,-2.785174 v 2.191612 h 7.706486 V 35.016382 h -7.706486 v 2.054635 c 0,0 -1.960822,-2.602538 -6.20167,-2.602538 z m 1.64162,7.35103 c 3.100833,0 4.651251,2.419905 4.651251,4.611517 0,2.374246 -1.687219,4.702833 -4.651251,4.702833 -2.41683,0 -4.651263,-2.008978 -4.651263,-4.611517 0,-2.602537 1.77843,-4.702833 4.651263,-4.702833 z"
style="font-size:44.6757px;line-height:1.25;font-family:'Centra No2';-inkscape-font-specification:'Centra No2';fill-opacity:1;stroke-width:1.14074"
id="path38" />
<path
d="m -73.119293,45.609171 c 0,-2.374246 1.136564,-3.698344 2.885124,-3.698344 1.748559,0 2.797695,1.27844 2.797695,3.607027 v 12.236498 h 7.999659 V 43.234925 c 0,-5.524687 -2.885123,-8.94908 -7.606234,-8.94908 -2.666553,0 -4.852252,1.187123 -6.076244,3.424393 v -2.785174 h -7.99966 v 22.829288 h 7.99966 z"
style="font-size:44.6757px;line-height:1.25;font-family:'Centra No2';-inkscape-font-specification:'Centra No2';fill-opacity:1;stroke-width:1.11689"
id="path40" />
<path
d="m -57.076358,46.339709 c 0,7.396688 5.070822,12.053864 11.671634,12.053864 1.704845,0 3.540833,-0.365269 5.245678,-1.278441 v -7.579323 c -1.223991,0.913172 -2.53541,1.369757 -3.977973,1.369757 -2.797694,0 -4.852252,-1.826343 -4.852252,-4.565857 0,-2.739515 2.054558,-4.565858 4.852252,-4.565858 1.398848,0 2.710268,0.410927 3.977973,1.27844 v -7.579323 c -1.529989,-0.776196 -3.40969,-1.187123 -5.114536,-1.187123 -6.863096,0 -11.802776,5.068101 -11.802776,12.053864 z"
style="font-size:44.6757px;line-height:1.25;font-family:'Centra No2';-inkscape-font-specification:'Centra No2';fill-opacity:1;stroke-width:1.11689"
id="path42" />
<path
d="m -22.756342,49.718444 c -0.830566,1.415415 -1.879702,2.008976 -3.628261,2.008976 -2.098272,0 -3.846831,-1.324098 -4.021686,-3.287417 h 15.125038 c 0.04372,-0.410927 0.08743,-0.95883 0.08743,-1.689367 0,-7.533666 -4.589969,-12.464791 -11.40935,-12.464791 -6.600813,0 -11.627921,5.159419 -11.627921,12.053864 0,7.168396 4.895967,12.053864 11.890204,12.053864 4.93968,0 8.65537,-2.191612 10.447642,-6.163908 z m -7.606234,-6.072592 c 0.174856,-1.689367 1.661132,-2.967807 3.715689,-2.967807 2.054558,0 3.540833,1.187123 3.715688,2.967807 z"
style="font-size:44.6757px;line-height:1.25;font-family:'Centra No2';-inkscape-font-specification:'Centra No2';fill-opacity:1;stroke-width:1.11689"
id="path44" />
</g>
<g
id="g893">
<path
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.0875601;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.6131;stroke-dasharray:none;stroke-opacity:1"
d="m -260.95542,-23.351576 h 15.74097 l 9.16577,23.44971543 9.28475,-23.44971543 h 15.32641 l -23.07818,55.513102 h -15.42354 l 6.31728,-14.710096 z"
id="path1139"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccc" />
<path
inkscape:connector-curvature="0"
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.0875601;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.6131;stroke-dasharray:none;stroke-opacity:1"
d="m -195.47141,-24.285092 c -11.82693,0 -19.30359,10.60691 -19.30359,21.1697058 0,11.886248 8.19723,21.3099212 19.07922,21.3099212 8.11755,0 11.17827,-4.945745 11.17827,-4.945745 v 3.852645 h 13.72915 v -40.452766 h -13.72915 v 3.677524 c 0,0 -3.41477,-4.611285 -10.9539,-4.611285 z m 2.92026,12.999928 c 5.45704,0 8.27307,4.3180081 8.27307,8.2142225 0,4.1954942 -3.01696,8.3127463 -8.27307,8.3127463 -4.35623,0 -8.29289,-3.559984 -8.29289,-8.1341932 0,-4.6389336 3.16648,-8.3927756 8.29289,-8.3927756 z"
id="path1141" />
<path
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.0875601;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.6131;stroke-dasharray:none;stroke-opacity:1"
d="m -166.06011,17.10119 v -58.315029 h 14.35985 v 21.680094 c 0,0 3.41082,-4.746342 10.5543,-4.746342 8.73797,0 13.85746,6.510502 13.85746,15.813727 v 25.56755 h -14.25479 V -4.9639552 c 0,-3.148416 -1.49969,-6.1899038 -4.89676,-6.1899038 -3.45803,0 -5.26021,3.0875793 -5.26021,6.1899038 V 17.10119 Z"
id="path1145"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccccccccccc" />
<path
inkscape:connector-curvature="0"
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.0875601;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.6131;stroke-dasharray:none;stroke-opacity:1"
d="m -102.80546,-24.280304 c -13.54405,0 -21.60888,10.298919 -21.60888,21.3332079 0,12.5572045 9.76468,21.1416311 21.66017,21.1416311 11.529646,0 21.618462,-8.1948543 21.618462,-20.9309613 0,-13.9356097 -10.563298,-21.5438777 -21.669752,-21.5438777 z m 0.12933,13.114187 c 4.784243,0 8.094514,3.9847543 8.094514,8.2340454 0,3.62432286 -3.084573,8.0945471 -8.094514,8.0945471 -4.5906,0 -8.03569,-3.6823588 -8.03569,-8.1341932 0,-4.2885533 2.86425,-8.1943993 8.03569,-8.1943993 z"
id="path1147" />
<path
id="path1153"
d="m -57.212888,-24.280304 c -13.544038,0 -21.608877,10.298919 -21.608877,21.3332079 0,12.5572045 9.764684,21.1416311 21.660172,21.1416311 11.529647,0 21.618463,-8.1948543 21.618463,-20.9309613 0,-13.9356097 -10.563285,-21.5438777 -21.669758,-21.5438777 z m 0.12933,13.114187 c 4.784232,0 8.094517,3.9847543 8.094517,8.2340454 0,3.62432286 -3.084586,8.0945471 -8.094517,8.0945471 -4.59061,0 -8.035691,-3.6823588 -8.035691,-8.1341932 0,-4.2885533 2.864249,-8.1943993 8.035691,-8.1943993 z"
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.0875601;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.6131;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<circle
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.0882915;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.6131;stroke-dasharray:none;stroke-opacity:1"
id="path1155"
cx="-24.212173"
cy="8.4245415"
r="9.5354834" />
<path
style="opacity:1;fill-opacity:1;stroke:none;stroke-width:0.0875601;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:2.6131;stroke-dasharray:none;stroke-opacity:1"
d="M -11.543414,-4.6137152 H -28.709769 L -13.474345,-41.213839 H 3.627914 Z"
id="path1157"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
</g>
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 col-md-2 d-flex justify-content-center mb-5 mb-lg-0">
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="79.135628mm"
height="16.673031mm"
viewBox="0 0 79.135628 16.673031"
version="1.1"
id="billboard"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="billboard.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#00ffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:zoom="0.35"
inkscape:cx="156.38093"
inkscape:cy="-444.20618"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-64.457545,-14.630752)">
<g
id="g10"
transform="matrix(0.05220028,0,0,-0.05220028,64.457545,31.303782)">
<g
id="g12"
transform="scale(0.1)">
<path
d="m 2335.26,34.5391 h 709.85 V 2220.93 H 2335.26 V 34.5391"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path14"
inkscape:connector-curvature="0" />
<path
d="m 3192.08,34.5391 h 709.98 V 3075.8 H 3192.08 V 34.5391"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path16"
inkscape:connector-curvature="0" />
<path
d="M 4049.02,34.5391 H 4759 V 3075.8 H 4049.02 V 34.5391"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path18"
inkscape:connector-curvature="0" />
<path
d="m 11689.8,2220.79 h 710 v -225.44 c 105.1,170.12 260.5,238.17 474.7,246.73 v -752.79 h -84 c -252.1,0 -390.7,-144.66 -390.7,-412.68 V 34.5117 h -710 V 2220.79"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path20"
inkscape:connector-curvature="0" />
<path
d="m 2278.57,2777.21 c 0,230.17 184.35,416.84 411.64,416.84 227.4,0 411.75,-186.67 411.75,-416.84 0,-230.18 -184.35,-416.85 -411.75,-416.85 -227.29,0 -411.64,186.67 -411.64,416.85"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path22"
inkscape:connector-curvature="0" />
<path
d="m 11542.7,2217.18 h -710 v -162.83 c -99.6,110.18 -331.7,201.25 -508.2,201.25 C 9705.01,2255.6 9287.24,1778 9287.24,1105.87 9287.24,433.859 9757.3,0 10332.8,0 c 176.5,0 369.8,59.6016 499.9,157.391 V 34.0195 h 710 V 990.961 c 0,39.229 -0.2,77.539 -1,114.909 0.8,37.38 1,75.68 1,114.91 z M 10365.1,720.391 c -227.4,0 -411.63,186.789 -411.63,416.949 0,230.18 184.23,416.85 411.63,416.85 227.4,0 411.6,-186.67 411.6,-416.85 0,-230.16 -184.2,-416.949 -411.6,-416.949"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path24"
inkscape:connector-curvature="0" />
<path
d="m 14450,3075.99 v -965.5 c -138.6,97.79 -298.2,140.26 -491.6,140.26 -592.2,0 -1054.3,-463.59 -1054.3,-1131.33 0,-629.432 445.3,-1114.31062 987.1,-1114.31062 222.8,0 403.3,72.32032 571.4,229.60162 V 34.8398 H 15160 V 3075.99 Z M 14032,705.699 c -227.4,0 -411.6,186.781 -411.6,416.961 0,230.18 184.2,416.84 411.6,416.84 227.4,0 411.7,-186.66 411.7,-416.84 0,-230.18 -184.3,-416.961 -411.7,-416.961"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path26"
inkscape:connector-curvature="0" />
<path
d="m 6116.4,2250.15 c -193.27,0 -352.97,-42.59 -491.61,-140.26 v 965.5 H 4914.81 V 34.1289 h 697.36 V 234.102 C 5780.32,76.7188 5960.85,4.39844 6183.63,4.39844 c 541.82,0 987.13,484.88256 987.13,1114.30156 0,667.85 -462.09,1131.45 -1054.36,1131.45 M 6040.83,700.359 c -227.41,0 -411.76,186.661 -411.76,416.961 0,230.06 184.35,416.72 411.76,416.72 227.28,0 411.63,-186.66 411.63,-416.72 0,-230.3 -184.35,-416.961 -411.63,-416.961"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path28"
inkscape:connector-curvature="0" />
<path
d="m 1201.58,2250.15 c -193.26,0 -352.967,-42.59 -491.603,-140.26 v 965.5 H 0 V 34.1289 H 697.359 V 234.102 C 865.508,76.7188 1046.04,4.39844 1268.81,4.39844 c 541.82,0 987.13,484.88256 987.13,1114.30156 0,667.85 -461.97,1131.45 -1054.36,1131.45 M 1126.01,700.359 c -227.401,0 -411.756,186.661 -411.756,416.961 0,230.06 184.355,416.72 411.756,416.72 227.28,0 411.63,-186.66 411.63,-416.72 0,-230.3 -184.35,-416.961 -411.63,-416.961"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path30"
inkscape:connector-curvature="0" />
<path
d="M 8231.67,2268.72 C 7618.32,2268.72 7131,1758.25 7131,1137.39 7131,516.289 7614.03,5.83203 8231.67,5.83203 c 621.79,0 1100.65,514.74997 1100.65,1131.55797 0,616.58 -487.31,1131.33 -1100.65,1131.33 m 0,-1535.099 c -227.4,0 -411.64,186.66 -411.64,416.959 0,230.07 184.24,416.83 411.64,416.83 227.39,0 411.62,-186.76 411.62,-416.83 0,-230.299 -184.23,-416.959 -411.62,-416.959"
style="fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path32"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-lg-0">
<svg style="enable-background:new 0 0 508.2 166.1" version="1.1" viewBox="0 0 508.2 166.1" xml:space="preserve" id="npr" xmlns="http://www.w3.org/2000/svg">
<title>National Public Radio logo</title>
<style type="text/css">
.st0{fill:#fff;}
.st1{fill:#fff;}
.st2{fill:#fff;}
.st3{fill:#000;}
</style>
<path class="st0" d="M169.8,166.1V0H0v166.1H169.8z"/>
<path class="st1" d="M340.4,166.1V0H169.8v166.1H340.4z"/>
<path class="st2" d="M508.2,166.1V0H340.4v166.1H508.2z"/>
<g transform="translate(-33.03 -23.33)">
<path class="st3" d="m135.7 151.4v-50.3c0-7.4-1.4-12.8-4.3-16.3s-7.5-5.1-14-5.1c-3.4 0.1-6.6 1-9.6 2.5-3.1 1.4-5.9 3.6-8 6.3v63h-20.3v-87.5h14.7l3.8 8.2c5.5-6.4 13.7-9.6 24.6-9.6 10.4 0 18.6 3.1 24.6 9.3s9 14.9 9 26v53.6l-20.5-0.1z"/>
<path class="st3" d="m286.5 153.1c13.3 0 23.9-3.9 31.6-11.6s11.6-18.7 11.6-33c0-30.7-13.9-46-41.8-46-7-0.2-13.8 2.4-18.8 7.3v-5.8h-20.4v110.6h20.3v-25.3c5.5 2.6 11.5 3.9 17.5 3.8zm-4.5-73.2c9.4 0 16.1 2.1 20.2 6.3s6.1 11.5 6.1 21.8c0 9.7-2.1 16.7-6.1 21.2-4.1 4.5-10.8 6.7-20.2 6.7-4.7 0.1-9.3-1.5-12.9-4.5v-45.8c3.3-3.6 8-5.6 12.9-5.7z"/>
<path class="st3" d="m481.3 83.1c-3.6-2.3-7.7-3.5-11.9-3.4-4.7 0-8.9 2.1-12.5 6.4-3.7 4.4-5.7 10-5.5 15.7v49.6h-20.4v-87.4h20.4v8.4c5.7-6.5 13.2-9.8 22.7-9.8 6.9 0 12.2 1.1 15.9 3.2l-8.7 17.3z"/>
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-sm-0">
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
x="0px"
y="0px"
viewBox="0 0 115.1 20"
id="pitchfork"
sodipodi:docname="Pitchfork_logo.svg"
inkscape:version="1.0.2 (e86c870879, 2021-01-15, custom)">
<title
id="title21">Pitchfork logo</title>
<metadata
id="metadata19">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>Pitchfork logo</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs17" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="687"
inkscape:window-height="480"
id="namedview15"
showgrid="false"
inkscape:zoom="9.0529975"
inkscape:cx="57.549999"
inkscape:cy="10"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="svg13" />
<g
id="g11">
<path
id="letter_P"
d="M0,18.1c1.5,0,2.1-0.7,2.1-2.3V4.2c0-1.6-0.5-2.3-2.1-2.3V0.3h8.6c4.7,0,7.8,2.1,7.8,5.8 c0,3.4-2.8,5.8-7.9,5.8H7.1v3.8c0,1.8,0.9,2.3,3.4,2.3v1.6H0V18.1z M7.1,1.8v8.7h0.8c2.4,0,3.7-1.8,3.7-4.4c0-2.7-1.3-4.3-3.8-4.3 H7.1z" />
<path
id="letter_i"
d="M16.6,18.1c1.4,0,1.9-0.6,1.9-2.1v-5.4c0-0.8-0.6-1.3-1.4-1.2l-0.5,0V7.7l5.3-1.6h1.3v9.8 c0,1.5,0.5,2.1,1.9,2.1v1.6h-8.6V18.1z M20.9,0.5c1.4,0,2.6,1.2,2.6,2.6c0,1.4-1.2,2.6-2.6,2.6c-1.4,0-2.6-1.2-2.6-2.6 C18.3,1.7,19.4,0.5,20.9,0.5" />
<path
id="letter_t"
d="M26.4,8.7h-1.8V7.6c2.1-0.6,4.7-2.3,5.5-4.8h1v4.2h3.3v1.7h-3.3v6.5c0,1.6,0.9,2.1,1.8,2.1 c0.6,0,1.3-0.2,1.7-0.5l0.5,0.9C34.3,19,32.4,20,30.5,20c-2.8,0-4.1-1.7-4.1-4.5V8.7z" />
<path
id="letter_c"
d="M41.9,6.1c1.8,0,3.4,0.5,4.9,1.3L45.1,12H44c-0.3-2.8-1.6-3.9-3-3.9c-1.7,0-2.7,1.5-2.7,3.5 c0,3,2.1,4.5,4.3,4.5c1.7,0,2.6-0.7,3.2-2l1,0.4C46.2,17.6,44.8,20,41,20c-3.5,0-6-2.5-6-6.4C35.1,9,37.8,6.1,41.9,6.1" />
<path
id="letter_h"
d="M46.4,18.1c1.4,0,1.9-0.6,1.9-2.1V4.4c0-0.8-0.6-1.2-1.4-1.2h-0.6V1.4L52,0h1v8.9c0.7-1.9,2.1-2.8,4-2.8 c2.5,0,4.2,1.4,4.2,4.3v5.5c0,1.5,0.5,2.1,1.9,2.1v1.6h-7.9v-1.6c1.2,0,1.2-0.7,1.2-2v-5.5c0-1.2-0.6-1.8-1.7-1.8 c-0.9,0-1.6,0.6-1.8,1.5V16c0,1.3,0.1,2,1.2,2v1.6h-7.9V18.1z" />
<path
id="letter_f"
d="M63.9,18.1c1.4,0,1.9-0.6,1.9-2.1V8.7h-1.9V7.6c1.5,0,2-0.4,2-1.5c0-2.6,2.3-6.1,7-6.1 c1.5,0,3.1,0.5,4.5,1.1l-2,5l-1-0.2c0.1-2.7-0.8-4.4-2.4-4.4c-1.3,0-2,1.1-2,2.5c0,1.2,0.3,2.2,0.5,3h2.8v1.7h-2.7v7.2 c0,1.5,0.5,2.1,1.9,2.1v1.6h-8.6V18.1z" />
<path
id="letter_o"
d="M73.2,13c0-4.5,3.2-7,6.9-7c3.7,0,6.9,2.5,6.9,7c0,4.5-3.2,7-6.9,7C76.4,20,73.2,17.5,73.2,13 M78.5,13 c0,4.4,0.4,5.7,1.6,5.7c1.2,0,1.6-1.3,1.6-5.7c0-4.4-0.4-5.7-1.6-5.7C78.9,7.4,78.5,8.7,78.5,13" />
<path
id="letter_r"
d="M87.3,18.1c1.4,0,1.9-0.6,1.9-2.1v-5.2c0-0.8-0.6-1.3-1.4-1.3h-0.6V7.8l5-1.5h1.4v2.1 c0,1.1-0.1,2.7-0.1,3.3l0.1,0c0.4-4,2.2-5.7,4.3-5.7c0.4,0,0.5,0,0.8,0.1v4.6C97,10.4,94,10.5,94,13.6v2.3c0,1.5,0.5,2.1,1.9,2.1 v1.6h-8.6V18.1z" />
<path
id="letter_k"
d="M98.3,18.1c1.4,0,1.9-0.6,1.9-2.1V4.4c0-0.8-0.6-1.2-1.4-1.2h-0.6V1.4L104,0h1v12.2h0.2l2.3-1.1 c1.1-0.5,1.3-1,1.3-1.7c0-0.9-0.7-1.4-1.8-1.4V6.4h7v1.4c-1.5,1.8-2.9,2.5-4.5,3.3l3.1,4.2c1,1.3,1.6,2.7,2.6,2.7v1.6h-5.9 l-4.1-6.6H105v3.3c0,1.1,0.1,1.6,1.2,1.6v1.6h-7.9V18.1z" />
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center">
<svg version="1.1" id="layer" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 652 152" style="enable-background:new 0 0 652 152;" xml:space="preserve">
<g id="Page-1">
<g id="CT-logo-BlackYellow-tag">
<g id="Atoms_x2F_Icons_x2F_logos_x2F_CT-GY-icon">
<g id="Group">
<path id="Shape" d="M107.1,109l-25,10.9v-1.1c-4.8,1.2-10.2,1.9-15.2,2.2c-23.6-0.2-42.2-12.6-42.5-27.2v-5.4
c7.7,11.2,23.5,18.8,42.5,18.5c6.4,0.3,13-0.7,18.5-2.2l2.2-5.4c-6.5,2-13.7,3.3-20.7,3.3c-23.6,0-42.2-12.3-42.5-27.2V71
c7.7,10.4,23.5,17.9,42.5,17.4c8.6,0.5,16.9-1.3,24-4.4l1.1-5.4c-6.9,3.6-15.8,5.7-25,5.4c-23.6,0.3-42.2-12-42.5-27.2v-4.4
C32.2,63,48,70.6,67,70.9c10.8-0.3,21-3.2,29.4-7.6l1.1-6.5c-7.6,5.6-18.7,9.3-30.5,9.8c-23.6-0.5-42.2-12.9-42.5-28.3
c0.2-14.7,18.9-27,42.5-27.2c14,0.2,27.1,5.1,34.8,13.1l0.8,1.3h5.5l-0.8-1.3C99.6,13.7,84.1,6.8,67,6.8C40.8,6.7,20,21,20,38.2
v1.1v55.5c0.9,16.8,21.2,30.5,46.8,30.5C83.7,125.4,99,118.7,107.1,109z"/>
<path id="Shape_1_" d="M96.9,147.3l8.8-37.4l-25.3,11l15.4-64.8H66.2l7.7-31.9h94.5l-7.7,31.9h-30.8l-6.6,17.6
l34.1-14.3L96.9,147.3z M112.3,102.3l-4.4,22l36.3-54.9l-29.7,13.2l13.2-30.8h29.7l5.5-23.1H77.1l-5.5,23.1h29.7L87,113.3
L112.3,102.3z"/>
</g>
</g>
<path id="Shape_2_" d="M231.1,45.6v0.1c0.1,3.5-1,6.2-3.2,8.2s-5.2,3-9.1,3c-3.9,0-7.1-1.3-9.5-3.8s-3.6-5.8-3.6-9.8
v-6.5c0-4,1.2-7.3,3.5-9.8c2.4-2.5,5.5-3.8,9.3-3.8c4,0,7.1,1,9.4,2.9c2.3,2,3.4,4.7,3.3,8.2v0.1h-6.4c0-2.1-0.5-3.7-1.5-4.7
s-2.6-1.5-4.7-1.5c-2,0-3.5,0.8-4.6,2.4s-1.7,3.6-1.7,6.1v6.6c0,2.5,0.6,4.6,1.7,6.2c1.2,1.6,2.8,2.4,4.9,2.4c2,0,3.4-0.5,4.4-1.5
s1.5-2.6,1.5-4.7h6.3V45.6z M267.3,43c0,4-1.3,7.4-3.8,10s-5.8,3.9-9.9,3.9s-7.3-1.3-9.9-3.9c-2.5-2.6-3.8-6-3.8-10v-5.9
c0-4,1.3-7.3,3.8-10c2.5-2.6,5.8-4,9.8-4c4.1,0,7.4,1.3,9.9,4c2.6,2.6,3.8,6,3.8,10L267.3,43L267.3,43z M260.7,37
c0-2.6-0.6-4.6-1.9-6.3c-1.3-1.6-3-2.5-5.3-2.5c-2.2,0-4,0.8-5.2,2.5c-1.2,1.6-1.9,3.7-1.9,6.3v5.9c0,2.6,0.6,4.7,1.9,6.4
c1.2,1.6,3,2.5,5.2,2.5c2.3,0,4-0.8,5.3-2.5c1.3-1.6,1.9-3.8,1.9-6.4V37z M284.3,56.4h-6.6V23.6h6.6V56.4z M322.2,56.4h-6.6
l-13.2-22.1h-0.1v22.1h-6.6V23.6h6.6l13.2,22.1h0.1V23.6h6.6V56.4z M355.3,28.7h-9.4v27.7h-6.6V28.7h-9.2v-5.1h25.2V28.7z
M382.5,42h-12.2v9.4h14.5v5h-21V23.6h21v5.1h-14.4v8.2h12.2V42H382.5z M400.8,51.4h14.7v5h-21.3V23.6h6.6L400.8,51.4L400.8,51.4z
M443.5,42h-12.2v9.4h14.5v5h-21V23.6h21v5.1h-14.4v8.2h12.2V42H443.5z M480.4,52c-1,1.3-2.5,2.5-4.6,3.5c-2,1-4.6,1.5-7.8,1.5
c-4,0-7.2-1.2-9.7-3.7s-3.8-5.7-3.8-9.7v-6.9c0-4,1.2-7.2,3.7-9.7c2.4-2.5,5.6-3.8,9.4-3.8c4,0,7.1,1,9.2,2.9s3.2,4.4,3.1,7.6v0.1
h-6.2c0-1.7-0.5-3.1-1.5-4.1s-2.5-1.5-4.4-1.5c-2,0-3.6,0.8-4.9,2.3c-1.2,1.6-1.8,3.6-1.8,6v6.9c0,2.5,0.6,4.5,1.9,6.1
s3,2.3,5.1,2.3c1.6,0,2.8-0.2,3.7-0.5c0.9-0.3,1.6-0.7,2.1-1.2v-6.4h-6.3v-4.6h12.9V52H480.4z M497.4,43.3v13.1h-6.6V23.6h11.4
c3.7,0,6.7,0.9,8.8,2.6c2.1,1.7,3.2,4.1,3.2,7.1c0,1.7-0.4,3.1-1.3,4.4c-0.9,1.2-2.2,2.2-3.9,3c1.9,0.6,3.3,1.5,4.2,2.9
c0.8,1.3,1.3,3,1.3,5V51c0,0.9,0.1,1.9,0.4,2.9c0.2,1,0.7,1.7,1.3,2.2v0.5h-6.8c-0.6-0.5-1-1.3-1.2-2.4s-0.3-2.2-0.3-3.2v-2.3
c0-1.6-0.4-2.9-1.3-3.8s-2.2-1.4-3.8-1.4h-5.4V43.3z M497.4,38.3h4.7c1.8,0,3.2-0.4,4.1-1.2s1.4-1.9,1.4-3.5
c0-1.5-0.5-2.7-1.4-3.6s-2.2-1.3-4-1.3h-4.8L497.4,38.3L497.4,38.3z M542.1,49.4h-10.6l-2.2,7.1h-6.9l11.1-32.8h6.7l11,32.8h-6.9
L542.1,49.4z M533.1,44.2h7.4l-3.6-11.6h-0.1L533.1,44.2z M565.8,44.5v11.9h-6.6V23.6h12.6c3.8,0,6.7,1,8.9,2.9s3.2,4.5,3.2,7.6
s-1.1,5.7-3.2,7.6c-2.2,1.9-5.1,2.9-8.9,2.9h-6V44.5z M565.8,39.5h6c1.8,0,3.2-0.5,4.2-1.5c0.9-1,1.4-2.3,1.4-3.8
c0-1.6-0.5-2.9-1.4-3.9s-2.3-1.5-4.2-1.5h-6V39.5z M620,56.4h-6.6V42.8H600v13.6h-6.6V23.6h6.6v14.1h13.4V23.6h6.6V56.4z"/>
<g id="Tag_x2F_The-future-of-money-_x2014_-dark-grey" transform="translate(169.000000, 69.000000)">
<path id="The-future-of-money" d="M48.7,41h-4.1V19.4h-7.4v-3.5h18.9v3.5h-7.4C48.7,19.4,48.7,41,48.7,41z M76.2,41
h-4.1V29.3c0-1.5-0.3-2.6-0.9-3.3c-0.6-0.7-1.5-1.1-2.8-1.1c-1.7,0-2.9,0.5-3.7,1.5c-0.8,1-1.2,2.7-1.2,5.1v9.4h-4V14.2h4V21
c0,1.1-0.1,2.2-0.2,3.5h0.3c0.5-0.9,1.3-1.6,2.3-2.1s2.1-0.8,3.4-0.8c4.6,0,6.9,2.3,6.9,7V41z M90.1,41.3c-3,0-5.3-0.9-6.9-2.6
c-1.7-1.7-2.5-4.1-2.5-7.1c0-3.1,0.8-5.5,2.3-7.3s3.7-2.7,6.4-2.7c2.5,0,4.5,0.8,5.9,2.3c1.5,1.5,2.2,3.6,2.2,6.3v2.2H84.8
c0.1,1.8,0.6,3.3,1.5,4.2c0.9,1,2.3,1.5,4,1.5c1.1,0,2.2-0.1,3.1-0.3c1-0.2,2-0.6,3.1-1.1V40c-1,0.5-2,0.8-3,1
C92.6,41.2,91.4,41.3,90.1,41.3z M89.4,24.7c-1.3,0-2.3,0.4-3.1,1.2c-0.8,0.8-1.2,2-1.4,3.6h8.6c0-1.6-0.4-2.8-1.1-3.6
C91.7,25.1,90.7,24.7,89.4,24.7z M120.7,25h-4.6v16H112V25h-3.1v-1.9l3.1-1.2v-1.2c0-2.2,0.5-3.9,1.6-5s2.7-1.6,4.8-1.6
c1.4,0,2.8,0.2,4.2,0.7l-1.1,3.1c-1-0.3-1.9-0.5-2.9-0.5c-0.9,0-1.6,0.3-2,0.8c-0.4,0.6-0.6,1.4-0.6,2.5v1.2h4.6L120.7,25
L120.7,25z M137.4,41l-0.6-2.5h-0.2c-0.6,0.9-1.4,1.6-2.4,2.1s-2.2,0.8-3.5,0.8c-2.3,0-4-0.6-5.2-1.7s-1.7-2.9-1.7-5.2V22h4.1
v11.7c0,1.5,0.3,2.5,0.9,3.3c0.6,0.7,1.5,1.1,2.8,1.1c1.7,0,2.9-0.5,3.7-1.5s1.2-2.7,1.2-5.1V22h4.1v19H137.4z M153.4,38
c1,0,2-0.2,3-0.5v3c-0.4,0.2-1,0.4-1.7,0.5s-1.4,0.2-2.2,0.2c-3.8,0-5.7-2-5.7-6V25h-2.6v-1.8l2.8-1.5l1.4-4h2.5v4.2h5.4V25h-5.4
v10.2c0,1,0.2,1.7,0.7,2.2C151.9,37.8,152.6,38,153.4,38z M173.5,41l-0.6-2.5h-0.2c-0.6,0.9-1.4,1.6-2.4,2.1s-2.2,0.8-3.5,0.8
c-2.3,0-4-0.6-5.2-1.7c-1.1-1.1-1.7-2.9-1.7-5.2V22h4.1v11.7c0,1.5,0.3,2.5,0.9,3.3c0.6,0.7,1.5,1.1,2.8,1.1
c1.7,0,2.9-0.5,3.7-1.5s1.2-2.7,1.2-5.1V22h4.1v19H173.5z M192.1,21.6c0.8,0,1.5,0.1,2,0.2l-0.4,3.8c-0.6-0.1-1.2-0.2-1.8-0.2
c-1.6,0-2.9,0.5-3.9,1.6s-1.5,2.4-1.5,4.1V41h-4V22h3.2l0.5,3.3h0.2c0.6-1.1,1.5-2,2.5-2.7C189.8,22,190.9,21.6,192.1,21.6z
M205.2,41.3c-3,0-5.3-0.9-6.9-2.6c-1.7-1.7-2.5-4.1-2.5-7.1c0-3.1,0.8-5.5,2.3-7.3s3.7-2.7,6.4-2.7c2.5,0,4.5,0.8,5.9,2.3
c1.5,1.5,2.2,3.6,2.2,6.3v2.2h-12.7c0.1,1.8,0.6,3.3,1.5,4.2c0.9,1,2.3,1.5,4,1.5c1.1,0,2.2-0.1,3.1-0.3c1-0.2,2-0.6,3.1-1.1V40
c-1,0.5-2,0.8-3,1C207.6,41.2,206.5,41.3,205.2,41.3z M204.5,24.7c-1.3,0-2.3,0.4-3.1,1.2c-0.8,0.8-1.2,2-1.4,3.6h8.6
c0-1.6-0.4-2.8-1.1-3.6C206.7,25.1,205.7,24.7,204.5,24.7z M243.1,31.4c0,3.1-0.8,5.5-2.4,7.3c-1.6,1.7-3.8,2.6-6.6,2.6
c-1.8,0-3.3-0.4-4.7-1.2s-2.4-2-3.1-3.5c-0.7-1.5-1.1-3.2-1.1-5.2c0-3.1,0.8-5.5,2.4-7.2s3.8-2.6,6.7-2.6c2.7,0,4.9,0.9,6.5,2.7
S243.1,28.4,243.1,31.4z M229.3,31.4c0,4.4,1.6,6.6,4.9,6.6c3.2,0,4.8-2.2,4.8-6.6c0-4.3-1.6-6.5-4.8-6.5c-1.7,0-2.9,0.6-3.7,1.7
S229.3,29.3,229.3,31.4z M257.3,25h-4.6v16h-4.1V25h-3.1v-1.9l3.1-1.2v-1.2c0-2.2,0.5-3.9,1.6-5s2.7-1.6,4.8-1.6
c1.4,0,2.8,0.2,4.2,0.7l-1.1,3.1c-1-0.3-1.9-0.5-2.9-0.5c-0.9,0-1.6,0.3-2,0.8s-0.6,1.4-0.6,2.5v1.2h4.6V25H257.3z M285.7,41
h-4.1V29.3c0-1.5-0.3-2.5-0.8-3.3c-0.5-0.7-1.4-1.1-2.6-1.1c-1.6,0-2.7,0.5-3.4,1.5c-0.7,1-1.1,2.7-1.1,5.1V41h-4V22h3.2l0.6,2.5
h0.2c0.5-0.9,1.3-1.6,2.3-2.1s2.1-0.7,3.3-0.7c2.9,0,4.9,1,5.8,3h0.3c0.6-0.9,1.4-1.7,2.4-2.2s2.2-0.8,3.5-0.8
c2.3,0,3.9,0.6,5,1.7c1,1.1,1.6,2.9,1.6,5.2V41h-4V29.3c0-1.5-0.3-2.5-0.8-3.3c-0.6-0.7-1.4-1.1-2.6-1.1c-1.6,0-2.7,0.5-3.4,1.5
c-0.7,1-1.1,2.5-1.1,4.5V41H285.7z M320.1,31.4c0,3.1-0.8,5.5-2.4,7.3c-1.6,1.7-3.8,2.6-6.6,2.6c-1.8,0-3.3-0.4-4.7-1.2
c-1.4-0.8-2.4-2-3.1-3.5s-1.1-3.2-1.1-5.2c0-3.1,0.8-5.5,2.4-7.2s3.8-2.6,6.7-2.6c2.7,0,4.9,0.9,6.5,2.7
C319.3,26.1,320.1,28.4,320.1,31.4z M306.3,31.4c0,4.4,1.6,6.6,4.9,6.6c3.2,0,4.8-2.2,4.8-6.6c0-4.3-1.6-6.5-4.8-6.5
c-1.7,0-2.9,0.6-3.7,1.7C306.7,27.7,306.3,29.3,306.3,31.4z M341.5,41h-4.1V29.3c0-1.5-0.3-2.6-0.9-3.3c-0.6-0.7-1.5-1.1-2.8-1.1
c-1.7,0-3,0.5-3.7,1.5s-1.2,2.7-1.2,5.1V41h-4V22h3.2l0.6,2.5h0.2c0.6-0.9,1.4-1.6,2.4-2.1s2.2-0.7,3.5-0.7c4.6,0,6.8,2.3,6.8,7
V41z M355.4,41.3c-3,0-5.3-0.9-6.9-2.6c-1.7-1.7-2.5-4.1-2.5-7.1c0-3.1,0.8-5.5,2.3-7.3s3.7-2.7,6.4-2.7c2.5,0,4.5,0.8,5.9,2.3
c1.5,1.5,2.2,3.6,2.2,6.3v2.2h-12.7c0.1,1.8,0.6,3.3,1.5,4.2c0.9,1,2.3,1.5,4,1.5c1.1,0,2.2-0.1,3.1-0.3s2-0.6,3.1-1.1V40
c-1,0.5-2,0.8-3,1C357.8,41.2,356.7,41.3,355.4,41.3z M354.6,24.7c-1.3,0-2.3,0.4-3.1,1.2c-0.8,0.8-1.2,2-1.4,3.6h8.6
c0-1.6-0.4-2.8-1.1-3.6S355.9,24.7,354.6,24.7z M363.8,22h4.4l3.9,10.8c0.6,1.5,1,3,1.2,4.3h0.1c0.1-0.6,0.3-1.4,0.6-2.3
c0.3-0.9,1.7-5.2,4.4-12.8h4.4l-8.1,21.5c-1.5,3.9-3.9,5.9-7.4,5.9c-0.9,0-1.8-0.1-2.6-0.3v-3.2c0.6,0.1,1.3,0.2,2.1,0.2
c1.9,0,3.3-1.1,4.1-3.4l0.7-1.8L363.8,22z"/>
</g>
</g>
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 d-flex justify-content-center mb-5 mb-sm-0">
<svg version="1.1" id="musically" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 652 128" style="enable-background:new 0 0 652 128;" xml:space="preserve">
<path d="M85.6,95.8H67.9V55.9v-3.6c0-4.2-1.2-6.9-3.6-9c-2.4-1.8-5.1-2.7-8.4-2.7c-3.3,0-5.7,0.9-8.1,2.7
c-2.4,1.8-3.6,4.8-3.6,9v43.2H26.5V55.9c0-11.4,3-19.2,9-23.1s12.6-6,20.1-6.3c3.9,0,7.8,0.3,11.4,1.2c3.6,0.9,7.2,2.4,10.2,5.1
c2.4-2.1,5.7-3.9,9-4.8c3.6-0.9,7.2-1.5,10.8-1.8c7.5,0,14.4,2.1,20.7,6c6.3,3.9,9.3,12,9.3,23.7v39.6h-9c-2.4,0-4.5-0.9-6.3-2.4
c-1.5-1.5-2.4-3.6-2.4-6.3V52.3c0-4.2-1.2-6.9-3.6-9c-2.4-1.8-5.1-2.7-8.4-2.7s-5.7,0.9-8.4,2.7c-2.4,1.8-3.6,4.8-3.6,9v3.6v39.9
L85.6,95.8L85.6,95.8z M193.3,27.7v39.9c0,12-3,20.1-9.3,23.7S170.8,97,163.3,97c-7.2-0.3-14.1-2.4-20.1-6s-9-11.4-9-23.1V27.7h17.7
v43.5c0,4.2,1.2,6.9,3.6,9c2.4,1.8,5.1,2.7,8.1,2.7s5.7-0.9,8.4-2.7c2.4-1.8,3.6-4.8,3.6-9V36.4c0-2.4,0.9-4.5,2.4-6
c1.5-1.8,3.6-2.4,6.3-2.4h9V27.7z M199,73.3h17.4c0.3,3.3,1.5,6,3.9,7.5c2.4,1.8,6,2.4,10.2,2.4c3,0,5.7-0.6,7.8-1.8s3-2.7,3-4.8
c0-3-3.6-5.4-10.8-6.9c-3-0.6-5.4-0.9-6.9-1.5c-9-2.1-15-4.8-18-7.8c-3.3-3-5.1-7.2-5.1-12.3c0-6.3,2.4-11.7,7.5-15.9
c5.1-3.9,11.7-6,19.8-6c8.7,0,15.9,2.1,21,6c4.8,4.2,7.5,9.9,7.8,16.5h-11.1c-3.3,0-5.7-1.5-7.5-4.2c-0.6-0.6-1.5-1.5-2.1-2.1
c-2.1-1.5-4.8-2.4-8.4-2.4c-3.3,0-6,0.6-7.5,1.5s-2.4,2.4-2.4,4.5c0,4.2,11.7,6.6,13.2,6.9c0,0,1.2,0.3,2.7,0.6c0,0,1.2,0.3,2.4,0.6
c6.9,1.5,13.2,3,18,7.5c3.3,3,4.8,7.2,4.8,12.3c0,7.5-2.7,13.2-8.1,17.4c-5.1,3.6-12.6,5.7-22.8,5.7c-9.6,0-16.8-2.1-21.6-6
s-7.5-9.6-7.5-17.1v-0.6L199,73.3L199,73.3z M264.1,8.2h9.3c2.4,0,4.5,0.9,6,2.4c1.8,1.8,2.4,3.6,2.4,6V22h-17.7L264.1,8.2
L264.1,8.2z M264.1,27.7h9.3c2.4,0,4.5,0.9,6,2.4c1.8,1.8,2.4,3.6,2.4,6v59.4h-17.7L264.1,27.7L264.1,27.7z M337.6,74.8h12.6
c-1.8,7.2-5.4,12.6-10.8,16.2c-5.4,3.9-12,6-19.8,6c-9.6,0-17.1-3-22.8-9.3c-5.4-6-8.1-15-8.1-26.1c0-10.8,2.7-19.5,7.8-25.5
c5.4-6.3,12.9-9.3,22.8-9.3c10.2,0,18,3,23.7,9.3c3,3.6,5.4,8.1,6.6,12.9h-17.7c-0.9-1.8-1.8-3-2.4-3.9c-2.1-2.4-5.4-3.6-9.3-3.6
c-3.6,0-6.9,1.2-9.3,3.6c-3,3.3-4.5,9-4.5,16.8s1.5,13.2,4.5,16.5c2.1,2.7,5.4,4.2,9.9,4.2c3,0,5.4-0.6,7.5-1.8
c0.6-0.3,0.9-0.6,1.5-0.9c0.3-0.3,0.9-0.9,1.5-1.5c0.3-0.6,0.9-1.2,2.1-2.1C334.3,75.1,335.8,74.8,337.6,74.8z M490.9,92.8
c-3.6,1.8-7.2,3-11.4,3.3c-3.9,0.3-7.5,0.6-10.5,0.6c-6,0-11.4-1.8-15.9-5.1c-4.5-3.3-6.9-8.7-6.9-16.5c0-7.2,2.1-12.3,6.3-15.3
c4.2-3,9.6-5.1,15.9-6c0.9,0,1.8,0,3-0.3s2.4-0.6,4.2-0.6c7.5-0.9,11.1-3.3,11.1-6.6c0-2.4-1.2-4.2-3.9-5.1
c-2.7-0.9-5.1-1.2-7.2-1.2c-2.4,0-4.5,0.3-6.3,0.9s-3.3,2.1-4.2,3.9H448c0.6-5.4,3-9.6,7.2-12.9c4.5-3.9,11.1-6,19.5-6
c9.6,0,16.5,1.5,21.3,4.8s7.5,8.1,7.5,14.4v23.1c0,6.9-1.2,12-3.6,15.9C497.5,88.3,494.5,91.3,490.9,92.8z M487,61.6
c-2.4,1.2-5.7,2.4-9.9,3.3l-6,1.2c-3,0.9-5.4,2.1-6.6,3.3c-1.2,1.8-1.8,3.6-1.8,5.7c0,2.4,0.9,4.5,2.4,6s3.6,2.1,6.6,2.1
c4.8,0,8.4-1.5,11.1-4.2s4.2-6.6,4.2-11.1L487,61.6L487,61.6z M510.7,7.9h9.3c2.4,0,4.5,0.9,6,2.4c1.8,1.5,2.4,3.6,2.4,6v79.2h-17.7
V7.9L510.7,7.9z M535.9,7.9h9.3c2.4,0,4.5,0.9,6,2.4c1.8,1.5,2.4,3.6,2.4,6v79.2h-17.7V7.9L535.9,7.9z M570.4,105.4h4.8
c3.3,0,6-0.9,8.1-2.4s2.4-4.2,1.2-7.8l-23.7-67.5h19.5l13.8,48l12-41.7c0.9-4.2,3.6-6,8.1-6h12.3l-26.1,77.1
c-2.1,5.7-4.5,9.6-7.5,12c-3,2.1-8.1,3-15,3c-0.3,0-0.9,0-1.8,0c-2.4,0-5.7,0-5.7,0L570.4,105.4z"/>
<path d="M379.3,96.7c-8.1,0-14.4-6.3-14.4-14.1c0-8.1,6.3-14.1,14.4-14.1c7.8,0,14.1,6.3,14.1,14.1
C393.4,90.7,387.4,96.7,379.3,96.7z M379,26.8c8.1,0,14.4,6.3,14.4,14.1s-6.6,14.4-14.4,14.4s-14.1-6.3-14.1-14.1
C364.9,33.4,371.2,26.8,379,26.8z M415.6,115.6H409c-1.8,0-3-1.8-2.1-3.6c4.8-10.2,11.1-27.9,11.1-50.4s-6.3-39.9-11.1-50.4
c-0.9-1.2,0.3-3,2.1-3h6.9c2.4,0,4.5,1.2,5.4,3.3c5.1,9.6,12.6,27.3,12.6,50.4s-7.5,41.1-12.6,50.4
C420.1,114.4,418,115.6,415.6,115.6z"/>
</svg>
</div>
</div>
</div>
</section>
<section class="bg-light-green py-10">
<div class="container px-5">
<div class="row gx-5 align-items-top justify-content-center">
<div class="col-lg-6" id="col-1">
<div class="mb-5">
<p class="feature-hd">Benefits</p>
<p class="feature-text-hd">No hidden fees or minimum balance</p>
<p class="feature-text">Spend your money your way</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">No fee ATM withdrawals</p>
<p class="feature-text">We'll reimburse your ATM fees for the first 3 months</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">Money management</p>
<p class="feature-text">Instant spending notifications, insights and more</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">Paperchain pay</p>
<p class="feature-text">Instantly send or receive money from other Paperchain users for free</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">Member support</p>
<p class="feature-text">Chat with us in the app any time or day</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">Secure balances</p>
<p class="feature-text">Funds held at Evolve Bank, Member FDIC</p>
</div>
</div>
<div class="col-md-9 col-lg-6 aos-init aos-animate" data-aos="slide-left" id="col-2">
<div class="mb-5">
<p class="feature-hd">Coming soon</p>
<p class="feature-text-hd">Native app support</p>
<p class="feature-text">iOS and Android app support</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">Earn points, get cash back</p>
<p class="feature-text">Get up to 15x points when you swipe your card</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">Make money with money</p>
<p class="feature-text">May earn interest automatically on funds in your wallet</p>
</div>
<div class="mb-5">
<p class="feature-text-hd">Digital dollar support</p>
<p class="feature-text">Automatically generate yield returns with DeFi wallet integration</p>
</div>
</div>
</div>
</div>
</section>
<section class="bg-white pb-2 pt-0" id="investors">
<div class="container text-black px-5">
<div class="col-md-10 col-lg-10">
<h2 class="h2-benefits-black pt-15 pb-5">Creator <span style="color:#d940ff">built</span> and <span style="color:#d940ff;">backed</span></h2>
<p class="lead text-bpb-2">We're creators and have built music technology and fintech platforms. <br>Now we're building the new creator finance layer.</p>
<p class="pb-0">Investors from:</p>
</div>
<div class="row brands text-black mb-15 pt-5 align-items-center justify-content-center">
<div class="col-6 col-sm-4 col-lg-2 justify-content-center mb-5 mb-lg-0">
<img src="./assets/img/logos/logo-brent-faiyaz-2.png" class="gray-logo" alt="paperchain brent faiyaz">
</div>
<div class="col-6 col-sm-4 col-lg-2 justify-content-center mb-5 mb-lg-0">
<img src="./assets/img/logos/logo-lost-kidz.png" class="gray-logo" alt="paperchain lost kids">
</div>
<div class="col-6 col-sm-4 col-lg-2 justify-content-center mb-5 mb-lg-0">
<svg version="1.1" class="gray-logo" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 296.4 107.3" style="enable-background:new 0 0 296.4 107.3;" xml:space="preserve">
<g id="Guides_For_Artboard">
</g>
<g id="Layer_1_1_">
<path d="M132.2,43v17.5h-4.4V43h-6.2v-4.3h16.8V43H132.2z"/>
<path d="M151.4,60.5v-8.8c0-2.9-1-3.8-2.8-3.8s-2.8,0.9-2.8,3.7v8.9h-4.3V40l4.3-2.1v7.4c0.7-0.8,2.1-1.4,3.8-1.4
c4.2,0,6,2.9,6,7.5v9.2L151.4,60.5L151.4,60.5z"/>
<path d="M172.9,53.7h-9.8c0.2,2.2,1.8,3.1,3.4,3.1c1.2,0,2.2-0.4,2.8-1.1l3.1,2.6c-1.3,1.7-3.7,2.6-5.8,2.6
c-4.7,0-7.7-3.3-7.7-8.5c0-5,3.1-8.5,7.3-8.5c4.4,0,6.9,3.9,6.9,8.5C172.9,53,172.9,53.4,172.9,53.7z M165.9,47.6
c-1.5,0-2.5,1.3-2.7,2.9h5.6C168.7,49,167.8,47.6,165.9,47.6z"/>
<path d="M104.9,96.9c-10.4,0-16.6-8.1-16.6-19.7s6.2-19.6,16.6-19.6s16.6,8.1,16.6,19.6
C121.5,88.8,115.3,96.9,104.9,96.9z M104.9,65.2c-6.2,0-8.7,5.3-8.7,12.1c0,6.8,2.6,12.1,8.7,12.1c6.2,0,8.7-5.3,8.7-12.1
C113.6,70.4,111.1,65.2,104.9,65.2z"/>
<path d="M144.7,76.5c-1.2-1.1-2.7-1.9-4.4-1.9c-2.9,0-4.8,1.2-4.8,6.2v15.5H128V67.7h7.5v1.9c1.3-1.4,3.2-2.5,5.9-2.5
c2.4,0,4.3,1,5.3,2L144.7,76.5z"/>
<path d="M162.4,96.9c-7.5,0-13.4-6.1-13.4-14.9s5.8-14.9,13.7-14.9c5.4,0,8.9,2.7,11.3,6.3l-5,5
c-1.7-2.4-3.5-4.1-6.5-4.1c-3.6,0-5.9,3-5.9,7.7c0,4.6,2.3,7.6,5.9,7.6c2.9,0,4.8-1.3,6.8-3.6l4.8,4.5
C171.3,94.2,168.1,96.9,162.4,96.9z"/>
<path d="M197,96.3V80.8c0-5.1-1.7-6.7-4.8-6.7s-4.9,1.5-4.9,6.5v15.6h-7.5V60.4l7.5-3.8v13c1.3-1.4,3.7-2.5,6.7-2.5
c7.3,0,10.6,5,10.6,13.1v16.1C204.6,96.3,197,96.3,197,96.3z"/>
<path d="M227.2,96.3v-1.9c-1.4,1.4-3.8,2.5-6.4,2.5c-5.3,0-10.7-3.3-10.7-10.2c0-6.3,5.1-9.5,11.6-9.5
c2.6,0,4.3,0.6,5.5,1.2V77c0-2-1.4-3.6-4.1-3.6c-3.4,0-5.2,0.5-7.8,1.9l-2.9-5.2c3.3-1.9,6.1-2.9,10.7-2.9c6.9,0,11.6,3.6,11.6,10
v19.2L227.2,96.3L227.2,96.3z M227.2,84.3c-1.3-0.8-2.6-1.2-5.2-1.2c-2.8,0-4.4,1.3-4.4,3.6c0,2,1.1,3.8,4.4,3.8
c2.4,0,4.4-1.2,5.2-2.6V84.3z"/>
<path d="M258.5,76.5c-1.2-1.1-2.7-1.9-4.3-1.9c-2.9,0-4.9,1.2-4.9,6.2v15.5h-7.5V67.7h7.5v1.9c1.3-1.4,3.2-2.5,5.9-2.5
c2.5,0,4.3,1,5.3,2L258.5,76.5z"/>
<path d="M280,96.3v-1.8c-1.4,1.3-3.3,2.4-6,2.4c-6.1,0-11.1-4.6-11.1-15.3c0-8.5,4-14.5,11.1-14.5c2.5,0,4.7,1,6,2.2
v-9l7.5-3.8v39.7H280V96.3z M280,76.7c-1.1-1.6-2.9-2.5-5.1-2.5c-2.9,0-4.5,2.5-4.5,7.3c0,5.9,2,8.3,4.9,8.3c2.3,0,3.5-1,4.6-2.4
V76.7H280z"/>
<path d="M77,68.8c0,21.3-17.2,38.5-38.5,38.5C17.3,107.3,0,90.1,0,68.8s17.3-38.5,38.5-38.5C59.8,30.3,77,47.5,77,68.8
z"/>
<path d="M42.8,5.2c-4-0.6-7.2-0.6-10-1C29.4,3.9,22.8,3,21,0c0,0,0,0.3-0.1,0.8c-0.1,1.1-0.1,3.4,0.6,6.3
c0.6,2.5,1.5,5,2.8,7.4c0.4,0.8,0.9,1.5,1.4,2.3c3.2,4.7,8.3,8,16,9.7c10.1,2.3,19.6,3.9,27,13.3v-0.1C70,34.5,64.9,8.7,42.8,5.2z"
/>
<g>
<path d="M293.5,91.6c1.6,0,2.9,1.3,2.9,2.8c0,1.6-1.3,2.8-2.9,2.8s-2.9-1.3-2.9-2.8C290.6,92.9,291.9,91.6,293.5,91.6
L293.5,91.6z M293.5,92.3c-1.1,0-2,0.9-2,2.1s0.9,2.1,2,2.1c1.2,0,2-1,2-2.1C295.6,93.2,294.7,92.3,293.5,92.3L293.5,92.3z
M293.2,95.8h-0.8v-2.6c0.2,0,0.6-0.1,1.1-0.1c0.6,0,0.9,0.1,1,0.2c0.2,0.1,0.3,0.3,0.3,0.6c0,0.3-0.2,0.5-0.6,0.6l0,0
c0.3,0.1,0.5,0.3,0.5,0.7c0.1,0.4,0.1,0.5,0.2,0.6H294c-0.1-0.1-0.1-0.3-0.2-0.6c0-0.3-0.2-0.4-0.4-0.4h-0.3L293.2,95.8
L293.2,95.8z M293.2,94.3h0.2c0.3,0,0.5-0.1,0.5-0.3c0-0.2-0.2-0.3-0.5-0.3c-0.1,0-0.2,0-0.3,0L293.2,94.3L293.2,94.3z"/>
</g>
<path d="M67.1,99.9c1.6,0,2.9,1.3,2.9,2.8c0,1.6-1.3,2.8-2.9,2.8s-2.9-1.3-2.9-2.8C64.2,101.1,65.5,99.9,67.1,99.9
L67.1,99.9z M67.1,100.6c-1.1,0-2,0.9-2,2.1s0.9,2.1,2,2.1c1.2,0,2-1,2-2.1S68.3,100.6,67.1,100.6L67.1,100.6z M66.7,104h-0.8v-2.6
c0.2,0,0.6-0.1,1.1-0.1c0.6,0,0.9,0.1,1,0.2c0.2,0.1,0.3,0.3,0.3,0.6c0,0.3-0.2,0.5-0.6,0.6l0,0c0.3,0.1,0.5,0.3,0.5,0.7
c0.1,0.4,0.1,0.5,0.2,0.6h-0.9c-0.1-0.1-0.1-0.3-0.2-0.6c0-0.3-0.2-0.4-0.4-0.4h-0.3v1H66.7z M66.8,102.5H67c0.3,0,0.5-0.1,0.5-0.3
c0-0.2-0.2-0.3-0.5-0.3c-0.1,0-0.2,0-0.3,0v0.6H66.8z"/>
</g>
</svg>
</div>
<div class="col-6 col-sm-4 col-lg-2 justify-content-center mb-5 mb-lg-0">
<svg version="1.1" class="gray-logo" id="livenation" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 976.6 208" style="enable-background:new 0 0 976.6 208;" xml:space="preserve">
<rect x="11.2" y="11.2" class="st0" width="956.1" height="187.4"/>
<g>
<g>
<path d="M68.8,57.3h31v66.2h43.5v26.5H68.8V57.3z"/>
</g>
<g>
<path d="M185.4,57.3h34.7l18,52l18-52h34.1l-37.6,93.3H223L185.4,57.3z"/>
</g>
<g>
<path d="M291.4,57.3h79v25.4h-48.6v9.4h45.3v22.4h-45.3v10.1H371v25.4h-79.7V57.3z"/>
</g>
<g>
<path d="M407.7,57.3h29l33,40.9V57.3h30.7v92.6h-27.5l-34.4-42.7v42.7h-30.7V57.3z"/>
</g>
<g>
<path d="M537.9,56.6h30.7l39,93.3h-33.6l-4.9-12.4h-32.4l-4.8,12.4h-33.1L537.9,56.6z M561.5,115.5L553,93l-8.5,22.5
H561.5z"/>
</g>
<g>
<path d="M612.7,83.5h-27.3V57.3h85.5v26.2h-27.3v66.4h-31V83.5z"/>
</g>
<g>
<path d="M675.6,57.3h31v92.6h-31V57.3z"/>
</g>
<g>
<path d="M712.6,103.9v-0.3c0-26.9,22.1-48.3,50.7-48.3c28.6,0,50.4,21.2,50.4,48v0.3c0,26.9-22.1,48.3-50.7,48.3
C734.4,151.9,712.6,130.7,712.6,103.9z M782.5,103.9v-0.3c0-11-7.5-20.9-19.5-20.9c-11.8,0-19.2,9.8-19.2,20.6v0.3
c0,11,7.5,20.9,19.5,20.9C775.1,124.5,782.5,114.7,782.5,103.9z"/>
</g>
<g>
<path d="M816.9,57.3h29l33,40.9V57.3h30.7v92.6H882l-34.4-42.7v42.7h-30.7V57.3z"/>
</g>
</g>
<g>
<path d="M976.6,208H0V0h976.6V208z M20.5,187.4h935.6V20.5H20.5V187.4z"/>
</g>
<g>
<g>
<path d="M196.5,38.5c0,0-2-3.5-2.4-4.2c-0.4-0.7-1-0.2-1-0.2s-2,1.5-3.1,2.2c-1.1,0.7-1,1.6-1,2
c0,0.5-0.3,3.2-0.3,3.2c-0.1,0.6-0.4,1.1-0.6,1.4l-17.8,13.8l-2.2,0.5l-5.5,2.7l0.3-3.7c0.4,0.2,1,0.8,1.4,0.9
c0.5,0.1,1.3-0.1,1.3-0.1s-0.3-0.7-0.3-1.1c0-0.4,0.1-1.1,0.1-1.1s0.8,0.5,1.5,0.5c0.5,0,1-0.2,1.3-0.4c0.3-0.2,0.6-0.6,0.6-0.6
s-1-0.6-1.4-1c-0.2-0.3-0.6-0.7-0.4-0.7c0.5,0,1.3-0.7,1.3-0.7s-0.5-0.3-1-0.7c-0.5-0.4-0.7-0.7-0.9-1.2c-0.2-0.5-0.3-0.9-0.3-0.9
s0.3,0.4,1,0.4c0.6,0,1.2-0.4,1.2-0.4s-0.5-0.3-0.8-0.6c-0.3-0.4-0.6-0.8-0.8-1.3c-0.2-0.7-0.3-1.1-0.5-1.6
c-0.1-0.3-0.1-0.7-0.3-1.4c-0.2-1.6-0.9-2.3-0.9-2.3c-2.1-2.8-6.9-3.5-6.9-3.5c-2.4-0.5-4.9,2.7-5.9,5.9
c-1.6,5.3-1.1,10.5-1.1,10.5s0.1,1,0.9,1.5c0.5,0.3,2.6,0.8,2.6,0.8l-0.2,4.3l-5.1,0.4c0,0-3.8-2.3-7-4.2l-14.1-10.5
c0,0-0.6-0.4-0.7-1.5c0,0-0.3-2.7-0.3-3.2c0-0.5,0.1-1.3-1-2c-1.1-0.7-3.1-2.2-3.1-2.2s-0.7-0.6-1.1,0.1c-0.4,0.7-2.4,4.2-2.4,4.2
l1,4c0,0,0.4,0.8,1.1,1.5l0.9,0.9l5.2,4.7l0.1,0l8.6,7.7l2.5,2.4c0,0,0.2,0.3,0.2,0.8c0,0.5,0,1.9,0,1.9s0,0.4,0.2,0.7
c0.3,0.3,4.9,4,4.9,4s0.3,0.3,0.3,0.9l0.8,27.6c0,0,0,0.4,0.4,0.4l1.5,0.6l3.4,30.2l6.5,20l-10.3,5c0,0-0.4,0.2-0.6,0.6
c0,0-0.6,1.2-0.6,1.4c0,0.4,0.3,0.5,0.3,0.5l15.3,0l-1.5,4l-0.4,1.1c0,0-0.5,2,0.3,2.3c0.9,0.3,3.6,0.4,4.8,0.3
c1.5-0.1,4.2-0.3,4.7-0.7c0.4-0.4,0.6-2.3-1.6-14.5l-1.3-47.2l3.9-29.6c0.4-3.3,0.8-3.6,0.8-3.6s4.2-3.1,4.6-3.5
c0.4-0.4,0.3-1,0.3-1v-3.3c0-0.6,0.2-1.1,0.2-1.1l3.4-3.3l1-1l10.8-10.4l1.9-2.2l0.9-0.9c0.6-0.7,1-1.5,1-1.5s0.8-2,1.1-2.6
C196.8,39.2,196.5,38.5,196.5,38.5"/>
</g>
</g>
<g>
<path d="M924.7,64.4L924.7,64.4c0-4,3.2-7.3,7.3-7.3c4.1,0,7.3,3.3,7.3,7.3v0c0,4-3.2,7.3-7.3,7.3
C927.8,71.6,924.7,68.3,924.7,64.4z M938.4,64.3L938.4,64.3c0-3.6-2.8-6.5-6.4-6.5c-3.7,0-6.5,2.9-6.5,6.5v0c0,3.6,2.8,6.4,6.4,6.4
C935.6,70.8,938.4,67.9,938.4,64.3z M929,60.2h3.4c1,0,1.9,0.3,2.4,0.8c0.4,0.4,0.6,1,0.6,1.7v0c0,1.2-0.7,2-1.7,2.4l1.9,2.8h-2
l-1.7-2.5h0h-1.3V68H929V60.2z M932.4,64c0.9,0,1.3-0.5,1.3-1.1v0c0-0.7-0.5-1.1-1.4-1.1h-1.7V64H932.4z"/>
</g>