-
Notifications
You must be signed in to change notification settings - Fork 0
/
blockpmn.html
1457 lines (1260 loc) · 72 KB
/
blockpmn.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W3TJ27QQ4T"></script>
<script src="/products/ecommerce.js"></script>
<script>
// [start] GA Tag
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-W3TJ27QQ4T');
// [end] GA Tag
function getURLParam(param) {
return new URL(window.location.href).searchParams.get(param);
}
if (getURLParam('dev') === null) {
ECommerce.clickEvent();
}
</script>
<title>BlockPMN — Examples of BPMN models for Blockchain & Crypto</title>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "SoftwareApplication",
"name": "BlockPMN",
"operatingSystem": "Any",
"applicationCategory": "BusinessApplication",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5.0",
"ratingCount": "1"
},
"offers": {
"@type": "Offer",
"price": "0.00",
"priceCurrency": "USD"
}
}
</script>
<meta name="title" content="BlockPMN — Examples of BPMN models for Blockchain & Crypto">
<meta name="description" content="Free BPMN business process examples of crypto saving, staking, DeFi, and investing activities. Examples of smart contracts to handle blockchain BPMN modeling.">
<meta property="og:type" content="website">
<meta property="og:title" content="BlockPMN — Examples of BPMN models for Blockchain & Crypto">
<meta property="og:description" content="Free BPMN business process examples of crypto saving, staking, DeFi, and investing activities. Examples of smart contracts to handle blockchain BPMN modeling.">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="BlockPMN — Examples of BPMN models for Blockchain & Crypto">
<meta property="twitter:description" content="Free BPMN business process examples of crypto saving, staking, DeFi, and investing activities. Examples of smart contracts to handle blockchain BPMN modeling.">
<meta name="keywords" content="bpmn business process examples, examples of bpmn models, examples of smart contracts, free bpmn modeling, bpmn models, blockchain bpmn">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Kanit" rel="stylesheet" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="icon" type="image/png" href="/images/blockpmn/icon.png" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8990058470889069" crossorigin="anonymous"></script>
<!-- Styles -->
<style>
body {
font-family: 'Kanit', sans-serif;
background: rgb(254, 69, 108);
background: radial-gradient(circle, rgba(254, 69, 108, 0.25) 0%, rgba(133, 92, 246, 0.25) 100%);
}
.banner-img {
width: 640px;
}
.logo-img {
width: 360px;
}
.btn {
background-color: #ffb666;
border-color: #ffb666;
font-weight: bold;
}
.rnd-item {
border-radius: 1rem;
}
.img-thumbnail {
padding: 0.75rem;
}
#footer {
background-color: transparent;
}
h1,
h2 {
font-weight: bold;
}
.nav-link-verylow {
display: block;
padding: 0.5rem 1rem;
color: #4f7814;
text-decoration: none!important;
background-color: transparent;
}
.nav-link-low {
display: block;
padding: 0.5rem 1rem;
color: #6e7814;
text-decoration: none!important;
background-color: transparent;
}
.nav-link-medium {
display: block;
padding: 0.5rem 1rem;
color: #785f14;
text-decoration: none!important;
background-color: transparent;
}
.nav-link-high {
display: block;
padding: 0.5rem 1rem;
color: #784614;
text-decoration: none!important;
background-color: transparent;
}
.nav-link-veryhigh {
display: block;
padding: 0.5rem 1rem;
color: #781914;
text-decoration: none!important;
background-color: transparent;
}
.nav-link-verylow.active {
color: #000000;
background-color: #b3dc78;
border-radius: 1rem;
}
.nav-link-low.active {
color: #000000;
background-color: #d2dc78;
border-radius: 1rem;
}
.nav-link-medium.active {
color: #000000;
background-color: #dcc378;
border-radius: 1rem;
}
.nav-link-high.active {
color: #000000;
background-color: #dcaa78;
border-radius: 1rem;
}
.nav-link-veryhigh.active {
color: #000000;
background-color: #dc7d78;
border-radius: 1rem;
}
.pie-img {
width: 240px;
}
</style>
</head>
<body id="app">
<nav class="navbar sticky-top navbar-expand-lg navbar-light" style="background-color: #ead4f2;">
<a class="navbar-brand" href="javascript:void(0);"><b>BlockPMN</b></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<div class="ml-2 mr-2" id="google_translate_element"></div>
</li>
<li class="nav-item">
<a class="nav-link" href="#app">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#technology">Technology</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#flexible">Process Models</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#earn">Options</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#calculate">Portfolio</a>
</li>
</ul>
</div>
</nav>
<div class="text-center ml-4 mr-4 mt-4 mb-4">
<div class="mt-4 mb-4">
<img src="/images/blockpmn/logo.png" class="img-fluid logo-img" alt="logo.png">
</div>
<h1>Examples of BPMN models for Blockchain & Crypto</h1>
<h2>Free BPMN business process examples of crypto saving, staking, DeFi, and investing activities. Examples of smart contracts to handle blockchain BPMN modeling.</h2>
<p class="container mt-4 mb-4">If you are holding some coins in your cryptocurrency wallet, you may find this resource extremely useful. It suggests five modern ways to increase your crypto savings literally while you are asleep. This resource itself does not offer any financial
products. It only shows how you can invest your funds and earn interest in crypto. This resource proposes business models prepared using Business Process and Notation (BPMN) diagrams by professional business analysts. During the financial
crisis caused by the failure of fiat money, crypto could become a safe harbor for people and businesses.<br><span style="color: #dc3545; font-weight: bold;">This is not financial advice! Always remember about risks!</span></p>
<div class="mt-4 mb-4">
<a href="#technology" class="btn btn-lg rnd-item" role="button">TECHNOLOGY</a>
</div>
<div class="mt-4 mb-4">
<img src="/images/blockpmn/top.png" class="img-fluid banner-img" alt="top.png">
</div>
<span id="technology"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>OUR TECHNOLOGY</h2>
<h3>BPMN modeling for Blockchain and Crypto</h3>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#tech-1">DApp</a>
</li>
<li class="nav-item">
<span class="nav-link">|</span>
</li>
<li class="nav-item">
<a class="nav-link" href="#tech-2">Method</a>
</li>
</ul>
</div>
<p class="container mt-4 mb-4">Today blockchain technologies are used not only as ledgers of financial transactions, but also as general-purpose distributed databases that provide high-level security, integrity, and availability. Thus, organizations may benefit from using blockchain
platforms and knowledge-sharing protocols built on top of them. Therefore, we consider a decentralized blockchain-based business process model repository using <a href="https://goerli.etherscan.io/address/0x2ac07fe7007e8f9a8aca375d7227ff526d782fba#code"
target="_blank">smart contract</a> and decentralized application technologies. This resource proposes a decentralized repository of crypto-based BPMN business process models. It provides a secure and stable environment for keeping and accessing
business process model collections.</p>
<div class="container mt-4 mb-4">
<span id="tech-1"></span>
<br>
<br>
<br>
<h4>Decentralized Application (DApp)</h4>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#tech-2">Next</a>
</li>
</ul>
<div class="card rnd-item">
<div class="card-body">
<img src="/images/blockpmn/tech-1.PNG" class="img-fluid banner-img" alt="tech-1.png">
</div>
</div>
<span id="tech-2"></span>
<br>
<br>
<br>
<h4>Computational Method</h4>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#tech-1">Previous</a>
</li>
</ul>
<div class="card rnd-item">
<div class="card-body">
<img src="/images/blockpmn/tech-2.PNG" class="img-fluid banner-img" alt="tech-2.png">
</div>
</div>
</div>
<div class="mt-4 mb-4">
<a href="#flexible" class="btn btn-lg rnd-item mb-1" role="button">PROCESS MODELS</a>
</div>
<span id="flexible"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>FLEXIBLE DEPOSITS</h2>
<h3>Good flexibility but a lower interest rate</h3>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#locked">Next</a>
</li>
</ul>
</div>
<div class="container mt-4 mb-4">
<div class="row mb-4">
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #64ac78;">
<div class="card-body">
<span style="font-size: 20px;">Yield — <span id="yield-0">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #dc6478;">
<div class="card-body">
<span style="font-size: 20px;">Risk — <span id="risk-0">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item" style="color: #fff; background-color: #b496f6;">
<div class="card-body">
<span style="font-size: 20px;">Flexibility — <span id="flexibility-0">0</span>%</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="card rnd-item mb-2 bg-dark">
<div class="card-body">
<ul class="list-group list-group-flush">
<li class="list-group-item bg-dark" style="color: #fff;">Deposit your funds</li>
<li class="list-group-item bg-dark" style="color: #fff;">Earn interest</li>
<li class="list-group-item bg-dark" style="color: #fff;">Redeem your funds at any time</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="card rnd-item">
<div class="card-body">
<div id="flexible-canvas"></div>
<div class="table-responsive">
<table class="table" style="margin-bottom: 0rem!important;">
<thead>
<tr>
<th scope="col">Complexity</th>
<th scope="col">Conformity</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<small>Cyclomatic: <span id="flexible-complexity-CC">0</span>%</small><br>
<small>Network: <span id="flexible-complexity-CNC">0</span>%</small><br>
<small>Flow: <span id="flexible-complexity-CFC">0</span>%</small>
</td>
<td>
<small>Syntactic: <span id="flexible-conformity-syntactic">0</span>%</small><br>
<small>Semantic: <span id="flexible-conformity-semantic">0</span>%</small>
</td>
</tr>
</tbody>
</table>
</div>
<small>On-chain analysis <a href="https://goerli.etherscan.io/address/0x2ac07fe7007e8f9a8aca375d7227ff526d782fba#code" target="_blank">results</a></small>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4 mb-4">
<a href="#earn" class="btn btn-lg rnd-item" role="button">SEE OPTIONS</a>
</div>
<span id="locked"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>LOCKED DEPOSITS</h2>
<h3>Less flexibility but a higher interest rate</h3>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#flexible">Previous</a>
</li>
<li class="nav-item">
<span class="nav-link">|</span>
</li>
<li class="nav-item">
<a class="nav-link" href="#staking">Next</a>
</li>
</ul>
</div>
<div class="container mt-4 mb-4">
<div class="row mb-4">
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #64ac78;">
<div class="card-body">
<span style="font-size: 20px;">Yield — <span id="yield-1">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #dc6478;">
<div class="card-body">
<span style="font-size: 20px;">Risk — <span id="risk-1">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item" style="color: #fff; background-color: #b496f6;">
<div class="card-body">
<span style="font-size: 20px;">Flexibility — <span id="flexibility-1">0</span>%</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="card rnd-item mb-2 bg-dark">
<div class="card-body">
<ul class="list-group list-group-flush">
<li class="list-group-item bg-dark" style="color: #fff;">Set a predetermined duration for your deposit</li>
<li class="list-group-item bg-dark" style="color: #fff;">Deposit your funds</li>
<li class="list-group-item bg-dark" style="color: #fff;">Earn interest</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="card rnd-item">
<div class="card-body">
<div id="locked-canvas"></div>
<div class="table-responsive">
<table class="table" style="margin-bottom: 0rem!important;">
<thead>
<tr>
<th scope="col">Complexity</th>
<th scope="col">Conformity</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<small>Cyclomatic: <span id="locked-complexity-CC">0</span>%</small><br>
<small>Network: <span id="locked-complexity-CNC">0</span>%</small><br>
<small>Flow: <span id="locked-complexity-CFC">0</span>%</small>
</td>
<td>
<small>Syntactic: <span id="locked-conformity-syntactic">0</span>%</small><br>
<small>Semantic: <span id="locked-conformity-semantic">0</span>%</small>
</td>
</tr>
</tbody>
</table>
</div>
<small>On-chain analysis <a href="https://goerli.etherscan.io/address/0x2ac07fe7007e8f9a8aca375d7227ff526d782fba#code" target="_blank">results</a></small>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4 mb-4">
<a href="#earn" class="btn btn-lg rnd-item" role="button">SEE OPTIONS</a>
</div>
<span id="staking"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>LOCKED STAKING</h2>
<h3>You are holding Proof-of-Stake (PoS) coins</h3>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#locked">Previous</a>
</li>
<li class="nav-item">
<span class="nav-link">|</span>
</li>
<li class="nav-item">
<a class="nav-link" href="#liquidity">Next</a>
</li>
</ul>
</div>
<div class="container mt-4 mb-4">
<div class="row mb-4">
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #64ac78;">
<div class="card-body">
<span style="font-size: 20px;">Yield — <span id="yield-2">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #dc6478;">
<div class="card-body">
<span style="font-size: 20px;">Risk — <span id="risk-2">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item" style="color: #fff; background-color: #b496f6;">
<div class="card-body">
<span style="font-size: 20px;">Flexibility — <span id="flexibility-2">0</span>%</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="card rnd-item mb-2 bg-dark">
<div class="card-body">
<ul class="list-group list-group-flush">
<li class="list-group-item bg-dark" style="color: #fff;">Set a locking period for your coins</li>
<li class="list-group-item bg-dark" style="color: #fff;">Commit your PoS coins to be locked</li>
<li class="list-group-item bg-dark" style="color: #fff;">Earn rewards</li>
<li class="list-group-item bg-dark" style="color: #fff;">Redeem your funds at any time if flexible lock allowed</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="card rnd-item">
<div class="card-body">
<div id="staking-canvas"></div>
<div class="table-responsive">
<table class="table" style="margin-bottom: 0rem!important;">
<thead>
<tr>
<th scope="col">Complexity</th>
<th scope="col">Conformity</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<small>Cyclomatic: <span id="staking-complexity-CC">0</span>%</small><br>
<small>Network: <span id="staking-complexity-CNC">0</span>%</small><br>
<small>Flow: <span id="staking-complexity-CFC">0</span>%</small>
</td>
<td>
<small>Syntactic: <span id="staking-conformity-syntactic">0</span>%</small><br>
<small>Semantic: <span id="staking-conformity-semantic">0</span>%</small>
</td>
</tr>
</tbody>
</table>
</div>
<small>On-chain analysis <a href="https://goerli.etherscan.io/address/0x2ac07fe7007e8f9a8aca375d7227ff526d782fba#code" target="_blank">results</a></small>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4 mb-4">
<a href="#earn" class="btn btn-lg rnd-item" role="button">SEE OPTIONS</a>
</div>
<span id="liquidity"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>LIQUIDITY POOLS</h2>
<h3>Decentralized finance (DeFi) investment</h3>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#staking">Previous</a>
</li>
<li class="nav-item">
<span class="nav-link">|</span>
</li>
<li class="nav-item">
<a class="nav-link" href="#dual">Next</a>
</li>
</ul>
</div>
<div class="container mt-4 mb-4">
<div class="row mb-4">
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #64ac78;">
<div class="card-body">
<span style="font-size: 20px;">Yield — <span id="yield-3">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #dc6478;">
<div class="card-body">
<span style="font-size: 20px;">Risk — <span id="risk-3">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item" style="color: #fff; background-color: #b496f6;">
<div class="card-body">
<span style="font-size: 20px;">Flexibility — <span id="flexibility-3">0</span>%</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="card rnd-item mb-2 bg-dark">
<div class="card-body">
<ul class="list-group list-group-flush">
<li class="list-group-item bg-dark" style="color: #fff;">Add supported coins to a liquidity pool</li>
<li class="list-group-item bg-dark" style="color: #fff;">Receive liquidity provider tokens (LPTs)</li>
<li class="list-group-item bg-dark" style="color: #fff;">Deposit LPTs to a staking pool</li>
<li class="list-group-item bg-dark" style="color: #fff;">Receive tokens as a reward</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="card rnd-item">
<div class="card-body">
<div id="liquidity-canvas"></div>
<div class="table-responsive">
<table class="table" style="margin-bottom: 0rem!important;">
<thead>
<tr>
<th scope="col">Complexity</th>
<th scope="col">Conformity</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<small>Cyclomatic: <span id="liquidity-complexity-CC">0</span>%</small><br>
<small>Network: <span id="liquidity-complexity-CNC">0</span>%</small><br>
<small>Flow: <span id="liquidity-complexity-CFC">0</span>%</small>
</td>
<td>
<small>Syntactic: <span id="liquidity-conformity-syntactic">0</span>%</small><br>
<small>Semantic: <span id="liquidity-conformity-semantic">0</span>%</small>
</td>
</tr>
</tbody>
</table>
</div>
<small>On-chain analysis <a href="https://goerli.etherscan.io/address/0x2ac07fe7007e8f9a8aca375d7227ff526d782fba#code" target="_blank">results</a></small>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4 mb-4">
<a href="#earn" class="btn btn-lg rnd-item" role="button">SEE OPTIONS</a>
</div>
<span id="dual"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>DUAL INVESTMENT</h2>
<h3>Optimize yield while minimizing risk</h3>
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link" href="#liquidity">Previous</a>
</li>
</ul>
</div>
<div class="container mt-4 mb-4">
<div class="row mb-4">
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #64ac78;">
<div class="card-body">
<span style="font-size: 20px;">Yield — <span id="yield-4">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item mb-2" style="color: #fff; background-color: #dc6478;">
<div class="card-body">
<span style="font-size: 20px;">Risk — <span id="risk-4">0</span>%</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card rnd-item" style="color: #fff; background-color: #b496f6;">
<div class="card-body">
<span style="font-size: 20px;">Flexibility — <span id="flexibility-4">0</span>%</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="card rnd-item mb-2 bg-dark">
<div class="card-body">
<ul class="list-group list-group-flush">
<li class="list-group-item bg-dark" style="color: #fff;">Deposit your holdings</li>
<li class="list-group-item bg-dark" style="color: #fff;">Lock in a yield</li>
<li class="list-group-item bg-dark" style="color: #fff;">Earn a return based on two assets</li>
<li class="list-group-item bg-dark" style="color: #fff;">Earn more if the value of holdings increases</li>
</ul>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="card rnd-item">
<div class="card-body">
<div id="dual-canvas"></div>
<div class="table-responsive">
<table class="table" style="margin-bottom: 0rem!important;">
<thead>
<tr>
<th scope="col">Complexity</th>
<th scope="col">Conformity</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<small>Cyclomatic: <span id="dual-complexity-CC">0</span>%</small><br>
<small>Network: <span id="dual-complexity-CNC">0</span>%</small><br>
<small>Flow: <span id="dual-complexity-CFC">0</span>%</small>
</td>
<td>
<small>Syntactic: <span id="dual-conformity-syntactic">0</span>%</small><br>
<small>Semantic: <span id="dual-conformity-semantic">0</span>%</small>
</td>
</tr>
</tbody>
</table>
</div>
<small>On-chain analysis <a href="https://goerli.etherscan.io/address/0x2ac07fe7007e8f9a8aca375d7227ff526d782fba#code" target="_blank">results</a></small>
</div>
</div>
</div>
</div>
</div>
<div class="mt-4 mb-4">
<a href="#earn" class="btn btn-lg rnd-item" role="button">SEE OPTIONS</a>
</div>
<span id="earn"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>EARNING OPTIONS</h2>
<h3>Saving, Staking, DeFi, and Investment Platforms</h3>
</div>
<div class="mt-4 mb-4">
<div class="row">
<div class="col-sm-12">
<div class="row row-cols-1 row-cols-md-5" id="options"></div>
</div>
</div>
</div>
<p class="container mt-4 mb-4">We offer crypto income platforms via the blockchain protocol. Therefore, our resource is highly resistant to modification and fraud. It means nobody can hack this platform and promote scam schemes on our behalf. To be sure of our integrity, you
can see the source code of our <a href="https://goerli.etherscan.io/address/0xbaade0e64af2a7da7c9173b52bef6308f0ab5f7d#code" target="_blank">smart contract</a> and verify the <a href="https://goerli.etherscan.io/address/0xbaade0e64af2a7da7c9173b52bef6308f0ab5f7d"
target="_blank">transaction history</a>.</p>
<div class="mt-4 mb-4">
<a href="#calculate" class="btn btn-lg rnd-item" role="button">BUILD A PORTFOLIO</a>
</div>
<span id="calculate"></span>
<br>
<br>
<br>
<div class="mt-4 mb-4">
<h2>INVESTMENT PORTFOLIO</h2>
<h3>Depends on the acceptable Risk Level</h3>
</div>
<div class="container mt-4 mb-4">
<div class="row">
<div class="col-sm-12">
<div class="row">
<div class="col-3">
<div class="nav flex-column nav-pills" id="v-pills-tab" role="tablist" aria-orientation="vertical">
<a class="nav-link-verylow active" id="v-pills-verylow-tab" data-toggle="pill" href="#v-pills-verylow" role="tab" aria-controls="v-pills-home" aria-selected="true">Very Low</a>
<a class="nav-link-low" id="v-pills-low-tab" data-toggle="pill" href="#v-pills-low" role="tab" aria-controls="v-pills-profile" aria-selected="false">Low</a>
<a class="nav-link-medium" id="v-pills-medium-tab" data-toggle="pill" href="#v-pills-medium" role="tab" aria-controls="v-pills-messages" aria-selected="false">Medium</a>
<a class="nav-link-high" id="v-pills-high-tab" data-toggle="pill" href="#v-pills-high" role="tab" aria-controls="v-pills-settings" aria-selected="false">High</a>
<a class="nav-link-veryhigh" id="v-pills-veryhigh-tab" data-toggle="pill" href="#v-pills-veryhigh" role="tab" aria-controls="v-pills-settings" aria-selected="false">Very High</a>
</div>
</div>
<div class="col-9">
<div class="tab-content" id="v-pills-tabContent">
<div class="tab-pane fade show active" id="v-pills-verylow" role="tabpanel" aria-labelledby="v-pills-verylow-tab">
<div class="card rnd-item">
<div class="card-body">
<div class="form-group row">
<label for="funds-verylow" class="col-sm-4 col-form-label">I want to invest, Coins</label>
<div class="col-sm-8">
<input type="number" min="0" step="0.01" class="form-control rnd-item" id="funds-verylow" value="0">
</div>
</div>
<img src="/images/blockpmn/verylow.png" class="img-fluid pie-img mt-2 mb-2" alt="verylow.png">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">Flexible savings</th>
<th scope="col">Locked savings</th>
<th scope="col">Locked staking</th>
<th scope="col">Liquidity pools</th>
<th scope="col">Dual investment</th>
</tr>
</thead>
<tbody>
<tr>
<td><span id="flexible-verylow">0</span></td>
<td><span id="locked-verylow">0</span></td>
<td><span id="staking-verylow">0</span></td>
<td><span id="liquidity-verylow">0</span></td>
<td><span id="dual-verylow">0</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="v-pills-low" role="tabpanel" aria-labelledby="v-pills-low-tab">
<div class="card rnd-item">
<div class="card-body">
<div class="form-group row">
<label for="funds-low" class="col-sm-4 col-form-label">I want to invest, Coins</label>
<div class="col-sm-8">
<input type="number" min="0" step="0.01" class="form-control rnd-item" id="funds-low" value="0">
</div>
</div>
<img src="/images/blockpmn/low.png" class="img-fluid pie-img mt-2 mb-2" alt="low.png">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">Flexible savings</th>
<th scope="col">Locked savings</th>
<th scope="col">Locked staking</th>
<th scope="col">Liquidity pools</th>
<th scope="col">Dual investment</th>
</tr>
</thead>
<tbody>
<tr>
<td><span id="flexible-low">0</span></td>
<td><span id="locked-low">0</span></td>
<td><span id="staking-low">0</span></td>
<td><span id="liquidity-low">0</span></td>
<td><span id="dual-low">0</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="v-pills-medium" role="tabpanel" aria-labelledby="v-pills-medium-tab">
<div class="card rnd-item">
<div class="card-body">
<div class="form-group row">
<label for="funds-medium" class="col-sm-4 col-form-label">I want to invest, Coins</label>
<div class="col-sm-8">
<input type="number" min="0" step="0.01" class="form-control rnd-item" id="funds-medium" value="0">
</div>
</div>
<img src="/images/blockpmn/medium.png" class="img-fluid pie-img mt-2 mb-2" alt="medium.png">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">Flexible savings</th>
<th scope="col">Locked savings</th>
<th scope="col">Locked staking</th>
<th scope="col">Liquidity pools</th>
<th scope="col">Dual investment</th>
</tr>
</thead>
<tbody>
<tr>
<td><span id="flexible-medium">0</span></td>
<td><span id="locked-medium">0</span></td>
<td><span id="staking-medium">0</span></td>
<td><span id="liquidity-medium">0</span></td>
<td><span id="dual-medium">0</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="v-pills-high" role="tabpanel" aria-labelledby="v-pills-high-tab">
<div class="card rnd-item">
<div class="card-body">
<div class="form-group row">
<label for="funds-high" class="col-sm-4 col-form-label">I want to invest, Coins</label>
<div class="col-sm-8">
<input type="number" min="0" step="0.01" class="form-control rnd-item" id="funds-high" value="0">
</div>
</div>
<img src="/images/blockpmn/high.png" class="img-fluid pie-img mt-2 mb-2" alt="high.png">
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col">Flexible savings</th>
<th scope="col">Locked savings</th>
<th scope="col">Locked staking</th>
<th scope="col">Liquidity pools</th>
<th scope="col">Dual investment</th>
</tr>
</thead>
<tbody>
<tr>
<td><span id="flexible-high">0</span></td>
<td><span id="locked-high">0</span></td>
<td><span id="staking-high">0</span></td>
<td><span id="liquidity-high">0</span></td>
<td><span id="dual-high">0</span></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="v-pills-veryhigh" role="tabpanel" aria-labelledby="v-pills-veryhigh-tab">
<div class="card rnd-item">
<div class="card-body">
<div class="form-group row">
<label for="funds-veryhigh" class="col-sm-4 col-form-label">I want to invest, Coins</label>
<div class="col-sm-8">
<input type="number" min="0" step="0.01" class="form-control rnd-item" id="funds-veryhigh" value="0">
</div>