-
Notifications
You must be signed in to change notification settings - Fork 8
/
polygon-eth2xfli.html
1117 lines (1117 loc) · 76.7 KB
/
polygon-eth2xfli.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="61ae5ec81880cd857dab511d" data-wf-site="60d237b6ea65be721ff4bbfa">
<head>
<meta charset="utf-8">
<title>ETH2xFLI | Polygon | ETH Flexible Leverage Index</title>
<meta content="Polygon ETH Flexible Leverage Index (ETH2xFLI ) enables you to leverage a collateralized debt position for 2x exposure to the price of Ether (ETH) on Polygon" name="description">
<meta content="ETH2xFLI | Polygon | ETH Flexible Leverage Index" property="og:title">
<meta content="Polygon ETH Flexible Leverage Index (ETH2xFLI ) enables you to leverage a collateralized debt position for 2x exposure to the price of Ether (ETH) on Polygon" property="og:description">
<meta content="ETH2xFLI | Polygon | ETH Flexible Leverage Index" property="twitter:title">
<meta content="Polygon ETH Flexible Leverage Index (ETH2xFLI ) enables you to leverage a collateralized debt position for 2x exposure to the price of Ether (ETH) on Polygon" 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/polygon-eth2xfli" 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>
</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 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" class="brand-2 w-nav-brand">
<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" aria-current="page" class="menu_producttitle w--current">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" aria-current="page" class="dropdown-text w-dropdown-link w--current">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 product w-container">
<div class="head_cont product ethfli">
<div class="prod_icon_cont ethfli">
<div class="prod_icon ethfli w-embed"><svg width="100%" height="100%" viewbox="0 0 106 106" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M53.0353 1.5C24.5433 1.5 1.5 24.5344 1.5 53.0176C1.5 81.5016 24.544 104.5 53 104.5C81.4567 104.5 104.5 81.4656 104.5 53.0176C104.5 24.571 81.4228 1.5 53.0353 1.5ZM70.1292 10.0397C92.4956 18.8636 104.199 43.7903 97.0681 66.4546L11.9033 32.7689C16.7299 22.6898 24.9867 14.8241 35.3411 10.4487C46.5164 5.73444 58.8127 5.59691 70.1292 10.0397Z" fill="url(#paint0_linear)" stroke="white" stroke-width="3"></path>
<path d="M9.88086 33.582C14.7503 22.4708 23.5718 13.7936 34.7574 9.06696C46.2958 4.19924 58.9987 4.05814 70.6783 8.64368C94.2845 17.9559 106.388 44.6225 97.9896 68.432L9.88086 33.582Z" fill="white"></path>
<path d="M42.5562 29.4198L52.7538 35.4516L62.9514 29.4198L52.7538 12.5239L42.5562 29.4198Z" fill="#460782"></path>
<path d="M42.5562 32.7357L52.7538 47.0919L62.9514 32.7357L52.7538 38.7674L42.5562 32.7357Z" fill="#460782"></path>
<path d="M30.8061 63.4233C30.0298 63.0706 29.3594 62.1182 29.3594 61.2716V56.6155L43.7913 62.7884L43.8618 80.284C43.8618 84.3051 43.8618 84.5168 46.7906 85.7866L55.4709 89.455V95.6984L41.039 89.5256C39.4511 88.8201 38.1103 86.8801 38.1103 85.1517V78.9083L35.1815 77.6737C33.5937 76.9683 32.2528 75.0282 32.2528 73.2998V70.1605L38.0044 72.5944V66.351L30.8061 63.4233Z" fill="white"></path>
<path d="M55.4004 83.2822L52.4717 82.0476C49.543 80.672 49.543 80.8836 49.543 77.6737V56.6155L52.4717 57.8501C54.0596 58.5556 55.4004 60.4956 55.4004 62.224V83.2822Z" fill="white"></path>
<path d="M67.2563 47.2329V44.5168L72.9374 38.9084C73.6431 38.2734 74.1018 37.6738 74.3841 37.1094C74.7369 36.5451 74.8781 35.9454 74.8781 35.3105C74.8781 34.6756 74.6664 34.217 74.3135 33.8643C73.9607 33.5115 73.2549 33.2999 72.3728 33.2999H67.5739V30.6544C68.3502 30.5133 69.0912 30.3722 70.0086 30.3017C70.9261 30.1606 71.8788 30.09 73.0079 30.09C74.3135 30.09 75.3721 30.3017 76.1484 30.6544C76.9247 31.0071 77.4539 31.5715 77.7362 32.2417C78.0891 32.9472 78.2302 33.7585 78.2302 34.7461C78.2302 35.9101 78.0185 36.8978 77.5245 37.7443C77.0305 38.5909 76.4307 39.4727 75.5132 40.3899L71.7729 44.1994H78.8654V47.2682H67.2563V47.2329ZM80.5238 47.2329L84.6875 40.919L80.5238 34.9578H83.9112L86.6283 38.8378L89.063 34.9578H92.521L88.3925 41.3422L92.5563 47.3034H89.0983L86.3813 43.4234L83.9465 47.3034H80.5591V47.2329H80.5238Z" fill="#460782"></path>
<defs>
<lineargradient id="paint0_linear" x1="53" y1="30.4773" x2="53" y2="102.974" gradientunits="userSpaceOnUse">
<stop stop-color="#3A056C"></stop>
<stop offset="1" stop-color="#4D078D"></stop>
</lineargradient>
</defs>
</svg></div>
</div>
<h1 class="allh1 product ethfli polygon">ETH 2x Flexible Leverage Index (Polygon)</h1>
</div>
<div class="current_change_cont">
<div class="btn_buysell mobile">
<a href="https://app.indexcoop.com/ethfli" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/ethfli" class="sell-button buttons w-button">Sell</a>
</div>
<div class="curr_change_cont etfli">
<div class="currentprice">
<div class="stat_title">CURRENT PRICE</div>
<p class="currentpricenow stat_value"></p>
</div>
<div class="change">
<div class="stat_title">CHANGE</div>
<p class="pricechange stat_value"></p>
</div>
</div>
<div class="btn_buysell">
<a href="https://app.indexcoop.com/ethflip" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/ethflip" class="sell-button buttons w-button">Sell</a>
</div>
</div>
<p class="allparagraph2 product ethfli polygon">The Polygon-native version of the <strong>Ethereum Flexible Leverage Index</strong> lets you leverage a collateralized debt position in a safe and efficient way, by abstracting its management into a simple index. It enables market participants to take on leverage while minimizing the transaction costs and risks associated with maintaining collateralized debt.<br></p>
</div>
</div>
<div class="stats-section wf-section">
<div class="maincontainer product ethfli w-container">
<div class="head_cont prod_stat">
<h2 class="allh2 product">Stats</h2>
</div>
<div class="w-layout-grid stat_grid">
<div class="stat_cont">
<div class="stat_title">Market Cap</div>
<p class="marketcap stat_value2"></p>
</div>
<div class="stat_cont">
<div class="stat_title">Volume</div>
<p class="volume stat_value2"></p>
</div>
<div class="stat_cont">
<div class="stat_title">Current Supply</div>
<p class="currentsupply stat_value2"></p>
</div>
<div class="stat_cont">
<div class="stat_title">Streaming Fee</div>
<div class="stat_value2">1.95%</div>
</div>
<div id="w-node-b28d43b1-40b7-54f7-b56d-19432dc78d7f-7dab511d" class="stat_cont">
<div class="stat_title">minting / Redeeming Fee</div>
<div class="stat_value2">0.1%</div>
</div>
</div>
</div>
</div>
<div class="underlying-tokens ethfli wf-section">
<div class="maincontainer product w-container">
<div class="head_cont prod_stat">
<h2 class="allh2 product">Underlying Tokens</h2>
</div>
</div>
<div class="w-container">
<div class="w-layout-grid allproductseth">
<div id="w-node-_1857bb2e-0ff3-2e2f-0a08-54eec5b000b5-7dab511d" class="token_cont">
<div class="token_icon_cont"><img src="images/amWETH_2x_logo.png" loading="lazy" width="64" alt="WETH token - wrapped ETH logo" class="token_icon"></div>
<div class="token_name">amWETH</div>
</div>
<div id="w-node-_35e0ce63-d26c-ffdf-cd8e-613216b966c2-7dab511d" class="token_cont">
<div class="token_icon_cont"><img src="images/usd-coin-usdc-logo-1.svg" loading="lazy" width="64" alt="USDC logo" class="token_icon"></div>
<div class="token_name">USDC</div>
</div>
<div id="w-node-ea686c67-1c6f-8494-730a-bf062dddf0d4-7dab511d" class="token_cont debt">
<div class="manage-text eth-polygon">Debt & Collateral is accessed via</div>
<div class="html-embed-22 aavelogo w-embed"><svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewbox="0 0 800 220">
<defs>
<style>.cls-1{fill:url(#linear-gradient);}.cls-2{fill:url(#linear-gradient-2);}.cls-3{fill:url(#linear-gradient-3);}.cls-4{fill:url(#linear-gradient-4);}</style>
<lineargradient id="linear-gradient" x1="402.38" y1="608.02" x2="416.27" y2="611.26" gradienttransform="matrix(55.73, 0, 0, -61.13, -22399.38, 37390.17)" gradientunits="userSpaceOnUse">
<stop offset="0" stop-color="#31bac6"></stop>
<stop offset="1" stop-color="#b6509e"></stop>
</lineargradient>
<lineargradient id="linear-gradient-2" x1="398.46" y1="607.05" x2="416.8" y2="610.33" gradienttransform="matrix(42.21, 0, 0, -60.24, -16781.26, 36852.38)" xlink:href="#linear-gradient">
<lineargradient id="linear-gradient-3" x1="403.19" y1="608.4" x2="417.06" y2="611.63" gradienttransform="matrix(55.78, 0, 0, -61.13, -22470.38, 37393.23)" xlink:href="#linear-gradient">
<lineargradient id="linear-gradient-4" x1="404.08" y1="609.27" x2="417.96" y2="612.51" gradienttransform="matrix(55.78, 0, 0, -61.13, -22536.12, 37390.77)" xlink:href="#linear-gradient">
</lineargradient></lineargradient></lineargradient></defs>
<title>MediaKit</title>
<g id="Group_4051" data-name="Group 4051">
<path id="Path_2431" data-name="Path 2431" class="cls-1" d="M490.08,203.2,415.34,21.93a15.83,15.83,0,0,1-.92-5.15,14.2,14.2,0,0,1,3.67-10.1A12.86,12.86,0,0,1,428,2.83a13.31,13.31,0,0,1,7.71,2.57,16.37,16.37,0,0,1,5.33,6.79l71.07,177.42L583.19,12.19a16.27,16.27,0,0,1,5.32-6.79,13.31,13.31,0,0,1,7.71-2.57,12.86,12.86,0,0,1,9.92,3.85,14.2,14.2,0,0,1,3.67,10.1,15.77,15.77,0,0,1-.92,5.14L534.15,203.2c-4.21,9.37-10.47,14-18.73,14h-6.61C500.55,217.16,494.3,212.57,490.08,203.2Z"></path>
<path id="Path_2432" data-name="Path 2432" class="cls-2" d="M641.58,211.65a13.31,13.31,0,0,1-3.86-9.74V18.25a14,14,0,0,1,3.86-9.91,12.74,12.74,0,0,1,9.73-4H772.7a12.07,12.07,0,0,1,9.18,3.85,12.37,12.37,0,0,1,3.86,9.19,11.7,11.7,0,0,1-3.86,9A12.93,12.93,0,0,1,772.7,30H665.27V96.87h96.59a12.08,12.08,0,0,1,9.18,3.86,12.6,12.6,0,0,1,3.86,9.18,11.7,11.7,0,0,1-3.86,9,12.84,12.84,0,0,1-9.18,3.67H665.27V189.8H772.7a12,12,0,0,1,9.18,3.86,12.33,12.33,0,0,1,3.86,9.18,11.7,11.7,0,0,1-3.86,9,12.93,12.93,0,0,1-9.18,3.67H651.31A12,12,0,0,1,641.58,211.65Z"></path>
<path id="Path_2433" data-name="Path 2433" class="cls-3" d="M432.23,198.06,357.5,16.78C353.29,7.42,347,2.83,338.77,2.83h-6.62c-8.27,0-14.51,4.59-18.73,14l-32.51,79h-24.6a13.49,13.49,0,0,0-13.41,13.41v.18a13.48,13.48,0,0,0,13.41,13.41h13.22l-31,75.3a15.81,15.81,0,0,0-.92,5.14,14.19,14.19,0,0,0,3.67,10.1,12.87,12.87,0,0,0,9.92,3.86,13.45,13.45,0,0,0,7.71-2.57,16.46,16.46,0,0,0,5.33-6.8l34.15-85h23.49a13.49,13.49,0,0,0,13.41-13.41V109a13.48,13.48,0,0,0-13.41-13.41H309.18l26.27-65.2,71.07,177.42a16.27,16.27,0,0,0,5.32,6.79,13.31,13.31,0,0,0,7.72,2.57,12.86,12.86,0,0,0,9.91-3.85,14.21,14.21,0,0,0,3.67-10.11A12,12,0,0,0,432.23,198.06Z"></path>
<path id="Path_2434" data-name="Path 2434" class="cls-4" d="M208.93,198.06,134.2,16.78C130,7.42,123.72,2.83,115.45,2.83h-6.61c-8.26,0-14.5,4.59-18.73,14l-32.5,79H33a13.5,13.5,0,0,0-13.41,13.41v.18A13.5,13.5,0,0,0,33,122.76H46.22l-31,75.3a15.81,15.81,0,0,0-.92,5.14,14.17,14.17,0,0,0,3.67,10.1,12.87,12.87,0,0,0,9.92,3.86,13.45,13.45,0,0,0,7.71-2.57,16.46,16.46,0,0,0,5.33-6.8l34.15-85H98.74a13.49,13.49,0,0,0,13.41-13.41V109A13.48,13.48,0,0,0,98.74,95.59H86.07l26.08-65.21,71.07,177.41a16.3,16.3,0,0,0,5.33,6.8,13.45,13.45,0,0,0,7.71,2.57,12.91,12.91,0,0,0,9.92-3.86,14.2,14.2,0,0,0,3.67-10.1A12.21,12.21,0,0,0,208.93,198.06Z"></path>
</g>
</svg></div>
</div>
</div>
</div>
</div>
<div class="about-section wf-section">
<div class="maincontainer product w-container">
<div class="head_cont prod_stat">
<h2 class="allh2 product">About</h2>
</div>
<div class="accordion_maincontainer trigger">
<div data-w-id="f59130df-34f0-f9fc-b59b-edadf3510527" class="accordion_container ethfli">
<div data-w-id="2ea5f7f9-a09c-2442-73bc-1a203a16ebc7" class="accordion_trigger">
<div class="accordion_title">
<h3 class="accordion_header">Objective</h3>
<div class="accordion_chevron">
<div class="chevron w-embed"><svg viewbox="0 0 37 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.00909 0.999859L18.3066 17.9704L35.6042 0.99986" stroke="#433BCE" stroke-width="2"></path>
</svg></div>
</div>
</div>
<div style="display:block" class="accordion_content">
<p class="allparagraph2">The Ethereum Flexible Leverage Index (ETH2X-FLI-P) makes leverage effortless. The end user does not have to worry about:<br></p>
<div class="w-layout-grid prodcont_grid4">
<div id="w-node-b06d51b1-c69a-ab7e-9112-665615f824e6-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Monitoring their leveraged loan 24/7, having to always be ready to act.</div>
<div id="w-node-_889d2b5c-93e3-9321-ecb4-43e57d43dd8b-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">High fees, transactions not being included fast enough or the relative UIs being unresponsive during times of high volatility.</div>
<div id="w-node-ec4bb6f5-41f0-0396-9cac-202a80f34916-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Users don't have to manage their liquidation ratio since this is automatically managed by FLI, which drastically reduces liquidations, even during black swan events.</div>
</div>
<p class="allparagraph2">ETH2X-FLI-P has several key advantages over Legacy Leveraged Tokens:<br></p>
<div class="w-layout-grid prodcont_grid4">
<div id="w-node-_3e1838a8-99cf-a48d-74d7-e641115d5fd3-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Zero slippage via composable entry and exit.</div>
<div id="w-node-_3e1838a8-99cf-a48d-74d7-e641115d5fd7-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Unique Index algorithm reduces rebalancing needs by an order of magnitude.</div>
<div id="w-node-_3e1838a8-99cf-a48d-74d7-e641115d5fdb-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Emergency deleveraging possible during Black Swan events for additional fund safety.</div>
</div>
</div>
</div>
</div>
</div>
<div class="accordion_maincontainer trigger">
<div data-w-id="871584a7-1b1e-ef73-4438-a66fbd985492" style="display:block" class="accordion_container">
<div class="accordion_trigger">
<div class="accordion_title">
<h3 class="accordion_header">Initial Parameters</h3>
<div style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0)" class="accordion_chevron">
<div class="chevron w-embed"><svg viewbox="0 0 37 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.00909 0.999859L18.3066 17.9704L35.6042 0.99986" stroke="#433BCE" stroke-width="2"></path>
</svg></div>
</div>
</div>
<div style="height:0px;opacity:0;display:none" class="accordion_content">
<div class="w-layout-grid prodcont_grid6">
<div id="w-node-_4477281b-237f-ce9e-f5b5-d04162627d83-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Underlying Asset: ETH</div>
<div id="w-node-c9afce6f-0ae7-fa94-25fa-c88ca57e71fd-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Borrow Asset: USDC</div>
<div id="w-node-_24b5b6bb-fa96-4ef3-dad2-7f10a8e87f63-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Target Leverage Ratio: 2</div>
<div id="w-node-_13bcbf6b-da2d-7433-7a20-91ea5f258cc5-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">DeFi Lending Protocol: Aave Polygon</div>
<div id="w-node-_1e78a3af-3145-101a-f9b2-4ff2f05c0fda-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Maximum Leverage Ratio: 2.3</div>
<div id="w-node-_759aa321-65ee-fc9f-7c53-92526b4e1d53-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Minimum Leverage Ratio: 1.7</div>
<div class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Rebalance Interval: 4 hours</div>
<div class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Recentering Speed: 2.5%</div>
</div>
</div>
</div>
</div>
</div>
<div class="accordion_maincontainer trigger bottom">
<div data-w-id="6c28d703-fc3a-d5e2-3683-f17d7b340329" style="display:block" class="accordion_container">
<div data-w-id="12e3fc56-d060-89a3-fbb1-f2045bc2c100" class="accordion_trigger">
<div class="accordion_title">
<h3 class="accordion_header">Definitions</h3>
<div style="-webkit-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-moz-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);-ms-transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0);transform:translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0deg) skew(0, 0)" class="accordion_chevron">
<div class="chevron w-embed"><svg viewbox="0 0 37 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1.00909 0.999859L18.3066 17.9704L35.6042 0.99986" stroke="#433BCE" stroke-width="2"></path>
</svg></div>
</div>
</div>
<div style="height:0px;opacity:0;display:none" class="accordion_content">
<div class="w-layout-grid prodcont_grid6">
<div id="w-node-ca4c1e6e-60aa-c003-1e19-af275f7ec782-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Borrow Rate — the cost to borrow the asset at the DeFi Lending Protocol over the most recent epoch.</div>
<div id="w-node-_2913ea24-4c00-bccd-8529-cd66d5011bf1-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Epoch Length — the time between rebalances.</div>
<div id="w-node-ed244db4-c1d7-8328-126f-e553b1f4e02c-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Target Leverage Ratio (TLR) — the long term target for the value of the assets held by the index divided by the value of the debt held by the index.</div>
<div id="w-node-_08046e75-ecb7-593b-3f7d-3e4afd35a968-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Current Leverage Ratio (CLR) — the value of the asset currently held by the index divided by the current value of the debt held by the index.</div>
<div id="w-node-_9e14323b-a43c-57a4-91ab-bd17d2e1822a-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Maximum Leverage Ratio (MAXLR) — the highest leverage ratio the index will ever have after a rebalance.</div>
<div id="w-node-_46873c8b-ad90-1a7a-769c-958905bcf5aa-7dab511d" class="grid_icon">
<div class="check_icon w-embed"><svg width="100%" height="100%" viewbox="0 0 38 38" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="19" cy="19" r="18" stroke="#09AA74" stroke-width="2"></circle>
<path d="M11 19.25L16.5 24.75L28 13.5" stroke="#09AA74" stroke-width="2"></path>
</svg></div>
</div>
<div class="allparagraph2">Re-centering Speed (RS) — the rate at which the Current Leverage Ratio is adjusted each period to return to the Target Leverage Ratio, when the index is not being adjusted back to the Maximum Leverage Ratio or the Minimum Leverage Ratio.</div>
</div>
<div class="acc_subhead">
<h4 class="acc_subheadtitle">Index Price:</h4>
</div>
<div class="bg-grey lightdark">
<div class="allparagraph2 quote ethfli">FLIt = FLIt-1 * (1 + ((Pricet/Pricet-1–1) * CLRt-1 — (BorrowRatet * (CLRt-1 -1)/CLRt-1)))</div>
</div>
<div class="acc_subhead">
<h3 class="acc_subheadtitle">Calculation of the new Current Lever Ratio for the period:</h3>
</div>
<div class="bg-grey lightdark">
<div class="allparagraph2 quote ethfli">FLIt = FLIt-1 * (1 + ((Pricet/Pricet-1–1) * CLRt-1 — (BorrowRatet * (CLRt-1 -1)/CLRt-1)))</div>
</div>
</div>
</div>
</div>
</div>
<div class="longline"></div>
<div class="btn_buysell">
<a href="https://app.indexcoop.com/ethflip" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/ethflip" class="sell-button buttons w-button">Sell</a>
</div>
<div class="btn_buysell mobile">
<a href="https://app.indexcoop.com/ethfli" class="buy-button buttons w-button">Buy</a>
<a href="https://app.indexcoop.com/ethfli" class="sell-button buttons w-button">Sell</a>
</div>
</div>
</div>
<div class="sign-up-for-newsletter wf-section">
<div class="maincontainer w-container">
<div class="form-block w-form">
<form id="email-form" name="email-form" data-name="Email Form" method="post" class="form">
<div class="form_title">Sign up for our newsletter</div>
<div class="field_cont"><input type="email" class="form_field email_footer w-input" maxlength="256" name="email" data-name="email" placeholder="email" id="email-4" required=""><input type="submit" value="Subscribe" data-wait="Please wait..." class="submit-button email_footer w-button"></div>
<div class="w-embed">
<!-- List token -->
<!-- Get the token at: https://app.getresponse.com/campaign_list.html -->
<input type="hidden" name="campaign_token" value="rW7OY">
<!-- Add subscriber to the follow-up sequence with a specified day (optional) -->
<input type="hidden" name="start_day" value="0">
<!-- Thank you page (optional) -->
<input type="hidden" name="thankyou_url" value="https://www.indexcoop.com/thank-you">
</div>
</form>
<div class="w-form-done">
<div>Thank you! Your submission has been received!</div>
</div>
<div class="error-message w-form-fail">
<div class="error-text">Oops! Something went wrong while submitting the form.</div>
</div>
</div>
</div>
</div>
<div id="Footer" class="footer wf-section">
<div class="maincontainer w-container">
<div class="div-block-15">
<div class="footerlinkscontainer">
<div class="productsfooter">
<div class="footlinktitle">Products</div>
<a href="defi-pulse-index-dpi.html" class="footitem footlink _1st">DeFi Pulse Index</a>
<a href="metaverse-index-mvi.html" class="footitem footlink">Metaverse Index</a>
<a href="data-economy-index.html" class="footitem footlink">DATA Index</a>
<a href="bankless-bed-index.html" class="footitem footlink">BED Index</a>
<a href="bankless-defi-innovation-index-gmi.html" class="footitem footlink">DeFi Innovation Index</a>
<a href="ethereum-flexible-leverage-index-eth2xfli.html" class="footitem footlink">ETH2x-FLI</a>
<a href="polygon-eth2xfli.html" aria-current="page" class="footitem footlink w--current">ETH2x-FLI Polygon</a>
<a href="polygon-inverse-iethfli.html" class="footitem footlink">iETH-FLI Polygon</a>
<a href="bitcoin-flexible-leverage-index-btc2xfli.html" class="footitem footlink">BTC2x-FLI</a>
<a href="polygon-flexible-leverage-index-matic2xfli.html" class="footitem footlink">MATIC2x-FLI Polygon</a>
<a href="polygon-inverse-imaticfli.html" class="footitem footlink">iMATIC-FLI Polygon</a>
</div>
<div class="resourcesfooter">
<div class="footlinktitle">Resources</div>
<a href="methodologist.html" class="footitem footlink _1st">For methodologists</a>
<a href="institution.html" class="footitem footlink">For institutions</a>
<a href="contributor.html" class="footitem footlink">For contributors</a>
<a rel="nofollow noopener" href="https://docs.indexcoop.com/" target="_blank" class="footitem footlink">Docs & Guides</a>