-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcoin.html
1015 lines (1015 loc) · 80.6 KB
/
coin.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 charset="utf-8">
<title>Particl.io - Coin</title>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<link rel="apple-touch-icon" sizes="180x180" href="img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon-16x16.png">
<link rel="manifest" href="img/site.webmanifest">
<link rel="mask-icon" href="img/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="description" content="Cut off the middleman and live free with apps that respect your rights, freedoms, and privacy. A world of opportunities awaits you!">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@particlproject">
<meta name="twitter:title" content="Apps that respect your rights">
<meta name="twitter:description" content="Particl.io - Apps that respect your rights">
<meta name="twitter:creator" content="@particlproject">
<meta name="twitter:image" content="">
<meta property="og:title" content="Particl.io - Apps that respect your rights">
<meta property="og:type" content="Article">
<meta property="og:url" content="https://particl.io">
<meta property="og:image" content="">
<meta property="og:description" content="Cut off the middleman and live free with apps that respect your rights, freedoms, and privacy. A world of opportunities awaits you!">
<meta property="og:site_name" content="Particl.io - Apps that respect your rights">
<meta property="fb:admins" content="">
<link rel="stylesheet" media="all" href="css/app.min.css">
<script>
var viewportmeta = document.querySelector('meta[name="viewport"]');
if (viewportmeta) {
if (screen.width < 375) {
var newScale = screen.width / 375;
viewportmeta.content = 'width=375, minimum-scale=' + newScale + ', maximum-scale=1.0, user-scalable=no, initial-scale=' + newScale + '';
} else {
viewportmeta.content = 'width=device-width, maximum-scale=1.0, initial-scale=1.0';
}
}
</script>
</head>
<body>
<script>
console.log(localStorage.getItem('darkMode'));
if (localStorage.getItem('darkMode') === "on") {
document.body.classList.add("dark");
document.addEventListener("DOMContentLoaded", function() {
document.querySelector('.js-theme input').checked = true;
});
}
</script>
<!-- outer-->
<div class="outer">
<!-- header-->
<header class="header js-header">
<div class="header__center center"><a class="header__logo" href="https://particl.io"><img class="some-icon" src="img/logo-dark.svg" alt="Particl.io"><img class="some-icon-dark" src="img/logo-light.svg" alt="Particl.io"></a>
<div class="header__wrap js-header-wrap">
<nav class="header__nav"><a class="header__link" href="marketplace">Marketplace</a><a class="header__link active" href="coin">Coin</a><a class="header__link" target="_blank" href="https://basicswapdex.com">Dex</a><a class="header__link" href="about">About</a><a class="header__link" href="https://particl.news" target="_blank">Blog</a></nav>
<div class="header__group">
<div class="header__contacts">
<div class="header__element">
<div class="header__subtitle"></div>
<div class="header__text"></div>
</div>
</div>
<div class="header__socials"><a class="header__social" href="https://twitter.com/particlproject" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a><a class="header__social" href="https://discord.me/particl" target="_blank" title="Discord">
<svg class="icon icon-discord">
<use xlink:href="#icon-discord"></use>
</svg></a><a class="header__social" href="https://t.me/particltg" target="_blank" title="Telegram">
<svg class="icon icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg></a><a class="header__social" href="https://www.reddit.com/r/Particl/" target="_blank" title="Reddit">
<svg class="icon icon-reddit">
<use xlink:href="#icon-reddit"></use>
</svg></a><a class="header__social" href="https://riot.im/app/#/room/#particl:matrix.org" target="_blank" title="Riot/Element">
<svg class="icon icon-riot">
<use xlink:href="#icon-riot"></use>
</svg></a><a class="header__social" href="https://github.com/particl" target="_blank" title="Github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a></div><a class="button button-stroke button-small header__button" href="downloads">Install
<svg class="icon icon-download">
<use xlink:href="#icon-download"></use>
</svg></a>
</div>
</div><a class="button button-stroke button-small header__button" href="downloads">Install
<svg class="icon icon-download">
<use xlink:href="#icon-download"></use>
</svg></a>
<button class="header__burger js-header-burger"></button>
</div>
</header>
<!-- container-->
<div class="outer__content">
<div class="hero-coin">
<div class="hero-coin__center center">
<div class="hero-coin__wrap">
<div class="stage">PARTICL CURRENCY</div>
<h1 class="hero-coin__title h1">Money with no restrictions.</h1>
<div class="hero-coin__text">Privately send and receive money with no restrictions and no middleman. It's easy, fast, and safe. It’s just like cash, but digital!</div>
<div class="hero-coin__btns"><a class="button hero-coin__button js-scroll" href="#about-coin">Learn about PART’s history
<svg class="icon icon-arrow-down">
<use xlink:href="#icon-arrow-down"></use>
</svg></a><a class="button-stroke hero-coin__button js-scroll" href="#benefits">Show features
<svg class="icon icon-arrow-down">
<use xlink:href="#icon-arrow-down"></use>
</svg></a></div>
</div>
<div class="hero-coin__gallery">
<div class="hero-coin__preview"><img class="some-icon" src="img/content/coin/hero/globe.png" alt="Globe"><img class="some-icon-dark" src="img/content/coin/hero/globe.png" alt="Globe"></div>
<div class="hero-coin__preview" data-aos="animation-translate-up" data-aos-anchor=".hero-coin__gallery"><img src="img/content/coin/hero/person.png" alt="Person"></div>
<div class="hero-coin__preview" data-aos="animation-translate-up" data-aos-delay="400" data-aos-anchor=".hero-coin__gallery"><img src="img/content/coin/hero/money.png" alt="Money"></div>
</div>
</div>
</div>
<div class="section-coinintro coinintro" id="about-coin">
<div class="about-coin__center center">
<div class="about-coin__row">
<div class="about-coin__col">
<div class="about-coin__preview"><img src="img/content/coin/about-coin.png" alt=""></div>
</div>
<div class="about-coin__col">
<h2 class="about-coin__title h2">What is the PART currency?</h2>
<div class="about-coin__info">Money still relies on the same old financial system that takes control away from you, tracks your every move, costs you a lot to use, and limits what you can do by putting countless restrictions in your way. To make things worse, those who issue the money can simply print as much of it as they see fit, decreasing your purchasing power and giving themselves more power every time they do so. That needs to change!<br><br><br><br><br></div>
</div>
</div>
<div class="about-coin__row">
<div class="about-coin__col-two">
<div class="about-coin__item-two" data-aos="animation-opacity">
<div class="about-coin__category">And then came Bitcoin...</div>
<div class="about-coin__content">In 2008, Bitcoin came and rocked the world of finance. It is the first currency to ever allow money to be transacted, on the internet, without requiring any third-party and without facing any restriction. It's a decentralized and digital form of currency that nobody can access, move, or freeze without your consent. <br><br> However, Bitcoin has not been built with privacy in mind. The recent improvements to blockchain tracing technologies, combined with the enormous rise in data mining, has highlighted an urgent problem for digital currencies like Bitcoin; they permanently leak all your financial information to the public.</div>
</div>
</div>
<div class="about-coin__col-two">
<div class="about-coin__item-two" data-aos="animation-opacity">
<div class="about-coin__category">And then came Particl...</div>
<div class="about-coin__content"> Particl (PART) is the modern version of Bitcoin. It has all the same benefits, but it's also completely private, faster, and more flexible. It's built from the same code as Bitcoin, but several improvements have been made to protect your data and face the many challenges of today. <br><br> PART is the native and settlement currency of Particl's free market economy. Not only is it used by every application of the Particl ecosystem (i.e.,<a href="marketplace"> Particl Marketplace</a>), it's also what determines your voting power in the network's decentralized and democratic governance system.</div>
</div>
</div>
</div>
<div class="about-coin__info" data-aos="animation-opacity">
<div class="about-coin__title-quote">Opt out of the old financial system and jump into one that's safe, private, and gives you the absolute freedom to do what you want with your money.</div>
</div>
</div>
</div>
<div class="section-benefits benefits" id="benefits">
<div class="benefits__center center">
<div class="benefits__head">
<h2 class="benefits__title h2">A modern digital currency that respects your rights</h2>
</div>
<div class="benefits__list">
<div class="benefits__item" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 48 48")
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<path data-cap="butt" d="M10,11V7c0-1.657,1.343-3,3-3h0 c1.657,0,3,1.343,3,3v4" stroke-linecap="butt"></path>
<path data-cap="butt" d="M16,11V6c0-1.657,1.343-3,3-3h0 c1.657,0,3,1.343,3,3v5" stroke-linecap="butt"></path>
<path data-cap="butt" d="M28,11V6c0-1.657,1.343-3,3-3h0 c1.657,0,3,1.343,3,3v5" stroke-linecap="butt"></path>
<path data-cap="butt" d="M22,11V5c0-1.657,1.343-3,3-3h0 c1.657,0,3,1.343,3,3v6" stroke-linecap="butt"></path>
<polyline data-cap="butt" points="27.081,31 3,31 3,11 45,11 45,31 40,31 " stroke-linecap="butt"></polyline>
<circle cx="23" cy="21" r="4" stroke="#212121"></circle>
<line x1="13" y1="17" x2="9" y2="17" stroke="#212121"></line>
<path data-cap="butt" d="M10,31c0,8.284,6.716,15,15,15 s15-6.716,15-15V18c-3.464,0-6,2.536-6,6v4c-4.728,0-9,3.656-9,8" stroke-linecap="butt"></path>
</g>
</div></svg>
<div class="benefits__category">Untraceable payments</div>
<div class="benefits__content">Keep your finances private. With PART, you can choose to make public transactions or <span class="bold">private</span> ones that are completely <span class="bold">untraceable</span>. The choice is yours; regardless of your needs, there's a solution for you.</div>
</div>
<div class="benefits__item" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<line x1="24" y1="46" x2="24" y2="26"></line>
<rect x="2" y="2" width="44" height="24"></rect>
<circle cx="24" cy="14" r="4" stroke="#212121"></circle>
<line x1="9" y1="9" x2="13" y2="9" stroke="#212121"></line>
<line x1="35" y1="19" x2="39" y2="19" stroke="#212121"></line>
<path d="M39,33h-4 c-6.075,0-11,4.925-11,11v2h4c6.075,0,11-4.925,11-11V33z"></path>
</g>
</svg>
</div>
<div class="benefits__category">Near-free payments</div>
<div class="benefits__content">Keep your money for what matters in your life. PART is an incredibly affordable currency that <span class="bold">costs a few cents or less</span> per transaction, no matter how much you're receiving or sending out.</div>
</div>
<div class="benefits__item-last" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<path data-cap="butt" d="M11.39,5.971a10.382,10.382,0,0,1,2.453,3.634A4.739,4.739,0,0,1,15.417,11.5a5.221,5.221,0,0,1,.021,2.506S16.5,17.125,16,18s-2.625,1.438-2.625,1.438a4.1,4.1,0,0,1-2.688,1.938A2.517,2.517,0,0,0,8.312,24c0,1.688,1.688,4.438,1.688,4.438s1.75.856,2,1.481A9.523,9.523,0,0,1,12.335,32s1.665,2.938.727,4.625c-.3.538-1.688.938-1.688.938l-1.947,2.92" stroke-linecap="butt" stroke="#212121"></path>
<path data-cap="butt" d="M41.362,10.487a35.691,35.691,0,0,1-5.836,1.867s-2.713,3.02-4.5,2.77-3.594-2.25-3.594-2.25S27.562,9.188,27,9s-2.062.812-3,.062S23.6,6.2,23.6,6.2s-2.041-.636-2.291-1.324.743-2.219.932-2.806" stroke-linecap="butt" stroke="#212121"></path>
<path d="M40.125,25.438c.5,1.188-.939,4.22-2.125,4.812a8.054,8.054,0,0,0-3.08,2.456c-.438.688-1.013,3.524-2.45,4.087s-4.845,3.77-6.657,3.27S24,35.25,25.25,33.312c.746-1.157-.125-3.688-.188-4.562s-2.687-2.5-2.688-3.375c0-1.375,3-5,3-5a10.673,10.673,0,0,1,3.208-.625,11.346,11.346,0,0,1,2.167,1.062,15.05,15.05,0,0,1,3.875.812l1.438,1.312S39.625,24.25,40.125,25.438Z" stroke="#212121"></path>
<circle cx="24" cy="24" r="22"></circle>
</g>
</svg>
</div>
<div class="benefits__category">Borderless payments</div>
<div class="benefits__content">Financial borders are a thing of the past! PART lets you make <span class="bold">borderless</span> payments that <span class="bold">settle in just a few seconds</span> without having to deal with any third-party. Say goodbye to international and remittance fees for good!</div>
</div>
</div>
</div>
</div>
<div class="section-benefits benefits">
<div class="benefits__center center">
<div class="benefits__list">
<div class="benefits__item" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<rect x="30" y="36" width="16" height="10" stroke="#212121"></rect>
<path d="M34,36v-6 c0-2.2,1.8-4,4-4l0,0c2.2,0,4,1.8,4,4v6" stroke="#212121"></path>
<path d="M22,26L22,26 c-5.523,0-10-6.477-10-12v-2c0-5.523,4.477-10,10-10h0c5.523,0,10,4.477,10,10v2C32,19.523,27.523,26,22,26z"></path>
<path d="M24.001,31.037 C23.347,31.013,22.68,31,22,31c-6.288,0-11.477,1.098-14.993,2.144C4.034,34.028,2,36.755,2,39.856V44h21"></path>
</g>
</div></svg>
<div class="benefits__category">Safe from unauthorized access</div>
<div class="benefits__content">PART is money that you truly own. Enjoy total digital ownership with a form of money that can't be accessed, moved, or held by anyone else <span class="bold">without your consent</span>. Your money is yours and yours only.</div>
</div>
<div class="benefits__item" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<polygon points="30,2 16,2 10,24 22,24 18,41 38,16 26,16 "></polygon>
</g>
</svg>
</div>
<div class="benefits__category">Lightning fast</div>
<div class="benefits__content">A <span class="bold">scalable</span> and <span class="bold">fast</span> architecture ensures you get the reliability you need at any time. PART transactions are near-instant thanks to the <span class="bold">Lightning Network</span> and settle, in full, in a few seconds or minutes.</div>
</div>
<div class="benefits__item-last" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<polyline points="22,30 2,30 2,2 42,2 42,15 "></polyline>
<ellipse cx="37" cy="24" rx="9" ry="4" stroke="#212121"></ellipse>
<path data-cap="butt" d="M28,24v6c0,2.209,4.029,4,9,4 s9-1.791,9-4v-6" stroke-linecap="butt" stroke="#212121"></path>
<path data-cap="butt" d="M28,30v6c0,2.209,4.029,4,9,4 s9-1.791,9-4v-6" stroke-linecap="butt" stroke="#212121"></path>
<path data-cap="butt" d="M28,36v6c0,2.209,4.029,4,9,4 s9-1.791,9-4v-6" stroke-linecap="butt" stroke="#212121"></path>
<circle cx="22" cy="16" r="4"></circle>
</g>
</div></svg>
<div class="benefits__category">Earn passive income</div>
<div class="benefits__content"><span class="bold">Earn interest</span> in dividend-like payments and support the network by staking your PART. By staking PART, you also <span class="bold">earn fees</span> generated by the usage of other Particl applications like the marketplace. The more people use Particl, the bigger your rewards become!</div>
</div>
</div>
</div>
</div>
<div class="section-benefits benefits">
<div class="benefits__center center">
<div class="benefits__list">
<div class="benefits__item" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<rect x="16" y="23" width="16" height="10" stroke="#212121"></rect>
<path d="M20,23V17a4.012,4.012,0,0,1,4-4h0a4.012,4.012,0,0,1,4,4v6" stroke="#212121"></path>
<path d="M42,27A18,18,0,0,1,6,27V7L24,3,42,7Z"></path>
</g>
</svg>
</div>
<div class="benefits__category">Tor-tier security</div>
<div class="benefits__content">Rest easy knowing that PART's got you covered with the <span class="bold">latest technologies</span>. Secure your finances with protocols like Confidential Transactions (CT), RingCT, Stealth Addresses, Bulletproofs, Taproot support, and Tor. Yes, we really take your security and privacy seriously.</div>
</div>
<div class="benefits__item" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<path d="M22,29H2v0 c0,3.314,2.686,6,6,6h14"></path>
<path d="M6,24V8 c0-2.209,1.791-4,4-4h28c2.209,0,4,1.791,4,4v10"></path>
<line x1="23" y1="10" x2="25" y2="10"></line>
<path data-cap="butt" d="M28.223,32 c0.91-4.008,4.494-7,8.777-7c3.534,0,6.527,2.037,8,5" stroke-linecap="butt" stroke="#212121"></path>
<polyline points=" 45,24 45,30 39,30 " stroke="#212121"></polyline>
<path data-cap="butt" d="M45.777,36 c-0.91,4.008-4.494,7-8.777,7c-3.534,0-6.527-2.037-8-5" stroke-linecap="butt" stroke="#212121"></path>
<polyline points=" 29,44 29,38 35,38 " stroke="#212121"></polyline>
</g>
</div></svg>
<div class="benefits__category">Reliability and always up-to-date.</div>
<div class="benefits__content">PART is based on the Bitcoin code and is always kept <span class="bold">up-to-date</span> with its latest version. Its been improved with many modern-day features not present in the Bitcoin code that makes it faster, more private, and more flexible.</div>
</div>
<div class="benefits__item" data-aos="animation-opacity">
<div class="benefits__icon"><svg xmlns="http://www.w3.org/2000/svg" height="40" width="40" viewBox="0 0 48 48">
<g stroke-linecap="square" stroke-width="4" fill="none" stroke="#212121" stroke-linejoin="miter" stroke-miterlimit="10">
<path d="M20,46H2v-1.242 c0-1.775,1.164-3.334,2.866-3.838C6.46,40.448,8.604,40,11,40c2.356,0,4.514,0.456,6.125,0.932C18.83,41.436,20,42.994,20,44.773V46 z"></path>
<circle cx="11" cy="31" r="5"></circle>
<path d="M46,46H28v-1.242 c0-1.775,1.164-3.334,2.866-3.838C32.46,40.448,34.604,40,37,40c2.356,0,4.514,0.456,6.125,0.932C44.83,41.436,46,42.994,46,44.773 V46z"></path>
<circle cx="37" cy="31" r="5"></circle>
<path d="M33,22H15 v-1.242c0-1.775,1.164-3.334,2.866-3.838C19.46,16.448,21.604,16,24,16c2.356,0,4.514,0.456,6.125,0.932 C31.83,17.436,33,18.994,33,20.773V22z" stroke="#212121"></path>
<circle cx="24" cy="7" r="5" stroke="#212121"></circle>
</g>
</div></svg>
<div class="benefits__category">Democratic community governance</div>
<div class="benefits__content">Particl’s decentralized and democratic governance puts you in control and gives you a real voice. PART is all you need to moderate the Particl Marketplace and vote on important project decisions.</div>
</div>
</div>
</div>
</div>
<div class="section-bg section-border-top learn">
<div class="dive__center center">
<div class="stage">Learn</div>
<h2 class="dive__title h2">Learn everything about PART here.</h2><a class="button dive__button" href="https://academy.particl.io/en/latest/particl-blockchain/blockchain_part_overview.html" target="_blank" title="Explained">Explained
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a><a class="button dive__button" href="https://academy.particl.io/en/latest/part-guides/partguides_staking.html" target="_blank" title="Staking">Staking
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>c
</svg></a><a class="button dive__button" href="https://academy.particl.io/en/latest/particl-blockchain/blockchain_buysell.html" target="_blank" title="How-to get">How to get
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="currency-intro">
<div class="currency-intro__center center">
<div class="currency-intro__gallery">
<div class="currency-intro__preview"><img class="some-icon" src="img/content/coin/wallet/wallet.png" alt="wallet"><img class="some-icon-dark" src="img/content/coin/wallet/wallet.png" alt="wallet"></div>
</div>
<div class="currency-intro__wrap">
<div class="stage">Get your wallet</div>
<h2 class="currency-intro__title h2">Particl Desktop is the best and most secure application to manage your money.</h2>
<ul class="currency-intro__list">
<li>Gain total control over your finances</li>
<li>Manage, send, and receive money with no restrictions</li>
<li>Create and manage an infinite number of wallets in one location</li>
<li>Support the Particl network and earn staking income in dividend-like payments</li>
<li>Seamless access to the Particl Marketplace and other applications on the network</li>
<li>Participate in the project's democratic governance and let your voice be heard</li>
<div class="currency-intro__info-two"></div>
<div class="currency-intro__btns"><a class="button currency-intro__button" href="downloads">Install now on your favorite platform
<svg class="icon icon-download">
<use xlink:href="#icon-download"></use>
</svg></a></div>
</ul>
</div>
</div>
</div>
<div class="section section-border-top exchanges" id="exchanges">
<div class="exchanges__center center">
<div class="stage">EXCHANGES</div>
<h2 class="exchanges__title h2">Buy PART Coins</h2>
<div class="exchanges__text">The safest way to store Particl is in a wallet where you fully control your private keys. We highly recommend that you keep only the minimum you need on exchanges and do your own research.</div><a class="button-stroke exchanges__button" href="https://coinmarketcap.com/currencies/particl" target="_blank">CoinMarketCap
<svg class="icon icon-chart">
<use xlink:href="#icon-chart"></use>
</svg></a><a class="button-stroke exchanges__button" href="https://www.coingecko.com/en/coins/particl" target="_blank">CoinGecko
<svg class="icon icon-chart">
<use xlink:href="#icon-chart"></use>
</a><a class="button-stroke exchanges__button" href="https://coinpaprika.com/coin/part-particl" target="_blank">CoinPaprika
<svg class="icon icon-chart">
<use xlink:href="#icon-chart"></use>
</svg></a>
</svg></a><a class="button-stroke exchanges__button" href="https://explorer.particl.io" target="_blank">Block Explorer
<svg class="icon icon-block">
<use xlink:href="#icon-block"></use>
</svg></a>
<div class="exchanges__list">
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img class="a" src="img/content/exchanges/mexc.svg" alt="MEXC"></div>
<div class="exchanges__details">
<div class="status-purple exchanges__status">NO KYC</div>
<div class="exchanges__subtitle">MEXC</div>
<div class="exchanges__description">PART <> USDT</div><a class="button button-stroke button-small exchanges__button" href="https://www.mexc.com/exchange/PART_USDT?_from=market" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img src="img/content/exchanges/basicswap.svg" alt="BasicSwap"></div>
<div class="exchanges__details">
<div class="status-purple exchanges__status">NO KYC</div>
<div class="status-purple exchanges__status">Decentralized</div>
<div class="exchanges__subtitle">BasicSwap</div>
<div class="exchanges__description">PART <> BTC/XMR/Alts</div><a class="button button-stroke button-small exchanges__button" href="https://basicswapdex.com/" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item " data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img src="img/content/exchanges/nonkycio.png" alt="nonkyc.io"></div>
<div class="exchanges__details">
<div class="status-purple exchanges__status">NO KYC</div>
<div class="exchanges__subtitle">NonKyc.io</div>
<div class="exchanges__description">PART <> BTC/USDT/XMR</div><a class="button button-stroke button-small exchanges__button" href="https://nonkyc.io/market/PART_BTC" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img src="img/content/exchanges/probit.png" alt="Probit"></div>
<div class="exchanges__details">
<div class="status-stroke-purple exchanges__status">Centralized</div>
<div class="exchanges__subtitle">Probit</div>
<div class="exchanges__description">PART <> BTC/USDT</div><a class="button button-stroke button-small exchanges__button" href="https://www.probit.com/app/exchange/PART-BTC" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img src="img/content/exchanges/hitbtc.svg" alt="HitBTC"></div>
<div class="exchanges__details">
<div class="status-stroke-purple exchanges__status">Centralized</div>
<div class="exchanges__subtitle">HitBTC</div>
<div class="exchanges__description">PART <> BTC</div><a class="button button-stroke button-small exchanges__button" href="https://hitbtc.com/part-to-btc" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img class="a" src="img/content/exchanges/bittrex.svg" alt="Bittrex"></div>
<div class="exchanges__details">
<div class="status-stroke-purple exchanges__status">Centralized</div>
<div class="exchanges__subtitle">Bittrex</div>
<div class="exchanges__description">PART <> BTC</div><a class="button button-stroke button-small exchanges__button" href="https://bittrex.com/Market/Index?MarketName=BTC-PART" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img src="img/content/exchanges/wizardswap.svg" alt="Wizardswap"></div>
<div class="exchanges__details">
<div class="status-purple exchanges__status">NO KYC</div>
<div class="exchanges__subtitle">Wizardswap</div>
<div class="exchanges__description">PART <> BTC/Alts</div><a class="button button-stroke button-small exchanges__button" href="https://www.wizardswap.io" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img src="img/content/exchanges/chainex.png" alt="ChainEx"></div>
<div class="exchanges__details">
<div class="status-stroke-purple exchanges__status">Centralized</div>
<div class="exchanges__subtitle">ChainEx</div>
<div class="exchanges__description">PART <> BTC/ZAR</div><a class="button button-stroke button-small exchanges__button" href="https://chainex.io/markets/PART/ZAR" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="exchanges__item" data-aos="animation-opacity">
<div class="exchanges__preview" style="background-color: #fff;"><img src="img/content/exchanges/bisq.svg" alt="BISQ"></div>
<div class="exchanges__details">
<div class="status-purple exchanges__status">Decentralized</div>
<div class="exchanges__subtitle">BISQ</div>
<div class="exchanges__description">PART <> BTC</div><a class="button button-stroke button-small exchanges__button" href="https://bisq.network" target="_blank">Visit
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
</div>
</div>
</div>
<div class="section-bg section-border-top technical">
<div class="pricing__center center">
<h1 class="pricing__title h1">Technical Data</h1>
<div class="pricing__table">
<div class="pricing__row">
<div class="pricing__col">
<div class="pricing__head"></div>
<div class="pricing__body">
<div class="pricing__item">
<div class="pricing__category">General Specifications</div>
<div class="pricing__parameters">
<div class="pricing__parameter">
<div class="pricing__label">Ticker Symbol</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Native Blockchain</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Codebase origin</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Fair distribution</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Block Time</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Consensus Mechanism</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Circulating Supply</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Emission Rate</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Segwit</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Lightning Network</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Atomic Swaps</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Hardware Support</div>
</div>
</div>
</div>
</div>
</div>
<div class="pricing__col">
<div class="pricing__head"></div>
<div class="pricing__body">
<div class="pricing__more">General Specifications
<svg class="icon icon-arrow-bottom">
<use xlink:href="#icon-arrow-bottom"></use>
</svg>
</div>
<div class="pricing__list">
<div class="pricing__parameter">
<div class="pricing__label">Ticker Symbol</div>
<div class="pricing__check">PART</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Native Blockchain</div>
<div class="pricing__check"></div><a href="https://explorer.particl.io" target="_blank">Particl Blockchain (Explorer)</a>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Codebase origin</div>
<div class="pricing__check">Bitcoin 0.22.x (always maintained to the latest BTC version)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Fair distribution</div>
<div class="pricing__check">Yes; no ICO, no pre-mine</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Block Time</div>
<div class="pricing__check">120 seconds (5x faster than Bitcoin)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Consensus Mechanism</div>
<div class="pricing__check">Particl Proof-of-Stake (PPoS)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Circulating Supply</div>
<div class="pricing__check">~11.5M (100%)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Emission Rate</div>
<div class="pricing__check">8% per year (4% to stakers, 4% to decentralized treasury)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Segwit</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Lightning Network</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Atomic Swaps</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Hardware Support</div>
<div class="pricing__check">Trezor | Ledger</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-bg section-border-top technical">
<div class="pricing__center center">
<div class="pricing__table">
<div class="pricing__row">
<div class="pricing__col">
<div class="pricing__head"></div>
<div class="pricing__body">
<div class="pricing__item">
<div class="pricing__category">Privacy Specifications</div>
<div class="pricing__parameters">
<div class="pricing__parameter">
<div class="pricing__label">Adjustable Level of Privacy</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Privacy Protocols</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Bulletproofs</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Stealth Addresses</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Ring Signatures (RingCT)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Adjustable Ring Signatures</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Taproot</div>
</div>
<div class="pricing__parameter"></div>
</div>
</div>
</div>
</div>
<div class="pricing__col">
<div class="pricing__head"></div>
<div class="pricing__body">
<div class="pricing__more">Privacy Specifications
<svg class="icon icon-arrow-bottom">
<use xlink:href="#icon-arrow-bottom"></use>
</svg>
</div>
<div class="pricing__list">
<div class="pricing__parameter">
<div class="pricing__label">Adjustable Level of Privacy</div>
<div class="pricing__check">Yes, 3 levels (Public, Blind, Private)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Privacy Protocols</div>
<div class="pricing__check">Confidential Transactions (CT) and RingCT (unique implementation)</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Bulletproofs</div>
<div class="pricing__check">Enabled</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Stealth Addresses</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Ring Signatures (RingCT)</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Adjustable Ring Signatures</div>
<div class="pricing__check">Yes (8-24)
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Taproot</div>
<div class="pricing__check">Yes (Taproot-ready as of Particl Core 0.21+)
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-bg section-border-top technical">
<div class="pricing__center center">
<div class="pricing__table">
<div class="pricing__row">
<div class="pricing__col">
<div class="pricing__head"></div>
<div class="pricing__body">
<div class="pricing__item">
<div class="pricing__category">Staking Specifications</div>
<div class="pricing__parameters">
<div class="pricing__parameter">
<div class="pricing__label">Staking Revenue</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Block rewards</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Source of coins contained in rewards</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Cold Staking</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Staking Pools</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Hardware Staking</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Multi-Signature Staking</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Mobile Staking</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Minimum Number of Coins to Stake</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Masternodes</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Coin Maturity</div>
</div>
<div class="pricing__parameter"></div>
</div>
</div>
</div>
</div>
<div class="pricing__col">
<div class="pricing__head"></div>
<div class="pricing__body">
<div class="pricing__more">Staking Specifications
<svg class="icon icon-arrow-bottom">
<use xlink:href="#icon-arrow-bottom"></use>
</svg>
</div>
<div class="pricing__list">
<div class="pricing__parameter">
<div class="pricing__label">Staking Revenue</div>
<div class="pricing__check">4% to ~8% per year</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Block rewards</div>
<div class="pricing__check">~1.76 PART</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Source of coins contained in rewards</div>
<div class="pricing__check">Block rewards + transaction fees + marketplace fees + other Particl app fees</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Cold Staking</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Staking Pools</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Hardware Staking</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Multi-Signature Staking</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Mobile Staking</div>
<div class="pricing__check">Yes
<svg class="icon icon-check">
<use xlink:href="#icon-check"></use>
</svg>
</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Minimum Number of Coins to Stake</div>
<div class="pricing__check">> 0</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Masternodes</div>
<div class="pricing__check">No, everyone earns equally.</div>
</div>
<div class="pricing__parameter">
<div class="pricing__label">Coin Maturity</div>
<div class="pricing__check">225 blocks (~8 hours)</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section-border-top newsletter">
<div class="newsletter__center center">
<div class="stage">Become a VIP</div>
<h2 class="newsletter__title h2">Get all the important news first and directly to your inbox.</h2>
<div class="newsletter__text">From time to time, we send important updates and news pieces by email to our users and supporters. Subscribe to our newsletter today and stay on top of all things Particl; it’s the best way for you to stay connected!</div><a class="button-stroke newsletter__button" href="https://e716e794.sibforms.com/serve/MUIEAAyYOWg-Ihsz4f1j2TAWX8evHCCGsBj1mKR_SpUx1QHjn9VGwKBURKnyYFj9eZZDaTLOz3IzVxxlCXMW2n3hO8x6XZ4a9pVa5B3pxmO_VKIUbicCkqYhHeNk8MSHadPnOTiDiyXWxIyKRSUcfy4L8P-XVWQ4cinqJx6-UZADf7RnjQR60sdtuNpErpi7cTQp0qhJasoxl2av" target="_blank">Subscribe here
<svg class="icon icon-email">
<use xlink:href="#icon-email"></use>
</svg></a>
<div class="newsletter__note">We never share your email address with 3rd parties (except for <a href="https://sendinblue.com" target="_blank">SendinBlue</a> as our mailing service provider)</div>
</div>
</div>
</div>
<!-- footer-->
<footer class="footer">
<div class="footer__body">
<div class="footer__center center">
<div class="footer__col">
<div class="footer__box"><a class="footer__logo" href="https://particl.io"><img class="some-icon" src="img/logo-dark.svg" alt="Particl Project"><img class="some-icon-dark" src="img/logo-light.svg" alt="Particl Project"></a>
<label class="theme js-theme">
<input class="theme__input" type="checkbox"/><span class="theme__inner"><span class="theme__box"></span><span class="theme__icon">
<svg class="icon icon-moon">
<use xlink:href="#icon-moon"></use>
</svg>
<svg class="icon icon-sun">
<use xlink:href="#icon-sun"></use>
</svg></span></span>
</label>
</div>
<div class="footer__item">
<div class="footer__category"></div>
<div class="footer__menu"><a class="footer__link" href="index">HOME</a><a class="footer__link" href="marketplace">MARKETPLACE</a><a class="footer__link" href="coin">COIN</a><a class="footer__link link-off" href="javascript:void(0)">DEX</a><a class="footer__link" href="about">ABOUT</a><a class="footer__link" href="https://particl.news" target="_blank">BLOG</a></div>
</div>
</div>
<div class="footer__col">
<div class="footer__category">marketplace</div>
<div class="footer__menu"><a class="footer__link" href="marketplace">Overview</a><a class="footer__link" href="buyer">For Buyers</a><a class="footer__link" href="seller">For Sellers</a><!-- a.footer__link(href="#") Help & Support -->
<!-- a.footer__link(href="downloads") Downloads -->
<div class="footer__category-second">Particl Coin</div>
<div class="footer__menu"><a class="footer__link" href="coin">Overview</a><a class="footer__link" href="coin#exchanges">Exchanges</a><a class="footer__link" href="https://explorer.particl.io" target="_blank">Block Explorer</a><!-- a.footer__link(href="#") Help & Support -->
<!-- a.footer__link(href="downloads") Downloads -->
</div>
</div>
</div>
<div class="footer__col">
<div class="footer__category">Global Resources</div>
<div class="footer__menu"><a class="footer__link" href="downloads">Downloads</a><a class="footer__link" href="https://academy.particl.io" target="_blank">Particl Academy</a><a class="footer__link" href="https://academy.particl.io/en/latest/faq/faq_mp_general_overview.html" target="_blank">FAQ</a><a class="footer__link" href="https://raw.githubusercontent.com/particl/whitepaper/master/Particl%20Whitepaper%20Draft%20v0.3.pdf" target="_blank">White Paper</a><!-- a.footer__link(href="#") Roadmaps -->
<div class="footer__category-second">Particl Ecosystem</div>
<div class="footer__menu"><a class="footer__link" href="https://ccs.particl.io" target="_blank">CCS - Enhance and Crowdfund</a></div>
<div class="footer__category-second">Developers</div>
<div class="footer__menu"><a class="footer__link" href="https://particl.wiki" target="_blank">Particl WIKI</a><a class="footer__link" href="https://particl.news/tag/progress-report" target="_blank">Development Updates</a><!-- a.footer__link(href="#") Bug Bounties --><a class="footer__link" href="https://ccs.particl.io" target="_blank">Contribution (Crowd) Funding</a><!-- a.footer__link(href="#") Treasury Proposals --><a class="footer__link" href="#"></a><!-- a.footer__link(href="#") Code Audit -->
<!-- a.footer__link(href="#") Report Issues -->
</div>
</div>
</div>
</div>
</div>
<div class="footer__bottom">
<div class="footer__center center">
<div class="footer__copyright">Copyright © 2022 Particl Project.</div>
<div class="footer__socials"><a class="footer__social" href="https://twitter.com/particlproject" target="_blank" title="twitter">
<svg class="icon icon-twitter">
<use xlink:href="#icon-twitter"></use>
</svg></a><a class="footer__social" href="https://discord.me/particl" target="_blank" title="Discord">
<svg class="icon icon-discord">
<use xlink:href="#icon-discord"></use>
</svg></a><a class="header__social" href="https://t.me/particltg" target="_blank" title="Telegram">
<svg class="icon icon-telegram">
<use xlink:href="#icon-telegram"></use>
</svg></a><a class="footer__social" href="https://www.reddit.com/r/Particl/" target="_blank" title="Reddit">
<svg class="icon icon-reddit">
<use xlink:href="#icon-reddit"></use>
</svg></a><a class="footer__social" href="https://riot.im/app/#/room/#particl:matrix.org" target="_blank" title="Riot/Element">
<svg class="icon icon-riot">
<use xlink:href="#icon-riot"></use>
</svg></a><a class="footer__social" href="https://github.com/particl" target="_blank" title="Github">
<svg class="icon icon-github">
<use xlink:href="#icon-github"></use>
</svg></a></div>
</div>
</div>
</footer>
</div>
<!-- scripts-->
<script src="js/lib/jquery.min.js"></script>
<script src="js/lib/download.js"></script>
<script src="js/lib/slick.min.js"></script>
<script src="js/lib/jquery.nice-select.min.js"></script>
<script src="js/lib/jquery.magnific-popup.min.js"></script>
<script src="js/lib/aos.js"></script>
<script src="js/lib/simpleParallax.min.js"></script>
<script src="js/app.js"></script>
<!-- svg sprite-->
<div style="display: none"><svg width="0" height="0">
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-handle">
<path d="M12.311,9.527c-1.161-0.393-1.85-0.825-2.143-1.175C11.268,7.639,12,6.406,12,5V4c0-2.206-1.794-4-4-4 S4,1.794,4,4v1c0,1.406,0.732,2.639,1.832,3.352C5.54,8.702,4.851,9.134,3.69,9.527C2.081,10.07,1,11.57,1,13.26V16h14v-2.74 C15,11.57,13.919,10.07,12.311,9.527z M6,4c0-1.103,0.897-2,2-2s2,0.897,2,2v1c0,1.103-0.897,2-2,2S6,6.103,6,5V4z M13,14H3v-0.74 c0-0.831,0.534-1.569,1.33-1.838c1.845-0.624,3-1.436,3.452-2.422h0.436c0.452,0.986,1.607,1.798,3.453,2.422 C12.466,11.69,13,12.429,13,13.26V14z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-email">
<path d="M15,1H1C0.448,1,0,1.447,0,2v12c0,0.553,0.448,1,1,1h14c0.552,0,1-0.447,1-1V2C16,1.447,15.552,1,15,1z M14,13H2V6.723l5.504,3.145c0.308,0.176,0.685,0.176,0.992,0L14,6.723V13z M14,4.42L8,7.849L2,4.42V3h12V4.42z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-linkedin">
<path d="M15.3,0H0.7C0.3,0,0,0.3,0,0.7v14.7C0,15.7,0.3,16,0.7,16h14.7c0.4,0,0.7-0.3,0.7-0.7V0.7 C16,0.3,15.7,0,15.3,0z M4.7,13.6H2.4V6h2.4V13.6z M3.6,5C2.8,5,2.2,4.3,2.2,3.6c0-0.8,0.6-1.4,1.4-1.4c0.8,0,1.4,0.6,1.4,1.4 C4.9,4.3,4.3,5,3.6,5z M13.6,13.6h-2.4V9.9c0-0.9,0-2-1.2-2c-1.2,0-1.4,1-1.4,2v3.8H6.2V6h2.3v1h0c0.3-0.6,1.1-1.2,2.2-1.2 c2.4,0,2.8,1.6,2.8,3.6V13.6z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-chart">
<path d="M9,0H7C6.4,0,6,0.4,6,1v14c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V1C10,0.4,9.6,0,9,0z M3,10H1c-0.6,0-1,0.4-1,1v4c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1v-4C4,10.4,3.6,10,3,10z M15,5h-2c-0.6,0-1,0.4-1,1v9c0,0.6,0.4,1,1,1h2c0.6,0,1-0.4,1-1V6C16,5.4,15.6,5,15,5z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-block">
<path d="M8,6.523l6-3.334L8.486.126a1,1,0,0,0-.972,0L2,3.189Z M9,8.255v7.333l5.486-3.048A1,1,0,0,0,15,11.666V4.922Z M7,8.255,1,4.922v6.744a1,1,0,0,0,.514.874L7,15.588Z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-cart">
<path d="M15,3H4.5L4,0.8C3.9,0.3,3.5,0,3,0H0v2h2.2L4,10.2C4.1,10.7,4.5,11,5,11h8c0.4,0,0.8-0.3,0.9-0.7l2-6 C16.1,3.8,15.8,3,15,3z"></path>
<circle cx="5" cy="14" r="2"></circle> <circle cx="13" cy="14" r="2"></circle>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-shop">
<path d="M13.9,0.5C13.7,0.2,13.4,0,13,0H3C2.6,0,2.3,0.2,2.1,0.5C0,4.5,0,4.7,0,5c0,1.1,0.9,2,2,2v8c0,0.6,0.4,1,1,1 h10c0.6,0,1-0.4,1-1V7c1.1,0,2-0.9,2-2C16,4.7,16,4.5,13.9,0.5z M10,14v-4H6v4H4V6.7C4.3,6.9,4.6,7,5,7c0.6,0,1.1-0.3,1.5-0.7 C6.9,6.7,7.4,7,8,7s1.1-0.3,1.5-0.7C9.9,6.7,10.4,7,11,7c0.4,0,0.7-0.1,1-0.3V14H10z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-right">
<path d="M10.39 3.153c.464-.428 1.187-.399 1.615.065l3.692 4c.404.438.404 1.113 0 1.55l-3.692 4c-.428.464-1.151.493-1.615.065s-.493-1.151-.065-1.615l1.922-2.082H1.143C.512 9.136 0 8.624 0 7.993S.512 6.85 1.143 6.85h11.104l-1.922-2.082c-.428-.464-.399-1.187.065-1.615z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-link">
<path d="M11,0C9.7,0,8.4,0.5,7.5,1.5L6.3,2.6C5.9,3,5.9,3.6,6.3,4s1,0.4,1.4,0l1.2-1.2c1.1-1.1,3.1-1.1,4.2,0 C13.7,3.4,14,4.2,14,5s-0.3,1.6-0.9,2.1L12,8.3c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l1.2-1.2 C15.5,7.6,16,6.3,16,5s-0.5-2.6-1.5-3.5C13.6,0.5,12.3,0,11,0z M8.3,12l-1.2,1.2c-1.1,1.1-3.1,1.1-4.2,0C2.3,12.6,2,11.8,2,11s0.3-1.6,0.9-2.1L4,7.7c0.4-0.4,0.4-1,0-1.4 s-1-0.4-1.4,0L1.5,7.5C0.5,8.4,0,9.7,0,11s0.5,2.6,1.5,3.5C2.4,15.5,3.7,16,5,16s2.6-0.5,3.5-1.5l1.2-1.2c0.4-0.4,0.4-1,0-1.4 S8.7,11.6,8.3,12z M9.4,5.2L5.2,9.4c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3l4.2-4.2 c0.4-0.4,0.4-1,0-1.4C10.4,4.8,9.8,4.8,9.4,5.2z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-bottom">
<path d="M15.039 3.961c-.653-.653-1.713-.653-2.366 0L8 8.634 3.327 3.961c-.653-.653-1.713-.653-2.366 0s-.653 1.713 0 2.366l5.856 5.856c.653.653 1.713.653 2.366 0l5.856-5.856c.653-.653.653-1.713 0-2.366z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-right-empty">
<path d="M5.551 15.665l-.1.089c-.449.355-1.102.326-1.517-.089-.446-.446-.446-1.17 0-1.616h0l6.048-6.05-6.048-6.048-.089-.1C3.491 1.403 3.52.749 3.935.335c.446-.446 1.17-.446 1.616 0h0l6.857 6.857.089.1c.355.449.326 1.102-.089 1.517h0l-6.857 6.857z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-down">
<path d="M12.833 10.39c.428.464.399 1.187-.065 1.615l-4 3.692c-.438.404-1.113.404-1.55 0l-4-3.692c-.464-.428-.493-1.151-.065-1.615s1.151-.493 1.615-.065l2.082 1.922V1.143C6.85.512 7.362 0 7.993 0s1.143.512 1.143 1.143v11.104l2.082-1.922c.464-.428 1.187-.399 1.615.065z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-prev">
<path d="M5.61 13.697c-.464.428-1.187.399-1.615-.065l-3.692-4c-.404-.438-.404-1.113 0-1.55l3.692-4c.428-.464 1.151-.493 1.615-.065s.493 1.151.065 1.615L3.753 7.714h11.104c.631 0 1.143.512 1.143 1.143S15.488 10 14.857 10H3.753l1.922 2.082c.428.464.399 1.187-.065 1.615z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-arrow-next">
<path d="M10.39 3.303c.464-.428 1.187-.399 1.615.065l3.692 4c.404.438.404 1.113 0 1.55l-3.692 4c-.428.464-1.151.493-1.615.065s-.493-1.151-.065-1.615l1.922-2.082H1.143C.512 9.286 0 8.774 0 8.143S.512 7 1.143 7h11.104l-1.922-2.082c-.428-.464-.399-1.187.065-1.615z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-instagram">
<path d="M11.2 0A4.8 4.8 0 0 1 16 4.8h0v6.4a4.8 4.8 0 0 1-4.8 4.8h0-6.4A4.8 4.8 0 0 1 0 11.2h0V4.8A4.8 4.8 0 0 1 4.8 0h0zm0 1.6H4.8a3.2 3.2 0 0 0-3.2 3.2v6.4a3.2 3.2 0 0 0 3.2 3.2h6.4a3.2 3.2 0 0 0 3.2-3.2V4.8a3.2 3.2 0 0 0-3.2-3.2zM8 4a4 4 0 1 1 0 8 4 4 0 1 1 0-8zm0 1.6a2.4 2.4 0 0 0 0 4.8 2.4 2.4 0 0 0 0-4.8zm4-2.4a.8.8 0 1 1 0 1.6.8.8 0 1 1 0-1.6z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-facebook">
<path d="M7.967.017a8 8 0 1 1 0 16 8 8 0 1 1 0-16zm0 1.6a6.4 6.4 0 0 0-6.4 6.4c0 2.982 2.039 5.487 4.799 6.198l.001-4.598h-.8a.8.8 0 1 1 0-1.6h.8v-1.6a2.4 2.4 0 0 1 2.4-2.4h.8a.8.8 0 1 1 0 1.6h0-.8a.8.8 0 0 0-.8.8h0v1.6h1.6a.8.8 0 1 1 0 1.6h0-1.6v4.8a6.4 6.4 0 0 0 0-12.8z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-twitter">
<path d="M2.121 9.233C1.018 9.236.306 10.492.986 11.444c.973 1.363 2.737 2.456 5.681 2.456 4.563 0 8.226-3.719 7.714-8.113l.751-1.503c.521-1.042-.384-2.227-1.527-1.999l-.993.198c-.263-.139-.535-.244-.768-.32-.454-.148-1.003-.265-1.511-.265-.913 0-1.701.234-2.327.704-.619.464-.968 1.075-1.159 1.635-.088.258-.147.518-.185.766-.354-.111-.715-.261-1.069-.445-.802-.415-1.451-.942-1.817-1.404-.614-.775-1.915-.717-2.371.29-.643 1.42-.467 3.102.111 4.462a6.57 6.57 0 0 0 .754 1.324l-.151.001zm4.546 3.333c-2.576 0-3.907-.933-4.596-1.898-.031-.043 0-.102.054-.103.701-.002 2.139-.035 3.087-.59.049-.029.038-.101-.016-.119-2.211-.743-3.467-3.891-2.575-5.86.02-.045.081-.051.112-.012C3.752 5.271 5.98 6.531 7.919 6.566c.042.001.074-.037.067-.079-.078-.507-.376-3.254 2.347-3.254.65 0 1.618.317 1.974.642a.07.07 0 0 0 .061.017l1.498-.3c.054-.011.098.046.073.095l-.929 1.858c-.006.013-.008.028-.006.042.651 3.658-2.345 6.978-6.337 6.978z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-discord">
<path d="M6.552,6.712a.891.891,0,0,0,0,1.776A.852.852,0,0,0,7.368,7.6.847.847,0,0,0,6.552,6.712Zm2.92,0a.891.891,0,1,0,.816.888A.852.852,0,0,0,9.472,6.712Z M13.36,0H2.64A1.644,1.644,0,0,0,1,1.648V12.464a1.644,1.644,0,0,0,1.64,1.648h9.072l-.424-1.48,1.024.952.968.9L15,16V1.648A1.644,1.644,0,0,0,13.36,0ZM10.272,10.448S9.984,10.1,9.744,9.8a2.524,2.524,0,0,0,1.448-.952,4.578,4.578,0,0,1-.92.472,5.265,5.265,0,0,1-1.16.344A5.6,5.6,0,0,1,7.04,9.656a6.716,6.716,0,0,1-1.176-.344,4.683,4.683,0,0,1-.912-.472,2.488,2.488,0,0,0,1.4.944c-.24.3-.536.664-.536.664a2.9,2.9,0,0,1-2.44-1.216A10.713,10.713,0,0,1,4.528,4.568a3.956,3.956,0,0,1,2.248-.84l.08.1a5.4,5.4,0,0,0-2.1,1.048s.176-.1.472-.232a6.008,6.008,0,0,1,1.816-.5.788.788,0,0,1,.136-.016A6.769,6.769,0,0,1,8.792,4.1a6.521,6.521,0,0,1,2.408.768A5.324,5.324,0,0,0,9.208,3.856l.112-.128a3.956,3.956,0,0,1,2.248.84A10.713,10.713,0,0,1,12.72,9.232,2.924,2.924,0,0,1,10.272,10.448Z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-github">
<path d="M8,0.2c-4.4,0-8,3.6-8,8c0,3.5,2.3,6.5,5.5,7.6 C5.9,15.9,6,15.6,6,15.4c0-0.2,0-0.7,0-1.4C3.8,14.5,3.3,13,3.3,13c-0.4-0.9-0.9-1.2-0.9-1.2c-0.7-0.5,0.1-0.5,0.1-0.5 c0.8,0.1,1.2,0.8,1.2,0.8C4.4,13.4,5.6,13,6,12.8c0.1-0.5,0.3-0.9,0.5-1.1c-1.8-0.2-3.6-0.9-3.6-4c0-0.9,0.3-1.6,0.8-2.1 c-0.1-0.2-0.4-1,0.1-2.1c0,0,0.7-0.2,2.2,0.8c0.6-0.2,1.3-0.3,2-0.3c0.7,0,1.4,0.1,2,0.3c1.5-1,2.2-0.8,2.2-0.8 c0.4,1.1,0.2,1.9,0.1,2.1c0.5,0.6,0.8,1.3,0.8,2.1c0,3.1-1.9,3.7-3.7,3.9C9.7,12,10,12.5,10,13.2c0,1.1,0,1.9,0,2.2 c0,0.2,0.1,0.5,0.6,0.4c3.2-1.1,5.5-4.1,5.5-7.6C16,3.8,12.4,0.2,8,0.2z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-telegram">
<path d="M15.968,1.684a.338.338,0,0,0-.232-.253,1.192,1.192,0,0,0-.63.045S1.087,6.514.286,7.072c-.172.121-.23.19-.259.272-.138.4.293.573.293.573L3.933,9.094a.388.388,0,0,0,.183-.011c.822-.519,8.27-5.222,8.7-5.38.068-.02.118,0,.1.049-.172.6-6.606,6.319-6.641,6.354a.138.138,0,0,0-.049.118l-.337,3.528s-.142,1.1.956,0c.779-.779,1.527-1.425,1.9-1.738,1.242.858,2.579,1.806,3.156,2.3a1,1,0,0,0,.732.283.825.825,0,0,0,.7-.622S15.894,3.7,15.979,2.317C15.987,2.182,16,2.1,16,2A1.177,1.177,0,0,0,15.968,1.684Z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-reddit">
<path d="M16,7.9c0-1.1-0.9-1.9-1.9-1.9c-0.5,0-0.9,0.2-1.2,0.4c-1.2-0.7-2.7-1.2-4.3-1.3l0.8-2.6L11.7,3 c0.1,0.8,0.8,1.5,1.6,1.5c0.9,0,1.6-0.7,1.6-1.6c0-0.9-0.7-1.6-1.6-1.6c-0.6,0-1.2,0.4-1.4,0.9L9.2,1.5C9,1.5,8.8,1.6,8.7,1.8 l-1,3.3C6,5.1,4.4,5.6,3.1,6.3C2.8,6.1,2.4,5.9,1.9,5.9C0.9,5.9,0,6.8,0,7.9c0,0.7,0.3,1.2,0.8,1.6c0,0.2,0,0.3,0,0.5 c0,1.3,0.8,2.6,2.2,3.5c1.3,0.9,3.1,1.4,5,1.4c1.9,0,3.7-0.5,5-1.4c1.4-0.9,2.2-2.1,2.2-3.5c0-0.1,0-0.3,0-0.4 C15.6,9.1,16,8.5,16,7.9z M4.5,9c0-0.6,0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1s-0.5,1.1-1.1,1.1C5,10.1,4.5,9.6,4.5,9z M10.6,12.2 c-0.6,0.6-1.4,0.8-2.6,0.8c0,0,0,0,0,0c0,0,0,0,0,0c-1.2,0-2.1-0.3-2.6-0.8c-0.2-0.2-0.2-0.4,0-0.6c0.2-0.2,0.4-0.2,0.6,0 c0.4,0.4,1,0.6,2,0.6c0,0,0,0,0,0c0,0,0,0,0,0c1,0,1.6-0.2,2-0.6c0.2-0.2,0.4-0.2,0.6,0C10.8,11.8,10.8,12.1,10.6,12.2z M10.4,10.1 c-0.6,0-1.1-0.5-1.1-1.1c0-0.6,0.5-1.1,1.1-1.1c0.6,0,1.1,0.5,1.1,1.1C11.5,9.6,11,10.1,10.4,10.1z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-riot">
<path d="M12.7 10.1l1.7 2.3c.7 1 .5 2.4-.5 3.1-1.1.7-2.5.5-3.2-.6L8 11.4H6.6v2.3c0 1.3-1 2.3-2.3 2.3C3 16 2 15 2 13.7V2.3C1.9 1 3 0 4.3 0H9c3.2 0 5.8 2.6 5.8 5.7-.1 1.8-.9 3.3-2.1 4.4z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-download">
<path d="M8,12c0.3,0,0.5-0.1,0.7-0.3L14.4,6L13,4.6l-4,4V0H7v8.6l-4-4L1.6,6l5.7,5.7C7.5,11.9,7.7,12,8,12z M14,14H2v-3H0v4c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1v-4h-2V14z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-play">
<path d="M1.509 2.463c0-1.71 1.876-2.755 3.33-1.855l8.945 5.538c1.378.853 1.378 2.857 0 3.711l-8.945 5.538c-1.454.899-3.33-.147-3.33-1.856V2.463z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-info">
<path d="M8 0a1.6 1.6 0 1 0 0 3.2A1.6 1.6 0 1 0 8 0zm0 6.4A1.6 1.6 0 0 0 6.4 8v6.4a1.6 1.6 0 1 0 3.2 0V8A1.6 1.6 0 0 0 8 6.4z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-check">
<path d="M14.049 2.635c.446-.446 1.17-.446 1.616 0 .412.412.444 1.06.095 1.509l-.095.108-9.143 9.143c-.412.412-1.06.444-1.509.095l-.108-.095L.335 8.822c-.446-.446-.446-1.17 0-1.616.412-.412 1.06-.444 1.509-.095l.108.095 3.763 3.762 8.335-8.334z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-download">
<path d="M10.943 5.887l1.395.107c1.08.114 1.941.88 2.07 2.011.074.645.133 1.575.133 2.905l-.133 2.905c-.129 1.13-.988 1.897-2.069 2.011-.859.091-2.227.175-4.344.175s-3.485-.085-4.344-.175c-1.08-.114-1.939-.88-2.069-2.011-.074-.645-.133-1.575-.133-2.905l.133-2.905c.129-1.131.99-1.897 2.07-2.011l1.395-.107c.401-.021.744.286.765.688s-.286.744-.688.765l-1.32.101c-.455.048-.731.327-.777.729-.066.577-.123 1.451-.123 2.74l.123 2.74c.046.403.322.681.776.729.796.084 2.111.167 4.191.167l4.191-.167c.454-.048.73-.327.776-.729.066-.577.123-1.451.123-2.74l-.123-2.74c-.046-.402-.322-.682-.777-.729l-1.32-.101c-.401-.021-.709-.364-.688-.765s.364-.709.765-.688zM8.51.213l2.545 2.545a.73.73 0 0 1 0 1.029c-.284.284-.745.284-1.029 0L8.723 2.483v6.972c0 .402-.326.727-.727.727s-.727-.326-.727-.727V2.483L5.964 3.787c-.284.284-.745.284-1.029 0s-.284-.745 0-1.029L7.481.213c.284-.284.745-.284 1.029 0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-calendar">
<path d="M11.999 0a.8.8 0 0 1 .8.8h0l-.001.799.802.001a2.4 2.4 0 0 1 2.394 2.236L16 4v9.6a2.4 2.4 0 0 1-2.4 2.4h0H2.4A2.4 2.4 0 0 1 0 13.6h0V4a2.4 2.4 0 0 1 2.4-2.4h0l.798-.001L3.199.8a.8.8 0 0 1 .7-.794l.1-.006a.8.8 0 0 1 .8.8h0l-.001.799h6.4L11.199.8a.8.8 0 0 1 .7-.794zM13.6 3.2l-.802-.001.001.801a.8.8 0 0 1-.7.794l-.1.006a.8.8 0 0 1-.8-.8h0l-.001-.801h-6.4L4.799 4a.8.8 0 0 1-.7.794l-.1.006a.8.8 0 0 1-.8-.8h0l-.001-.801L2.4 3.2a.8.8 0 0 0-.8.8v9.6a.8.8 0 0 0 .8.8h11.2a.8.8 0 0 0 .8-.8V4a.8.8 0 0 0-.8-.8zm-4.801 8a.8.8 0 1 1 0 1.6h0-4.8a.8.8 0 1 1 0-1.6h0zm3.2-3.2a.8.8 0 1 1 0 1.6h0-5.6a.8.8 0 1 1 0-1.6h0z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-scoreboard">
<path d="M13.333 2.65C14.806 2.65 16 3.844 16 5.317h0v5.333c0 1.473-1.194 2.667-2.667 2.667h0H2.667C1.194 13.317 0 12.123 0 10.65h0V5.317C0 3.844 1.194 2.65 2.667 2.65h0zm0 1.333H2.667c-.736 0-1.333.597-1.333 1.333v5.333c0 .736.597 1.333 1.333 1.333h10.667c.736 0 1.333-.597 1.333-1.333V5.317c0-.736-.597-1.333-1.333-1.333zm-1 1.333a1 1 0 0 1 1 1V7.65a1 1 0 0 1-1 1h-1v.667h1.333c.368 0 .667.298.667.667s-.298.667-.667.667H11a1 1 0 0 1-1-1V8.317a1 1 0 0 1 1-1h1V6.65h-1.333c-.368 0-.667-.298-.667-.667s.298-.667.667-.667h1.667zm-7.666 0c.368 0 .667.298.667.667v3.333c.368 0 .667.298.667.667s-.298.667-.667.667H4.001c-.368 0-.667-.298-.667-.667s.298-.667.667-.667V6.65c-.368 0-.667-.298-.667-.667s.298-.667.667-.667h.667zM8.001 8.65c.368 0 .667.298.667.667s-.298.667-.667.667-.667-.298-.667-.667.298-.667.667-.667zm0-2.667c.368 0 .667.298.667.667s-.298.667-.667.667-.667-.298-.667-.667.298-.667.667-.667z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-clock">
<path d="M8 0a8 8 0 1 1 0 16A8 8 0 1 1 8 0zm0 1.6a6.4 6.4 0 0 0 0 12.8A6.4 6.4 0 1 0 8 1.6zm0 1.6a.8.8 0 0 1 .8.8v3.669l1.766 1.766a.8.8 0 0 1-1.131 1.131l-2-2A.8.8 0 0 1 7.2 8V4a.8.8 0 0 1 .8-.8z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-candlesticks">
<path d="M7.833 4.409c.402 0 .727.326.727.727h0l.001 1.579c.846.3 1.453 1.108 1.453 2.057h0v2.182c0 .949-.606 1.757-1.453 2.057l-.001.852c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0l-.001-.851c-.847-.299-1.455-1.107-1.455-2.057h0V8.772c0-.95.607-1.758 1.455-2.057l.001-1.578c0-.402.326-.727.727-.727zM2.015 1.5c.402 0 .727.326.727.727h0v.852c.847.3 1.454 1.108 1.454 2.057h0V6.59c0 .95-.607 1.757-1.454 2.057v3.76c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0v-3.76C.44 8.349-.168 7.54-.168 6.59h0V5.136c0-.95.608-1.759 1.455-2.058v-.851c0-.402.326-.727.727-.727zm11.634 0c.402 0 .727.326.727.727h0v.851c.848.299 1.456 1.107 1.456 2.058h0v3.636c0 .951-.608 1.759-1.456 2.058v1.578c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0l.001-1.579c-.846-.3-1.453-1.108-1.453-2.057h0V5.136c0-.949.606-1.757 1.453-2.057l-.001-.852c0-.402.326-.727.727-.727zM7.832 8.045c-.402 0-.727.326-.727.727v2.182c0 .402.326.727.727.727s.727-.326.727-.727V8.772c0-.402-.326-.727-.727-.727zm5.819-3.636c-.402 0-.727.326-.727.727v3.636c0 .402.326.727.727.727s.727-.326.727-.727V5.136c0-.402-.326-.727-.727-.727zm-11.637 0c-.402 0-.727.326-.727.727V6.59c0 .402.326.727.727.727s.727-.326.727-.727V5.136c0-.402-.326-.727-.727-.727z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-lock">
<path d="M7.995 0c2.008 0 3.636 1.628 3.636 3.636v2.306c1.532.176 2.716 1.396 2.828 2.951l.081 2.015-.081 2.015c-.117 1.612-1.384 2.863-2.997 2.966L7.995 16a54.94 54.94 0 0 1-3.468-.11c-1.613-.103-2.88-1.354-2.997-2.966l-.081-2.015.081-2.015c.117-1.612 1.384-2.863 2.997-2.966l-.168.014V3.636C4.359 1.628 5.987 0 7.995 0zm0 7.273l-3.376.107a1.73 1.73 0 0 0-1.638 1.619l-.077 1.911.077 1.911a1.73 1.73 0 0 0 1.638 1.619l3.376.107 3.376-.107a1.73 1.73 0 0 0 1.638-1.619l.077-1.911-.077-1.911a1.73 1.73 0 0 0-1.638-1.619l-3.376-.107zm0 1.455c.803 0 1.455.651 1.455 1.455 0 .538-.293 1.008-.727 1.26h0v.922c0 .402-.326.727-.727.727s-.727-.326-.727-.727h0v-.922c-.435-.251-.727-.722-.727-1.26 0-.803.651-1.455 1.455-1.455zm0-7.273a2.18 2.18 0 0 0-2.182 2.182l-.002 2.225 2.184-.043 2.184.043-.002-2.225a2.18 2.18 0 0 0-2.182-2.182z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-user">
<path d="M7.995 0c2.41 0 4.364 1.954 4.364 4.364 0 1.347-.61 2.551-1.569 3.351l-.145.116c2.295 1.017 3.896 3.315 3.896 5.987v1.454c0 .402-.326.727-.727.727s-.727-.326-.727-.727v-1.454a5.09 5.09 0 1 0-10.182 0v1.454c0 .402-.326.727-.727.727s-.727-.326-.727-.727v-1.454c0-2.672 1.601-4.971 3.897-5.987-1.043-.797-1.715-2.054-1.715-3.467C3.632 1.954 5.585 0 7.995 0zm0 1.455a2.91 2.91 0 0 0-2.909 2.909 2.91 2.91 0 0 0 2.909 2.909 2.91 2.91 0 0 0 2.909-2.909 2.91 2.91 0 0 0-2.909-2.909z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-button-play">
<path d="M8 1.45c1.87 0 3.473.134 4.694.286a3.5 3.5 0 0 1 3.058 3.013c.136.965.248 2.106.248 3.246a23.73 23.73 0 0 1-.248 3.246 3.5 3.5 0 0 1-3.058 3.013A38.07 38.07 0 0 1 8 14.541a38.07 38.07 0 0 1-4.694-.286 3.5 3.5 0 0 1-3.058-3.013C.112 10.276 0 9.136 0 7.995s.112-2.281.248-3.246a3.5 3.5 0 0 1 3.058-3.013C4.527 1.584 6.13 1.45 8 1.45zm0 1.455c-1.802 0-3.344.129-4.514.275a2.05 2.05 0 0 0-1.798 1.773c-.13.923-.233 1.992-.233 3.043s.104 2.121.233 3.043a2.05 2.05 0 0 0 1.798 1.773c1.17.146 2.712.275 4.514.275s3.344-.129 4.514-.275a2.05 2.05 0 0 0 1.798-1.773 22.28 22.28 0 0 0 .233-3.043c0-1.052-.104-2.121-.233-3.043a2.05 2.05 0 0 0-1.798-1.773c-1.17-.146-2.712-.275-4.514-.275zm-1.07 2.15l3.719 2.324a.73.73 0 0 1 0 1.233L6.93 10.936a.73.73 0 0 1-1.113-.617V5.671a.73.73 0 0 1 1.113-.617z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-search">