-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
1239 lines (1239 loc) · 106 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><!-- This site was created in Webflow. http://www.webflow.com -->
<!-- Last Published: Thu Feb 24 2022 18:14:47 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-page="619edc323bd61b2f1ed0a290" data-wf-site="60d237b6ea65be721ff4bbfa">
<head>
<meta charset="utf-8">
<title>Index Coop | Decentralized Crypto Index Funds</title>
<meta content="Index Coop builds decentralized and exchange traded (ETF) crypto index funds based on web3 product themes. Buy & build your crypto assets investment portfolio with us today" name="description">
<meta content="Index Coop | Decentralized Crypto Index Funds" property="og:title">
<meta content="Index Coop builds decentralized and exchange traded (ETF) crypto index funds based on web3 product themes. Buy & build your crypto assets investment portfolio with us today" property="og:description">
<meta content="Index Coop | Decentralized Crypto Index Funds" property="twitter:title">
<meta content="Index Coop builds decentralized and exchange traded (ETF) crypto index funds based on web3 product themes. Buy & build your crypto assets investment portfolio with us today" property="twitter:description">
<meta property="og:type" content="website">
<meta content="summary_large_image" name="twitter:card">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content="YYE_SNX1HR3VztC6qDT8L01JTKn6CPjruKjP8jIp0YY" name="google-site-verification">
<meta content="Webflow" name="generator">
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/webflow.css" rel="stylesheet" type="text/css">
<link href="css/homepage-22c36f.webflow.css" rel="stylesheet" type="text/css">
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js" type="text/javascript"></script>
<script type="text/javascript">WebFont.load({ google: { families: ["IBM Plex Sans:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic:cyrillic,cyrillic-ext,greek,latin,latin-ext,vietnamese","IBM Plex Mono:regular,500,600"] }});</script>
<!-- [if lt IE 9]><script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" type="text/javascript"></script><![endif] -->
<script type="text/javascript">!function(o,c){var n=c.documentElement,t=" w-mod-";n.className+=t+"js",("ontouchstart"in o||o.DocumentTouch&&c instanceof DocumentTouch)&&(n.className+=t+"touch")}(window,document);</script>
<link href="images/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href="images/webclip.ico" rel="apple-touch-icon">
<link href="https://indexcoop.com/" rel="canonical"><!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WNPZF4R');</script>
<!-- End Google Tag Manager -->
<style>
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.mainnavbar {
backdrop-filter: blur(5px);
}
.no-scroll {
overflow:hidden;
}
input.inputfield::placeholder,
textarea.inputfield::placeholder{
opacity: 0%;
}
/* Light Mode Styles */
/* Global Light Mode */
/* Dark Mode Styles */
/* Global Dark Mode */
#content.dark-mode .close-text {
color: #F7F6F2;
}
#content.dark-mode .bar-container {
border: 1px solid #F7F6F2;
}
#content.dark-mode .notice-text {
color: #F7F6F2;
}
#content.dark-mode .nav-link {
color: #F7F6F2;
}
#content.dark-mode .nav-link:hover {
border-bottom: 2px solid #F7F6F2;
}
#content.dark-mode{
background-color: #0F0E0B;
color: #F7F6F2;
}
#content.dark-mode a.bloglink {
color: #F7F6F2;
}
#content.dark-mode .accordion_header, #content.dark-mode .allparagraph2 {
color: #F7F1E4;
}
#content.dark-mode .mainnavbar{
background-color: rgba(15, 14, 11, 0.8);
}
#content.dark-mode .allh1,
#content.dark-mode .allh2,
#content.dark-mode .allh3{
color: #F7F6F2;
}
#content.dark-mode a {
color: #B9B6FC;
}
#content.dark-mode .gray_bg{
background-color: #1D1B16;
}
#content.dark-mode .app-button {
border: 2px solid #fff;
background-color: transparent;
color: #F7F6F2;
}
#content.dark-mode .app-button:hover {
background-color: #F7F6F2;
color: #000000;
}
#content.dark-mode .menu_title .menu_gov{
color: #F7F6F2;
}
#content.dark-mode .menu_titlecont{
border-bottom: 2px solid #F7F6F2;
}
/*#content.dark-mode .language_icon.black{
display: none;
}
#content.dark-mode .language_icon.white{
display: block;
}*/
#content.dark-mode .toggle-theme2{
display: none;
}
#content.dark-mode .togglethemefooter {
display: block;
}
#content.dark-mode .heroline {
border-top: 3px solid #F7F6F2;
}
#content.dark-mode .index_logo path {
fill: #F7F6F2;
}
#content.dark-mode .dropdown-text:hover {
border-bottom: 1px solid #F7F6F2;
}
#content.dark-mode .dropdown-list-2.w-dropdown-list.w--open {
background: rgba(15, 14, 11, 0.95);
border: 1px solid rgba(247, 246, 242, 0.12);
}
#content.dark-mode .eco-grid {
background-color: #0F0E0B;
}
#content.dark-mode .investors_icons {
filter: invert();
}
#content.dark-mode .accordion_maincontainer.trigger {
border-bottom: 1px solid #F7F6F2;
border-top: 1px solid #F7F6F2;
}
#content.dark-mode .prod_subtitle {
color: #F7F6F2;
}
#content.dark-mode a.dropdown-text {
color: #F7F6F2;
background: rgb(15, 14, 11, 0.8);
}
#content.dark-mode .view_link {
color: #B9B6FC;
}
#content.dark-mode a.footitem.footlink {
color: #F7F6F2;
}
@media only screen and (max-width: 991px){
#content.dark-mode .nav-menu-2{
background-color: #0F0E0B;
}
#content.dark-mode .close,
#content.dark-mode .menu,
#content.dark-mode .menu_prods a,
#content.dark-mode .menu_gov a{
color: #F7F6F2;
}
#content.dark-mode .stickytoggles {
filter: invert();
}
}
/* Home Page */
#content.dark-mode .slider_description {
color: #F7F6F2;
}
#content.dark-mode .w-slider-dot.w-active {
background-color: #327EE8;
}
#content.dark-mode .prodh3,
#content.dark-mode .listtextblock,
#content.dark-mode .grid_heading{
color: #F7F6F2;
}
#content.dark-mode .listico._3rd path,
#content.dark-mode .listico._3rd circle {
stroke: #B9B6FC;
}
#content.dark-mode .listico._2nd path,
#content.dark-mode .listico._2nd circle {
stroke: #699BF7;
}
#content.dark-mode .listico._3rdtrinity path {
fill: #B9B6FC;
}
#content.dark-mode .listico.lightmode {
display: none;
}
#content.dark-mode .listico.darkmode {
display: block;
}
#content.dark-mode a.social_box.w-button {
color: #0F0E0B;
}
/* About Page */
#content.dark-mode .dark_mode_tria {
display: block;
}
#content.dark-mode .lightmode_triangle {
display: none;
}
#content.dark-mode .social_box.aboutpage {
color: #00b9ff;
}
#content.dark-mode .social_box.discord.aboutpage {
color: #7289da;
}
#content.dark-mode .trinity_svg.darkmode {
display: block;
}
#content.dark-mode .trinity_svg.lightmode {
display: none;
}
/* Partners Page */
#content.dark-mode img.ecoprodimg.indexcoop {
filter:invert();
}
/* Institutions Page */
input[type="text"].inputfield::-webkit-input-placeholder {
color: #737373;
}
#content.dark-mode .sub_h2,
#content.dark-mode .eventtable_header,
#content.dark-mode .fieldtitle {
color: #F7F6F2;
}
#content.dark-mode .event_line {
border-top: 3px solid #F7F6F2;
}
#content.dark-mode .inputfield{
background: rgba(221, 221, 221, 0.12);
border: none;
border-bottom: 3px solid #ffff;
font-family: 'IBM Plex Sans', sans-serif;
font-size: 19px;
font-weight: 700;
}
#content.dark-mode .inputfield:hover {
border-style: none none solid;
border-width: 1px 1px 3px;
border-color: #000 #000 #327ee8;
background-color: rgba(50, 121, 232, 0.13);
}
#content.dark-mode .inputfield:focus {
border-style: none none solid;
border-width: 0px 0px 3px;
border-color: #000 #000 #fabf00;
background-color: rgba(250, 191, 0, 0.09);
}
#content.dark-mode .inputfield{
color: #F7F6F2;
}
@media only screen and (max-width: 991px){
input.inputfield::placeholder,
textarea.inputfield::placeholder{
color: #rgba(0, 0, 0, 0.5) !important;
opacity: 100%;
}
#content.dark-mode input.inputfield::placeholder,
#content.dark-mode textarea.inputfield::placeholder{
color: rgba(247, 246, 242, 0.5) !important;
opacity: 100%;
}
}
/* Methodologist Page */
#content.dark-mode .link_underline {
color: #B9B6FC;
}
#content.dark-mode .forum_box {
border: 3px solid #F7F6F2;
}
#content.dark-mode .forum_box a {
color: #F7F6F2;
}
#content.dark-mode .steps {
color: #000000;
}
/* Products Pages */
#content.dark-mode .prod_icon.index path {
fill: #F7F6F2;
}
#content.dark-mode .buy-button.buttons {
color: #F7F6F2;
}
#content.dark-mode .sell-button.buttons {
color: #09AA74;
}
#content.dark-mode .token_icon.lightdark {
filter: invert();
}
#content.dark-mode .dpi-formula {
filter: invert();
}
#content.dark-mode .bg-grey.lightdark,
#content.dark-mode .allparagraph.quote,
#content.dark-mode .allparagraph.quote.fli{
background-color: #0F0E0B;
color: #F7F6F2;
}
/* Contributors Page */
#content.dark-mode .flowchart {
filter: invert();
}
/* StyleGuide Page */
#content.dark-mode .token_textblock {
color: #F7F6F2;
}
#content.dark-mode .index_icon.w-embed path {
filter: invert();
}
</style>
<link rel="canonical" href="https://indexcoop.com/">
<style>
.w-slider-dot {
background: black;
}
.w-slider-dot.w-active {
background: grey;
}
#content.dark-mode .w-slider-arrow-left{
display: block;
color: white;
}
#content.dark-mode .w-slider-arrow-right{
display: block;
color: white;
}
</style>
</head>
<body>
<div class="goggle-tag-manager w-embed w-iframe">
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WNPZF4R" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
</div>
<div id="content" class="light-mode">
<div class="notification-symbol">
<div class="bar-container">
<a data-w-id="eb57d00d-e779-82ff-9271-9c2830904d8a" href="#" class="close-text w-inline-block">
<div class="close-text">✕</div>
</a>
<div class="notice">N O T I C E</div>
<div class="notice-text">We have a newly branded marketing site and we are currently upgrading the branding of our application site at <a href="http://app.indexcoop.com" class="link_underline notice-text">app.indexcoop.com</a>
</div>
</div>
</div>
<div data-collapse="medium" data-animation="default" data-duration="600" data-easing="ease" data-easing2="ease" data-doc-height="1" role="banner" class="mainnavbar w-nav">
<div class="maincontainer nav w-container">
<a href="index.html" aria-current="page" class="brand-2 w-nav-brand w--current">
<div class="index_logo w-embed"><svg width="150%" height="150%" viewbox="0 0 175 40" xmlns="http://www.w3.org/2000/svg">
<path d="M51.6465 2.5434H58.9825V36.7651H51.6465V2.5434Z"></path>
<path d="M78.7042 11.3214C81.6301 11.3214 84.0472 12.2543 85.9554 14.0778C87.8636 15.9013 88.7965 18.9121 88.7965 23.1103V36.7651H81.8845V23.5344C81.8845 19.2089 80.1883 17.0462 76.796 17.0462C75.015 17.0462 73.6156 17.6399 72.6403 18.8697C71.665 20.0571 71.1561 21.7533 71.1561 23.9584V36.8075H64.2441V11.6183H70.2656L70.9017 14.7563C71.7922 13.6962 72.8523 12.848 74.082 12.2543C75.3542 11.6607 76.8808 11.3214 78.7042 11.3214Z"></path>
<path d="M118.351 2.5434V36.7651H112.33L111.651 33.2878C109.743 35.7898 107.114 37.062 103.806 37.062C101.601 37.062 99.6083 36.5531 97.8273 35.4929C96.0463 34.4328 94.6894 32.9062 93.6717 30.9555C92.6964 29.0048 92.1875 26.7149 92.1875 24.1705C92.1875 21.6261 92.6964 19.3786 93.6717 17.4703C94.6894 15.5197 96.0887 13.993 97.8273 12.9753C99.6083 11.9151 101.644 11.3639 103.849 11.3639C107.114 11.3639 109.658 12.5088 111.439 14.7988V2.5434H118.351ZM105.418 31.4219C107.284 31.4219 108.768 30.7859 109.87 29.4713C110.973 28.1143 111.524 26.3756 111.524 24.2553C111.524 22.0502 110.973 20.3115 109.87 18.9546C108.768 17.5976 107.284 16.9615 105.418 16.9615C103.552 16.9615 102.068 17.64 100.923 18.9546C99.8204 20.3115 99.2691 22.0502 99.2691 24.1705C99.2691 26.3332 99.8204 28.0719 100.923 29.3865C102.025 30.7859 103.552 31.4219 105.418 31.4219Z"></path>
<path d="M122.168 24.2521C122.168 21.623 122.677 19.3754 123.737 17.4672C124.797 15.5165 126.281 13.9899 128.189 12.9721C130.098 11.912 132.345 11.3607 134.847 11.3607C137.391 11.3607 139.639 11.8696 141.547 12.8873C143.498 13.8626 145.024 15.262 146.084 17.0855C147.187 18.8666 147.781 20.9869 147.781 23.4464C147.781 24.337 147.696 25.1003 147.569 25.7788H129.292V25.9908C129.462 27.8143 130.055 29.2561 131.073 30.2738C132.091 31.334 133.49 31.8428 135.229 31.8428C136.628 31.8428 137.773 31.546 138.706 30.9523C139.639 30.3162 140.275 29.4257 140.572 28.2807H147.399C147.145 29.9346 146.508 31.4612 145.491 32.7758C144.473 34.0904 143.158 35.1929 141.462 35.9562C139.808 36.7195 137.9 37.1012 135.738 37.1012C132.939 37.1012 130.479 36.5923 128.444 35.5322C126.408 34.472 124.839 32.9878 123.737 31.0795C122.719 29.0864 122.168 26.8389 122.168 24.2521ZM140.953 21.2413C140.741 19.7147 140.105 18.5273 139.045 17.7216C138.027 16.8735 136.755 16.4494 135.186 16.4494C133.702 16.4494 132.43 16.8735 131.37 17.764C130.352 18.6121 129.758 19.7571 129.546 21.2413H140.953Z"></path>
<path d="M157.571 23.9576L148.666 11.6174H156.554L161.769 19.0809L167.112 11.6598H174.491L165.628 24L175 36.8066H167.112L161.345 28.9191L155.621 36.7642H148.242L157.571 23.9576Z"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M19.8031 39.4377C30.7436 39.4377 39.6062 30.6172 39.6062 19.7188C39.6062 8.82047 30.7436 0 19.8031 0C8.86263 0 0 8.82047 0 19.7188C0 30.6172 8.86263 39.4377 19.8031 39.4377ZM19.8031 32.6527C27.8176 32.6527 34.2632 26.207 34.2632 18.277C34.2632 10.3471 27.7752 7.03941 19.8031 7.03941C11.7886 7.03941 5.34302 10.3047 5.34302 18.277C5.30061 26.2494 11.7886 32.6527 19.8031 32.6527Z"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.2378 20.614C12.0859 20.614 12.8492 20.2747 13.4429 19.7659C13.7397 20.3172 14.1214 20.9108 14.4606 21.5045C15.2239 22.7767 16.072 24.0913 16.8353 25.0666C17.2169 25.5755 17.641 26.042 18.0226 26.3812C18.3618 26.6781 18.9555 27.1021 19.634 27.1021C20.3125 27.1021 20.9061 26.6781 21.2454 26.3812C21.6694 26.042 22.0935 25.5755 22.4751 25.109C23.2808 24.1337 24.1713 22.8191 24.977 21.5469C25.3586 20.9108 25.7403 20.3172 26.0795 19.7235C26.6732 20.2747 27.4789 20.6564 28.327 20.6564C30.108 20.6564 31.5921 19.2146 31.5921 17.4335C31.5921 15.6525 30.1504 14.2107 28.327 14.2107C26.8852 14.2107 25.6131 15.186 25.2314 16.5006C25.1466 16.6278 25.0618 16.7974 24.977 16.9671C24.4681 17.9 23.7472 19.1298 22.984 20.3596C22.2207 21.5893 21.3726 22.8191 20.6517 23.6672C20.27 24.0913 19.9732 24.4305 19.7188 24.6426C19.6764 24.685 19.634 24.685 19.634 24.7274C19.5916 24.7274 19.5916 24.685 19.5492 24.6426C19.2947 24.4305 18.9979 24.1337 18.6587 23.6672C17.9802 22.7767 17.1745 21.5893 16.4536 20.3596C15.7327 19.1298 15.0543 17.9 14.5454 16.9671C14.4606 16.8399 14.4182 16.7126 14.3758 16.6278C13.9941 15.2284 12.722 14.2107 11.2378 14.2107C9.45682 14.2107 7.97266 15.6525 7.97266 17.4335C7.97266 19.1722 9.41442 20.614 11.2378 20.614Z"></path>
</svg></div>
</a>
<nav role="navigation" class="nav-menu-2 w-nav-menu">
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Products</div>
</div>
<div class="menu_prodscontainer">
<div class="menu_prods">
<a href="defi-pulse-index-dpi.html" class="menu_producttitle">DPI</a>
<div class="menu_productdesc">No 1. DeFi Index</div>
</div>
<div class="menu_prods">
<a href="metaverse-index-mvi.html" class="menu_producttitle">MVI</a>
<div class="menu_productdesc">Welcome to the Metaverse</div>
</div>
<div class="menu_prods">
<a href="data-economy-index.html" class="menu_producttitle">DATA</a>
<div class="menu_productdesc">Data Centric, Chain Agnostic.</div>
</div>
<div class="menu_prods">
<a href="bankless-bed-index.html" class="menu_producttitle">BED</a>
<div class="menu_productdesc">It's time for bed</div>
</div>
<div class="menu_prods">
<a href="bankless-defi-innovation-index-gmi.html" class="menu_producttitle">GMI</a>
<div class="menu_productdesc">Gonna make it</div>
</div>
<div class="menu_prods">
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="menu_producttitle">ETH2x-FLI</a>
<div class="menu_productdesc">Fly me to the stars</div>
</div>
<div class="menu_prods">
<a href="polygon-eth2xfli.html" class="menu_producttitle">ETH2x-FLI-P</a>
<div class="menu_productdesc">Fly me to the stars using Polygon</div>
</div>
<div class="menu_prods">
<a href="polygon-inverse-iethfli.html" class="menu_producttitle">iETH-FLI-P</a>
<div class="menu_productdesc">Inverse exposure to ETH</div>
</div>
<div class="menu_prods">
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="menu_producttitle">BTC2x-FLI</a>
<div class="menu_productdesc">Fly me to the moon</div>
</div>
<div class="menu_prods">
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="menu_producttitle">MATIC2x-FLI-P</a>
<div class="menu_productdesc">2x exposure to MATIC</div>
</div>
<div class="menu_prods">
<a href="polygon-inverse-imaticfli.html" class="menu_producttitle">iMATIC-FLI-P</a>
<div class="menu_productdesc">Inverse exposure to MATIC</div>
</div>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Resources</div>
</div>
<div class="menu_gov">
<a href="https://docs.indexcoop.com/" class="menu_govlink">Gitbook</a>
</div>
<div class="menu_gov">
<a href="methodologist.html" class="menu_govlink">Methodologists</a>
</div>
<div class="menu_gov">
<a href="institution.html" class="menu_govlink">Institutions</a>
</div>
<div class="menu_gov">
<a href="contributor.html" class="menu_govlink">Contributors</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Community</div>
</div>
<div class="menu_gov">
<a href="https://gov.indexcoop.com" target="_blank" class="menu_govlink">Forum</a>
</div>
<div class="menu_gov">
<a href="https://twitter.com/indexcoop" class="menu_govlink">Twitter</a>
</div>
<div class="menu_gov">
<a href="https://discord.com/invite/BcqYxdNC3R" class="menu_govlink">Discord</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">Token</div>
</div>
<div class="menu_gov">
<a href="index-token.html" class="menu_govlink">$INDEX</a>
</div>
<div class="menu_gov">
<a href="https://snapshot.org/#/index-coop.eth" class="menu_govlink">Vote</a>
</div>
<div class="menu_gov">
<a href="https://app.indexcoop.com/liquidity-mining" class="menu_govlink">Liquidity Mining</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_titlecont">
<div class="menu_title">About</div>
</div>
<div class="menu_gov">
<a href="about-index-coop.html" class="menu_govlink">About Us</a>
</div>
<div class="menu_gov">
<a href="brand-style-guide.html" class="menu_govlink">Brand Guidelines</a>
</div>
</div>
<div class="menu_container mobilenav">
<div class="menu_gov bloglink">
<a href="https://indexcoop.com/blog/" class="menu_govlink bloglink"><strong>Blog</strong></a>
</div>
</div>
<div class="div-block-93">
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Products</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="defi-pulse-index-dpi.html" class="dropdown-text w-dropdown-link">DPI</a>
<a href="metaverse-index-mvi.html" class="dropdown-text w-dropdown-link">MVI</a>
<a href="data-economy-index.html" class="dropdown-text w-dropdown-link">DATA</a>
<a href="bankless-bed-index.html" class="dropdown-text w-dropdown-link">BED</a>
<a href="bankless-defi-innovation-index-gmi.html" class="dropdown-text w-dropdown-link">GMI</a>
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="dropdown-text w-dropdown-link">ETH2x-FLI</a>
<a href="polygon-eth2xfli.html" class="dropdown-text w-dropdown-link">ETH2x-FLI-P</a>
<a href="polygon-inverse-iethfli.html" class="dropdown-text w-dropdown-link">iETH-FLI-P</a>
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="dropdown-text w-dropdown-link">BTC2x-FLI</a>
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="dropdown-text w-dropdown-link">MATIC2x-FLI-P</a>
<a href="polygon-inverse-imaticfli.html" class="dropdown-text w-dropdown-link">iMATIC-FLI-P</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Resources</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="https://docs.indexcoop.com/" class="dropdown-text w-dropdown-link">Gitbook</a>
<a href="methodologist.html" class="dropdown-text w-dropdown-link">Methodologists</a>
<a href="institution.html" class="dropdown-text w-dropdown-link">Institutions</a>
<a href="contributor.html" class="dropdown-text w-dropdown-link">Contributors</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Community</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="https://indexcoop.catapultlabs.xyz/" target="_blank" class="dropdown-text w-dropdown-link">Join us!</a>
<a href="https://gov.indexcoop.com/" target="_blank" class="dropdown-text w-dropdown-link">Forum</a>
<a href="https://twitter.com/indexcoop" target="_blank" class="dropdown-text w-dropdown-link">Twitter</a>
<a href="https://discord.gg/BcqYxdNC3R" target="_blank" class="dropdown-text w-dropdown-link">Discord</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>Token</div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="index-token.html" class="dropdown-text w-dropdown-link">$INDEX</a>
<a href="https://snapshot.org/#/index-coop.eth" target="_blank" class="dropdown-text w-dropdown-link">Vote</a>
<a href="https://app.indexcoop.com/liquidity-mining" class="dropdown-text w-dropdown-link">Liquidity Mining</a>
</nav>
</div>
<div data-delay="3" data-hover="false" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<div>About </div>
</div>
<nav class="dropdown-list-2 w-dropdown-list">
<a href="about-index-coop.html" class="dropdown-text w-dropdown-link">About Us</a>
<a href="brand-style-guide.html" class="dropdown-text w-dropdown-link">Brand Guidelines</a>
</nav>
</div>
<div data-delay="3" data-hover="true" class="w-dropdown">
<div class="dropdown-nav nav-link w-dropdown-toggle">
<a href="https://indexcoop.com/blog/" class="bloglink">Blog</a>
</div>
<nav class="dropdown-list-2 bloglink w-dropdown-list"></nav>
</div>
</div>
<div class="stickytoggles">
<div class="div-block-95">
<div class="toggle">
<div class="toggle-theme2 w-embed"><label for="toggleTheme" title="Toggle theme">
<input id="toggleTheme" name="theme" type="checkbox">
<div class="toggleTheme toggleThemeIcon"></div>
</label>
<style>
.toggleTheme {
text-align: left;
margin: auto;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
border-radius: 8rem;
height: 100%;
width: 100%;
}
.toggleTheme:before {
position: absolute;
content: '';
height: 2rem;
width: 2rem;
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="black"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked+.toggleTheme:before {
content: '';
background-image: url('data:image/svg+xml,%0A%3Csvg width="100%" height="100%" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="black"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
</style>
</div>
<div class="togglethemefooter w-embed"><label for="toggleTheme" title="Toggle theme">
<input id="toggleTheme" name="theme" type="checkbox">
<div class="toggleThemefooter toggleThemeIcon"></div>
</label>
<style>
.toggleThemefooter {
text-align: left;
margin: auto;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
height: 100%;
border-radius: 8rem;
width: 100%;
}
.toggleThemefooter:before {
position: absolute;
content: '';
height: 2rem;
width: 2rem;
border-radius: 4rem;
background-image: url('data:image/svg+xml,%0A%3Csvg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="white"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="white"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="white"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="white"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="white"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="white"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="white"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="white"/%3E%3C/svg%3E%0A');
}
input[type="checkbox"] {
display: none;
}
input[type="checkbox"]:checked+.toggleThemefooter:before {
content: '';
background-image: url('data:image/svg+xml,%0A%3Csvg width="32" height="32" viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M17.1431 0H14.8574V3.42857H17.1431V0Z" fill="black"/%3E%3Cpath d="M32.0008 14.8571H28.5723V17.1429H32.0008V14.8571Z" fill="white"/%3E%3Cpath d="M17.1431 28.5714H14.8574V32H17.1431V28.5714Z" fill="black"/%3E%3Cpath d="M3.42857 14.8571H0V17.1429H3.42857V14.8571Z" fill="black"/%3E%3Cpath d="M5.5596 3.96492L3.94336 5.58116L6.36772 8.00553L7.98397 6.38928L5.5596 3.96492Z" fill="black"/%3E%3Cpath d="M26.4244 3.95381L24 6.37817L25.6162 7.99442L28.0406 5.57005L26.4244 3.95381Z" fill="black"/%3E%3Cpath d="M25.6182 24.0025L24.002 25.6188L26.4263 28.0431L28.0426 26.4269L25.6182 24.0025Z" fill="black"/%3E%3Cpath d="M3.96484 26.4343L6.38764 24L7.99902 25.6229L5.57623 28.0457L3.96484 26.4343Z" fill="black"/%3E%3Cpath d="M16.0003 6.85715C14.192 6.85715 12.4243 7.39337 10.9208 8.398C9.41725 9.40263 8.24539 10.8305 7.55338 12.5012C6.86138 14.1718 6.68032 16.0101 7.0331 17.7837C7.38588 19.5572 8.25665 21.1863 9.53531 22.465C10.814 23.7436 12.4431 24.6144 14.2166 24.9672C15.9901 25.32 17.8285 25.1389 19.4991 24.4469C21.1697 23.7549 22.5977 22.583 23.6023 21.0795C24.6069 19.576 25.1431 17.8083 25.1431 16C25.1431 13.5752 24.1799 11.2496 22.4653 9.53503C20.7506 7.82041 18.4251 6.85715 16.0003 6.85715ZM16.0003 22.8571C14.1817 22.8571 12.4375 22.1347 11.1516 20.8487C9.86559 19.5628 9.14314 17.8186 9.14314 16C9.14314 14.1814 9.86559 12.4372 11.1516 11.1513C12.4375 9.86531 14.1817 9.14286 16.0003 9.14286V22.8571Z" fill="black"/%3E%3C/svg%3E%0A');
}
</style>
</div>
</div>
<div class="language">
<div class="language_icon white w-embed"><svg width="100%" height="100%" fill="black" viewbox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
<path d="M16 0C12.8355 0 9.74207 0.938384 7.11088 2.69649C4.4797 4.45459 2.42894 6.95345 1.21793 9.87707C0.00693253 12.8007 -0.309921 16.0177 0.307443 19.1214C0.924806 22.2251 2.44866 25.0761 4.6863 27.3137C6.92394 29.5513 9.77487 31.0752 12.8786 31.6926C15.9823 32.3099 19.1993 31.9931 22.1229 30.7821C25.0466 29.5711 27.5454 27.5203 29.3035 24.8891C31.0616 22.2579 32 19.1645 32 16C31.9952 11.758 30.308 7.69112 27.3084 4.69157C24.3089 1.69202 20.242 0.00477931 16 0ZM2.30858 16.4503L3.83818 16.9598L5.71429 19.7745V21.2409C5.7143 21.544 5.83471 21.8347 6.04903 22.049L9.14286 25.1429V27.8589C7.12912 26.6935 5.44513 25.0348 4.24949 23.0389C3.05385 21.043 2.38591 18.7756 2.30858 16.4503ZM16 29.7143C15.0114 29.7124 14.0259 29.6033 13.0608 29.3889L13.7143 27.4286L15.7767 22.2725C15.8455 22.1003 15.8715 21.914 15.8523 21.7297C15.8331 21.5453 15.7693 21.3683 15.6665 21.2141L14.0536 18.7946C13.9492 18.6381 13.8078 18.5097 13.6419 18.4209C13.476 18.3322 13.2908 18.2857 13.1026 18.2857H7.46835L6.04183 16.1456L8.47326 13.7143H10.2857V16H12.5714V12.875L16.9922 5.1384L15.0078 4.00446L14.0307 5.71429H10.8974L9.65623 3.85269C11.3224 2.97334 13.1536 2.45097 15.033 2.31891C16.9124 2.18686 18.7986 2.44801 20.5714 3.08571V6.85714C20.5714 7.16025 20.6918 7.45094 20.9062 7.66527C21.1205 7.87959 21.4112 8 21.7143 8H23.3883C23.5765 8.00001 23.7617 7.95356 23.9276 7.86478C24.0935 7.77601 24.2349 7.64764 24.3393 7.49109L25.3415 5.98777C26.6471 7.20505 27.7032 8.66485 28.4509 10.2857H23.7943C23.5301 10.2857 23.274 10.3772 23.0697 10.5448C22.8654 10.7123 22.7254 10.9454 22.6736 11.2045L21.8483 16.3139C21.8095 16.5543 21.8485 16.8007 21.9595 17.0173C22.0705 17.234 22.2478 17.4095 22.4655 17.5184L26.2857 19.4286L27.0687 24.0637C25.8003 25.8119 24.1362 27.2352 22.2124 28.2173C20.2887 29.1993 18.1599 29.7123 16 29.7143Z"></path>
</svg></div>
</div>
</div>
<div class="div-block-96">
<a href="https://app.indexcoop.com" class="app-button w-button">APP</a>
</div>
</div>
</nav>
<div data-w-id="4110e30f-a7e2-f0f1-e7c6-ccbb35b8779b" class="menu-button-2 w-nav-button">
<div class="menu w-embed"><svg viewbox="0 0 24 14" fill="none" xmlns="http://www.w3.org/2000/svg">
<line y1="1" x2="24" y2="1" stroke="currentColor" stroke-width="2"></line>
<line y1="7" x2="24" y2="7" stroke="currentColor" stroke-width="2"></line>
<line y1="13" x2="24" y2="13" stroke="currentColor" stroke-width="2"></line>
</svg></div>
<div class="close w-embed"><svg viewbox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M21.41 23L16 17.591L10.59 23L9 21.41L14.409 16L9 10.591L10.591 9L16 14.409L21.409 9L23 10.591L17.591 16L23 21.41L21.41 23Z" fill="currentColor"></path>
<path d="M16 4C18.3734 4 20.6935 4.70379 22.6668 6.02236C24.6402 7.34094 26.1783 9.21509 27.0866 11.4078C27.9948 13.6005 28.2325 16.0133 27.7694 18.3411C27.3064 20.6689 26.1635 22.8071 24.4853 24.4853C22.8071 26.1635 20.6689 27.3064 18.3411 27.7694C16.0133 28.2324 13.6005 27.9948 11.4078 27.0866C9.21509 26.1783 7.34095 24.6402 6.02237 22.6668C4.70379 20.6935 4.00001 18.3734 4.00001 16C4.00371 12.8185 5.26918 9.76844 7.51882 7.51881C9.76845 5.26918 12.8185 4.00371 16 4ZM16 2C13.2311 2 10.5243 2.82109 8.22202 4.35943C5.91973 5.89777 4.12532 8.08427 3.06569 10.6424C2.00607 13.2006 1.72882 16.0155 2.26901 18.7313C2.80921 21.447 4.14258 23.9416 6.10051 25.8995C8.05845 27.8574 10.553 29.1908 13.2687 29.731C15.9845 30.2712 18.7994 29.9939 21.3576 28.9343C23.9157 27.8747 26.1022 26.0803 27.6406 23.778C29.1789 21.4757 30 18.7689 30 16C30 12.287 28.525 8.72601 25.8995 6.1005C23.274 3.475 19.713 2 16 2Z" fill="currentColor"></path>
</svg></div>
</div>
</div>
</div>
<div class="hero-section wf-section">
<div class="maincontainer w-container">
<div class="head_cont">
<h1 class="allh1 home">We build simple yet powerful index products to help you access crypto investment themes.</h1>
</div>
<div class="line_cont">
<div class="heroline"></div>
</div>
<div class="tvl">
<div class="dpe_container">
<div class="dpe_container"><span> </span> Clients hold <span class="text-span totalvaluelocked"> </span> in our products</div>
</div>
</div>
<div class="button_block">
<a href="https://indexcoop.com/defi-pulse-index-dpi" class="green_btn home w-button"><strong class="greenbtn_text">Explore Products</strong></a>
</div>
</div>
</div>
<div class="color_lines_mobile"><img src="images/Group-80_1.svg" loading="lazy" alt="" class="coloredlines"></div>
<div class="color_lines_desktop"><img src="images/Group-80.svg" loading="lazy" width="1162" alt="" class="coloredlines"></div>
<div id="Producs" class="product-grid gray_bg wf-section">
<div class="maincontainer w-container">
<div class="w-layout-grid maingrid">
<div id="w-node-_78671425-ee4c-521e-c1e7-f7bc8f574e96-1ed0a290" class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/DPI_token_logo-01.svg" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">DeFi Pulse Index</h3>
</div>
<p class="allparagraph grid home">The DeFi Pulse Index is a capitalization-weighted index that tracks the performance of decentralized financial assets across the market.</p>
<a href="defi-pulse-index-dpi.html" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div id="w-node-_002ca576-78a4-a6ee-2a5e-84b6c490b537-1ed0a290" class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/ETH2x-FLI_token_logo-1.svg" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">ETH 2x FLI</h3>
</div>
<p class="allparagraph grid home">The Ethereum 2x Flexible Leverage Index lets you leverage a collateralized debt position in a safe and efficient index product.</p>
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/MVI_token_logo-1.svg" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">Metaverse Index</h3>
</div>
<p class="allparagraph grid home">The Metaverse Index is designed to capture the trend of entertainment, sports and business shifting to a virtual environment.</p>
<a href="metaverse-index-mvi.html" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/BTC2x-FLI_token_logo-1.svg" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">BTC 2x FLI</h3>
</div>
<p class="allparagraph grid home">The Bitcoin 2x Flexible Leverage Index lets you leverage a collateralized debt position in a safe and efficient index product.</p>
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/DATA_Circle.png" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">Data Economy Index</h3>
</div>
<p class="allparagraph grid home">The Data Economy Index is an ecosystem of data-based products and services.<strong> </strong>Disrupting the data monopolies built in Big Tech over the past 20 years.</p>
<a href="data-economy-index.html" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/GMI_Logo-06-white.png" loading="lazy" width="45" sizes="(max-width: 479px) 11vw, 55px" alt="" srcset="images/GMI_Logo-06-white-p-500.png 500w, images/GMI_Logo-06-white-p-800.png 800w, images/GMI_Logo-06-white.png 1001w" class="ecoprodimg gmi">
<h3 class="prodh3"><strong class="prodh3 gmi">Bankless DeFi Innovation Index </strong></h3>
</div>
<p class="allparagraph grid home">The Bankless DeFi Innovation Index focuses on high growth, early stage DeFi projects which are not yet considered “blue chip”.</p>
<a href="bankless-defi-innovation-index-gmi.html" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
<div id="w-node-b0661481-584a-cf4e-cc7e-8dcc70013cab-1ed0a290" class="eco-grid">
<div class="grid_content_container">
<h3 class="grid_heading homepage">Learn about our roadmap and share your feedback</h3>
<div class="ideas_block"><img src="images/Group-43.svg" loading="lazy" width="96" alt="" class="image-34 top">
<p class="allparagraph grid home">Our forum is buzzing with innovative new index product ideas and we have a new product roadmap stretching out months into the future. Join the forum and share your feedback.</p><img src="images/Group-43.svg" loading="lazy" width="96" alt="" class="image-34">
</div>
<a href="https://gov.indexcoop.com" target="_blank" class="learnmore learn_center w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="100%" height="100%" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more">Learn More</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div class="producrt-advantage-section wf-section">
<div class="maincontainer product-list w-container">
<h2 class="allh2 homepage">Use our products to enjoy</h2>
<div class="alllist">
<div class="w-layout-grid list_grid">
<div id="w-node-_8861dbb1-4246-0b25-4f07-f4de37fcc4c6-1ed0a290" class="listco_mobile_cont">
<div class="listico w-embed"><svg width="100%" height="100%" viewbox="0 0 76 76" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="38" cy="38" r="37" stroke="#09AA74" stroke-width="2"></circle>
<path d="M22 38.5L33 49.5L56 27" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div id="w-node-_7afe95d5-f296-290c-8ab0-a02a8532a3fd-1ed0a290" class="listtico_text_wrap">
<div class="listtextblock">Easy access to crypto investment themes</div>
</div>
<div id="w-node-_4ca01f0f-88bd-69fb-7fbf-597e7e7bbc6f-1ed0a290" class="listco_mobile_cont">
<div class="listico _2nd w-embed"><svg width="100%" height="100%" viewbox="0 0 76 76" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="38" cy="38" r="37" stroke="currentColor" stroke-width="2"></circle>
<path d="M22 38.5L33 49.5L56 27" stroke="currentColor" stroke-width="2"></path>
</svg></div>
</div>
<div id="w-node-_9ac235c6-87d5-4ae1-bea9-aa6bb16121f6-1ed0a290" class="listtico_text_wrap">
<div class="listtextblock">Cost and tax efficient buy and hold</div>
</div>
<div id="w-node-_3f082524-8a3c-55b8-92a1-54df50d73e53-1ed0a290" class="listco_mobile_cont">
<div class="listico _3rd w-embed"><svg width="100%" height="100%" viewbox="0 0 76 76" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="38" cy="38" r="37" stroke="currentColor" stroke-width="2"></circle>
<path d="M22 38.5L33 49.5L56 27" stroke="currentColor" stroke-width="2"></path>
</svg></div>
</div>
<div id="w-node-_2990772e-b4ca-8aeb-93ed-0323faa3fe1d-1ed0a290" class="listtico_text_wrap">
<div class="listtextblock">Best-in-class methodologists and technology</div>
</div>
</div>
</div>
</div>
</div>
<div class="investors gray_bg homepage wf-section">
<h2 class="allh2 investors_head">Investors</h2>
<div class="maincontainer investors w-container">
<div class="companies investors_grid">
<div class="investors_logo"><img src="images/1confimation.svg" loading="lazy" alt="" width="91" class="investors_icons"></div>
<div class="investors_logo"><img src="images/galaxy_digital_Logo-White-1.svg" loading="lazy" alt="" class="investors_icons"></div>
<div class="investors_logo"><img src="images/1kx_network-1.svg" loading="lazy" alt="" class="investors_icons"></div>
<div class="investors_logo"><img src="images/Defiance-Capital.svg" loading="lazy" alt="" class="investors_icons"></div>
<div id="w-node-d1da83ec-5de7-ad20-f4b0-7b79aed0cc55-1ed0a290" class="investors_logo"><img src="images/witnermute-1.svg" loading="lazy" alt="" class="investors_icons"></div>
</div>
</div>
</div>
<div class="methodology-section wf-section">
<div class="maincontainer w-container">
<h2 class="allh2 homepage">The Trinity: Community, <br>Methodologists & Technology</h2>
<p class="allparagraph underh1 center trinity">Index Coop is a decentralized and autonomous asset manager powered by:</p>
<div class="alllist">
<div class="listdesc">
<div class="listico_cont">
<div class="listico w-embed"><svg width="100%" height="100%" viewbox="0 0 84 89" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M66.0368 88.1252H63.9668V66.5857C63.9668 56.3622 57.0265 47.5762 47.0848 45.2187C46.6535 45.1152 46.3344 44.75 46.2942 44.3102C46.251 43.8674 46.4983 43.4477 46.9037 43.2665C51.265 41.3259 54.0797 36.9962 54.0797 32.238C54.0797 25.5795 48.6632 20.1602 42.0047 20.1602C35.3462 20.1602 29.9297 25.5767 29.9297 32.238C29.9297 36.999 32.7472 41.3288 37.1057 43.2665C37.511 43.4477 37.7554 43.8674 37.7152 44.3102C37.6749 44.75 37.3558 45.118 36.9245 45.2187C26.9828 47.5733 20.0425 56.3593 20.0425 66.5857V88.1252H17.9725V66.5857C17.9725 56.2443 24.4585 47.2513 34.0294 43.9105C30.2143 41.3029 27.8568 36.9502 27.8568 32.238C27.8568 26.5915 31.1832 21.704 35.9787 19.4385C36.5422 18.024 36.8268 16.529 36.8268 14.988C36.8268 8.32952 31.4103 2.91014 24.7518 2.91014C18.0933 2.91014 12.6739 8.32665 12.6739 14.988C12.6739 19.7462 15.4914 24.0788 19.8499 26.0165C20.2582 26.1977 20.5025 26.6174 20.4594 27.0602C20.4192 27.5 20.1 27.868 19.6688 27.9687C9.72705 30.3262 2.7868 39.1007 2.7868 49.3127V70.8752H0.716797V49.3127C0.716797 38.9857 7.20567 29.9984 16.7737 26.6605C12.9614 24.0529 10.6068 19.7002 10.6068 14.988C10.6068 7.18815 16.9519 0.843018 24.7518 0.843018C32.5517 0.843018 38.8968 7.18815 38.8968 14.988C38.8968 16.2013 38.7473 17.3915 38.4454 18.5444C40.7195 17.955 43.284 17.955 45.5553 18.5444C45.2563 17.3915 45.1039 16.2013 45.1039 14.988C45.1039 7.18815 51.4519 0.843018 59.2518 0.843018C67.0517 0.843018 73.3997 7.18815 73.3997 14.988C73.3997 19.703 71.0422 24.0558 67.2299 26.6634C76.8008 30.0013 83.2897 38.9885 83.2897 49.3155V70.8752H81.2168V49.3127C81.2168 39.1007 74.2765 30.3262 64.3348 27.9687C63.9035 27.8652 63.5844 27.5 63.5442 27.0602C63.501 26.6174 63.7483 26.1977 64.1537 26.0165C68.5122 24.0759 71.3268 19.7462 71.3268 14.988C71.3268 8.32952 65.9103 2.91014 59.2518 2.91014C52.5933 2.91014 47.1768 8.32665 47.1768 14.988C47.1768 16.529 47.4614 18.024 48.0249 19.4385C52.8233 21.7069 56.1497 26.5915 56.1497 32.238C56.1497 36.953 53.7922 41.3058 49.9799 43.9134C59.5508 47.2542 66.0397 56.2472 66.0397 66.5886L66.0368 88.1252ZM51.3599 68.7333L49.8937 67.2671L39.1268 78.0368L34.107 73.0171L32.6437 74.4833L39.1268 80.9636L51.3599 68.7333Z" fill="#09AA74"></path>
</svg></div>
</div>
<div class="listparagraph">A globally distributed community - contributors in every continent and timezone from an ever-growing range of countries</div>
</div>
<div class="listdesc">
<div class="listico_cont">
<div class="listico lightmode w-embed"><svg width="100%" height="100%" viewbox="0 0 90 87" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M45.0014 86.2853C37.5121 86.2853 30.3591 84.2383 24.3187 80.3686L25.4371 78.6292C31.1439 82.2833 37.9088 84.2124 45.0043 84.2124C51.9158 84.2124 58.8676 82.2287 64.5773 78.6235L65.6842 80.3743C59.6438 84.1866 52.3011 86.2853 45.0014 86.2853ZM79.5014 74.7853C74.1741 74.7853 69.8414 70.4498 69.8414 65.1253C69.8414 59.8008 74.1769 55.4653 79.5014 55.4653C84.8259 55.4653 89.1614 59.8008 89.1614 65.1253C89.1614 70.4498 84.8288 74.7853 79.5014 74.7853ZM79.5014 57.5353C75.3154 57.5353 71.9114 60.9393 71.9114 65.1253C71.9114 69.3113 75.3154 72.7153 79.5014 72.7153C83.6874 72.7153 87.0914 69.3113 87.0914 65.1253C87.0914 60.9393 83.6874 57.5353 79.5014 57.5353ZM22.0014 74.7853H1.87644C1.50556 74.7853 1.16344 74.587 0.97944 74.265C0.79544 73.943 0.79544 73.5462 0.982315 73.2271L11.0448 55.9771C11.4157 55.3417 12.4622 55.3417 12.8331 55.9771L22.8956 73.2271C23.0824 73.5462 23.0824 73.943 22.8984 74.265C22.7144 74.587 22.3723 74.7853 22.0014 74.7853ZM3.67906 72.7153H20.1988L11.9389 58.556L3.67906 72.7153ZM60.4114 65.1253H58.3414V60.2867C58.3414 54.0767 54.1267 48.7407 48.0921 47.3118C47.6608 47.2112 47.3417 46.8432 47.3014 46.4033C47.2612 45.9606 47.5056 45.5408 47.9109 45.3597C50.4956 44.2097 52.1631 41.6423 52.1631 38.8191C52.1631 34.8717 48.9517 31.6603 45.0043 31.6603C41.0569 31.6603 37.8456 34.8717 37.8456 38.8191C37.8456 41.6423 39.5159 44.2097 42.1006 45.3597C42.5059 45.5408 42.7503 45.9606 42.7101 46.4005C42.6698 46.8432 42.3507 47.2112 41.9194 47.3118C35.8819 48.7436 31.6672 54.0767 31.6672 60.2867V65.1253H29.5972V60.2867C29.5972 53.9013 33.4554 48.321 39.2198 46.0037C37.0779 44.2758 35.7784 41.6481 35.7784 38.8191C35.7784 33.7303 39.9184 29.5903 45.0072 29.5903C50.0988 29.5903 54.2388 33.7303 54.2388 38.8191C54.2388 41.6481 52.9393 44.2758 50.7974 46.0037C56.5618 48.321 60.4201 53.9042 60.4201 60.2867V65.1253H60.4114ZM83.2993 50.828L81.2322 50.6698C81.3041 49.747 81.3386 48.8126 81.3386 47.8725C81.3386 34.337 73.8434 22.0176 61.7713 15.7271L62.7258 13.89C75.4879 20.5427 83.4114 33.5636 83.4114 47.8753C83.4114 48.873 83.3741 49.8533 83.2993 50.828ZM6.70356 50.828C6.62881 49.8533 6.59144 48.873 6.59144 47.8753C6.59144 33.5003 14.5149 20.4421 27.2713 13.7922L28.2287 15.6293C16.1594 21.9198 8.66144 34.2766 8.66144 47.8753C8.66144 48.8155 8.69881 49.747 8.76781 50.6727L6.70356 50.828ZM53.6264 20.1603H36.3764C35.8043 20.1603 35.3414 19.6975 35.3414 19.1253V1.87533C35.3414 1.30321 35.8043 0.840332 36.3764 0.840332H53.6264C54.1986 0.840332 54.6614 1.30321 54.6614 1.87533V19.1253C54.6614 19.6975 54.1986 20.1603 53.6264 20.1603ZM37.4114 18.0903H52.5914V2.91033H37.4114V18.0903Z" fill="#327EE8"></path>
</svg></div>
<div class="listico darkmode w-embed"><svg width="100%" height="100%" viewbox="0 0 90 83" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M83.4118 82.2503H81.3418V56.3753C81.3418 55.9412 81.6178 55.5502 82.026 55.4007C85.292 54.2219 87.0918 51.7063 87.0918 48.3224V33.3753C87.0918 27.6052 82.3969 22.9103 76.6268 22.9103C70.8567 22.9103 66.1618 27.6052 66.1618 33.3753V48.354C66.1618 51.7178 67.9615 54.2219 71.2275 55.4007C71.6386 55.5502 71.9118 55.9412 71.9118 56.3753V82.2503H69.8418V57.0768C66.179 55.4927 64.0918 52.3503 64.0918 48.354V33.3753C64.0918 26.4638 69.7153 20.8403 76.6268 20.8403C83.5383 20.8403 89.1618 26.4638 89.1618 33.3753V48.3224C89.1618 52.3359 87.0745 55.4927 83.4118 57.0768V82.2503ZM20.1618 82.2503H18.0918V56.3753C18.0918 55.9412 18.3649 55.5502 18.7732 55.4007C22.042 54.2219 23.8418 51.7063 23.8418 48.3224V33.3753C23.8418 27.6052 19.1469 22.9103 13.3768 22.9103C7.60667 22.9103 2.9118 27.6052 2.9118 33.3753V48.354C2.9118 51.7178 4.71155 54.2219 7.98042 55.4007C8.38867 55.5502 8.66179 55.9412 8.66179 56.3753V82.2503H6.59179V57.0768C2.92617 55.4927 0.841797 52.3503 0.841797 48.354V33.3753C0.841797 26.4638 6.4653 20.8403 13.3768 20.8403C20.2883 20.8403 25.9118 26.4638 25.9118 33.3753V48.3224C25.9118 52.3359 23.8274 55.4927 20.1618 57.0768C20.1618 57.0768 20.1618 82.2503 20.1618 82.2503ZM76.6268 17.1603C72.0929 17.1603 68.4043 13.4717 68.4043 8.93783C68.4043 4.40395 72.0929 0.715332 76.6268 0.715332C81.1606 0.715332 84.8493 4.40395 84.8493 8.93783C84.8493 13.4717 81.1606 17.1603 76.6268 17.1603ZM76.6268 2.78533C73.2343 2.78533 70.4743 5.54533 70.4743 8.93783C70.4743 12.3303 73.2343 15.0903 76.6268 15.0903C80.0193 15.0903 82.7793 12.3303 82.7793 8.93783C82.7793 5.54533 80.0193 2.78533 76.6268 2.78533ZM13.3768 17.1603C8.84292 17.1603 5.1543 13.4717 5.1543 8.93783C5.1543 4.40395 8.84292 0.715332 13.3768 0.715332C17.9107 0.715332 21.5993 4.40395 21.5993 8.93783C21.5993 13.4717 17.9107 17.1603 13.3768 17.1603ZM13.3768 2.78533C9.98429 2.78533 7.22429 5.54533 7.22429 8.93783C7.22429 12.3303 9.98429 15.0903 13.3768 15.0903C16.7693 15.0903 19.5293 12.3303 19.5293 8.93783C19.5293 5.54533 16.7693 2.78533 13.3768 2.78533ZM54.3599 35.5201L52.8937 36.9834L56.8784 40.9682H33.1252L37.107 36.9834L35.6437 35.5201L29.1634 42.0003L35.6465 48.4834L37.1099 47.0172L33.128 43.0353H56.8813L52.8965 47.0172L54.3628 48.4834L60.8402 42.0003L54.3599 35.5201Z" fill="#699BF7"></path>
</svg></div>
</div>
<div class="listparagraph">Expert methodologists - partners that are here for the long term and align with our vision, whether external or from within the Index Coop itself</div>
</div>
<div class="listdesc">
<div class="listico_cont">
<div class="listico _3rdtrinity w-embed"><svg width="100%" height="100%" viewbox="0 0 90 89" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.35705 25.6044L6.89655 24.1439L10.4759 20.5616L6.89655 16.9794L8.35992 15.516L13.4027 20.5616L8.35705 25.6044ZM7.6268 4.74911C6.8333 4.74911 6.1893 5.39311 6.1893 6.18661C6.1893 6.98011 6.8333 7.62411 7.6268 7.62411C8.4203 7.62411 9.0643 6.98011 9.0643 6.18661C9.0643 5.39311 8.4203 4.74911 7.6268 4.74911ZM14.8143 6.18661C14.8143 6.98011 14.1703 7.62411 13.3768 7.62411C12.5833 7.62411 11.9393 6.98011 11.9393 6.18661C11.9393 5.39311 12.5833 4.74911 13.3768 4.74911C14.1703 4.74911 14.8143 5.39311 14.8143 6.18661ZM20.5643 6.18661C20.5643 6.98011 19.9203 7.62411 19.1268 7.62411C18.3333 7.62411 17.6893 6.98011 17.6893 6.18661C17.6893 5.39311 18.3333 4.74911 19.1268 4.74911C19.9203 4.74911 20.5643 5.39311 20.5643 6.18661ZM52.1893 17.6866C52.1893 18.4801 51.5453 19.1241 50.7518 19.1241C49.9583 19.1241 49.3143 18.4801 49.3143 17.6866C49.3143 16.8931 49.9583 16.2491 50.7518 16.2491C51.5453 16.2491 52.1893 16.8931 52.1893 17.6866ZM57.9393 17.6866C57.9393 18.4801 57.2953 19.1241 56.5018 19.1241C55.7083 19.1241 55.0643 18.4801 55.0643 17.6866C55.0643 16.8931 55.7083 16.2491 56.5018 16.2491C57.2953 16.2491 57.9393 16.8931 57.9393 17.6866ZM63.6893 17.6866C63.6893 18.4801 63.0453 19.1241 62.2518 19.1241C61.4583 19.1241 60.8143 18.4801 60.8143 17.6866C60.8143 16.8931 61.4583 16.2491 62.2518 16.2491C63.0453 16.2491 63.6893 16.8931 63.6893 17.6866ZM14.8143 69.4366C14.8143 70.2301 14.1703 70.8741 13.3768 70.8741C12.5833 70.8741 11.9393 70.2301 11.9393 69.4366C11.9393 68.6431 12.5833 67.9991 13.3768 67.9991C14.1703 67.9991 14.8143 68.6431 14.8143 69.4366ZM36.3768 40.2841H1.8768C1.30467 40.2841 0.841797 39.8212 0.841797 39.2491V1.87411C0.841797 1.30199 1.30467 0.839111 1.8768 0.839111H36.3768C36.9489 0.839111 37.4118 1.30199 37.4118 1.87411V39.2491C37.4118 39.8212 36.9489 40.2841 36.3768 40.2841ZM35.3418 11.5341H2.9118V38.2141H35.3418V11.5341ZM35.3418 2.90911H2.9118V9.46699H35.3418V2.90911ZM89.1618 13.3741V62.2491C89.1618 62.8212 88.6989 63.2841 88.1268 63.2841H55.6134C54.7481 64.6382 53.6297 65.8285 52.3014 66.7772C60.5671 69.796 66.1561 77.639 66.1561 86.6205L66.1618 88.1184L64.0889 88.1241L64.0832 86.6234C64.0832 77.7741 58.0744 70.1525 49.4696 68.0796C49.0383 67.979 48.7221 67.611 48.6818 67.1711C48.6416 66.7312 48.8831 66.3115 49.2884 66.1332C53.0691 64.4312 55.5128 60.6707 55.5128 56.548C55.5128 50.7491 50.7978 46.0341 45.0018 46.0341C39.2001 46.0341 34.4793 50.7491 34.4793 56.548C34.4793 60.6707 36.9231 64.4312 40.7066 66.1332C41.1119 66.3115 41.3534 66.7312 41.3132 67.1711C41.2729 67.611 40.9538 67.979 40.5254 68.0796C31.9206 70.1525 25.9089 77.7741 25.9089 86.6205L25.9118 88.1184L23.8418 88.1241L23.8389 86.6234C23.8389 77.639 29.4251 69.7931 37.6936 66.7772C34.4218 64.4427 32.4093 60.642 32.4093 56.5451C32.4093 49.9556 37.5038 44.5334 43.9668 44.0044V13.3741C43.9668 12.802 44.4297 12.3391 45.0018 12.3391H88.1268C88.6989 12.3391 89.1618 12.802 89.1618 13.3741ZM87.0918 23.0341H46.0368V44.0072C52.4941 44.5362 57.5857 49.9585 57.5857 56.548C57.5857 58.1752 57.2694 59.7536 56.6801 61.2141H87.0918V23.0341ZM87.0918 14.4091H46.0368V20.9641H87.0918V14.4091ZM62.2518 32.4641H50.7518V34.5341H62.2518V32.4641ZM66.9668 49.3116C66.9668 44.7777 70.6554 41.0891 75.1893 41.0891C79.7232 41.0891 83.4118 44.7777 83.4118 49.3116C83.4118 53.8455 79.7232 57.5341 75.1893 57.5341C70.6554 57.5341 66.9668 53.8455 66.9668 49.3116ZM80.1976 45.7639L76.2214 49.74L76.2099 55.3606C79.1137 54.869 81.3389 52.3534 81.3389 49.3116C81.3418 47.9891 80.9106 46.7672 80.1976 45.7639ZM69.0368 49.3116C69.0368 52.3447 71.2477 54.8546 74.1371 55.3577L74.1543 48.8804L78.7313 44.3005C77.7279 43.5875 76.5089 43.1591 75.1864 43.1591C71.7968 43.1591 69.0368 45.9191 69.0368 49.3116ZM22.0018 26.7141H13.3768V28.7841H22.0018V26.7141ZM9.0643 60.4091H17.6893V58.3391H9.0643V60.4091ZM9.0643 54.6591H17.6893V52.5891H9.0643V54.6591ZM62.2518 38.2141H50.7518V40.2841H62.2518V38.2141ZM82.3768 32.4641H70.8768V34.5341H82.3768V32.4641ZM82.3768 26.7141H70.8768V28.7841H82.3768V26.7141ZM62.2518 26.7141H50.7518V28.7841H62.2518V26.7141ZM23.0368 49.5531V72.0701C23.0368 73.568 21.8207 74.7841 20.3228 74.7841H6.4308C4.93292 74.7841 3.7168 73.5651 3.7168 72.0701V49.5531C3.7168 48.0552 4.93292 46.8391 6.4308 46.8391H20.3228C21.8207 46.8391 23.0368 48.0552 23.0368 49.5531ZM20.9668 66.1591H5.7868V72.0701C5.7868 72.4237 6.07717 72.7141 6.4308 72.7141H20.3228C20.6793 72.7141 20.9668 72.4237 20.9668 72.0701V66.1591ZM20.9668 49.5531C20.9668 49.1995 20.6764 48.9091 20.3228 48.9091H6.4308C6.0743 48.9091 5.7868 49.1995 5.7868 49.5531V64.0891H20.9668V49.5531Z" fill="currentColor"></path>
</svg></div>
</div>
<div class="listparagraph">Best-in-class technology - Built on Set Protocol contracts, we can deliver truly innovative decentralized index products like the FLI suite</div>
</div>
<div class="listdesc social_dpe">
<div class="twitter_follower_wrap">
<div class="listparagraph bold">Twitter followers: <br></div>
<div class="twitter_follower text-span listparagraph"></div>
</div>
<div class="listparagraph bold">Discord members: 4.3k</div>
</div>
<div class="button_block learn-more">
<a href="https://docs.indexcoop.com/" target="_blank" class="green_btn home w-button"><strong class="greenbtn_text">Learn More</strong></a>
</div>
</div>
</div>
</div>
<div class="reviews-section gray_bg wf-section">
<div class="maincontainer w-container">
<div data-delay="4000" data-animation="slide" class="slider-2 w-slider" data-autoplay="false" data-easing="ease" data-hide-arrows="false" data-disable-swipe="false" data-autoplay-limit="0" data-nav-spacing="8" data-duration="500" data-infinite="true">
<div class="w-slider-mask">
<div class="w-slide">
<div class="slider_column w-row">
<div class="slider_image w-col w-col-6"><img src="images/image-19.png" loading="lazy" alt="" class="slider_image"></div>
<div class="slider_content w-col w-col-6">
<div class="slider_description">“Probably one of the most interesting sleeper projects out there to me is $INDEX / @indexcoop.”<br><br><span class="text-span-18">DCinvestor / Aftab</span></div>
</div>
</div>
</div>
<div class="w-slide">
<div class="slider_column w-row">
<div class="slider_image w-col w-col-6"><img src="images/Sassano.png" loading="lazy" alt="Anthony Sassano photo." class="slider_image"></div>
<div class="slider_content w-col w-col-6">
<div class="slider_description">“I believe that the DeFi Pulse Index (DPI) will become the benchmark for all of DeFi.”<br><br><span class="text-span-18"><strong>Anthony Sassano</strong> </span></div>
</div>
</div>
</div>
<div class="w-slide">
<div class="slider_column w-row">
<div class="slider_image w-col w-col-6"><img src="images/Kevin-Su.jpeg" loading="lazy" sizes="(max-width: 479px) 76vw, (max-width: 767px) 355px, (max-width: 991px) 335px, 355px" width="355" alt="Kevin Su photo." srcset="images/Kevin-Su-p-500.jpeg 500w, images/Kevin-Su.jpeg 800w"></div>
<div class="slider_content w-col w-col-6">
<div class="slider_description">“@IndexCoop presents a clear solution with their index products, which de-risk investors, are easy to buy/sell, and are low cost, low maintenance, and tax efficient.”<strong><br></strong><br><span class="text-span-18">Kevin Su/ Messari </span></div>
</div>
</div>
</div>
<div class="w-slide">
<div class="slider_column w-row">
<div class="slider_image w-col w-col-6"><img src="images/Lasse-Clausen.jpeg" loading="lazy" sizes="(max-width: 479px) 79vw, (max-width: 767px) 378px, (max-width: 991px) 335px, 378px" width="378" alt="Lasse Clausen photo." srcset="images/Lasse-Clausen-p-500.jpeg 500w, images/Lasse-Clausen.jpeg 800w"></div>
<div class="slider_content w-col w-col-6">
<div class="slider_description">“Index is the market leader for on-chain ETF-like products and enables any DeFi user to get complex exposure that would be difficult to manually replicate,”<br><span class="text-span-18">Lasse Clausen/ Founding Partner at 1kx</span></div>
</div>
</div>
</div>
</div>
<div class="left-arrow w-slider-arrow-left">
<div class="w-icon-slider-left"></div>
</div>
<div class="right-arrow w-slider-arrow-right">
<div class="icon-4 w-icon-slider-right"></div>
</div>
<div class="slider_nav w-slider-nav"></div>
</div>
</div>
</div>
<div class="ecosystem-section wf-section">
<div class="maincontainer w-container">
<h2 class="allh1 homepage">Ecosystem</h2>
<p class="allparagraph underh1 center">Explore apps and services you can use with Index Coop products</p>
<h3 class="allh3">Earn Yield</h3>
<div class="w-layout-grid maingrid dex">
<div class="eco-grid">
<div class="grid_content_container">
<div class="product-title">
<div class="ecoprodimg w-embed"><svg width="57" height="57" viewbox="0 0 57 57" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M28.5 56C43.6878 56 56 43.6878 56 28.5C56 13.3122 43.6878 1 28.5 1C13.3122 1 1 13.3122 1 28.5C1 43.6878 13.3122 56 28.5 56Z" stroke="#BFBFBF" stroke-miterlimit="10" fill="white"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M28.2906 50.3644C40.5015 50.3644 50.4424 40.5018 50.4424 28.2909C50.4424 16.0801 40.5015 6.13916 28.2906 6.13916C16.0015 6.13916 6.06055 16.0801 6.06055 28.2909C6.06055 40.5018 16.0015 50.3644 28.2906 50.3644ZM28.2906 42.7718C37.2139 42.7718 44.4935 35.5705 44.4935 26.6472C44.4935 17.7238 37.2139 14.0449 28.2906 14.0449C19.289 14.1232 12.0877 17.8021 12.0877 26.6472C12.0877 35.5705 19.289 42.7718 28.2906 42.7718Z" fill="black"></path>
<path fill-rule="evenodd" clip-rule="evenodd" d="M18.6631 29.2301C19.6024 29.2301 20.4635 28.8387 21.1679 28.2908C21.5593 28.917 21.8724 29.6215 22.3421 30.2477C23.2031 31.6566 24.1424 33.1438 25.0034 34.2397C25.4731 34.7876 25.8644 35.3355 26.3341 35.7269C26.7255 36.04 27.3516 36.5097 28.1344 36.5097C28.9171 36.5097 29.5433 36.04 29.9347 35.7269C30.4044 35.3355 30.874 34.8659 31.3437 34.2397C32.283 33.1438 33.2223 31.6566 34.1616 30.2477C34.6312 29.5432 35.0226 28.8387 35.414 28.2125C36.0402 28.8387 36.9795 29.2301 37.9188 29.2301C39.9539 29.2301 41.5977 27.5863 41.5977 25.6294C41.5977 23.5943 39.9539 22.0288 37.9188 22.0288C36.275 22.0288 34.866 23.1247 34.4747 24.6119C34.3964 24.7684 34.3181 24.925 34.1616 25.1598C33.6136 26.1774 32.7526 27.5863 31.8916 28.9953C31.0306 30.4042 30.0913 31.7349 29.3085 32.7525C28.9171 33.2221 28.5258 33.6135 28.2909 33.8483C28.2127 33.8483 28.2127 33.9266 28.2127 33.9266L28.1344 33.8483C27.8996 33.6135 27.5082 33.2221 27.1168 32.7525C26.3341 31.7349 25.4731 30.4042 24.612 29.0735C23.751 27.6646 23.0465 26.3339 22.4986 25.2381C22.4203 25.0815 22.3421 24.925 22.2638 24.8467C21.8724 23.2812 20.4635 22.1071 18.7414 22.1071C16.7063 22.1071 15.0625 23.7509 15.0625 25.7077C15.0625 27.6646 16.628 29.2301 18.6631 29.2301Z" fill="black"></path>
</svg></div>
<h3 class="prodh3">Index Coop</h3>
</div>
<p class="allparagraph grid">Earn INDEX tokens by staking GMI tokens.</p>
<a href="https://app.indexcoop.com/liquidity-mining" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="26" height="26" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more explore">View the Pool</div>
</a>
</div>
<div class="bottom_box"></div>
</div>
<div id="w-node-f66d4747-2130-8ebc-a66c-66518a599cae-1ed0a290" class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/image-23.svg" loading="lazy" width="45" alpha_homora="Alpha_Homora" alt="" class="ecoprodimg">
<h3 class="prodh3">Alpha Homora</h3>
</div>
<p class="allparagraph grid">Earn leveraged yield in the ETH/DPI Pool by Alpha Homora.</p>
<a rel="nofollow noopener" href="https://homora.alphafinance.io/" target="_blank" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="26" height="26" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more explore">View the Pool</div>
</a>
</div>
<div class="bottom_box _29b1fe"></div>
</div>
<div id="w-node-f8288bf7-39d0-3df9-6736-b606f42cc778-1ed0a290" class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/moonswap-1.svg" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">Moonswap</h3>
</div>
<p class="allparagraph grid">Earn yield by providing liquidity to the ETH/DPI Pool by Moonswap.</p>
<a rel="nofollow noopener" href="https://farm.moonswap.fi/eth/farms/DPI-ETH%20UNI-V2%20LP" target="_blank" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="26" height="26" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more explore">View the Pool</div>
</a>
</div>
<div class="bottom_box f9c73f"></div>
</div>
</div>
<h3 class="allh3 wallets">Wallets</h3>
<div class="w-layout-grid maingrid">
<div class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/Zerion.svg" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">Zerion</h3>
</div>
<p class="allparagraph grid">Track your portfolio performance and buy DeFi Pulse Index in the Zerion app for Desktop, Android & iOS.</p>
<a rel="nofollow noopener" href="https://app.zerion.io/invest/asset/DPI-0x1494ca1f11d487c2bbe4543e90080aeba4ba3c2b" target="_blank" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="26" height="26" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more explore">Explore Zerion</div>
</a>
</div>
<div class="bottom_box _343992"></div>
</div>
<div class="eco-grid">
<div class="grid_content_container">
<div class="product-title"><img src="images/Argent.svg" loading="lazy" width="45" alt="" class="ecoprodimg">
<h3 class="prodh3">Argent</h3>
</div>
<p class="allparagraph grid">Buy & Sell the DeFi Pulse Index natively in the Argent wallet app for Android & iOS.</p>
<a rel="nofollow noopener" href="https://www.argent.xyz/" target="_blank" class="learnmore w-inline-block">
<div class="arrow_learnmore w-embed"><svg width="26" height="26" viewbox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M12.9999 5.57178L11.672 6.86528L16.8534 12.0718H5.57129V13.9289H16.8534L11.672 19.1038L12.9999 20.4289L20.4284 13.0003L12.9999 5.57178Z" fill="#09AA74"></path>
<path d="M13 26C10.4288 26 7.91543 25.2376 5.77759 23.8091C3.63975 22.3807 1.97351 20.3503 0.989572 17.9749C0.00563268 15.5995 -0.251811 12.9856 0.249797 10.4638C0.751405 7.94208 1.98953 5.6257 3.80762 3.80762C5.6257 1.98953 7.94208 0.751405 10.4638 0.249797C12.9856 -0.251811 15.5995 0.00563268 17.9749 0.989572C20.3503 1.97351 22.3807 3.63975 23.8091 5.77759C25.2376 7.91543 26 10.4288 26 13C25.9961 16.4466 24.6252 19.751 22.1881 22.1881C19.751 24.6252 16.4466 25.9961 13 26ZM13 1.85715C10.7962 1.85715 8.6418 2.51067 6.80937 3.73506C4.97693 4.95945 3.54872 6.69973 2.70535 8.73582C1.86197 10.7719 1.64131 13.0124 2.07126 15.1739C2.50121 17.3354 3.56246 19.3208 5.12082 20.8792C6.67917 22.4376 8.66464 23.4988 10.8261 23.9288C12.9876 24.3587 15.2281 24.138 17.2642 23.2947C19.3003 22.4513 21.0406 21.0231 22.265 19.1906C23.4893 17.3582 24.1429 15.2039 24.1429 13C24.1395 10.0458 22.9644 7.2135 20.8755 5.12454C18.7865 3.03557 15.9542 1.86052 13 1.85715Z" fill="#09AA74"></path>
</svg></div>
<div class="learn_more explore">Explore Argent</div>
</a>
</div>