-
Notifications
You must be signed in to change notification settings - Fork 0
/
debug.txt
3096 lines (3015 loc) · 147 KB
/
debug.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
Ran 2 test suites in 3.89s (4.82s CPU time): 20 tests passed, 0 failed, 0 skipped (20 total tests)
Uncovered for script/DeployArtBlockVoting.s.sol:
- Function "run" (location: source ID 50, line 8, chars 208-444, hits: 0)
- Line (location: source ID 50, line 9, chars 240-278, hits: 0)
- Statement (location: source ID 50, line 9, chars 240-278, hits: 0)
- Line (location: source ID 50, line 12, chars 419-437, hits: 0)
- Statement (location: source ID 50, line 12, chars 419-437, hits: 0)
Uncovered for script/DeployMainEngine.s.sol:
Uncovered for src/ARTBlockVoting.sol:
- Branch (branch: 0, path: 0) (location: source ID 52, line 78, chars 2264-2333, hits: 0)
- Function "" (location: source ID 52, line 89, chars 2568-2737, hits: 0)
- Line (location: source ID 52, line 90, chars 2618-2656, hits: 0)
- Statement (location: source ID 52, line 90, chars 2618-2656, hits: 0)
- Line (location: source ID 52, line 91, chars 2666-2730, hits: 0)
- Statement (location: source ID 52, line 91, chars 2666-2730, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 52, line 101, chars 3081-3223, hits: 0)
- Line (location: source ID 52, line 102, chars 3160-3212, hits: 0)
- Statement (location: source ID 52, line 102, chars 3160-3212, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 52, line 105, chars 3233-3358, hits: 0)
- Line (location: source ID 52, line 106, chars 3291-3347, hits: 0)
- Statement (location: source ID 52, line 106, chars 3291-3347, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 52, line 124, chars 4002-4109, hits: 0)
- Line (location: source ID 52, line 125, chars 4042-4098, hits: 0)
- Statement (location: source ID 52, line 125, chars 4042-4098, hits: 0)
Uncovered for src/ArtBlockAMM.sol:
- Function "" (location: source ID 53, line 19, chars 451-572, hits: 0)
- Line (location: source ID 53, line 20, chars 507-531, hits: 0)
- Statement (location: source ID 53, line 20, chars 507-531, hits: 0)
- Line (location: source ID 53, line 21, chars 541-565, hits: 0)
- Statement (location: source ID 53, line 21, chars 541-565, hits: 0)
- Function "_mint" (location: source ID 53, line 24, chars 578-705, hits: 0)
- Line (location: source ID 53, line 25, chars 641-666, hits: 0)
- Statement (location: source ID 53, line 25, chars 641-666, hits: 0)
- Line (location: source ID 53, line 26, chars 676-698, hits: 0)
- Statement (location: source ID 53, line 26, chars 676-698, hits: 0)
- Function "_burn" (location: source ID 53, line 29, chars 711-842, hits: 0)
- Line (location: source ID 53, line 30, chars 776-803, hits: 0)
- Statement (location: source ID 53, line 30, chars 776-803, hits: 0)
- Line (location: source ID 53, line 31, chars 813-835, hits: 0)
- Statement (location: source ID 53, line 31, chars 813-835, hits: 0)
- Function "_update" (location: source ID 53, line 34, chars 848-978, hits: 0)
- Line (location: source ID 53, line 35, chars 921-941, hits: 0)
- Statement (location: source ID 53, line 35, chars 921-941, hits: 0)
- Line (location: source ID 53, line 36, chars 951-971, hits: 0)
- Statement (location: source ID 53, line 36, chars 951-971, hits: 0)
- Function "swap" (location: source ID 53, line 39, chars 984-1828, hits: 0)
- Line (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- Statement (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- Line (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- Statement (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- Line (location: source ID 53, line 43, chars 1226-1269, hits: 0)
- Statement (location: source ID 53, line 43, chars 1226-1269, hits: 0)
- Statement (location: source ID 53, line 43, chars 1242-1269, hits: 0)
- Line (location: source ID 53, line 44, chars 1279-1452, hits: 0)
- Statement (location: source ID 53, line 44, chars 1279-1452, hits: 0)
- Line (location: source ID 53, line 45, chars 1366-1452, hits: 0)
- Statement (location: source ID 53, line 45, chars 1366-1452, hits: 0)
- Line (location: source ID 53, line 47, chars 1463-1521, hits: 0)
- Statement (location: source ID 53, line 47, chars 1463-1521, hits: 0)
- Line (location: source ID 53, line 50, chars 1552-1602, hits: 0)
- Statement (location: source ID 53, line 50, chars 1552-1602, hits: 0)
- Statement (location: source ID 53, line 50, chars 1578-1602, hits: 0)
- Line (location: source ID 53, line 51, chars 1612-1686, hits: 0)
- Statement (location: source ID 53, line 51, chars 1612-1686, hits: 0)
- Line (location: source ID 53, line 53, chars 1697-1737, hits: 0)
- Statement (location: source ID 53, line 53, chars 1697-1737, hits: 0)
- Line (location: source ID 53, line 55, chars 1748-1821, hits: 0)
- Statement (location: source ID 53, line 55, chars 1748-1821, hits: 0)
- Function "addLiquidity" (location: source ID 53, line 58, chars 1834-2577, hits: 0)
- Line (location: source ID 53, line 59, chars 1936-1992, hits: 0)
- Statement (location: source ID 53, line 59, chars 1936-1992, hits: 0)
- Line (location: source ID 53, line 60, chars 2002-2058, hits: 0)
- Statement (location: source ID 53, line 60, chars 2002-2058, hits: 0)
- Line (location: source ID 53, line 62, chars 2073-2101, hits: 0)
- Statement (location: source ID 53, line 62, chars 2073-2101, hits: 0)
- Statement (location: source ID 53, line 62, chars 2073-2085, hits: 0)
- Statement (location: source ID 53, line 62, chars 2089-2101, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 53, line 62, chars 2069-2199, hits: 0)
- Branch (branch: 2, path: 1) (location: source ID 53, line 62, chars 2069-2199, hits: 0)
- Line (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- Statement (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- Branch (branch: 3, path: 1) (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- Line (location: source ID 53, line 66, chars 2213-2229, hits: 0)
- Statement (location: source ID 53, line 66, chars 2213-2229, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 53, line 66, chars 2209-2291, hits: 0)
- Branch (branch: 4, path: 1) (location: source ID 53, line 66, chars 2209-2387, hits: 0)
- Line (location: source ID 53, line 67, chars 2245-2280, hits: 0)
- Statement (location: source ID 53, line 67, chars 2245-2280, hits: 0)
- Line (location: source ID 53, line 69, chars 2311-2398, hits: 0)
- Statement (location: source ID 53, line 69, chars 2311-2398, hits: 0)
- Line (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- Statement (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- Branch (branch: 5, path: 0) (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- Branch (branch: 5, path: 1) (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- Line (location: source ID 53, line 72, chars 2461-2486, hits: 0)
- Statement (location: source ID 53, line 72, chars 2461-2486, hits: 0)
- Line (location: source ID 53, line 74, chars 2497-2570, hits: 0)
- Statement (location: source ID 53, line 74, chars 2497-2570, hits: 0)
- Function "removeLiquidity" (location: source ID 53, line 77, chars 2583-3147, hits: 0)
- Line (location: source ID 53, line 78, chars 2687-2733, hits: 0)
- Statement (location: source ID 53, line 78, chars 2687-2733, hits: 0)
- Statement (location: source ID 53, line 78, chars 2702-2733, hits: 0)
- Line (location: source ID 53, line 79, chars 2743-2789, hits: 0)
- Statement (location: source ID 53, line 79, chars 2743-2789, hits: 0)
- Statement (location: source ID 53, line 79, chars 2758-2789, hits: 0)
- Line (location: source ID 53, line 81, chars 2800-2840, hits: 0)
- Statement (location: source ID 53, line 81, chars 2800-2840, hits: 0)
- Line (location: source ID 53, line 82, chars 2850-2890, hits: 0)
- Statement (location: source ID 53, line 82, chars 2850-2890, hits: 0)
- Line (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- Statement (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- Branch (branch: 6, path: 1) (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- Line (location: source ID 53, line 85, chars 2972-2998, hits: 0)
- Statement (location: source ID 53, line 85, chars 2972-2998, hits: 0)
- Line (location: source ID 53, line 86, chars 3008-3047, hits: 0)
- Statement (location: source ID 53, line 86, chars 3008-3047, hits: 0)
- Line (location: source ID 53, line 88, chars 3058-3094, hits: 0)
- Statement (location: source ID 53, line 88, chars 3058-3094, hits: 0)
- Line (location: source ID 53, line 89, chars 3104-3140, hits: 0)
- Statement (location: source ID 53, line 89, chars 3104-3140, hits: 0)
- Function "_sqrt" (location: source ID 53, line 92, chars 3153-3454, hits: 0)
- Line (location: source ID 53, line 93, chars 3226-3231, hits: 0)
- Statement (location: source ID 53, line 93, chars 3226-3231, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 53, line 93, chars 3222-3400, hits: 0)
- Branch (branch: 7, path: 1) (location: source ID 53, line 93, chars 3222-3437, hits: 0)
- Line (location: source ID 53, line 94, chars 3247-3252, hits: 0)
- Statement (location: source ID 53, line 94, chars 3247-3252, hits: 0)
- Line (location: source ID 53, line 95, chars 3266-3287, hits: 0)
- Statement (location: source ID 53, line 95, chars 3266-3287, hits: 0)
- Statement (location: source ID 53, line 95, chars 3278-3287, hits: 0)
- Statement (location: source ID 53, line 95, chars 3278-3283, hits: 0)
- Line (location: source ID 53, line 96, chars 3308-3313, hits: 0)
- Statement (location: source ID 53, line 96, chars 3308-3313, hits: 0)
- Line (location: source ID 53, line 97, chars 3333-3338, hits: 0)
- Statement (location: source ID 53, line 97, chars 3333-3338, hits: 0)
- Line (location: source ID 53, line 98, chars 3356-3375, hits: 0)
- Statement (location: source ID 53, line 98, chars 3356-3375, hits: 0)
- Line (location: source ID 53, line 100, chars 3410-3416, hits: 0)
- Statement (location: source ID 53, line 100, chars 3410-3416, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 53, line 100, chars 3406-3448, hits: 0)
- Branch (branch: 8, path: 1) (location: source ID 53, line 100, chars 3406-3448, hits: 0)
- Line (location: source ID 53, line 101, chars 3432-3437, hits: 0)
- Statement (location: source ID 53, line 101, chars 3432-3437, hits: 0)
- Function "_min" (location: source ID 53, line 105, chars 3460-3565, hits: 0)
- Line (location: source ID 53, line 106, chars 3537-3558, hits: 0)
- Statement (location: source ID 53, line 106, chars 3537-3558, hits: 0)
- Statement (location: source ID 53, line 106, chars 3544-3558, hits: 0)
Uncovered for src/ArtBlockGovernance.sol:
- Function "onlyMainEngine" (location: source ID 54, line 71, chars 2316-2481, hits: 0)
- Line (location: source ID 54, line 72, chars 2356-2387, hits: 0)
- Statement (location: source ID 54, line 72, chars 2356-2387, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 54, line 72, chars 2352-2464, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 54, line 72, chars 2352-2464, hits: 0)
- Line (location: source ID 54, line 73, chars 2403-2453, hits: 0)
- Statement (location: source ID 54, line 73, chars 2403-2453, hits: 0)
- Function "onlyCommunityMember" (location: source ID 54, line 78, chars 2487-2721, hits: 0)
- Line (location: source ID 54, line 79, chars 2554-2630, hits: 0)
- Statement (location: source ID 54, line 79, chars 2554-2630, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 54, line 79, chars 2550-2704, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 54, line 79, chars 2550-2704, hits: 0)
- Line (location: source ID 54, line 80, chars 2646-2693, hits: 0)
- Statement (location: source ID 54, line 80, chars 2646-2693, hits: 0)
- Function "" (location: source ID 54, line 89, chars 2794-2929, hits: 0)
- Line (location: source ID 54, line 90, chars 2818-2848, hits: 0)
- Statement (location: source ID 54, line 90, chars 2818-2848, hits: 0)
- Line (location: source ID 54, line 91, chars 2858-2922, hits: 0)
- Statement (location: source ID 54, line 91, chars 2858-2922, hits: 0)
- Function "proposeRateChange" (location: source ID 54, line 104, chars 3271-3969, hits: 0)
- Line (location: source ID 54, line 112, chars 3475-3550, hits: 0)
- Statement (location: source ID 54, line 112, chars 3475-3550, hits: 0)
- Statement (location: source ID 54, line 112, chars 3493-3550, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 54, line 112, chars 3471-3623, hits: 0)
- Branch (branch: 2, path: 1) (location: source ID 54, line 112, chars 3471-3623, hits: 0)
- Line (location: source ID 54, line 113, chars 3566-3612, hits: 0)
- Statement (location: source ID 54, line 113, chars 3566-3612, hits: 0)
- Line (location: source ID 54, line 116, chars 3637-3687, hits: 0)
- Statement (location: source ID 54, line 116, chars 3637-3687, hits: 0)
- Statement (location: source ID 54, line 116, chars 3637-3660, hits: 0)
- Statement (location: source ID 54, line 116, chars 3664-3687, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 54, line 116, chars 3633-3754, hits: 0)
- Branch (branch: 3, path: 1) (location: source ID 54, line 116, chars 3633-3754, hits: 0)
- Line (location: source ID 54, line 117, chars 3703-3743, hits: 0)
- Statement (location: source ID 54, line 117, chars 3703-3743, hits: 0)
- Line (location: source ID 54, line 120, chars 3764-3814, hits: 0)
- Statement (location: source ID 54, line 120, chars 3764-3814, hits: 0)
- Line (location: source ID 54, line 121, chars 3824-3962, hits: 0)
- Statement (location: source ID 54, line 121, chars 3824-3962, hits: 0)
- Function "voteOnRateChange" (location: source ID 54, line 131, chars 4184-5112, hits: 0)
- Line (location: source ID 54, line 132, chars 4267-4310, hits: 0)
- Statement (location: source ID 54, line 132, chars 4267-4310, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 54, line 132, chars 4263-4386, hits: 0)
- Branch (branch: 4, path: 1) (location: source ID 54, line 132, chars 4263-4386, hits: 0)
- Line (location: source ID 54, line 133, chars 4326-4375, hits: 0)
- Statement (location: source ID 54, line 133, chars 4326-4375, hits: 0)
- Line (location: source ID 54, line 136, chars 4400-4467, hits: 0)
- Statement (location: source ID 54, line 136, chars 4400-4467, hits: 0)
- Branch (branch: 5, path: 0) (location: source ID 54, line 136, chars 4396-4534, hits: 0)
- Branch (branch: 5, path: 1) (location: source ID 54, line 136, chars 4396-4534, hits: 0)
- Line (location: source ID 54, line 137, chars 4483-4523, hits: 0)
- Statement (location: source ID 54, line 137, chars 4483-4523, hits: 0)
- Line (location: source ID 54, line 139, chars 4543-4667, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 54, line 139, chars 4543-4667, hits: 0)
- Branch (branch: 6, path: 1) (location: source ID 54, line 139, chars 4543-4667, hits: 0)
- Line (location: source ID 54, line 140, chars 4615-4656, hits: 0)
- Statement (location: source ID 54, line 140, chars 4615-4656, hits: 0)
- Line (location: source ID 54, line 143, chars 4677-4736, hits: 0)
- Statement (location: source ID 54, line 143, chars 4677-4736, hits: 0)
- Line (location: source ID 54, line 144, chars 4746-4926, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 54, line 144, chars 4746-4926, hits: 0)
- Branch (branch: 7, path: 1) (location: source ID 54, line 144, chars 4746-5096, hits: 0)
- Line (location: source ID 54, line 145, chars 4770-4915, hits: 0)
- Statement (location: source ID 54, line 145, chars 4770-4915, hits: 0)
- Line (location: source ID 54, line 148, chars 4946-5095, hits: 0)
- Statement (location: source ID 54, line 148, chars 4946-5095, hits: 0)
- Function "finalizeRateChange" (location: source ID 54, line 157, chars 5265-6368, hits: 0)
- Line (location: source ID 54, line 158, chars 5339-5382, hits: 0)
- Statement (location: source ID 54, line 158, chars 5339-5382, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 54, line 158, chars 5335-5458, hits: 0)
- Branch (branch: 8, path: 1) (location: source ID 54, line 158, chars 5335-5458, hits: 0)
- Line (location: source ID 54, line 159, chars 5398-5447, hits: 0)
- Statement (location: source ID 54, line 159, chars 5398-5447, hits: 0)
- Line (location: source ID 54, line 163, chars 5556-5622, hits: 0)
- Statement (location: source ID 54, line 163, chars 5556-5622, hits: 0)
- Branch (branch: 9, path: 0) (location: source ID 54, line 163, chars 5552-5691, hits: 0)
- Branch (branch: 9, path: 1) (location: source ID 54, line 163, chars 5552-5691, hits: 0)
- Line (location: source ID 54, line 164, chars 5638-5680, hits: 0)
- Statement (location: source ID 54, line 164, chars 5638-5680, hits: 0)
- Line (location: source ID 54, line 167, chars 5701-5827, hits: 0)
- Statement (location: source ID 54, line 167, chars 5701-5827, hits: 0)
- Line (location: source ID 54, line 168, chars 5734-5827, hits: 0)
- Statement (location: source ID 54, line 168, chars 5734-5827, hits: 0)
- Line (location: source ID 54, line 169, chars 5837-5913, hits: 0)
- Statement (location: source ID 54, line 169, chars 5837-5913, hits: 0)
- Statement (location: source ID 54, line 169, chars 5857-5913, hits: 0)
- Line (location: source ID 54, line 171, chars 5961-6049, hits: 0)
- Statement (location: source ID 54, line 171, chars 5961-6049, hits: 0)
- Statement (location: source ID 54, line 171, chars 5961-6037, hits: 0)
- Branch (branch: 10, path: 0) (location: source ID 54, line 171, chars 5957-6123, hits: 0)
- Branch (branch: 10, path: 1) (location: source ID 54, line 171, chars 5957-6123, hits: 0)
- Line (location: source ID 54, line 172, chars 6065-6112, hits: 0)
- Statement (location: source ID 54, line 172, chars 6065-6112, hits: 0)
- Line (location: source ID 54, line 175, chars 6133-6264, hits: 0)
- Statement (location: source ID 54, line 175, chars 6133-6264, hits: 0)
- Line (location: source ID 54, line 177, chars 6274-6361, hits: 0)
- Statement (location: source ID 54, line 177, chars 6274-6361, hits: 0)
- Function "updateCommunityTokenRate" (location: source ID 54, line 185, chars 6580-6802, hits: 0)
- Line (location: source ID 54, line 186, chars 6689-6733, hits: 0)
- Statement (location: source ID 54, line 186, chars 6689-6733, hits: 0)
- Line (location: source ID 54, line 187, chars 6743-6795, hits: 0)
- Statement (location: source ID 54, line 187, chars 6743-6795, hits: 0)
- Function "initializeRateChangeProposal" (location: source ID 54, line 202, chars 7242-7867, hits: 0)
- Line (location: source ID 54, line 211, chars 7471-7537, hits: 0)
- Statement (location: source ID 54, line 211, chars 7471-7537, hits: 0)
- Line (location: source ID 54, line 212, chars 7547-7609, hits: 0)
- Statement (location: source ID 54, line 212, chars 7547-7609, hits: 0)
- Line (location: source ID 54, line 213, chars 7619-7683, hits: 0)
- Statement (location: source ID 54, line 213, chars 7619-7683, hits: 0)
- Line (location: source ID 54, line 214, chars 7693-7741, hits: 0)
- Statement (location: source ID 54, line 214, chars 7693-7741, hits: 0)
- Line (location: source ID 54, line 215, chars 7751-7801, hits: 0)
- Statement (location: source ID 54, line 215, chars 7751-7801, hits: 0)
- Line (location: source ID 54, line 216, chars 7811-7860, hits: 0)
- Statement (location: source ID 54, line 216, chars 7811-7860, hits: 0)
- Function "calculateVoteWeight" (location: source ID 54, line 225, chars 8104-8647, hits: 0)
- Line (location: source ID 54, line 226, chars 8219-8281, hits: 0)
- Statement (location: source ID 54, line 226, chars 8219-8281, hits: 0)
- Statement (location: source ID 54, line 226, chars 8248-8281, hits: 0)
- Line (location: source ID 54, line 227, chars 8291-8356, hits: 0)
- Statement (location: source ID 54, line 227, chars 8291-8356, hits: 0)
- Statement (location: source ID 54, line 227, chars 8319-8356, hits: 0)
- Line (location: source ID 54, line 228, chars 8366-8426, hits: 0)
- Statement (location: source ID 54, line 228, chars 8366-8426, hits: 0)
- Statement (location: source ID 54, line 228, chars 8397-8426, hits: 0)
- Line (location: source ID 54, line 229, chars 8476-8534, hits: 0)
- Statement (location: source ID 54, line 229, chars 8476-8534, hits: 0)
- Statement (location: source ID 54, line 229, chars 8506-8534, hits: 0)
- Line (location: source ID 54, line 230, chars 8583-8640, hits: 0)
- Statement (location: source ID 54, line 230, chars 8583-8640, hits: 0)
- Function "getCommunityTokenRate" (location: source ID 54, line 242, chars 8940-9085, hits: 0)
- Line (location: source ID 54, line 243, chars 9037-9078, hits: 0)
- Statement (location: source ID 54, line 243, chars 9037-9078, hits: 0)
- Function "isReadyForRateChange" (location: source ID 54, line 251, chars 9320-9503, hits: 0)
- Line (location: source ID 54, line 252, chars 9413-9496, hits: 0)
- Statement (location: source ID 54, line 252, chars 9413-9496, hits: 0)
- Statement (location: source ID 54, line 252, chars 9420-9496, hits: 0)
- Statement (location: source ID 54, line 252, chars 9439-9496, hits: 0)
- Function "isReadyToInitiateRateChange" (location: source ID 54, line 260, chars 9722-9960, hits: 0)
- Line (location: source ID 54, line 261, chars 9821-9953, hits: 0)
- Statement (location: source ID 54, line 261, chars 9821-9953, hits: 0)
- Statement (location: source ID 54, line 261, chars 9828-9953, hits: 0)
- Statement (location: source ID 54, line 261, chars 9828-9870, hits: 0)
- Line (location: source ID 54, line 262, chars 9886-9953, hits: 0)
- Statement (location: source ID 54, line 262, chars 9886-9953, hits: 0)
Uncovered for src/ArtBlockNFT.sol:
- Function "" (location: source ID 55, line 15, chars 569-656, hits: 0)
- Function "safeMint" (location: source ID 55, line 17, chars 662-912, hits: 0)
- Line (location: source ID 55, line 18, chars 758-790, hits: 0)
- Statement (location: source ID 55, line 18, chars 758-790, hits: 0)
- Statement (location: source ID 55, line 18, chars 776-790, hits: 0)
- Line (location: source ID 55, line 19, chars 800-822, hits: 0)
- Statement (location: source ID 55, line 19, chars 800-822, hits: 0)
- Line (location: source ID 55, line 20, chars 832-858, hits: 0)
- Statement (location: source ID 55, line 20, chars 832-858, hits: 0)
- Line (location: source ID 55, line 21, chars 868-905, hits: 0)
- Statement (location: source ID 55, line 21, chars 868-905, hits: 0)
- Function "safeTransfer" (location: source ID 55, line 24, chars 918-1054, hits: 0)
- Line (location: source ID 55, line 25, chars 1012-1047, hits: 0)
- Statement (location: source ID 55, line 25, chars 1012-1047, hits: 0)
- Function "getTokenId" (location: source ID 55, line 28, chars 1060-1177, hits: 0)
- Line (location: source ID 55, line 29, chars 1138-1170, hits: 0)
- Statement (location: source ID 55, line 29, chars 1138-1170, hits: 0)
- Function "_update" (location: source ID 55, line 34, chars 1251-1487, hits: 0)
- Line (location: source ID 55, line 43, chars 1441-1480, hits: 0)
- Statement (location: source ID 55, line 43, chars 1441-1480, hits: 0)
- Statement (location: source ID 55, line 43, chars 1448-1480, hits: 0)
- Function "_increaseBalance" (location: source ID 55, line 46, chars 1493-1650, hits: 0)
- Line (location: source ID 55, line 47, chars 1605-1643, hits: 0)
- Statement (location: source ID 55, line 47, chars 1605-1643, hits: 0)
- Function "tokenURI" (location: source ID 55, line 50, chars 1656-1809, hits: 0)
- Line (location: source ID 55, line 51, chars 1772-1802, hits: 0)
- Statement (location: source ID 55, line 51, chars 1772-1802, hits: 0)
- Statement (location: source ID 55, line 51, chars 1779-1802, hits: 0)
- Function "supportsInterface" (location: source ID 55, line 54, chars 1815-2038, hits: 0)
- Line (location: source ID 55, line 60, chars 1988-2031, hits: 0)
- Statement (location: source ID 55, line 60, chars 1988-2031, hits: 0)
- Statement (location: source ID 55, line 60, chars 1995-2031, hits: 0)
Uncovered for src/CustomERC20Token.sol:
- Branch (branch: 0, path: 0) (location: source ID 56, line 41, chars 1347-1461, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 56, line 41, chars 1347-1461, hits: 0)
- Line (location: source ID 56, line 42, chars 1392-1450, hits: 0)
- Statement (location: source ID 56, line 42, chars 1392-1450, hits: 0)
- Function "burnFrom" (location: source ID 56, line 79, chars 2850-2971, hits: 0)
- Line (location: source ID 56, line 80, chars 2942-2964, hits: 0)
- Statement (location: source ID 56, line 80, chars 2942-2964, hits: 0)
- Function "decimals" (location: source ID 56, line 88, chars 3239-3330, hits: 0)
- Line (location: source ID 56, line 89, chars 3314-3323, hits: 0)
- Statement (location: source ID 56, line 89, chars 3314-3323, hits: 0)
Uncovered for src/MainEngine.sol:
- Function "onlyDeployer" (location: source ID 57, line 158, chars 5972-6100, hits: 0)
- Line (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- Statement (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- Function "productExists" (location: source ID 57, line 164, chars 6166-6338, hits: 0)
- Line (location: source ID 57, line 165, chars 6221-6255, hits: 0)
- Statement (location: source ID 57, line 165, chars 6221-6255, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 57, line 165, chars 6217-6321, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 57, line 165, chars 6217-6321, hits: 0)
- Line (location: source ID 57, line 166, chars 6271-6310, hits: 0)
- Statement (location: source ID 57, line 166, chars 6271-6310, hits: 0)
- Function "productIsApproved" (location: source ID 57, line 172, chars 6409-6609, hits: 0)
- Line (location: source ID 57, line 173, chars 6468-6526, hits: 0)
- Statement (location: source ID 57, line 173, chars 6468-6526, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 57, line 173, chars 6464-6592, hits: 0)
- Branch (branch: 2, path: 1) (location: source ID 57, line 173, chars 6464-6592, hits: 0)
- Line (location: source ID 57, line 174, chars 6542-6581, hits: 0)
- Statement (location: source ID 57, line 174, chars 6542-6581, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 57, line 181, chars 6737-6963, hits: 0)
- Branch (branch: 3, path: 1) (location: source ID 57, line 181, chars 6737-6963, hits: 0)
- Line (location: source ID 57, line 185, chars 6918-6952, hits: 0)
- Statement (location: source ID 57, line 185, chars 6918-6952, hits: 0)
- Function "isOwner" (location: source ID 57, line 190, chars 6986-7171, hits: 0)
- Line (location: source ID 57, line 191, chars 7035-7084, hits: 0)
- Statement (location: source ID 57, line 191, chars 7035-7084, hits: 0)
- Branch (branch: 4, path: 0) (location: source ID 57, line 191, chars 7031-7154, hits: 0)
- Branch (branch: 4, path: 1) (location: source ID 57, line 191, chars 7031-7154, hits: 0)
- Line (location: source ID 57, line 192, chars 7100-7143, hits: 0)
- Statement (location: source ID 57, line 192, chars 7100-7143, hits: 0)
- Function "hasEnoughBalanceToBuy" (location: source ID 57, line 197, chars 7177-7432, hits: 0)
- Line (location: source ID 57, line 198, chars 7264-7349, hits: 0)
- Statement (location: source ID 57, line 198, chars 7264-7349, hits: 0)
- Statement (location: source ID 57, line 198, chars 7264-7318, hits: 0)
- Branch (branch: 5, path: 0) (location: source ID 57, line 198, chars 7260-7415, hits: 0)
- Branch (branch: 5, path: 1) (location: source ID 57, line 198, chars 7260-7415, hits: 0)
- Line (location: source ID 57, line 199, chars 7365-7404, hits: 0)
- Statement (location: source ID 57, line 199, chars 7365-7404, hits: 0)
- Function "canPostProductToSell" (location: source ID 57, line 204, chars 7438-7899, hits: 0)
- Line (location: source ID 57, line 205, chars 7500-7549, hits: 0)
- Statement (location: source ID 57, line 205, chars 7500-7549, hits: 0)
- Branch (branch: 6, path: 0) (location: source ID 57, line 205, chars 7496-7619, hits: 0)
- Branch (branch: 6, path: 1) (location: source ID 57, line 205, chars 7496-7619, hits: 0)
- Line (location: source ID 57, line 206, chars 7565-7608, hits: 0)
- Statement (location: source ID 57, line 206, chars 7565-7608, hits: 0)
- Line (location: source ID 57, line 208, chars 7628-7746, hits: 0)
- Branch (branch: 7, path: 0) (location: source ID 57, line 208, chars 7628-7746, hits: 0)
- Branch (branch: 7, path: 1) (location: source ID 57, line 208, chars 7628-7746, hits: 0)
- Line (location: source ID 57, line 209, chars 7692-7735, hits: 0)
- Statement (location: source ID 57, line 209, chars 7692-7735, hits: 0)
- Line (location: source ID 57, line 211, chars 7759-7812, hits: 0)
- Statement (location: source ID 57, line 211, chars 7759-7812, hits: 0)
- Branch (branch: 8, path: 0) (location: source ID 57, line 211, chars 7755-7882, hits: 0)
- Branch (branch: 8, path: 1) (location: source ID 57, line 211, chars 7755-7882, hits: 0)
- Line (location: source ID 57, line 212, chars 7828-7871, hits: 0)
- Statement (location: source ID 57, line 212, chars 7828-7871, hits: 0)
- Function "" (location: source ID 57, line 225, chars 8273-8417, hits: 0)
- Line (location: source ID 57, line 226, chars 8297-8325, hits: 0)
- Statement (location: source ID 57, line 226, chars 8297-8325, hits: 0)
- Line (location: source ID 57, line 227, chars 8335-8410, hits: 0)
- Statement (location: source ID 57, line 227, chars 8335-8410, hits: 0)
- Branch (branch: 10, path: 0) (location: source ID 57, line 272, chars 10330-10459, hits: 0)
- Line (location: source ID 57, line 273, chars 10408-10448, hits: 0)
- Statement (location: source ID 57, line 273, chars 10408-10448, hits: 0)
- Branch (branch: 12, path: 0) (location: source ID 57, line 293, chars 11215-11307, hits: 0)
- Line (location: source ID 57, line 294, chars 11257-11296, hits: 0)
- Statement (location: source ID 57, line 294, chars 11257-11296, hits: 0)
- Branch (branch: 13, path: 0) (location: source ID 57, line 301, chars 11572-11646, hits: 0)
- Line (location: source ID 57, line 302, chars 11600-11635, hits: 0)
- Statement (location: source ID 57, line 302, chars 11600-11635, hits: 0)
- Branch (branch: 14, path: 0) (location: source ID 57, line 316, chars 12185-12289, hits: 0)
- Line (location: source ID 57, line 317, chars 12239-12278, hits: 0)
- Statement (location: source ID 57, line 317, chars 12239-12278, hits: 0)
- Branch (branch: 15, path: 0) (location: source ID 57, line 335, chars 12991-13120, hits: 0)
- Line (location: source ID 57, line 336, chars 13066-13109, hits: 0)
- Statement (location: source ID 57, line 336, chars 13066-13109, hits: 0)
- Branch (branch: 16, path: 0) (location: source ID 57, line 342, chars 13308-13377, hits: 0)
- Function "canCalculateVotingResult" (location: source ID 57, line 430, chars 16791-17214, hits: 0)
- Line (location: source ID 57, line 431, chars 16880-16955, hits: 0)
- Statement (location: source ID 57, line 431, chars 16880-16955, hits: 0)
- Statement (location: source ID 57, line 431, chars 16898-16955, hits: 0)
- Line (location: source ID 57, line 432, chars 16965-17024, hits: 0)
- Statement (location: source ID 57, line 432, chars 16965-17024, hits: 0)
- Line (location: source ID 57, line 433, chars 17034-17207, hits: 0)
- Statement (location: source ID 57, line 433, chars 17034-17207, hits: 0)
- Statement (location: source ID 57, line 433, chars 17041-17207, hits: 0)
- Function "listProductToMarketPlace" (location: source ID 57, line 444, chars 17448-18139, hits: 0)
- Line (location: source ID 57, line 454, chars 17703-17750, hits: 0)
- Statement (location: source ID 57, line 454, chars 17703-17750, hits: 0)
- Line (location: source ID 57, line 455, chars 17764-17802, hits: 0)
- Statement (location: source ID 57, line 455, chars 17764-17802, hits: 0)
- Branch (branch: 19, path: 0) (location: source ID 57, line 455, chars 17760-18133, hits: 0)
- Branch (branch: 19, path: 1) (location: source ID 57, line 455, chars 17760-18133, hits: 0)
- Line (location: source ID 57, line 456, chars 17818-17993, hits: 0)
- Branch (branch: 20, path: 0) (location: source ID 57, line 456, chars 17818-17993, hits: 0)
- Branch (branch: 20, path: 1) (location: source ID 57, line 456, chars 17818-17993, hits: 0)
- Line (location: source ID 57, line 457, chars 17880-17978, hits: 0)
- Statement (location: source ID 57, line 457, chars 17880-17978, hits: 0)
- Line (location: source ID 57, line 459, chars 18006-18057, hits: 0)
- Statement (location: source ID 57, line 459, chars 18006-18057, hits: 0)
- Line (location: source ID 57, line 460, chars 18071-18122, hits: 0)
- Statement (location: source ID 57, line 460, chars 18071-18122, hits: 0)
- Function "buyProduct" (location: source ID 57, line 469, chars 18324-19801, hits: 0)
- Line (location: source ID 57, line 478, chars 18564-18611, hits: 0)
- Statement (location: source ID 57, line 478, chars 18564-18611, hits: 0)
- Line (location: source ID 57, line 479, chars 18625-18703, hits: 0)
- Statement (location: source ID 57, line 479, chars 18625-18703, hits: 0)
- Branch (branch: 21, path: 0) (location: source ID 57, line 479, chars 18621-19795, hits: 0)
- Branch (branch: 21, path: 1) (location: source ID 57, line 479, chars 18621-19795, hits: 0)
- Line (location: source ID 57, line 480, chars 18723-18761, hits: 0)
- Statement (location: source ID 57, line 480, chars 18723-18761, hits: 0)
- Branch (branch: 22, path: 0) (location: source ID 57, line 480, chars 18719-19059, hits: 0)
- Branch (branch: 22, path: 1) (location: source ID 57, line 480, chars 18719-19148, hits: 0)
- Line (location: source ID 57, line 481, chars 18781-18881, hits: 0)
- Statement (location: source ID 57, line 481, chars 18781-18881, hits: 0)
- Line (location: source ID 57, line 482, chars 18899-19044, hits: 0)
- Statement (location: source ID 57, line 482, chars 18899-19044, hits: 0)
- Line (location: source ID 57, line 486, chars 19083-19177, hits: 0)
- Statement (location: source ID 57, line 486, chars 19083-19177, hits: 0)
- Line (location: source ID 57, line 489, chars 19206-19458, hits: 0)
- Branch (branch: 23, path: 0) (location: source ID 57, line 489, chars 19206-19458, hits: 0)
- Branch (branch: 23, path: 1) (location: source ID 57, line 489, chars 19206-19458, hits: 0)
- Line (location: source ID 57, line 490, chars 19268-19443, hits: 0)
- Statement (location: source ID 57, line 490, chars 19268-19443, hits: 0)
- Line (location: source ID 57, line 495, chars 19472-19520, hits: 0)
- Statement (location: source ID 57, line 495, chars 19472-19520, hits: 0)
- Line (location: source ID 57, line 496, chars 19534-19586, hits: 0)
- Statement (location: source ID 57, line 496, chars 19534-19586, hits: 0)
- Line (location: source ID 57, line 497, chars 19600-19652, hits: 0)
- Statement (location: source ID 57, line 497, chars 19600-19652, hits: 0)
- Line (location: source ID 57, line 499, chars 19667-19728, hits: 0)
- Statement (location: source ID 57, line 499, chars 19667-19728, hits: 0)
- Line (location: source ID 57, line 500, chars 19742-19784, hits: 0)
- Statement (location: source ID 57, line 500, chars 19742-19784, hits: 0)
- Function "sellProdToComm" (location: source ID 57, line 509, chars 19992-20821, hits: 0)
- Line (location: source ID 57, line 520, chars 20270-20319, hits: 0)
- Statement (location: source ID 57, line 520, chars 20270-20319, hits: 0)
- Statement (location: source ID 57, line 520, chars 20270-20314, hits: 0)
- Branch (branch: 24, path: 0) (location: source ID 57, line 520, chars 20266-20389, hits: 0)
- Branch (branch: 24, path: 1) (location: source ID 57, line 520, chars 20266-20389, hits: 0)
- Line (location: source ID 57, line 521, chars 20335-20378, hits: 0)
- Statement (location: source ID 57, line 521, chars 20335-20378, hits: 0)
- Line (location: source ID 57, line 524, chars 20399-20435, hits: 0)
- Statement (location: source ID 57, line 524, chars 20399-20435, hits: 0)
- Line (location: source ID 57, line 526, chars 20510-20608, hits: 0)
- Statement (location: source ID 57, line 526, chars 20510-20608, hits: 0)
- Line (location: source ID 57, line 527, chars 20618-20669, hits: 0)
- Statement (location: source ID 57, line 527, chars 20618-20669, hits: 0)
- Line (location: source ID 57, line 528, chars 20679-20730, hits: 0)
- Statement (location: source ID 57, line 528, chars 20679-20730, hits: 0)
- Line (location: source ID 57, line 531, chars 20777-20814, hits: 0)
- Statement (location: source ID 57, line 531, chars 20777-20814, hits: 0)
- Branch (branch: 25, path: 1) (location: source ID 57, line 545, chars 21283-21620, hits: 0)
- Line (location: source ID 57, line 549, chars 21473-21511, hits: 0)
- Statement (location: source ID 57, line 549, chars 21473-21511, hits: 0)
- Statement (location: source ID 57, line 549, chars 21480-21511, hits: 0)
- Function "increasePoints" (location: source ID 57, line 560, chars 21840-22027, hits: 0)
- Line (location: source ID 57, line 561, chars 21921-21966, hits: 0)
- Statement (location: source ID 57, line 561, chars 21921-21966, hits: 0)
- Line (location: source ID 57, line 562, chars 21976-22020, hits: 0)
- Statement (location: source ID 57, line 562, chars 21976-22020, hits: 0)
- Branch (branch: 26, path: 0) (location: source ID 57, line 575, chars 22669-22774, hits: 0)
- Line (location: source ID 57, line 576, chars 22709-22723, hits: 0)
- Statement (location: source ID 57, line 576, chars 22709-22723, hits: 0)
- Function "setGovernanceContract" (location: source ID 57, line 597, chars 23341-23471, hits: 0)
- Line (location: source ID 57, line 598, chars 23432-23464, hits: 0)
- Statement (location: source ID 57, line 598, chars 23432-23464, hits: 0)
- Function "setNFTContract" (location: source ID 57, line 605, chars 23609-23726, hits: 0)
- Line (location: source ID 57, line 606, chars 23686-23719, hits: 0)
- Statement (location: source ID 57, line 606, chars 23686-23719, hits: 0)
- Function "isCommunityMembr" (location: source ID 57, line 635, chars 24561-24715, hits: 0)
- Line (location: source ID 57, line 636, chars 24662-24708, hits: 0)
- Statement (location: source ID 57, line 636, chars 24662-24708, hits: 0)
- Branch (branch: 27, path: 0) (location: source ID 57, line 645, chars 24991-25059, hits: 0)
- Function "getTotalMemberOfCommunity" (location: source ID 57, line 649, chars 25115-25270, hits: 0)
- Line (location: source ID 57, line 650, chars 25214-25263, hits: 0)
- Statement (location: source ID 57, line 650, chars 25214-25263, hits: 0)
- Function "getUserActivityPoints" (location: source ID 57, line 653, chars 25276-25439, hits: 0)
- Line (location: source ID 57, line 654, chars 25385-25432, hits: 0)
- Statement (location: source ID 57, line 654, chars 25385-25432, hits: 0)
- Function "getCommunityActivityPoints" (location: source ID 57, line 657, chars 25445-25598, hits: 0)
- Line (location: source ID 57, line 658, chars 25545-25591, hits: 0)
- Statement (location: source ID 57, line 658, chars 25545-25591, hits: 0)
Anchors for Contract "CPAMM" (solc 0.8.24, source ID 53):
- IC 5 -> Item 516
- Runtime code
- Refers to item: Function "" (location: source ID 53, line 19, chars 451-572, hits: 0)
- IC 56 -> Item 517
- Runtime code
- Refers to item: Line (location: source ID 53, line 20, chars 507-531, hits: 0)
- IC 56 -> Item 518
- Runtime code
- Refers to item: Statement (location: source ID 53, line 20, chars 507-531, hits: 0)
- IC 108 -> Item 519
- Runtime code
- Refers to item: Line (location: source ID 53, line 21, chars 541-565, hits: 0)
- IC 108 -> Item 520
- Runtime code
- Refers to item: Statement (location: source ID 53, line 21, chars 541-565, hits: 0)
- IC 3850 -> Item 521
- Creation code
- Refers to item: Function "_mint" (location: source ID 53, line 24, chars 578-705, hits: 0)
- IC 3851 -> Item 522
- Creation code
- Refers to item: Line (location: source ID 53, line 25, chars 641-666, hits: 0)
- IC 3851 -> Item 523
- Creation code
- Refers to item: Statement (location: source ID 53, line 25, chars 641-666, hits: 0)
- IC 3937 -> Item 524
- Creation code
- Refers to item: Line (location: source ID 53, line 26, chars 676-698, hits: 0)
- IC 3937 -> Item 525
- Creation code
- Refers to item: Statement (location: source ID 53, line 26, chars 676-698, hits: 0)
- IC 3569 -> Item 526
- Creation code
- Refers to item: Function "_burn" (location: source ID 53, line 29, chars 711-842, hits: 0)
- IC 3570 -> Item 527
- Creation code
- Refers to item: Line (location: source ID 53, line 30, chars 776-803, hits: 0)
- IC 3570 -> Item 528
- Creation code
- Refers to item: Statement (location: source ID 53, line 30, chars 776-803, hits: 0)
- IC 3656 -> Item 529
- Creation code
- Refers to item: Line (location: source ID 53, line 31, chars 813-835, hits: 0)
- IC 3656 -> Item 530
- Creation code
- Refers to item: Statement (location: source ID 53, line 31, chars 813-835, hits: 0)
- IC 3684 -> Item 531
- Creation code
- Refers to item: Function "_update" (location: source ID 53, line 34, chars 848-978, hits: 0)
- IC 3685 -> Item 532
- Creation code
- Refers to item: Line (location: source ID 53, line 35, chars 921-941, hits: 0)
- IC 3685 -> Item 533
- Creation code
- Refers to item: Statement (location: source ID 53, line 35, chars 921-941, hits: 0)
- IC 3692 -> Item 534
- Creation code
- Refers to item: Line (location: source ID 53, line 36, chars 951-971, hits: 0)
- IC 3692 -> Item 535
- Creation code
- Refers to item: Statement (location: source ID 53, line 36, chars 951-971, hits: 0)
- IC 417 -> Item 536
- Creation code
- Refers to item: Function "swap" (location: source ID 53, line 39, chars 984-1828, hits: 0)
- IC 2336 -> Item 537
- Creation code
- Refers to item: Line (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- IC 2336 -> Item 538
- Creation code
- Refers to item: Statement (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- IC 2505 -> Item 539
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- IC 2563 -> Item 540
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 53, line 40, chars 1082-1166, hits: 0)
- IC 2564 -> Item 541
- Creation code
- Refers to item: Line (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- IC 2564 -> Item 542
- Creation code
- Refers to item: Statement (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- IC 2572 -> Item 543
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- IC 2630 -> Item 544
- Creation code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 53, line 41, chars 1176-1215, hits: 0)
- IC 2631 -> Item 545
- Creation code
- Refers to item: Line (location: source ID 53, line 43, chars 1226-1269, hits: 0)
- IC 2631 -> Item 546
- Creation code
- Refers to item: Statement (location: source ID 53, line 43, chars 1226-1269, hits: 0)
- IC 2633 -> Item 547
- Creation code
- Refers to item: Statement (location: source ID 53, line 43, chars 1242-1269, hits: 0)
- IC 2714 -> Item 548
- Creation code
- Refers to item: Line (location: source ID 53, line 44, chars 1279-1452, hits: 0)
- IC 2714 -> Item 549
- Creation code
- Refers to item: Statement (location: source ID 53, line 44, chars 1279-1452, hits: 0)
- IC 2720 -> Item 550
- Creation code
- Refers to item: Line (location: source ID 53, line 45, chars 1366-1452, hits: 0)
- IC 2720 -> Item 551
- Creation code
- Refers to item: Statement (location: source ID 53, line 45, chars 1366-1452, hits: 0)
- IC 2883 -> Item 552
- Creation code
- Refers to item: Line (location: source ID 53, line 47, chars 1463-1521, hits: 0)
- IC 2883 -> Item 553
- Creation code
- Refers to item: Statement (location: source ID 53, line 47, chars 1463-1521, hits: 0)
- IC 3012 -> Item 554
- Creation code
- Refers to item: Line (location: source ID 53, line 50, chars 1552-1602, hits: 0)
- IC 3012 -> Item 555
- Creation code
- Refers to item: Statement (location: source ID 53, line 50, chars 1552-1602, hits: 0)
- IC 3014 -> Item 556
- Creation code
- Refers to item: Statement (location: source ID 53, line 50, chars 1578-1602, hits: 0)
- IC 3043 -> Item 557
- Creation code
- Refers to item: Line (location: source ID 53, line 51, chars 1612-1686, hits: 0)
- IC 3043 -> Item 558
- Creation code
- Refers to item: Statement (location: source ID 53, line 51, chars 1612-1686, hits: 0)
- IC 3079 -> Item 559
- Creation code
- Refers to item: Line (location: source ID 53, line 53, chars 1697-1737, hits: 0)
- IC 3079 -> Item 560
- Creation code
- Refers to item: Statement (location: source ID 53, line 53, chars 1697-1737, hits: 0)
- IC 3206 -> Item 561
- Creation code
- Refers to item: Line (location: source ID 53, line 55, chars 1748-1821, hits: 0)
- IC 3206 -> Item 562
- Creation code
- Refers to item: Statement (location: source ID 53, line 55, chars 1748-1821, hits: 0)
- IC 369 -> Item 563
- Creation code
- Refers to item: Function "addLiquidity" (location: source ID 53, line 58, chars 1834-2577, hits: 0)
- IC 1395 -> Item 564
- Creation code
- Refers to item: Line (location: source ID 53, line 59, chars 1936-1992, hits: 0)
- IC 1395 -> Item 565
- Creation code
- Refers to item: Statement (location: source ID 53, line 59, chars 1936-1992, hits: 0)
- IC 1556 -> Item 566
- Creation code
- Refers to item: Line (location: source ID 53, line 60, chars 2002-2058, hits: 0)
- IC 1556 -> Item 567
- Creation code
- Refers to item: Statement (location: source ID 53, line 60, chars 2002-2058, hits: 0)
- IC 1717 -> Item 568
- Creation code
- Refers to item: Line (location: source ID 53, line 62, chars 2073-2101, hits: 0)
- IC 1717 -> Item 569
- Creation code
- Refers to item: Statement (location: source ID 53, line 62, chars 2073-2101, hits: 0)
- IC 1717 -> Item 570
- Creation code
- Refers to item: Statement (location: source ID 53, line 62, chars 2073-2085, hits: 0)
- IC 1728 -> Item 571
- Creation code
- Refers to item: Statement (location: source ID 53, line 62, chars 2089-2101, hits: 0)
- IC 1773 -> Item 572
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 53, line 62, chars 2069-2199, hits: 0)
- IC 1831 -> Item 573
- Creation code
- Refers to item: Branch (branch: 2, path: 1) (location: source ID 53, line 62, chars 2069-2199, hits: 0)
- IC 1740 -> Item 574
- Creation code
- Refers to item: Line (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- IC 1740 -> Item 575
- Creation code
- Refers to item: Statement (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- IC 1773 -> Item 576
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- IC 1831 -> Item 577
- Creation code
- Refers to item: Branch (branch: 3, path: 1) (location: source ID 53, line 63, chars 2117-2188, hits: 0)
- IC 1833 -> Item 578
- Creation code
- Refers to item: Line (location: source ID 53, line 66, chars 2213-2229, hits: 0)
- IC 1833 -> Item 579
- Creation code
- Refers to item: Statement (location: source ID 53, line 66, chars 2213-2229, hits: 0)
- IC 1843 -> Item 580
- Creation code
- Refers to item: Branch (branch: 4, path: 0) (location: source ID 53, line 66, chars 2209-2291, hits: 0)
- IC 1869 -> Item 581
- Creation code
- Refers to item: Branch (branch: 4, path: 1) (location: source ID 53, line 66, chars 2209-2387, hits: 0)
- IC 1843 -> Item 582
- Creation code
- Refers to item: Line (location: source ID 53, line 67, chars 2245-2280, hits: 0)
- IC 1843 -> Item 583
- Creation code
- Refers to item: Statement (location: source ID 53, line 67, chars 2245-2280, hits: 0)
- IC 1870 -> Item 584
- Creation code
- Refers to item: Line (location: source ID 53, line 69, chars 2311-2398, hits: 0)
- IC 1870 -> Item 585
- Creation code
- Refers to item: Statement (location: source ID 53, line 69, chars 2311-2398, hits: 0)
- IC 1935 -> Item 586
- Creation code
- Refers to item: Line (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- IC 1935 -> Item 587
- Creation code
- Refers to item: Statement (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- IC 1943 -> Item 588
- Creation code
- Refers to item: Branch (branch: 5, path: 0) (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- IC 2001 -> Item 589
- Creation code
- Refers to item: Branch (branch: 5, path: 1) (location: source ID 53, line 71, chars 2418-2451, hits: 0)
- IC 2002 -> Item 590
- Creation code
- Refers to item: Line (location: source ID 53, line 72, chars 2461-2486, hits: 0)
- IC 2002 -> Item 591
- Creation code
- Refers to item: Statement (location: source ID 53, line 72, chars 2461-2486, hits: 0)
- IC 2012 -> Item 592
- Creation code
- Refers to item: Line (location: source ID 53, line 74, chars 2497-2570, hits: 0)
- IC 2012 -> Item 593
- Creation code
- Refers to item: Statement (location: source ID 53, line 74, chars 2497-2570, hits: 0)
- IC 320 -> Item 594
- Creation code
- Refers to item: Function "removeLiquidity" (location: source ID 53, line 77, chars 2583-3147, hits: 0)
- IC 577 -> Item 595
- Creation code
- Refers to item: Line (location: source ID 53, line 78, chars 2687-2733, hits: 0)
- IC 577 -> Item 596
- Creation code
- Refers to item: Statement (location: source ID 53, line 78, chars 2687-2733, hits: 0)
- IC 579 -> Item 597
- Creation code
- Refers to item: Statement (location: source ID 53, line 78, chars 2702-2733, hits: 0)
- IC 735 -> Item 598
- Creation code
- Refers to item: Line (location: source ID 53, line 79, chars 2743-2789, hits: 0)
- IC 735 -> Item 599
- Creation code
- Refers to item: Statement (location: source ID 53, line 79, chars 2743-2789, hits: 0)
- IC 737 -> Item 600
- Creation code
- Refers to item: Statement (location: source ID 53, line 79, chars 2758-2789, hits: 0)
- IC 893 -> Item 601
- Creation code
- Refers to item: Line (location: source ID 53, line 81, chars 2800-2840, hits: 0)
- IC 893 -> Item 602
- Creation code
- Refers to item: Statement (location: source ID 53, line 81, chars 2800-2840, hits: 0)
- IC 920 -> Item 603
- Creation code
- Refers to item: Line (location: source ID 53, line 82, chars 2850-2890, hits: 0)
- IC 920 -> Item 604
- Creation code
- Refers to item: Statement (location: source ID 53, line 82, chars 2850-2890, hits: 0)
- IC 947 -> Item 605
- Creation code
- Refers to item: Line (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- IC 947 -> Item 606
- Creation code
- Refers to item: Statement (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- IC 967 -> Item 607
- Creation code
- Refers to item: Branch (branch: 6, path: 0) (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- IC 1025 -> Item 608
- Creation code
- Refers to item: Branch (branch: 6, path: 1) (location: source ID 53, line 83, chars 2900-2961, hits: 0)
- IC 1026 -> Item 609
- Creation code
- Refers to item: Line (location: source ID 53, line 85, chars 2972-2998, hits: 0)
- IC 1026 -> Item 610
- Creation code
- Refers to item: Statement (location: source ID 53, line 85, chars 2972-2998, hits: 0)
- IC 1036 -> Item 611
- Creation code
- Refers to item: Line (location: source ID 53, line 86, chars 3008-3047, hits: 0)
- IC 1036 -> Item 612
- Creation code
- Refers to item: Statement (location: source ID 53, line 86, chars 3008-3047, hits: 0)
- IC 1068 -> Item 613
- Creation code
- Refers to item: Line (location: source ID 53, line 88, chars 3058-3094, hits: 0)
- IC 1068 -> Item 614
- Creation code
- Refers to item: Statement (location: source ID 53, line 88, chars 3058-3094, hits: 0)
- IC 1227 -> Item 615
- Creation code
- Refers to item: Line (location: source ID 53, line 89, chars 3104-3140, hits: 0)
- IC 1227 -> Item 616
- Creation code
- Refers to item: Statement (location: source ID 53, line 89, chars 3104-3140, hits: 0)
- IC 3702 -> Item 617
- Creation code
- Refers to item: Function "_sqrt" (location: source ID 53, line 92, chars 3153-3454, hits: 0)
- IC 3705 -> Item 618
- Creation code
- Refers to item: Line (location: source ID 53, line 93, chars 3226-3231, hits: 0)
- IC 3705 -> Item 619
- Creation code
- Refers to item: Statement (location: source ID 53, line 93, chars 3226-3231, hits: 0)
- IC 3755 -> Item 620
- Creation code
- Refers to item: Branch (branch: 7, path: 0) (location: source ID 53, line 93, chars 3222-3400, hits: 0)
- IC 3818 -> Item 621
- Creation code
- Refers to item: Branch (branch: 7, path: 1) (location: source ID 53, line 93, chars 3222-3437, hits: 0)
- IC 3714 -> Item 622
- Creation code
- Refers to item: Line (location: source ID 53, line 94, chars 3247-3252, hits: 0)
- IC 3714 -> Item 623
- Creation code
- Refers to item: Statement (location: source ID 53, line 94, chars 3247-3252, hits: 0)
- IC 3717 -> Item 624
- Creation code
- Refers to item: Line (location: source ID 53, line 95, chars 3266-3287, hits: 0)
- IC 3717 -> Item 625
- Creation code
- Refers to item: Statement (location: source ID 53, line 95, chars 3266-3287, hits: 0)
- IC 3719 -> Item 626
- Creation code
- Refers to item: Statement (location: source ID 53, line 95, chars 3278-3287, hits: 0)
- IC 3721 -> Item 627
- Creation code
- Refers to item: Statement (location: source ID 53, line 95, chars 3278-3283, hits: 0)
- IC 3747 -> Item 628
- Creation code
- Refers to item: Line (location: source ID 53, line 96, chars 3308-3313, hits: 0)
- IC 3747 -> Item 629
- Creation code
- Refers to item: Statement (location: source ID 53, line 96, chars 3308-3313, hits: 0)
- IC 3755 -> Item 630
- Creation code
- Refers to item: Line (location: source ID 53, line 97, chars 3333-3338, hits: 0)
- IC 3755 -> Item 631
- Creation code
- Refers to item: Statement (location: source ID 53, line 97, chars 3333-3338, hits: 0)
- IC 3758 -> Item 632
- Creation code
- Refers to item: Line (location: source ID 53, line 98, chars 3356-3375, hits: 0)
- IC 3758 -> Item 633
- Creation code
- Refers to item: Statement (location: source ID 53, line 98, chars 3356-3375, hits: 0)
- IC 3806 -> Item 634
- Creation code
- Refers to item: Line (location: source ID 53, line 100, chars 3410-3416, hits: 0)
- IC 3806 -> Item 635
- Creation code
- Refers to item: Statement (location: source ID 53, line 100, chars 3410-3416, hits: 0)
- IC 3814 -> Item 636
- Creation code
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 53, line 100, chars 3406-3448, hits: 0)
- IC 3818 -> Item 637
- Creation code
- Refers to item: Branch (branch: 8, path: 1) (location: source ID 53, line 100, chars 3406-3448, hits: 0)
- IC 3814 -> Item 638
- Creation code
- Refers to item: Line (location: source ID 53, line 101, chars 3432-3437, hits: 0)
- IC 3814 -> Item 639
- Creation code
- Refers to item: Statement (location: source ID 53, line 101, chars 3432-3437, hits: 0)
- IC 3824 -> Item 640
- Creation code
- Refers to item: Function "_min" (location: source ID 53, line 105, chars 3460-3565, hits: 0)
- IC 3827 -> Item 641
- Creation code
- Refers to item: Line (location: source ID 53, line 106, chars 3537-3558, hits: 0)
- IC 3827 -> Item 642
- Creation code
- Refers to item: Statement (location: source ID 53, line 106, chars 3537-3558, hits: 0)
- IC 3827 -> Item 643
- Creation code
- Refers to item: Statement (location: source ID 53, line 106, chars 3544-3558, hits: 0)
Anchors for Contract "MainEngine" (solc 0.8.24, source ID 57):
- IC 46 -> Item 147
- Runtime code
- Refers to item: Function "" (location: source ID 57, line 225, chars 8273-8417, hits: 0)
- IC 60 -> Item 148
- Runtime code
- Refers to item: Line (location: source ID 57, line 226, chars 8297-8325, hits: 0)
- IC 60 -> Item 149
- Runtime code
- Refers to item: Statement (location: source ID 57, line 226, chars 8297-8325, hits: 0)
- IC 112 -> Item 150
- Runtime code
- Refers to item: Line (location: source ID 57, line 227, chars 8335-8410, hits: 0)
- IC 112 -> Item 151
- Runtime code
- Refers to item: Statement (location: source ID 57, line 227, chars 8335-8410, hits: 0)
- IC 3170 -> Item 86
- Creation code
- Refers to item: Function "onlyDeployer" (location: source ID 57, line 158, chars 5972-6100, hits: 0)
- IC 3170 -> Item 87
- Creation code
- Refers to item: Line (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- IC 3170 -> Item 88
- Creation code
- Refers to item: Statement (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- IC 15057 -> Item 89
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- IC 15117 -> Item 90
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 57, line 159, chars 6006-6082, hits: 0)
- IC 5614 -> Item 91
- Creation code
- Refers to item: Function "productExists" (location: source ID 57, line 164, chars 6166-6338, hits: 0)
- IC 5614 -> Item 92
- Creation code
- Refers to item: Line (location: source ID 57, line 165, chars 6221-6255, hits: 0)
- IC 5614 -> Item 93
- Creation code
- Refers to item: Statement (location: source ID 57, line 165, chars 6221-6255, hits: 0)
- IC 15337 -> Item 94
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 57, line 165, chars 6217-6321, hits: 0)
- IC 15386 -> Item 95
- Creation code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 57, line 165, chars 6217-6321, hits: 0)
- IC 5717 -> Item 96
- Creation code
- Refers to item: Line (location: source ID 57, line 166, chars 6271-6310, hits: 0)
- IC 5717 -> Item 97
- Creation code
- Refers to item: Statement (location: source ID 57, line 166, chars 6271-6310, hits: 0)
- IC 5768 -> Item 98
- Creation code
- Refers to item: Function "productIsApproved" (location: source ID 57, line 172, chars 6409-6609, hits: 0)
- IC 5768 -> Item 99
- Creation code
- Refers to item: Line (location: source ID 57, line 173, chars 6468-6526, hits: 0)
- IC 5768 -> Item 100
- Creation code
- Refers to item: Statement (location: source ID 57, line 173, chars 6468-6526, hits: 0)
- IC 15554 -> Item 101
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 57, line 173, chars 6464-6592, hits: 0)
- IC 15603 -> Item 102
- Creation code
- Refers to item: Branch (branch: 2, path: 1) (location: source ID 57, line 173, chars 6464-6592, hits: 0)
- IC 5934 -> Item 103
- Creation code
- Refers to item: Line (location: source ID 57, line 174, chars 6542-6581, hits: 0)
- IC 5934 -> Item 104
- Creation code
- Refers to item: Statement (location: source ID 57, line 174, chars 6542-6581, hits: 0)
- IC 4081 -> Item 105
- Creation code
- Refers to item: Function "votingTimePassed" (location: source ID 57, line 180, chars 6683-6980, hits: 2)
- IC 4081 -> Item 106
- Creation code
- Refers to item: Line (location: source ID 57, line 182, chars 6754-6893, hits: 2)