-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReport.txt
1986 lines (1947 loc) · 91.2 KB
/
Report.txt
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
Compiling 43 files with Solc 0.8.22
Solc 0.8.22 finished in 6.40s
Compiler run successful with warnings:
Warning (3420): Source file does not specify required compiler version! Consider adding "pragma solidity ^0.8.22;"
--> test/fuzz/OpenInvariantsTest.t.sol
Analysing contracts...
Running tests...
Ran 7 tests for test/unit/DSCEngineTest.t.sol:DSCEngineTest
[PASS] testCanDepositCollateralAndGetAccountInfo() (gas: 143197)
[PASS] testGetTokenAmountFromUsd() (gas: 28460)
[PASS] testGetUsdInValue() (gas: 33927)
[PASS] testIfRevertsIfHealthFactorIsBroken() (gas: 183242)
[PASS] testRevertsIfCollateralZero() (gas: 43387)
[PASS] testRevertsIfTokenLengthDoesntMatchPriceFeeds() (gas: 184483)
[PASS] testRevertsWithUnapprovedCollateral() (gas: 1365976)
Suite result: ok. 7 passed; 0 failed; 0 skipped; finished in 10.18ms (11.25ms CPU time)
Ran 2 tests for test/fuzz/Invariants.t.sol:Invariants
[PASS] invariant_gettersShouldNotRevert() (runs: 128, calls: 16384, reverts: 0)
[PASS] invariant_protocolMustHaveMoreValueThanTotalSupply() (runs: 128, calls: 16384, reverts: 0)
Suite result: ok. 2 passed; 0 failed; 0 skipped; finished in 57.54s (94.43s CPU time)
Ran 2 test suites in 57.54s (57.55s CPU time): 9 tests passed, 0 failed, 0 skipped (9 total tests)
Wrote LCOV report.
Compiling 43 files with Solc 0.8.22
Solc 0.8.22 finished in 6.64s
Compiler run successful with warnings:
Warning (3420): Source file does not specify required compiler version! Consider adding "pragma solidity ^0.8.22;"
--> test/fuzz/OpenInvariantsTest.t.sol
Analysing contracts...
Running tests...
Ran 7 tests for test/unit/DSCEngineTest.t.sol:DSCEngineTest
[PASS] testCanDepositCollateralAndGetAccountInfo() (gas: 143197)
[PASS] testGetTokenAmountFromUsd() (gas: 28460)
[PASS] testGetUsdInValue() (gas: 33927)
[PASS] testIfRevertsIfHealthFactorIsBroken() (gas: 183242)
[PASS] testRevertsIfCollateralZero() (gas: 43387)
[PASS] testRevertsIfTokenLengthDoesntMatchPriceFeeds() (gas: 184483)
[PASS] testRevertsWithUnapprovedCollateral() (gas: 1365976)
Suite result: ok. 7 passed; 0 failed; 0 skipped; finished in 10.60ms (12.28ms CPU time)
Compiling 43 files with Solc 0.8.22
Solc 0.8.22 finished in 6.60s
Compiler run successful with warnings:
Warning (3420): Source file does not specify required compiler version! Consider adding "pragma solidity ^0.8.22;"
--> test/fuzz/OpenInvariantsTest.t.sol
Analysing contracts...
Running tests...
Ran 7 tests for test/unit/DSCEngineTest.t.sol:DSCEngineTest
[PASS] testCanDepositCollateralAndGetAccountInfo() (gas: 143197)
[PASS] testGetTokenAmountFromUsd() (gas: 28460)
[PASS] testGetUsdInValue() (gas: 33927)
[PASS] testIfRevertsIfHealthFactorIsBroken() (gas: 183242)
[PASS] testRevertsIfCollateralZero() (gas: 43387)
[PASS] testRevertsIfTokenLengthDoesntMatchPriceFeeds() (gas: 184483)
[PASS] testRevertsWithUnapprovedCollateral() (gas: 1365976)
Suite result: ok. 7 passed; 0 failed; 0 skipped; finished in 9.63ms (12.29ms CPU time)
Ran 2 tests for test/fuzz/Invariants.t.sol:Invariants
[PASS] invariant_gettersShouldNotRevert() (runs: 128, calls: 16384, reverts: 0)
[PASS] invariant_protocolMustHaveMoreValueThanTotalSupply() (runs: 128, calls: 16384, reverts: 0)
Suite result: ok. 2 passed; 0 failed; 0 skipped; finished in 58.46s (95.70s CPU time)
Ran 2 test suites in 58.47s (58.47s CPU time): 9 tests passed, 0 failed, 0 skipped (9 total tests)
Uncovered for script/DeployDSC.s.sol:
Uncovered for script/HelperConfig.s.sol:
- Function "" (location: source ID 34, line 24, chars 798-1007, hits: 0)
- Line (location: source ID 34, line 25, chars 826-851, hits: 0)
- Statement (location: source ID 34, line 25, chars 826-851, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 34, line 25, chars 822-921, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 34, line 25, chars 822-921, hits: 0)
- Line (location: source ID 34, line 26, chars 867-910, hits: 0)
- Statement (location: source ID 34, line 26, chars 867-910, hits: 0)
- Line (location: source ID 34, line 28, chars 941-990, hits: 0)
- Statement (location: source ID 34, line 28, chars 941-990, hits: 0)
- Function "getSepoliaEthConfig" (location: source ID 34, line 32, chars 1013-1460, hits: 0)
- Line (location: source ID 34, line 33, chars 1097-1453, hits: 0)
- Statement (location: source ID 34, line 33, chars 1097-1453, hits: 0)
- Statement (location: source ID 34, line 33, chars 1104-1453, hits: 0)
- Function "getOrCreateAnvilEthConfig" (location: source ID 34, line 42, chars 1466-2338, hits: 0)
- Line (location: source ID 34, line 43, chars 1555-1605, hits: 0)
- Statement (location: source ID 34, line 43, chars 1555-1605, hits: 0)
- Statement (location: source ID 34, line 43, chars 1595-1605, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 34, line 43, chars 1551-1658, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 34, line 43, chars 1551-1658, hits: 0)
- Line (location: source ID 34, line 44, chars 1621-1647, hits: 0)
- Statement (location: source ID 34, line 44, chars 1621-1647, hits: 0)
- Line (location: source ID 34, line 47, chars 1668-1687, hits: 0)
- Statement (location: source ID 34, line 47, chars 1668-1687, hits: 0)
- Line (location: source ID 34, line 48, chars 1697-1777, hits: 0)
- Statement (location: source ID 34, line 48, chars 1697-1777, hits: 0)
- Statement (location: source ID 34, line 48, chars 1732-1777, hits: 0)
- Line (location: source ID 34, line 49, chars 1787-1857, hits: 0)
- Statement (location: source ID 34, line 49, chars 1787-1857, hits: 0)
- Statement (location: source ID 34, line 49, chars 1808-1857, hits: 0)
- Line (location: source ID 34, line 51, chars 1868-1949, hits: 0)
- Statement (location: source ID 34, line 51, chars 1868-1949, hits: 0)
- Statement (location: source ID 34, line 51, chars 1903-1949, hits: 0)
- Line (location: source ID 34, line 52, chars 1959-2029, hits: 0)
- Statement (location: source ID 34, line 52, chars 1959-2029, hits: 0)
- Statement (location: source ID 34, line 52, chars 1980-2029, hits: 0)
- Line (location: source ID 34, line 54, chars 2040-2058, hits: 0)
- Statement (location: source ID 34, line 54, chars 2040-2058, hits: 0)
- Line (location: source ID 34, line 56, chars 2069-2331, hits: 0)
- Statement (location: source ID 34, line 56, chars 2069-2331, hits: 0)
- Statement (location: source ID 34, line 56, chars 2076-2331, hits: 0)
Uncovered for src/DSCEngine.sol:
- Function "moreThanZero" (location: source ID 35, line 67, chars 2878-3022, hits: 0)
- Line (location: source ID 35, line 68, chars 2930-2941, hits: 0)
- Statement (location: source ID 35, line 68, chars 2930-2941, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 35, line 68, chars 2926-3005, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 35, line 68, chars 2926-3005, hits: 0)
- Line (location: source ID 35, line 69, chars 2957-2994, hits: 0)
- Statement (location: source ID 35, line 69, chars 2957-2994, hits: 0)
- Function "depositCollateralAndMintDSC" (location: source ID 35, line 100, chars 4070-4339, hits: 0)
- Line (location: source ID 35, line 105, chars 4239-4298, hits: 0)
- Statement (location: source ID 35, line 105, chars 4239-4298, hits: 0)
- Line (location: source ID 35, line 106, chars 4308-4332, hits: 0)
- Statement (location: source ID 35, line 106, chars 4308-4332, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 35, line 124, chars 5175-5248, hits: 0)
- Line (location: source ID 35, line 125, chars 5203-5237, hits: 0)
- Statement (location: source ID 35, line 125, chars 5203-5237, hits: 0)
- Function "redeemCollateralForDsc" (location: source ID 35, line 135, chars 5475-5776, hits: 0)
- Line (location: source ID 35, line 138, chars 5621-5645, hits: 0)
- Statement (location: source ID 35, line 138, chars 5621-5645, hits: 0)
- Line (location: source ID 35, line 139, chars 5655-5713, hits: 0)
- Statement (location: source ID 35, line 139, chars 5655-5713, hits: 0)
- Function "burnDsc" (location: source ID 35, line 147, chars 5914-6125, hits: 0)
- Line (location: source ID 35, line 148, chars 5985-6025, hits: 0)
- Statement (location: source ID 35, line 148, chars 5985-6025, hits: 0)
- Line (location: source ID 35, line 149, chars 6035-6076, hits: 0)
- Statement (location: source ID 35, line 149, chars 6035-6076, hits: 0)
- Function "redeemCollateral" (location: source ID 35, line 158, chars 6324-6638, hits: 0)
- Line (location: source ID 35, line 163, chars 6497-6580, hits: 0)
- Statement (location: source ID 35, line 163, chars 6497-6580, hits: 0)
- Line (location: source ID 35, line 164, chars 6590-6631, hits: 0)
- Statement (location: source ID 35, line 164, chars 6590-6631, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 35, line 186, chars 7430-7498, hits: 0)
- Line (location: source ID 35, line 187, chars 7457-7487, hits: 0)
- Statement (location: source ID 35, line 187, chars 7457-7487, hits: 0)
- Function "liquidate" (location: source ID 35, line 210, chars 8710-10250, hits: 0)
- Line (location: source ID 35, line 216, chars 8909-8963, hits: 0)
- Statement (location: source ID 35, line 216, chars 8909-8963, hits: 0)
- Statement (location: source ID 35, line 216, chars 8944-8963, hits: 0)
- Line (location: source ID 35, line 217, chars 8977-9022, hits: 0)
- Statement (location: source ID 35, line 217, chars 8977-9022, hits: 0)
- Branch (branch: 5, path: 0) (location: source ID 35, line 217, chars 8973-9083, hits: 0)
- Branch (branch: 5, path: 1) (location: source ID 35, line 217, chars 8973-9083, hits: 0)
- Line (location: source ID 35, line 218, chars 9038-9072, hits: 0)
- Statement (location: source ID 35, line 218, chars 9038-9072, hits: 0)
- Line (location: source ID 35, line 224, chars 9251-9334, hits: 0)
- Statement (location: source ID 35, line 224, chars 9251-9334, hits: 0)
- Statement (location: source ID 35, line 224, chars 9288-9334, hits: 0)
- Line (location: source ID 35, line 231, chars 9644-9742, hits: 0)
- Statement (location: source ID 35, line 231, chars 9644-9742, hits: 0)
- Statement (location: source ID 35, line 231, chars 9670-9742, hits: 0)
- Line (location: source ID 35, line 232, chars 9752-9830, hits: 0)
- Statement (location: source ID 35, line 232, chars 9752-9830, hits: 0)
- Statement (location: source ID 35, line 232, chars 9786-9830, hits: 0)
- Line (location: source ID 35, line 233, chars 9840-9912, hits: 0)
- Statement (location: source ID 35, line 233, chars 9840-9912, hits: 0)
- Line (location: source ID 35, line 235, chars 9957-9996, hits: 0)
- Statement (location: source ID 35, line 235, chars 9957-9996, hits: 0)
- Line (location: source ID 35, line 237, chars 10007-10059, hits: 0)
- Statement (location: source ID 35, line 237, chars 10007-10059, hits: 0)
- Statement (location: source ID 35, line 237, chars 10040-10059, hits: 0)
- Line (location: source ID 35, line 238, chars 10073-10123, hits: 0)
- Statement (location: source ID 35, line 238, chars 10073-10123, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 35, line 238, chars 10069-10193, hits: 0)
- Branch (branch: 6, path: 1) (location: source ID 35, line 238, chars 10069-10193, hits: 0)
- Line (location: source ID 35, line 239, chars 10139-10182, hits: 0)
- Statement (location: source ID 35, line 239, chars 10139-10182, hits: 0)
- Line (location: source ID 35, line 241, chars 10202-10243, hits: 0)
- Statement (location: source ID 35, line 241, chars 10202-10243, hits: 0)
- Function "_burnDsc" (location: source ID 35, line 255, chars 10723-11113, hits: 0)
- Line (location: source ID 35, line 256, chars 10821-10863, hits: 0)
- Statement (location: source ID 35, line 256, chars 10821-10863, hits: 0)
- Line (location: source ID 35, line 257, chars 10873-10947, hits: 0)
- Statement (location: source ID 35, line 257, chars 10873-10947, hits: 0)
- Statement (location: source ID 35, line 257, chars 10888-10947, hits: 0)
- Line (location: source ID 35, line 259, chars 11001-11009, hits: 0)
- Statement (location: source ID 35, line 259, chars 11001-11009, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 35, line 259, chars 10997-11070, hits: 0)
- Branch (branch: 7, path: 1) (location: source ID 35, line 259, chars 10997-11070, hits: 0)
- Line (location: source ID 35, line 260, chars 11025-11059, hits: 0)
- Statement (location: source ID 35, line 260, chars 11025-11059, hits: 0)
- Line (location: source ID 35, line 262, chars 11079-11106, hits: 0)
- Statement (location: source ID 35, line 262, chars 11079-11106, hits: 0)
- Function "_redeemCollateral" (location: source ID 35, line 265, chars 11119-11591, hits: 0)
- Line (location: source ID 35, line 268, chars 11260-11331, hits: 0)
- Statement (location: source ID 35, line 268, chars 11260-11331, hits: 0)
- Line (location: source ID 35, line 269, chars 11341-11416, hits: 0)
- Statement (location: source ID 35, line 269, chars 11341-11416, hits: 0)
- Line (location: source ID 35, line 270, chars 11426-11502, hits: 0)
- Statement (location: source ID 35, line 270, chars 11426-11502, hits: 0)
- Statement (location: source ID 35, line 270, chars 11441-11502, hits: 0)
- Line (location: source ID 35, line 271, chars 11516-11524, hits: 0)
- Statement (location: source ID 35, line 271, chars 11516-11524, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 35, line 271, chars 11512-11585, hits: 0)
- Branch (branch: 8, path: 1) (location: source ID 35, line 271, chars 11512-11585, hits: 0)
- Line (location: source ID 35, line 272, chars 11540-11574, hits: 0)
- Statement (location: source ID 35, line 272, chars 11540-11574, hits: 0)
- Function "_getAccountCollateralValueInUsd" (location: source ID 35, line 319, chars 13757-14297, hits: 0)
- Line (location: source ID 35, line 327, chars 14258-14290, hits: 0)
- Statement (location: source ID 35, line 327, chars 14258-14290, hits: 0)
- Function "getPrecision" (location: source ID 35, line 359, chars 15417-15506, hits: 0)
- Line (location: source ID 35, line 360, chars 15483-15499, hits: 0)
- Statement (location: source ID 35, line 360, chars 15483-15499, hits: 0)
- Function "getLiquidationBonus" (location: source ID 35, line 363, chars 15512-15616, hits: 0)
- Line (location: source ID 35, line 364, chars 15585-15609, hits: 0)
- Statement (location: source ID 35, line 364, chars 15585-15609, hits: 0)
- Function "getHealthFactor" (location: source ID 35, line 367, chars 15622-15736, hits: 0)
- Line (location: source ID 35, line 368, chars 15703-15729, hits: 0)
- Statement (location: source ID 35, line 368, chars 15703-15729, hits: 0)
- Statement (location: source ID 35, line 368, chars 15710-15729, hits: 0)
Uncovered for src/DecentralizedStableCoin.sol:
- Function "" (location: source ID 36, line 41, chars 1138-1204, hits: 0)
- Function "burn" (location: source ID 36, line 43, chars 1210-1638, hits: 0)
- Line (location: source ID 36, line 44, chars 1277-1316, hits: 0)
- Statement (location: source ID 36, line 44, chars 1277-1316, hits: 0)
- Statement (location: source ID 36, line 44, chars 1295-1316, hits: 0)
- Line (location: source ID 36, line 45, chars 1330-1342, hits: 0)
- Statement (location: source ID 36, line 45, chars 1330-1342, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 36, line 45, chars 1326-1421, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 36, line 45, chars 1326-1421, hits: 0)
- Line (location: source ID 36, line 46, chars 1358-1410, hits: 0)
- Statement (location: source ID 36, line 46, chars 1358-1410, hits: 0)
- Line (location: source ID 36, line 48, chars 1434-1451, hits: 0)
- Statement (location: source ID 36, line 48, chars 1434-1451, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 36, line 48, chars 1430-1536, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 36, line 48, chars 1430-1536, hits: 0)
- Line (location: source ID 36, line 49, chars 1467-1525, hits: 0)
- Statement (location: source ID 36, line 49, chars 1467-1525, hits: 0)
- Line (location: source ID 36, line 51, chars 1545-1564, hits: 0)
- Statement (location: source ID 36, line 51, chars 1545-1564, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 36, line 55, chars 1732-1829, hits: 0)
- Line (location: source ID 36, line 56, chars 1769-1818, hits: 0)
- Statement (location: source ID 36, line 56, chars 1769-1818, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 36, line 58, chars 1838-1933, hits: 0)
- Line (location: source ID 36, line 59, chars 1870-1922, hits: 0)
- Statement (location: source ID 36, line 59, chars 1870-1922, hits: 0)
Uncovered for src/libraries/OracleLib.sol:
- Branch (branch: 0, path: 0) (location: source ID 37, line 29, chars 1076-1134, hits: 0)
- Statement (location: source ID 37, line 29, chars 1104-1134, hits: 0)
Uncovered for test/fuzz/Handler.t.sol:
- Function "" (location: source ID 38, line 27, chars 867-1249, hits: 0)
- Line (location: source ID 38, line 28, chars 942-960, hits: 0)
- Statement (location: source ID 38, line 28, chars 942-960, hits: 0)
- Line (location: source ID 38, line 29, chars 970-980, hits: 0)
- Statement (location: source ID 38, line 29, chars 970-980, hits: 0)
- Line (location: source ID 38, line 31, chars 991-1053, hits: 0)
- Statement (location: source ID 38, line 31, chars 991-1053, hits: 0)
- Statement (location: source ID 38, line 31, chars 1027-1053, hits: 0)
- Line (location: source ID 38, line 32, chars 1063-1100, hits: 0)
- Statement (location: source ID 38, line 32, chars 1063-1100, hits: 0)
- Line (location: source ID 38, line 33, chars 1110-1147, hits: 0)
- Statement (location: source ID 38, line 33, chars 1110-1147, hits: 0)
- Line (location: source ID 38, line 35, chars 1158-1242, hits: 0)
- Statement (location: source ID 38, line 35, chars 1158-1242, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 38, line 47, chars 1781-1891, hits: 0)
- Line (location: source ID 38, line 48, chars 1817-1860, hits: 0)
- Statement (location: source ID 38, line 48, chars 1817-1860, hits: 0)
- Line (location: source ID 38, line 49, chars 1874-1881, hits: 0)
- Statement (location: source ID 38, line 49, chars 1874-1881, hits: 0)
- Branch (branch: 3, path: 1) (location: source ID 38, line 83, chars 3469-3527, hits: 0)
- Line (location: source ID 38, line 86, chars 3536-3561, hits: 0)
- Statement (location: source ID 38, line 86, chars 3536-3561, hits: 0)
- Line (location: source ID 38, line 87, chars 3571-3622, hits: 0)
- Statement (location: source ID 38, line 87, chars 3571-3622, hits: 0)
- Line (location: source ID 38, line 88, chars 3632-3692, hits: 0)
- Statement (location: source ID 38, line 88, chars 3632-3692, hits: 0)
- Line (location: source ID 38, line 89, chars 3702-3716, hits: 0)
- Statement (location: source ID 38, line 89, chars 3702-3716, hits: 0)
- Line (location: source ID 38, line 91, chars 3727-3818, hits: 0)
- Statement (location: source ID 38, line 91, chars 3727-3818, hits: 0)
Uncovered for test/mocks/MockV3Aggregator.sol:
- Function "" (location: source ID 41, line 24, chars 679-806, hits: 0)
- Line (location: source ID 41, line 25, chars 741-761, hits: 0)
- Statement (location: source ID 41, line 25, chars 741-761, hits: 0)
- Line (location: source ID 41, line 26, chars 771-799, hits: 0)
- Statement (location: source ID 41, line 26, chars 771-799, hits: 0)
- Function "updateAnswer" (location: source ID 41, line 29, chars 812-1110, hits: 0)
- Line (location: source ID 41, line 30, chars 867-889, hits: 0)
- Statement (location: source ID 41, line 30, chars 867-889, hits: 0)
- Line (location: source ID 41, line 31, chars 899-932, hits: 0)
- Statement (location: source ID 41, line 31, chars 899-932, hits: 0)
- Line (location: source ID 41, line 32, chars 942-955, hits: 0)
- Statement (location: source ID 41, line 32, chars 942-955, hits: 0)
- Line (location: source ID 41, line 33, chars 965-997, hits: 0)
- Statement (location: source ID 41, line 33, chars 965-997, hits: 0)
- Line (location: source ID 41, line 34, chars 1007-1050, hits: 0)
- Statement (location: source ID 41, line 34, chars 1007-1050, hits: 0)
- Line (location: source ID 41, line 35, chars 1060-1103, hits: 0)
- Statement (location: source ID 41, line 35, chars 1060-1103, hits: 0)
- Function "updateRoundData" (location: source ID 41, line 38, chars 1116-1468, hits: 0)
- Line (location: source ID 41, line 39, chars 1231-1253, hits: 0)
- Statement (location: source ID 41, line 39, chars 1231-1253, hits: 0)
- Line (location: source ID 41, line 40, chars 1263-1285, hits: 0)
- Statement (location: source ID 41, line 40, chars 1263-1285, hits: 0)
- Line (location: source ID 41, line 41, chars 1295-1323, hits: 0)
- Statement (location: source ID 41, line 41, chars 1295-1323, hits: 0)
- Line (location: source ID 41, line 42, chars 1333-1365, hits: 0)
- Statement (location: source ID 41, line 42, chars 1333-1365, hits: 0)
- Line (location: source ID 41, line 43, chars 1375-1413, hits: 0)
- Statement (location: source ID 41, line 43, chars 1375-1413, hits: 0)
- Line (location: source ID 41, line 44, chars 1423-1461, hits: 0)
- Statement (location: source ID 41, line 44, chars 1423-1461, hits: 0)
- Function "getRoundData" (location: source ID 41, line 47, chars 1474-1770, hits: 0)
- Line (location: source ID 41, line 52, chars 1667-1763, hits: 0)
- Statement (location: source ID 41, line 52, chars 1667-1763, hits: 0)
- Function "description" (location: source ID 41, line 69, chars 2167-2285, hits: 0)
- Line (location: source ID 41, line 70, chars 2238-2278, hits: 0)
- Statement (location: source ID 41, line 70, chars 2238-2278, hits: 0)
Anchors for Contract "stdError" (solc 0.8.22, source ID 6):
Anchors for Contract "ERC20Mock" (solc 0.8.22, source ID 26):
Anchors for Contract "stdMath" (solc 0.8.22, source ID 9):
Anchors for Contract "MockERC20" (solc 0.8.22, source ID 22):
Anchors for Contract "ERC20" (solc 0.8.22, source ID 28):
Anchors for Contract "DSCEngine" (solc 0.8.22, source ID 35):
- IC 5 -> Item 258
- Runtime code
- Refers to item: Function "" (location: source ID 35, line 82, chars 3218-3808, hits: 9)
- IC 64 -> Item 259
- Runtime code
- Refers to item: Line (location: source ID 35, line 83, chars 3334-3384, hits: 4)
- IC 64 -> Item 260
- Runtime code
- Refers to item: Statement (location: source ID 35, line 83, chars 3334-3384, hits: 4)
- IC 74 -> Item 261
- Runtime code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 35, line 83, chars 3330-3482, hits: 3)
- IC 123 -> Item 262
- Runtime code
- Refers to item: Branch (branch: 2, path: 1) (location: source ID 35, line 83, chars 3330-3482, hits: 3)
- IC 74 -> Item 263
- Runtime code
- Refers to item: Line (location: source ID 35, line 84, chars 3400-3471, hits: 3)
- IC 74 -> Item 264
- Runtime code
- Refers to item: Statement (location: source ID 35, line 84, chars 3400-3471, hits: 3)
- IC 124 -> Item 265
- Runtime code
- Refers to item: Line (location: source ID 35, line 87, chars 3536-3549, hits: 2)
- IC 124 -> Item 266
- Runtime code
- Refers to item: Statement (location: source ID 35, line 87, chars 3536-3549, hits: 2)
- IC 127 -> Item 267
- Runtime code
- Refers to item: Statement (location: source ID 35, line 87, chars 3551-3576, hits: 6)
- IC 449 -> Item 268
- Runtime code
- Refers to item: Statement (location: source ID 35, line 87, chars 3578-3581, hits: 5)
- IC 137 -> Item 269
- Runtime code
- Refers to item: Line (location: source ID 35, line 88, chars 3597-3652, hits: 3)
- IC 137 -> Item 270
- Runtime code
- Refers to item: Statement (location: source ID 35, line 88, chars 3597-3652, hits: 3)
- IC 321 -> Item 271
- Runtime code
- Refers to item: Line (location: source ID 35, line 89, chars 3696-3738, hits: 4)
- IC 321 -> Item 272
- Runtime code
- Refers to item: Statement (location: source ID 35, line 89, chars 3696-3738, hits: 4)
- IC 464 -> Item 273
- Runtime code
- Refers to item: Line (location: source ID 35, line 91, chars 3758-3801, hits: 2)
- IC 464 -> Item 274
- Runtime code
- Refers to item: Statement (location: source ID 35, line 91, chars 3758-3801, hits: 2)
- IC 1003 -> Item 243
- Creation code
- Refers to item: Function "moreThanZero" (location: source ID 35, line 67, chars 2878-3022, hits: 0)
- IC 1003 -> Item 244
- Creation code
- Refers to item: Line (location: source ID 35, line 68, chars 2930-2941, hits: 0)
- IC 1003 -> Item 245
- Creation code
- Refers to item: Statement (location: source ID 35, line 68, chars 2930-2941, hits: 0)
- IC 3856 -> Item 246
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 35, line 68, chars 2926-3005, hits: 0)
- IC 3905 -> Item 247
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 35, line 68, chars 2926-3005, hits: 0)
- IC 1011 -> Item 248
- Creation code
- Refers to item: Line (location: source ID 35, line 69, chars 2957-2994, hits: 0)
- IC 1011 -> Item 249
- Creation code
- Refers to item: Statement (location: source ID 35, line 69, chars 2957-2994, hits: 0)
- IC 2057 -> Item 250
- Creation code
- Refers to item: Function "isAllowedToken" (location: source ID 35, line 74, chars 3028-3193, hits: 11109)
- IC 2057 -> Item 251
- Creation code
- Refers to item: Line (location: source ID 35, line 75, chars 3081-3114, hits: 11109)
- IC 2057 -> Item 252
- Creation code
- Refers to item: Statement (location: source ID 35, line 75, chars 3081-3114, hits: 11109)
- IC 2057 -> Item 253
- Creation code
- Refers to item: Statement (location: source ID 35, line 75, chars 3104-3114, hits: 11109)
- IC 2204 -> Item 254
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 35, line 75, chars 3077-3176, hits: 1)
- IC 2253 -> Item 255
- Creation code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 35, line 75, chars 3077-3176, hits: 11108)
- IC 2204 -> Item 256
- Creation code
- Refers to item: Line (location: source ID 35, line 76, chars 3130-3165, hits: 1)
- IC 2204 -> Item 257
- Creation code
- Refers to item: Statement (location: source ID 35, line 76, chars 3130-3165, hits: 1)
- IC 294 -> Item 275
- Creation code
- Refers to item: Function "depositCollateralAndMintDSC" (location: source ID 35, line 100, chars 4070-4339, hits: 0)
- IC 978 -> Item 276
- Creation code
- Refers to item: Line (location: source ID 35, line 105, chars 4239-4298, hits: 0)
- IC 978 -> Item 277
- Creation code
- Refers to item: Statement (location: source ID 35, line 105, chars 4239-4298, hits: 0)
- IC 988 -> Item 278
- Creation code
- Refers to item: Line (location: source ID 35, line 106, chars 4308-4332, hits: 0)
- IC 988 -> Item 279
- Creation code
- Refers to item: Statement (location: source ID 35, line 106, chars 4308-4332, hits: 0)
- IC 691 -> Item 280
- Creation code
- Refers to item: Function "depositCollateral" (location: source ID 35, line 115, chars 4570-5254, hits: 11110)
- IC 2262 -> Item 281
- Creation code
- Refers to item: Line (location: source ID 35, line 121, chars 4887-4964, hits: 11108)
- IC 2262 -> Item 282
- Creation code
- Refers to item: Statement (location: source ID 35, line 121, chars 4887-4964, hits: 11108)
- IC 2409 -> Item 283
- Creation code
- Refers to item: Line (location: source ID 35, line 122, chars 4974-5052, hits: 11108)
- IC 2409 -> Item 284
- Creation code
- Refers to item: Statement (location: source ID 35, line 122, chars 4974-5052, hits: 11108)
- IC 2500 -> Item 285
- Creation code
- Refers to item: Line (location: source ID 35, line 123, chars 5062-5165, hits: 11108)
- IC 2500 -> Item 286
- Creation code
- Refers to item: Statement (location: source ID 35, line 123, chars 5062-5165, hits: 11108)
- IC 2502 -> Item 287
- Creation code
- Refers to item: Statement (location: source ID 35, line 123, chars 5077-5165, hits: 11108)
- IC 2632 -> Item 288
- Creation code
- Refers to item: Line (location: source ID 35, line 124, chars 5179-5187, hits: 11108)
- IC 2632 -> Item 289
- Creation code
- Refers to item: Statement (location: source ID 35, line 124, chars 5179-5187, hits: 11108)
- IC 2637 -> Item 290
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 35, line 124, chars 5175-5248, hits: 0)
- IC 2686 -> Item 291
- Creation code
- Refers to item: Branch (branch: 3, path: 1) (location: source ID 35, line 124, chars 5175-5248, hits: 11108)
- IC 2637 -> Item 292
- Creation code
- Refers to item: Line (location: source ID 35, line 125, chars 5203-5237, hits: 0)
- IC 2637 -> Item 293
- Creation code
- Refers to item: Statement (location: source ID 35, line 125, chars 5203-5237, hits: 0)
- IC 873 -> Item 294
- Creation code
- Refers to item: Function "redeemCollateralForDsc" (location: source ID 35, line 135, chars 5475-5776, hits: 0)
- IC 3823 -> Item 295
- Creation code
- Refers to item: Line (location: source ID 35, line 138, chars 5621-5645, hits: 0)
- IC 3823 -> Item 296
- Creation code
- Refers to item: Statement (location: source ID 35, line 138, chars 5621-5645, hits: 0)
- IC 3832 -> Item 297
- Creation code
- Refers to item: Line (location: source ID 35, line 139, chars 5655-5713, hits: 0)
- IC 3832 -> Item 298
- Creation code
- Refers to item: Statement (location: source ID 35, line 139, chars 5655-5713, hits: 0)
- IC 901 -> Item 299
- Creation code
- Refers to item: Function "burnDsc" (location: source ID 35, line 147, chars 5914-6125, hits: 0)
- IC 3906 -> Item 300
- Creation code
- Refers to item: Line (location: source ID 35, line 148, chars 5985-6025, hits: 0)
- IC 3906 -> Item 301
- Creation code
- Refers to item: Statement (location: source ID 35, line 148, chars 5985-6025, hits: 0)
- IC 3917 -> Item 302
- Creation code
- Refers to item: Line (location: source ID 35, line 149, chars 6035-6076, hits: 0)
- IC 3917 -> Item 303
- Creation code
- Refers to item: Statement (location: source ID 35, line 149, chars 6035-6076, hits: 0)
- IC 615 -> Item 304
- Creation code
- Refers to item: Function "redeemCollateral" (location: source ID 35, line 158, chars 6324-6638, hits: 0)
- IC 1702 -> Item 305
- Creation code
- Refers to item: Line (location: source ID 35, line 163, chars 6497-6580, hits: 0)
- IC 1702 -> Item 306
- Creation code
- Refers to item: Statement (location: source ID 35, line 163, chars 6497-6580, hits: 0)
- IC 1714 -> Item 307
- Creation code
- Refers to item: Line (location: source ID 35, line 164, chars 6590-6631, hits: 0)
- IC 1714 -> Item 308
- Creation code
- Refers to item: Statement (location: source ID 35, line 164, chars 6590-6631, hits: 0)
- IC 797 -> Item 309
- Creation code
- Refers to item: Function "mintDsc" (location: source ID 35, line 181, chars 7106-7504, hits: 10459)
- IC 3188 -> Item 310
- Creation code
- Refers to item: Line (location: source ID 35, line 182, chars 7208-7250, hits: 10459)
- IC 3188 -> Item 311
- Creation code
- Refers to item: Statement (location: source ID 35, line 182, chars 7208-7250, hits: 10459)
- IC 3274 -> Item 312
- Creation code
- Refers to item: Line (location: source ID 35, line 184, chars 7316-7357, hits: 10459)
- IC 3274 -> Item 313
- Creation code
- Refers to item: Statement (location: source ID 35, line 184, chars 7316-7357, hits: 10459)
- IC 3283 -> Item 314
- Creation code
- Refers to item: Line (location: source ID 35, line 185, chars 7367-7420, hits: 10458)
- IC 3283 -> Item 315
- Creation code
- Refers to item: Statement (location: source ID 35, line 185, chars 7367-7420, hits: 10458)
- IC 3285 -> Item 316
- Creation code
- Refers to item: Statement (location: source ID 35, line 185, chars 7381-7420, hits: 10458)
- IC 3445 -> Item 317
- Creation code
- Refers to item: Line (location: source ID 35, line 186, chars 7434-7441, hits: 10458)
- IC 3445 -> Item 318
- Creation code
- Refers to item: Statement (location: source ID 35, line 186, chars 7434-7441, hits: 10458)
- IC 3450 -> Item 319
- Creation code
- Refers to item: Branch (branch: 4, path: 0) (location: source ID 35, line 186, chars 7430-7498, hits: 0)
- IC 3499 -> Item 320
- Creation code
- Refers to item: Branch (branch: 4, path: 1) (location: source ID 35, line 186, chars 7430-7498, hits: 10458)
- IC 3450 -> Item 321
- Creation code
- Refers to item: Line (location: source ID 35, line 187, chars 7457-7487, hits: 0)
- IC 3450 -> Item 322
- Creation code
- Refers to item: Statement (location: source ID 35, line 187, chars 7457-7487, hits: 0)
- IC 322 -> Item 323
- Creation code
- Refers to item: Function "liquidate" (location: source ID 35, line 210, chars 8710-10250, hits: 0)
- IC 1069 -> Item 324
- Creation code
- Refers to item: Line (location: source ID 35, line 216, chars 8909-8963, hits: 0)
- IC 1069 -> Item 325
- Creation code
- Refers to item: Statement (location: source ID 35, line 216, chars 8909-8963, hits: 0)
- IC 1071 -> Item 326
- Creation code
- Refers to item: Statement (location: source ID 35, line 216, chars 8944-8963, hits: 0)
- IC 1091 -> Item 327
- Creation code
- Refers to item: Line (location: source ID 35, line 217, chars 8977-9022, hits: 0)
- IC 1091 -> Item 328
- Creation code
- Refers to item: Statement (location: source ID 35, line 217, chars 8977-9022, hits: 0)
- IC 1097 -> Item 329
- Creation code
- Refers to item: Branch (branch: 5, path: 0) (location: source ID 35, line 217, chars 8973-9083, hits: 0)
- IC 1146 -> Item 330
- Creation code
- Refers to item: Branch (branch: 5, path: 1) (location: source ID 35, line 217, chars 8973-9083, hits: 0)
- IC 1097 -> Item 331
- Creation code
- Refers to item: Line (location: source ID 35, line 218, chars 9038-9072, hits: 0)
- IC 1097 -> Item 332
- Creation code
- Refers to item: Statement (location: source ID 35, line 218, chars 9038-9072, hits: 0)
- IC 1147 -> Item 333
- Creation code
- Refers to item: Line (location: source ID 35, line 224, chars 9251-9334, hits: 0)
- IC 1147 -> Item 334
- Creation code
- Refers to item: Statement (location: source ID 35, line 224, chars 9251-9334, hits: 0)
- IC 1149 -> Item 335
- Creation code
- Refers to item: Statement (location: source ID 35, line 224, chars 9288-9334, hits: 0)
- IC 1161 -> Item 336
- Creation code
- Refers to item: Line (location: source ID 35, line 231, chars 9644-9742, hits: 0)
- IC 1161 -> Item 337
- Creation code
- Refers to item: Statement (location: source ID 35, line 231, chars 9644-9742, hits: 0)
- IC 1167 -> Item 338
- Creation code
- Refers to item: Statement (location: source ID 35, line 231, chars 9670-9742, hits: 0)
- IC 1190 -> Item 339
- Creation code
- Refers to item: Line (location: source ID 35, line 232, chars 9752-9830, hits: 0)
- IC 1190 -> Item 340
- Creation code
- Refers to item: Statement (location: source ID 35, line 232, chars 9752-9830, hits: 0)
- IC 1192 -> Item 341
- Creation code
- Refers to item: Statement (location: source ID 35, line 232, chars 9786-9830, hits: 0)
- IC 1206 -> Item 342
- Creation code
- Refers to item: Line (location: source ID 35, line 233, chars 9840-9912, hits: 0)
- IC 1206 -> Item 343
- Creation code
- Refers to item: Statement (location: source ID 35, line 233, chars 9840-9912, hits: 0)
- IC 1218 -> Item 344
- Creation code
- Refers to item: Line (location: source ID 35, line 235, chars 9957-9996, hits: 0)
- IC 1218 -> Item 345
- Creation code
- Refers to item: Statement (location: source ID 35, line 235, chars 9957-9996, hits: 0)
- IC 1229 -> Item 346
- Creation code
- Refers to item: Line (location: source ID 35, line 237, chars 10007-10059, hits: 0)
- IC 1229 -> Item 347
- Creation code
- Refers to item: Statement (location: source ID 35, line 237, chars 10007-10059, hits: 0)
- IC 1231 -> Item 348
- Creation code
- Refers to item: Statement (location: source ID 35, line 237, chars 10040-10059, hits: 0)
- IC 1242 -> Item 349
- Creation code
- Refers to item: Line (location: source ID 35, line 238, chars 10073-10123, hits: 0)
- IC 1242 -> Item 350
- Creation code
- Refers to item: Statement (location: source ID 35, line 238, chars 10073-10123, hits: 0)
- IC 1249 -> Item 351
- Creation code
- Refers to item: Branch (branch: 6, path: 0) (location: source ID 35, line 238, chars 10069-10193, hits: 0)
- IC 1298 -> Item 352
- Creation code
- Refers to item: Branch (branch: 6, path: 1) (location: source ID 35, line 238, chars 10069-10193, hits: 0)
- IC 1249 -> Item 353
- Creation code
- Refers to item: Line (location: source ID 35, line 239, chars 10139-10182, hits: 0)
- IC 1249 -> Item 354
- Creation code
- Refers to item: Statement (location: source ID 35, line 239, chars 10139-10182, hits: 0)
- IC 1299 -> Item 355
- Creation code
- Refers to item: Line (location: source ID 35, line 241, chars 10202-10243, hits: 0)
- IC 1299 -> Item 356
- Creation code
- Refers to item: Statement (location: source ID 35, line 241, chars 10202-10243, hits: 0)
- IC 4577 -> Item 357
- Creation code
- Refers to item: Function "_burnDsc" (location: source ID 35, line 255, chars 10723-11113, hits: 0)
- IC 4578 -> Item 358
- Creation code
- Refers to item: Line (location: source ID 35, line 256, chars 10821-10863, hits: 0)
- IC 4578 -> Item 359
- Creation code
- Refers to item: Statement (location: source ID 35, line 256, chars 10821-10863, hits: 0)
- IC 4664 -> Item 360
- Creation code
- Refers to item: Line (location: source ID 35, line 257, chars 10873-10947, hits: 0)
- IC 4664 -> Item 361
- Creation code
- Refers to item: Statement (location: source ID 35, line 257, chars 10873-10947, hits: 0)
- IC 4666 -> Item 362
- Creation code
- Refers to item: Statement (location: source ID 35, line 257, chars 10888-10947, hits: 0)
- IC 4828 -> Item 363
- Creation code
- Refers to item: Line (location: source ID 35, line 259, chars 11001-11009, hits: 0)
- IC 4828 -> Item 364
- Creation code
- Refers to item: Statement (location: source ID 35, line 259, chars 11001-11009, hits: 0)
- IC 4833 -> Item 365
- Creation code
- Refers to item: Branch (branch: 7, path: 0) (location: source ID 35, line 259, chars 10997-11070, hits: 0)
- IC 4882 -> Item 366
- Creation code
- Refers to item: Branch (branch: 7, path: 1) (location: source ID 35, line 259, chars 10997-11070, hits: 0)
- IC 4833 -> Item 367
- Creation code
- Refers to item: Line (location: source ID 35, line 260, chars 11025-11059, hits: 0)
- IC 4833 -> Item 368
- Creation code
- Refers to item: Statement (location: source ID 35, line 260, chars 11025-11059, hits: 0)
- IC 4883 -> Item 369
- Creation code
- Refers to item: Line (location: source ID 35, line 262, chars 11079-11106, hits: 0)
- IC 4883 -> Item 370
- Creation code
- Refers to item: Statement (location: source ID 35, line 262, chars 11079-11106, hits: 0)
- IC 4114 -> Item 371
- Creation code
- Refers to item: Function "_redeemCollateral" (location: source ID 35, line 265, chars 11119-11591, hits: 0)
- IC 4115 -> Item 372
- Creation code
- Refers to item: Line (location: source ID 35, line 268, chars 11260-11331, hits: 0)
- IC 4115 -> Item 373
- Creation code
- Refers to item: Statement (location: source ID 35, line 268, chars 11260-11331, hits: 0)
- IC 4262 -> Item 374
- Creation code
- Refers to item: Line (location: source ID 35, line 269, chars 11341-11416, hits: 0)
- IC 4262 -> Item 375
- Creation code
- Refers to item: Statement (location: source ID 35, line 269, chars 11341-11416, hits: 0)
- IC 4386 -> Item 376
- Creation code
- Refers to item: Line (location: source ID 35, line 270, chars 11426-11502, hits: 0)
- IC 4386 -> Item 377
- Creation code
- Refers to item: Statement (location: source ID 35, line 270, chars 11426-11502, hits: 0)
- IC 4388 -> Item 378
- Creation code
- Refers to item: Statement (location: source ID 35, line 270, chars 11441-11502, hits: 0)
- IC 4516 -> Item 379
- Creation code
- Refers to item: Line (location: source ID 35, line 271, chars 11516-11524, hits: 0)
- IC 4516 -> Item 380
- Creation code
- Refers to item: Statement (location: source ID 35, line 271, chars 11516-11524, hits: 0)
- IC 4521 -> Item 381
- Creation code
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 35, line 271, chars 11512-11585, hits: 0)
- IC 4570 -> Item 382
- Creation code
- Refers to item: Branch (branch: 8, path: 1) (location: source ID 35, line 271, chars 11512-11585, hits: 0)
- IC 4521 -> Item 383
- Creation code
- Refers to item: Line (location: source ID 35, line 272, chars 11540-11574, hits: 0)
- IC 4521 -> Item 384
- Creation code
- Refers to item: Statement (location: source ID 35, line 272, chars 11540-11574, hits: 0)
- IC 4026 -> Item 385
- Creation code
- Refers to item: Function "_healthFactor" (location: source ID 35, line 276, chars 11597-12410, hits: 10459)
- IC 4029 -> Item 386
- Creation code
- Refers to item: Line (location: source ID 35, line 278, chars 11735-11820, hits: 10459)
- IC 4029 -> Item 387
- Creation code
- Refers to item: Statement (location: source ID 35, line 278, chars 11735-11820, hits: 10459)
- IC 4032 -> Item 388
- Creation code
- Refers to item: Statement (location: source ID 35, line 278, chars 11792-11820, hits: 10459)
- IC 4045 -> Item 389
- Creation code
- Refers to item: Line (location: source ID 35, line 279, chars 11830-11941, hits: 10459)
- IC 4045 -> Item 390
- Creation code
- Refers to item: Statement (location: source ID 35, line 279, chars 11830-11941, hits: 10459)
- IC 4051 -> Item 391
- Creation code
- Refers to item: Statement (location: source ID 35, line 279, chars 11871-11941, hits: 10459)
- IC 4074 -> Item 392
- Creation code
- Refers to item: Line (location: source ID 35, line 280, chars 11951-12019, hits: 10459)
- IC 4074 -> Item 393
- Creation code
- Refers to item: Statement (location: source ID 35, line 280, chars 11951-12019, hits: 10459)
- IC 4074 -> Item 394
- Creation code
- Refers to item: Statement (location: source ID 35, line 280, chars 11958-12019, hits: 10459)
- IC 5027 -> Item 395
- Creation code
- Refers to item: Function "_revertIfHealthFactorIsBroken" (location: source ID 35, line 287, chars 12416-12757, hits: 10459)
- IC 5028 -> Item 396
- Creation code
- Refers to item: Line (location: source ID 35, line 289, chars 12574-12620, hits: 10459)
- IC 5028 -> Item 397
- Creation code
- Refers to item: Statement (location: source ID 35, line 289, chars 12574-12620, hits: 10459)
- IC 5030 -> Item 398
- Creation code
- Refers to item: Statement (location: source ID 35, line 289, chars 12601-12620, hits: 10459)
- IC 5050 -> Item 399
- Creation code
- Refers to item: Line (location: source ID 35, line 290, chars 12634-12670, hits: 10459)
- IC 5050 -> Item 400
- Creation code
- Refers to item: Statement (location: source ID 35, line 290, chars 12634-12670, hits: 10459)
- IC 5057 -> Item 401
- Creation code
- Refers to item: Branch (branch: 9, path: 0) (location: source ID 35, line 290, chars 12630-12751, hits: 1)
- IC 5117 -> Item 402
- Creation code
- Refers to item: Branch (branch: 9, path: 1) (location: source ID 35, line 290, chars 12630-12751, hits: 10458)
- IC 5057 -> Item 403
- Creation code
- Refers to item: Line (location: source ID 35, line 291, chars 12686-12740, hits: 1)
- IC 5057 -> Item 404
- Creation code
- Refers to item: Statement (location: source ID 35, line 291, chars 12686-12740, hits: 1)
- IC 5131 -> Item 405
- Creation code
- Refers to item: Function "_getAccountInformation" (location: source ID 35, line 295, chars 12763-13034, hits: 21257)
- IC 5135 -> Item 406
- Creation code
- Refers to item: Line (location: source ID 35, line 300, chars 12923-12957, hits: 21257)
- IC 5135 -> Item 407
- Creation code
- Refers to item: Statement (location: source ID 35, line 300, chars 12923-12957, hits: 21257)
- IC 5201 -> Item 408
- Creation code
- Refers to item: Line (location: source ID 35, line 301, chars 12967-13027, hits: 21257)
- IC 5201 -> Item 409
- Creation code
- Refers to item: Statement (location: source ID 35, line 301, chars 12967-13027, hits: 21257)
- IC 719 -> Item 410
- Creation code
- Refers to item: Function "getTokenAmountFromUsd" (location: source ID 35, line 308, chars 13235-13751, hits: 2)
- IC 2704 -> Item 411
- Creation code
- Refers to item: Line (location: source ID 35, line 312, chars 13474-13550, hits: 2)
- IC 2704 -> Item 412
- Creation code
- Refers to item: Statement (location: source ID 35, line 312, chars 13474-13550, hits: 2)
- IC 2705 -> Item 413
- Creation code
- Refers to item: Statement (location: source ID 35, line 312, chars 13508-13550, hits: 2)
- IC 2803 -> Item 414
- Creation code
- Refers to item: Line (location: source ID 35, line 313, chars 13560-13609, hits: 2)
- IC 2803 -> Item 415
- Creation code
- Refers to item: Statement (location: source ID 35, line 313, chars 13560-13609, hits: 2)
- IC 2805 -> Item 416
- Creation code
- Refers to item: Statement (location: source ID 35, line 313, chars 13582-13609, hits: 2)
- IC 2928 -> Item 417
- Creation code
- Refers to item: Line (location: source ID 35, line 316, chars 13662-13744, hits: 2)
- IC 2928 -> Item 418
- Creation code
- Refers to item: Statement (location: source ID 35, line 316, chars 13662-13744, hits: 2)
- IC 2928 -> Item 419
- Creation code
- Refers to item: Statement (location: source ID 35, line 316, chars 13669-13744, hits: 2)
- IC 643 -> Item 420
- Creation code
- Refers to item: Function "_getAccountCollateralValueInUsd" (location: source ID 35, line 319, chars 13757-14297, hits: 0)
- IC 1738 -> Item 421
- Creation code
- Refers to item: Line (location: source ID 35, line 322, chars 14000-14013, hits: 21257)
- IC 1738 -> Item 422
- Creation code
- Refers to item: Statement (location: source ID 35, line 322, chars 14000-14013, hits: 21257)
- IC 1744 -> Item 423
- Creation code
- Refers to item: Statement (location: source ID 35, line 322, chars 14015-14044, hits: 63771)
- IC 1978 -> Item 424
- Creation code
- Refers to item: Statement (location: source ID 35, line 322, chars 14046-14049, hits: 42514)
- IC 1757 -> Item 425
- Creation code
- Refers to item: Line (location: source ID 35, line 323, chars 14065-14102, hits: 42514)
- IC 1757 -> Item 426
- Creation code
- Refers to item: Statement (location: source ID 35, line 323, chars 14065-14102, hits: 42514)
- IC 1824 -> Item 427
- Creation code
- Refers to item: Line (location: source ID 35, line 324, chars 14116-14167, hits: 42514)
- IC 1824 -> Item 428
- Creation code
- Refers to item: Statement (location: source ID 35, line 324, chars 14116-14167, hits: 42514)
- IC 1953 -> Item 429
- Creation code
- Refers to item: Line (location: source ID 35, line 325, chars 14181-14238, hits: 42514)
- IC 1953 -> Item 430
- Creation code
- Refers to item: Statement (location: source ID 35, line 325, chars 14181-14238, hits: 42514)
- IC 825 -> Item 433
- Creation code
- Refers to item: Function "getUsdInValue" (location: source ID 35, line 330, chars 14303-14746, hits: 1)
- IC 3515 -> Item 434
- Creation code
- Refers to item: Line (location: source ID 35, line 331, chars 14397-14473, hits: 42515)
- IC 3515 -> Item 435
- Creation code
- Refers to item: Statement (location: source ID 35, line 331, chars 14397-14473, hits: 42515)
- IC 3516 -> Item 436
- Creation code
- Refers to item: Statement (location: source ID 35, line 331, chars 14431-14473, hits: 42515)
- IC 3614 -> Item 437
- Creation code
- Refers to item: Line (location: source ID 35, line 332, chars 14483-14543, hits: 42515)
- IC 3614 -> Item 438
- Creation code
- Refers to item: Statement (location: source ID 35, line 332, chars 14483-14543, hits: 42515)
- IC 3616 -> Item 439
- Creation code
- Refers to item: Statement (location: source ID 35, line 332, chars 14505-14543, hits: 42515)
- IC 3775 -> Item 440
- Creation code
- Refers to item: Line (location: source ID 35, line 336, chars 14634-14708, hits: 42515)
- IC 3775 -> Item 441
- Creation code
- Refers to item: Statement (location: source ID 35, line 336, chars 14634-14708, hits: 42515)
- IC 3775 -> Item 442
- Creation code
- Refers to item: Statement (location: source ID 35, line 336, chars 14641-14708, hits: 42515)
- IC 536 -> Item 443
- Creation code
- Refers to item: Function "getAccountInformation" (location: source ID 35, line 339, chars 14752-14988, hits: 10798)
- IC 1597 -> Item 444
- Creation code
- Refers to item: Line (location: source ID 35, line 344, chars 14912-14981, hits: 10798)
- IC 1597 -> Item 445
- Creation code
- Refers to item: Statement (location: source ID 35, line 344, chars 14912-14981, hits: 10798)
- IC 767 -> Item 446
- Creation code
- Refers to item: Function "getCollateralTokens" (location: source ID 35, line 347, chars 14994-15108, hits: 2)
- IC 2981 -> Item 447
- Creation code
- Refers to item: Line (location: source ID 35, line 348, chars 15076-15101, hits: 2)
- IC 2981 -> Item 448
- Creation code
- Refers to item: Statement (location: source ID 35, line 348, chars 15076-15101, hits: 2)
- IC 458 -> Item 449
- Creation code
- Refers to item: Function "getCollateralTokensPriceFeed" (location: source ID 35, line 351, chars 15114-15242, hits: 2)
- IC 1482 -> Item 450
- Creation code
- Refers to item: Line (location: source ID 35, line 352, chars 15209-15235, hits: 2)
- IC 1482 -> Item 451
- Creation code
- Refers to item: Statement (location: source ID 35, line 352, chars 15209-15235, hits: 2)
- IC 350 -> Item 452
- Creation code
- Refers to item: Function "getCollateralBalanceOfUser" (location: source ID 35, line 355, chars 15248-15411, hits: 10872)
- IC 1329 -> Item 453
- Creation code
- Refers to item: Line (location: source ID 35, line 356, chars 15363-15404, hits: 10872)
- IC 1329 -> Item 454
- Creation code
- Refers to item: Statement (location: source ID 35, line 356, chars 15363-15404, hits: 10872)
- IC 585 -> Item 455
- Creation code
- Refers to item: Function "getPrecision" (location: source ID 35, line 359, chars 15417-15506, hits: 0)
- IC 1630 -> Item 456
- Creation code
- Refers to item: Line (location: source ID 35, line 360, chars 15483-15499, hits: 0)
- IC 1630 -> Item 457
- Creation code
- Refers to item: Statement (location: source ID 35, line 360, chars 15483-15499, hits: 0)
- IC 428 -> Item 458
- Creation code
- Refers to item: Function "getLiquidationBonus" (location: source ID 35, line 363, chars 15512-15616, hits: 0)
- IC 1475 -> Item 459
- Creation code
- Refers to item: Line (location: source ID 35, line 364, chars 15585-15609, hits: 0)
- IC 1475 -> Item 460
- Creation code
- Refers to item: Statement (location: source ID 35, line 364, chars 15585-15609, hits: 0)
- IC 929 -> Item 461
- Creation code
- Refers to item: Function "getHealthFactor" (location: source ID 35, line 367, chars 15622-15736, hits: 0)
- IC 3932 -> Item 462
- Creation code
- Refers to item: Line (location: source ID 35, line 368, chars 15703-15729, hits: 0)
- IC 3932 -> Item 463
- Creation code
- Refers to item: Statement (location: source ID 35, line 368, chars 15703-15729, hits: 0)
- IC 3932 -> Item 464
- Creation code
- Refers to item: Statement (location: source ID 35, line 368, chars 15710-15729, hits: 0)
- IC 398 -> Item 465
- Creation code
- Refers to item: Function "getLiquidationThreshold" (location: source ID 35, line 371, chars 15742-15854, hits: 1)
- IC 1466 -> Item 466