forked from particl/particl.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmarketplace.html
618 lines (618 loc) · 61.8 KB
/
marketplace.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Particl.io - Marketplace</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 active" href="marketplace">Marketplace</a><a class="header__link" 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/particlOn" 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-marketplace">
<div class="hero-marketplace__center center">
<div class="hero-marketplace__wrap">
<div class="stage">PARTICL MARKETPLACE</div>
<h1 class="hero-marketplace__title h1">Buy and sell anything online with no restrictions</h1>
<div class="hero-marketplace__text">The only marketplace for <span class="bold">private</span> and <span class="bold">unrestricted</span> e-commerce. <br><br> <span class="bold">Cut off the middleman</span> and <span class="bold">take control</span> by joining the world's only true <span class="bold">free market</span> economy now.</div>
<div class="hero-marketplace__btns"><a class="button hero-marketplace__button js-scroll" href="#about-marketplace">Get started
<svg class="icon icon-arrow-down">
<use xlink:href="#icon-arrow-down"></use>
</svg></a><a class="button-stroke hero-marketplace__button js-scroll" href="#benefits">Discover the benefits
<svg class="icon icon-arrow-down">
<use xlink:href="#icon-arrow-down"></use>
</svg></a></div>
</div>
<div class="hero-marketplace__gallery">
<div class="hero-marketplace__preview"><img class="some-icon" src="img/content/marketplace/hero/marketplace.png" alt="Marketplace"><img class="some-icon-dark" src="img/content/marketplace/hero/marketplace-dark.png" alt="Marketplace"></div>
<div class="hero-marketplace__preview" data-aos="animation-translate-up" data-aos-anchor=".hero-marketplace__gallery"><img src="img/content/marketplace/hero/bag.png" alt="Bag"></div>
<div class="hero-marketplace__preview" data-aos="animation-translate-up" data-aos-delay="400" data-aos-anchor=".hero-marketplace__gallery"><img src="img/content/marketplace/hero/cube.png" alt="Cube"></div>
</div>
</div>
</div>
<div class="section-aboutmarketplace aboutmarketplace" id="about-marketplace">
<div class="about-marketplace__center center">
<div class="about-marketplace__row">
<div class="about-marketplace__col">
<div class="about-marketplace__preview"><img src="img/content/marketplace/about/about-marketplace.png" alt="About Marketplace"></div>
</div>
<div class="about-marketplace__col">
<h2 class="about-marketplace__title h2">About Particl Marketplace</h2>
<div class="about-marketplace__info">Over the last decade, a few monopolistic organizations have gained complete control over the world of e-commerce. They did it by collecting, storing, using, and sharing your personal information as much as possible. At the same time, hackers and all sorts of crooks work tirelessly on stealing that data for nefarious purposes, exposing you to even more risks. <br> <br> To make things worse, tech giants keep on adding, day after day, more restrictions and fees to their platforms to consolidate their position of power and gain even more control. As you can guess, this locks you out of valuable opportunities and significantly hinders your growth.</div>
</div>
</div>
<div class="about-marketplace__col-two">
<div class="about-marketplace__info">
<div class="about-marketplace__title-second">Enough is enough!</div>
</div>
<div class="about-marketplace__list">
<div class="about-marketplace__item" data-aos="animation-opacity">
<div class="about-marketplace__content">Break free and start doing what's best for you by cutting off the middleman with Particl Marketplace; a decentralized and private marketplace without any intermediary or restriction. Here, you can directly buy and sell anything you want from other people without any third-party taking part in the process. It’s safe, private, and free to use.</div>
</div>
<div class="about-marketplace__item" data-aos="animation-opacity">
<div class="about-marketplace__content">Stand up for your rights and help others around you by directly supporting them, not greedy corporations. You will love everything you gain by becoming a part of a real free market economy, and you’ll contribute to the success of others at the same time! It's a win-win situation for everyone!</div>
</div>
</div>
<div class="about-marketplace__info" data-aos="animation-opacity">
<div class="about-marketplace__title-quote">Everything that is really great and inspiring is created by the individual who can labor in freedom.</div>
<div class="about-marketplace__author">- Albert Einstein</div>
</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 marketplace that respects your rights and freedoms.</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 d="M9,13L9,13 c-2.209,0-4-1.791-4-4v0c0-2.209,1.791-4,4-4h0c2.209,0,4,1.791,4,4v0C13,11.209,11.209,13,9,13z" stroke="#212121"></path>
<path data-cap="butt" d="M12,43H6L5,32l-3-1v-9 c0-2.209,1.791-4,4-4h6c1.454,0,2.727,0.777,3.427,1.937" stroke-linecap="butt" stroke="#212121"></path>
<path d="M39,13 L39,13c2.209,0,4-1.791,4-4v0c0-2.209-1.791-4-4-4h0c-2.209,0-4,1.791-4,4v0C35,11.209,36.791,13,39,13z" stroke="#212121"></path>
<path data-cap="butt" d="M36,43h6l1-11l3-1v-9 c0-2.209-1.791-4-4-4h-6c-1.454,0-2.727,0.777-3.427,1.937" stroke-linecap="butt" stroke="#212121"></path>
<path d="M24,14L24,14 c-3.314,0-6-2.686-6-6v0c0-3.314,2.686-6,6-6h0c3.314,0,6,2.686,6,6v0C30,11.314,27.314,14,24,14z"></path>
<path d="M29,46H19l-1-12l-4-1V23 c0-2.209,1.791-4,4-4h12c2.209,0,4,1.791,4,4v10l-4,1L29,46z"></path>
</g>
</div></svg>
<div class="benefits__category">No middleman</div>
<div class="benefits__content">Be in complete control and get more for your money by trading directly with others. Shop online, make payments, and conduct business with <span class="bold">nobody else in between.</span> It's just you, and the other person you're trading with.</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 data-cap="butt" d="M8,26h3c3.284,0,6.3,1.462,8,4h6 c2.907,0,6,3.093,6,6H17" stroke-linecap="butt"></path>
<path data-cap="butt" d="M29.176,32H39c4.833,0,6,4,6,4 l-21.203,7.746c-1.647,0.392-3.37,0.33-4.985-0.18L8,39" stroke-linecap="butt"></path>
<circle cx="33" cy="19" r="5" stroke="#212121"></circle>
<circle cx="19" cy="9" r="5" stroke="#212121"></circle>
<rect x="2" y="24" width="6" height="16"></rect>
</g>
</div></svg>
<div class="benefits__category">More money in your pockets</div>
<div class="benefits__content">Keep your money for what really matters in your life. Trade directly with others and avoid any third-party costs like sales fees, subscription plans, or commissions. It's the <span class="bold">most affordable</span> way to buy and sell online.</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">
<polygon points="4 24 44 24 37 16 11 16 4 24" data-cap="butt" stroke-linecap="butt"></polygon>
<polyline points="11 16 14 4 34 4 37 16" data-cap="butt" stroke-linecap="butt"></polyline>
<circle cx="35" cy="37" r="7" data-cap="butt" stroke-linecap="butt" stroke="#212121"></circle>
<circle cx="13" cy="37" r="7" data-cap="butt" stroke-linecap="butt" stroke="#212121"></circle>
<path d="M28.193,35.426a6.878,6.878,0,0,0-8.386,0" data-cap="butt" stroke-linecap="butt" stroke="#212121"></path>
</g>
</div></svg>
<div class="benefits__category">Private all the way</div>
<div class="benefits__content">What you buy or sell online is your business and yours only. All your transactions, identity, shopping habits, activity, and history remain <span class="bold">perfectly private at all times</span> and never leave your device.</div>
<div class="last"></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="20" y="4" width="8" height="40" stroke="#212121"></rect>
<rect x="2" y="31" width="8" height="13"></rect>
<rect x="38" y="17" width="8" height="27"></rect>
</g>
</svg>
</div>
<div class="benefits__category">No data, no problem!</div>
<div class="benefits__content">Protect your personal information by using an online marketplace that simply <span class="bold">doesn't generate any data</span> about you in the first place. There's no login, no sign-up, no tracking and no data mining. You become completely immune to data leaks, theft, and misuse.</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,43.672 c0-1.208-0.529-2.357-1.476-3.108C17.078,39.416,14.57,38,11,38s-6.078,1.416-7.524,2.564C2.529,41.315,2,42.464,2,43.672V46h18 V43.672z"></path>
<path d="M46,43.672 c0-1.208-0.529-2.357-1.476-3.108C43.078,39.416,40.57,38,37,38s-6.078,1.416-7.524,2.564C28.529,41.315,28,42.464,28,43.672V46h18 V43.672z"></path>
<rect x="16" y="12" width="16" height="10" stroke="#212121"></rect>
<path d="M20,12V6 c0-2.2,1.8-4,4-4l0,0c2.2,0,4,1.8,4,4v6" stroke="#212121"></path>
<path data-cap="butt" d="M16,28c0,2.761-2.239,5-5,5 s-5-2.239-5-5s2.239-5,5-5" stroke-linecap="butt"></path>
<path data-cap="butt" d="M37,23c2.761,0,5,2.239,5,5s-2.239,5-5,5 s-5-2.239-5-5" stroke-linecap="butt"></path>
</g>
</div></svg>
<div class="benefits__category">Innovative trade protection</div>
<div class="benefits__content">Keep your mind at peace when trading with strangers by forcing them to keep their end of any deal. Particl's unique two-party escrow system is a new, modern type of <span class="bold">online escrow</span> that's private, free to use, and doesn't require any third-party to get involved.</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>
</div></svg>
<div class="benefits__category">Absolute freedom</div>
<div class="benefits__content">Gain an <span class="bold">unrestricted access</span> into the global free market and <span class="bold">beat online censorship</span> with an e-commerce solution that is decentralized and permissionless. There's no corporate interests, hidden agendas, or unfair rules here, just pure freedom and equal opportunities for all!</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">
<path>d="M2,38.202 c0,4.418,3.582,8,8,8c3.036,0,5.645-1.711,7-4.202c1.355,2.491,3.964,4.202,7,4.202s5.645-1.711,7-4.202 c1.355,2.491,3.964,4.202,7,4.202c4.418,0,8-3.582,8-8" stroke="#212121"></path></path><polyline points=" 20,12 20,2 28,2 28,12 " stroke="#212121"></polyline>
<path data-cap="butt" d="M10,27.778V15c0-1.657,1.343-3,3-3h22 c1.657,0,3,1.343,3,3v12.778" stroke-linecap="butt"></path>
<polyline points="10,38 6,30 24,20 42,30 38,38 "></polyline>
<line data-cap="butt" x1="24" y1="20" x2="24" y2="34" stroke-linecap="butt"></line>
</g>
</div></svg>
<div class="benefits__category">Owned and controlled by you</div>
<div class="benefits__content">Particl is not owned, moderated, or controlled by us or any other organization. It's a <span class="bold">democratic platform</span> governed by a <span class="bold">decentralized</span> network of users spread all around the world. You, along with all the other users of Particl, are the owners and captains of this ship.</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">
<polyline points="12,16 4,24 12,32 "></polyline>
<polyline points="36,16 44,24 36,32 "></polyline>
<line x1="20" y1="40" x2="28" y2="8" stroke="#212121"></line>
</g>
</div></svg>
<div class="benefits__category">Provably secure code</div>
<div class="benefits__content">Everything we say, we do. But you don't have to blindly trust our words for it. Our code is <span class="bold">open-source, audited,</span> and <span class="bold">publicly available</span> for review so that you and everyone else can verify our very bold claims!</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" class="nc-icon-wrapper" stroke-miterlimit="10">
<line data-cap="butt" x1="39.6" y1="8.4" x2="8.5" y2="39.5" stroke-linecap="butt"></line>
<circle cx="24" cy="24" r="22"></circle>
</g>
</div></svg>
<div class="benefits__category">No ads</div>
<div class="benefits__content">Shop and sell stuff online without being bombarded with pesky ads and without sharing your data with invasive advertisers. Particl Marketplace is your trusty safe haven that lets you go about your business without being harassed all the time.</div>
</div>
</div>
</div>
</div>
<div class="section-bg section-border-top buyerseller">
<div class="buyerseller__center center">
<div class="stage">Find out here</div>
<h2 class="buyerseller__title h2">Still wondering how the Particl Marketplace will rock your world?</h2>
<div class="buyerseller__text">Massively improve your e-commerce experience by cutting off the middleman and by transacting directly with people all across the world. Simply tell us what you are; we’ll take you down the rabbit hole.</div><a class="button buyerseller__button js-scroll" href="seller">I'm a seller
<svg class="icon icon-shop">
<use xlink:href="#icon-shop"></use>
</svg></a><a class="button buyerseller__button" href="buyer">I'm a buyer
<svg class="icon icon-cart">
<use xlink:href="#icon-cart"></use>
</svg></a>
</div>
</div>
<div class="section-dive section-border-top dive">
<div class="dive__center center">
<div class="stage">Learn</div>
<h2 class="dive__title h2">Looking for a deeper dive?</h2><a class="button dive__button" href="https://academy.particl.io/en/latest/particl-marketplace/marketplace_explained.html" target="_blank" title="What You Gain">In-depth Overview
<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/particl-marketplace/marketplace_escrow.html" target="_blank" title="Target Audiences">Two-Party Escrow
<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/particl-marketplace/marketplace_privacy.html" target="_blank" title="Brief Overview">Privacy Specs
<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_desktop.html#market" target="_blank" title="All Functions">Desktop Interface
<svg class="icon icon-link">
<use xlink:href="#icon-link"></use>
</svg></a>
</div>
</div>
<div class="section-academy academy">
<div class="academy__center center">
<div class="academy__head">
<h2 class="academy__title h2"></h2>
</div>
<div class="academy__list">
<div class="academy__item" data-aos="animation-opacity">
<div class="academy__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 data-cap="butt" x1="38" y1="25" x2="38" y2="43" stroke-linecap="butt" stroke="#212121"></line>
<polyline points=" 44,37 38,43 32,37 " stroke="#212121"></polyline>
<path d="M25,31H2v0 c0,3.314,2.686,6,6,6h17"></path>
<path d="M6,26V10 c0-2.209,1.791-4,4-4h28c2.209,0,4,1.791,4,4v10"></path>
<line x1="23" y1="12" x2="25" y2="12"></line>
</g>
</div></svg>
<div class="academy__category">Installation & Usage</div>
<div class="academy__content"></div>
<ul class="academy__checkpoints">
<li><a href="https://academy.particl.io/en/latest/guides/guide_general_getstarted.html" target="_blank" title="Quicktart Guide">Quicktart Guide</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_setup_installation.html" target="_blank" title="Installation Guides">Installation Guides</a></li>
</ul>
</div>
<div class="academy__item" data-aos="animation-opacity">
<div class="academy__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 data-cap="butt" x1="2" y1="32" x2="14" y2="32" stroke-linecap="butt" stroke="#212121"></line>
<line data-cap="butt" x1="14" y1="32" x2="26" y2="32" stroke-linecap="butt" stroke="#212121"></line>
<line data-cap="butt" x1="31.509" y1="32.107" x2="43.402" y2="30.509" stroke-linecap="butt" stroke="#212121"></line>
<rect x="2" y="4" width="12" height="40"></rect>
<line x1="8" y1="10" x2="8" y2="20" stroke="#212121"></line>
<rect x="14" y="4" width="12" height="40"></rect>
<line x1="20" y1="10" x2="20" y2="20" stroke="#212121"></line>
<rect x="30.391" y="3.379" transform="matrix(0.9911 -0.1331 0.1331 0.9911 -2.7886 5.0529)" width="12" height="40"></rect>
<line x1="34.527" y1="9.504" x2="35.858" y2="19.415" stroke="#212121"></line>
</g>
</div></svg>
<div class="academy__category">Guides</div>
<div class="academy__content"></div>
<ul class="academy__checkpoints">
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_general_managing_funds.html" target="_blank" title="Funds, Coins, and Balances">Funds, Coins, and Balances</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_general_obtaining_part.html" target="_blank" title="Obtain Part">Obtain Part</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_customer_understanding_buyflow.html" target="_blank" title="Buy Process">Buy Process</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_vendor_understanding_sellflow.html" target="_blank" title="Sell Process">Sell Process</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_general_market_management.html" target="_blank" title="Markets & Storefronts">Markets & Storefronts</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_general_enable_staking.html" target="_blank" title="Staking and Voting">Staking and Voting</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_user_best_practices_overview.html" target="_blank" title="Buyers Best Practices">Buyers Best Practices</a></li>
<li><a href="https://academy.particl.io/en/latest/guides/guide_mp_vendor_best_practices_overview.html" target="_blank" title="Seller Best Practices">Seller Best Practices</a></li>
</ul>
</div>
<div class="academy__item" data-aos="animation-opacity">
<div class="academy__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=" 46,2 22,2 22,23 31,16 46,16 " stroke="#212121"></polygon>
<path d="M20,43.672 c0-1.208-0.529-2.357-1.476-3.108C17.078,39.416,14.57,38,11,38s-6.078,1.416-7.524,2.564C2.529,41.315,2,42.464,2,43.672V46h18 V43.672z"></path>
<circle cx="11" cy="28" r="5"></circle>
<path d="M46,43.672 c0-1.208-0.529-2.357-1.476-3.108C43.078,39.416,40.57,38,37,38s-6.078,1.416-7.524,2.564C28.529,41.315,28,42.464,28,43.672V46h18 V43.672z"></path>
<circle cx="37" cy="28" r="5"></circle>
</g>
</div></svg>
<div class="academy__category">Explained</div>
<div class="academy__content"></div>
<ul class="academy__checkpoints">
<li><a href="https://academy.particl.io/en/latest/in-depth/indepth_mp_explained.html" target="_blank" title="Particl Marketplace">Particl Marketplace</a></li>
<li><a href="https://academy.particl.io/en/latest/in-depth/indepth_part_coin.html" target="_blank" title="PART Coin">PART Coin</a></li>
<li><a href="https://academy.particl.io/en/latest/in-depth/indepth_staking.html" target="_blank" title="Staking">Staking</a></li>
<li><a href="https://academy.particl.io/en/latest/in-depth/indepth_escrow.html" target="_blank" title="Two-Party Escrow">Two-Party Escrow</a></li>
<li><a href="https://academy.particl.io/en/latest/in-depth/indepth_mp_moderation.html" target="_blank" title="Marketplace Moderation">Marketplace Moderation</a></li>
<li><a href="https://academy.particl.io/en/latest/in-depth/indepth_privacy_tips.html" target="_blank" title="Security and Privacy">Security and Privacy</a></li>
<li><a href="https://academy.particl.io/en/latest/in-depth/indepth_voting.html" target="_blank" title="Community Governance">Community Governance</a></li>
</ul>
</div>
<div class="academy__item" data-aos="animation-opacity">
<div class="academy__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">
<circle cx="24" cy="24" r="22"></circle>
<circle cx="24" cy="36" r="1" stroke="none" fill="#212121"></circle>
<circle cx="24" cy="36" r="1" stroke="#212121"></circle>
<path d="M19,12.176c4.158-1.839,9.54-1.62,11.379,1.356s.568,6.435-2.582,9.1S24,26.9,24,29" stroke="#212121"></path>
</g>
</div></svg>
<div class="academy__category">Help</div>
<ul class="academy__checkpoints">
<li><a href="https://academy.particl.io/en/latest/faq/faq_mp_general_overview.html" target="_blank" title="Frequently Asked Questions">Frequently Asked Questions</a></li>
<li><a href="https://academy.particl.io/en/latest/faq/common_issues.html" target="_blank" title="Common Issues">Common Issues</a></li>
<li><a href="https://academy.particl.io/en/latest/glossary.html" target="_blank" title="Glossary">Glossary</a></li>
<li><a href="https://academy.particl.io/en/latest/intro/intro_useful_links.html" target="_blank" title="Useful Links">Useful Links</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="last"></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">
<path d="M6.609 0a6.61 6.61 0 0 1 6.609 6.609 6.58 6.58 0 0 1-1.256 3.877l3.733 3.733c.408.408.408 1.068 0 1.476-.376.376-.968.405-1.377.087l-.098-.087-3.732-3.733a6.58 6.58 0 0 1-3.877 1.256A6.61 6.61 0 0 1 0 6.609 6.61 6.61 0 0 1 6.609 0zm0 2.087c-2.497 0-4.522 2.025-4.522 4.522s2.025 4.522 4.522 4.522 4.522-2.025 4.522-4.522-2.025-4.522-4.522-4.522z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-close">
<path d="M.335.335c.446-.446 1.17-.446 1.616 0L8 6.384 14.049.335c.446-.446 1.17-.446 1.616 0s.446 1.17 0 1.616L9.616 8l6.049 6.049c.446.446.446 1.17 0 1.616s-1.17.446-1.616 0L8 9.616l-6.049 6.049c-.446.446-1.17.446-1.616 0s-.446-1.17 0-1.616L6.384 8 .335 1.951c-.446-.446-.446-1.17 0-1.616"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-moon">
<path d="M6.584.005c.576-.116 1.012.512.703 1.012-1.596 2.578-1.209 5.997.97 8.23 1.668 1.608 3.979 2.285 6.273 1.903a.67.67 0 0 1 .694.996c-.279.488-.687.989-1.182 1.484-3.158 3.148-8.268 3.148-11.427 0-3.15-3.15-3.15-8.277-.015-11.411h0l.183-.188A7.44 7.44 0 0 1 6.584.005zM5.433 1.79l-.148.071a6.17 6.17 0 0 0-1.721 1.292h0l-.141.145a6.75 6.75 0 0 0 .14 9.382 6.75 6.75 0 0 0 9.527 0h0l.083-.085-.142-.001a8.57 8.57 0 0 1-5.539-2.216h0l-.183-.172C5.104 7.933 4.424 4.665 5.416 1.835h0l.016-.046.001.001zm9.194.159c.631-.523 1.506.39.891 1.003h0l-.078.086c-.599.728-.573 2.343.078 2.993h0l.054.058c.523.631-.39 1.506-1.003.891h0l-.086-.078c-.728-.599-2.343-.573-2.993.078h0l-.058.054c-.631.523-1.506-.39-.891-1.003h0l.078-.086c.599-.728.573-2.343-.078-2.993h0l-.054-.058c-.523-.631.39-1.506 1.003-.891h0l.086.078c.728.599 2.343.573 2.993-.078h0l.058-.054zm-.905 1.849l-.095.015a4.42 4.42 0 0 1-1.195 0h0l-.096-.015.015.097a4.42 4.42 0 0 1 0 1.195h0l-.015.096.096-.015a4.42 4.42 0 0 1 1.195 0h0l.095.015-.021-.097a4.42 4.42 0 0 1 0-1.195h0l.015-.097.007.001z"></path>
</symbol>
<symbol xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" id="icon-sun">
<path d="M8.001 14.001c.338 0 .623.253.662.589l.005.078v.667c0 .353-.275.644-.628.665s-.659-.237-.701-.587l-.005-.078v-.667c0-.368.299-.667.667-.667zm5.142-1.8l.063.055.467.467c.248.249.26.648.028.912s-.63.302-.908.086l-.063-.055-.467-.467c-.248-.249-.26-.648-.028-.912s.63-.302.908-.086zm-9.405.055c.238.238.261.615.055.88l-.055.063-.467.467c-.249.248-.648.26-.912.028s-.302-.63-.086-.908l.055-.063.467-.467c.26-.26.682-.26.943 0h0zM8.001 4a4 4 0 1 1 0 8.001 4 4 0 1 1 0-8.001zm0 1.333a2.67 2.67 0 0 0-2.667 2.667 2.67 2.67 0 0 0 2.667 2.667 2.67 2.67 0 0 0 2.667-2.667 2.67 2.67 0 0 0-2.667-2.667zm-6.667 2c.353 0 .644.275.665.628s-.237.659-.587.701l-.078.005H.667c-.353 0-.644-.275-.665-.628s.237-.659.587-.701l.078-.005h.667zm14.001 0c.353 0 .644.275.665.628s-.237.659-.587.701l-.078.005h-.667c-.353 0-.644-.275-.665-.628s.237-.659.587-.701l.078-.005h.667zM3.209 2.267l.063.055.467.467c.248.249.26.648.028.912s-.63.302-.908.086l-.063-.055-.467-.467c-.248-.249-.26-.648-.028-.912s.63-.302.908-.086zm10.464.055c.238.238.261.615.055.88l-.055.063-.467.467c-.249.248-.648.26-.912.028s-.302-.63-.086-.908l.055-.063.467-.467c.26-.26.682-.26.943 0h0zM8.001 0c.338 0 .623.253.662.589l.005.078v.667c0 .353-.275.644-.628.665s-.659-.237-.701-.587l-.005-.078V.667c0-.368.299-.667.667-.667z"></path>
</symbol>
</svg>
</div>
</body>
</html>