-
Notifications
You must be signed in to change notification settings - Fork 0
/
coverage.txt
1931 lines (1776 loc) · 84.7 KB
/
coverage.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 128 files with Solc 0.8.24
Solc 0.8.24 finished in 6.86s
Compiler run successful!
Analysing contracts...
Running tests...
Ran 10 tests for test/unit/VotingPowerExchange.t.sol:VotingPowerExchangeUnitTest
[PASS] testCalculateBurningAmountFromVotingPower() (gas: 612604)
[PASS] testCalculateIncrementedBurningAmount() (gas: 104159)
[PASS] testCalculateIncrementedVotingPower() (gas: 130519)
[PASS] testCalculateVotingPowerFromBurnedAmount() (gas: 797586)
[PASS] testCalculateVotingPowerFromBurnedAmountRareCases() (gas: 51011)
[PASS] testCalculationOfVotingPowerMintingWhenMintedSeparately() (gas: 26269)
[PASS] testCalculationOfVotingPowerMintingWhenMintedSeparately2() (gas: 26421)
[PASS] testConstructorValidation() (gas: 119847)
[PASS] testSomeMoreSpecialCasesForCalculateVotingPowerFromBurnedAmount() (gas: 22437)
[PASS] testSpecialCasesForCalculateVotingPowerFromBurnedAmount() (gas: 22115)
Suite result: ok. 10 passed; 0 failed; 0 skipped; finished in 201.88ms (177.47ms CPU time)
Ran 15 tests for test/unit/ERC20UpgradeableTokenV1.t.sol:ERC20UpgradeableTokenV1Test
[PASS] testApprovingAllAndTransferFromAll() (gas: 67881)
[PASS] testApprovingAllAndTransferFromHalf() (gas: 90094)
[PASS] testApprovingAndTransferFrom() (gas: 70217)
[PASS] testApprovingSpending() (gas: 47204)
[PASS] testDefaultAdminCannotBeZero() (gas: 3404094)
[PASS] testFailingToBurnTokens() (gas: 35201)
[PASS] testGrantRoles() (gas: 63145)
[PASS] testGrantingAndRevokingRoles() (gas: 49891)
[PASS] testPausingAndUnpausingSuccessfully() (gas: 36164)
[PASS] testRolesAreSetCorrectly() (gas: 45900)
[PASS] testSendingTokens() (gas: 89772)
[PASS] testShowingBasicTokenInfo() (gas: 31607)
[PASS] testSucceedingToBurnTokens() (gas: 39063)
[PASS] testUpgradeabilityOfToken() (gas: 3680933)
[PASS] testWhenPausedNoMintingOrTransferringIsAllowed() (gas: 61788)
Suite result: ok. 15 passed; 0 failed; 0 skipped; finished in 671.18ms (40.75ms CPU time)
Ran 21 tests for test/unit/GovToken.t.sol:GovTokenTest
[PASS] testBurningCanBeDoneByBurner() (gas: 71425)
[PASS] testBurningCanBeDoneByNewBurner() (gas: 104676)
[PASS] testBurningCannotBeDoneByNonBurner() (gas: 31512)
[PASS] testClock() (gas: 14358)
[PASS] testClockMode() (gas: 11350)
[PASS] testDelegateBySig() (gas: 90761)
[PASS] testDelegates() (gas: 29514)
[PASS] testGovTokenDefaultAdminCannotBeZero() (gas: 98903)
[PASS] testInitialVotes() (gas: 28882)
[PASS] testMintingCanBeDoneByMinter() (gas: 95606)
[PASS] testMintingCanBeDoneByNewMinter() (gas: 126921)
[PASS] testMintingCannotBeDoneByNonMinter() (gas: 41757)
[PASS] testNonRoleCannotCallSetBurnedAmountOfUtilToken() (gas: 31075)
[PASS] testNonces() (gas: 67641)
[PASS] testSetBurnedAmountOfUtilTokenEvent() (gas: 77722)
[PASS] testTheRolesOfTheGovToken() (gas: 31013)
[PASS] testTheTokenInfos() (gas: 21406)
[PASS] testTokensAreNotTransferrable() (gas: 49053)
[PASS] testVotesAfterDelegateToOther() (gas: 141319)
[PASS] testVotesAfterSelfDelegate() (gas: 100610)
[PASS] testVotingPowerExchangeCanCallSetBurnedAmountOfUtilToken() (gas: 73352)
Suite result: ok. 21 passed; 0 failed; 0 skipped; finished in 903.53ms (114.33ms CPU time)
Ran 17 tests for test/unit/AmbassadorNft.t.sol:AmbassadorTest
[PASS] testBalanceOfBatchWorks() (gas: 26010)
[PASS] testBalanceOfWorks() (gas: 31180)
[PASS] testBurnBatchCanBeCalledByBurner() (gas: 75954)
[PASS] testBurnBatchWillFailByNonBurner() (gas: 85060)
[PASS] testBurningTokenSuccessfully() (gas: 115515)
[PASS] testBurningTokenWillFailByNonBurner() (gas: 127990)
[PASS] testBurningTokenWillSucceedByNewBurner() (gas: 140025)
[PASS] testConstructorWillRevertIfAdminIsZero() (gas: 49376)
[PASS] testMintBatchWillWork() (gas: 81972)
[PASS] testMintingTokenWillFailByNonMinter() (gas: 29783)
[PASS] testMintingTokenWillSucceedByNewMinter() (gas: 165748)
[PASS] testMintingTokensSuccessfully() (gas: 123301)
[PASS] testSetURI() (gas: 51205)
[PASS] testSetURIByNonUriSetter() (gas: 12128)
[PASS] testSupportsInterface() (gas: 16538)
[PASS] testTokenRoles() (gas: 39075)
[PASS] testTransferWillWork() (gas: 61413)
Suite result: ok. 17 passed; 0 failed; 0 skipped; finished in 916.58ms (39.40ms CPU time)
Ran 4 tests for test/integration/DAOGovernorTest.t.sol:DAOGovernorTest
[PASS] testBasicInfo() (gas: 39955)
[PASS] testCannotMintTokenWithoutDaoGovernance() (gas: 15097)
[PASS] testGovernorCanGetProposedAndGetCancelled() (gas: 307832)
[PASS] testGovernorCanGetProposedAndMintUtilityToken() (gas: 599801)
Suite result: ok. 4 passed; 0 failed; 0 skipped; finished in 1.07s (9.76ms CPU time)
Ran 59 tests for test/fuzz/FuzzVotingPowerExchange.t.sol:VotingPwoerExchangeTest
[PASS] testCalculateIncrementedVotingPower(uint256) (runs: 4104, μ: 20724, ~: 20079)
[PASS] testCalculateIncrementedVotingPower_0_to_10(uint256) (runs: 4104, μ: 20700, ~: 20033)
[PASS] testCalculateIncrementedVotingPower_100_to_110(uint256) (runs: 4104, μ: 20643, ~: 19997)
[PASS] testCalculateIncrementedVotingPower_10_to_110(uint256) (runs: 4104, μ: 21431, ~: 21491)
[PASS] testCalculateIncrementedVotingPower_10_to_20(uint256) (runs: 4104, μ: 20715, ~: 20060)
[PASS] testCalculateIncrementedVotingPower_20_to_30(uint256) (runs: 4104, μ: 20735, ~: 20082)
[PASS] testCalculateIncrementedVotingPower_30_to_40(uint256) (runs: 4104, μ: 20829, ~: 20178)
[PASS] testCalculateIncrementedVotingPower_40_to_50(uint256) (runs: 4104, μ: 20768, ~: 20122)
[PASS] testCalculateIncrementedVotingPower_50_to_60(uint256) (runs: 4104, μ: 20889, ~: 20238)
[PASS] testCalculateIncrementedVotingPower_60_to_70(uint256) (runs: 4104, μ: 20852, ~: 20215)
[PASS] testCalculateIncrementedVotingPower_70_to_80(uint256) (runs: 4104, μ: 20713, ~: 20065)
[PASS] testCalculateIncrementedVotingPower_80_to_90(uint256) (runs: 4104, μ: 20663, ~: 20021)
[PASS] testCalculateIncrementedVotingPower_90_to_100(uint256) (runs: 4104, μ: 20665, ~: 20024)
[PASS] testExchangeWithAnyAmountLessThan1e18WillRevert(uint256) (runs: 4100, μ: 41692, ~: 41692)
[PASS] testExchangeWithAnyAmountWhichIsInRangeWillSucceed(uint256) (runs: 4104, μ: 218340, ~: 218466)
[PASS] testExchangeWithAnyAmountWithinNewCapWillSucceed(uint256) (runs: 4104, μ: 229223, ~: 229377)
[PASS] testExchangeWithAnyExpirationWhichIsExpiredWillRevert(uint256) (runs: 4104, μ: 46557, ~: 47250)
[PASS] testExchangeWithAnyExpirationWhichIsNotExpiredWillSucceed(uint256) (runs: 4103, μ: 228136, ~: 228136)
[PASS] testExchangeWithAnyNonceWhichIsUsedWillRevert(bytes32) (runs: 4104, μ: 202877, ~: 202877)
[PASS] testExchangeWithAnyRoleWhoIsNotExchangerWillRevert(address) (runs: 4104, μ: 44206, ~: 44206)
[PASS] testExchangeWithAnySenderWhoIsNotTheSignerWillRevert(address) (runs: 4104, μ: 70231, ~: 70233)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_0_10(uint256) (runs: 4104, μ: 17869, ~: 17187)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_0_110(uint256) (runs: 4104, μ: 17856, ~: 17186)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_100_110(uint256) (runs: 4104, μ: 18594, ~: 18639)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_10_20(uint256) (runs: 4104, μ: 18569, ~: 18615)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_20_30(uint256) (runs: 4104, μ: 18548, ~: 18595)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_30_40(uint256) (runs: 4104, μ: 18618, ~: 18663)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_40_50(uint256) (runs: 4104, μ: 18638, ~: 18683)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_50_60(uint256) (runs: 4104, μ: 18639, ~: 18684)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_60_70(uint256) (runs: 4104, μ: 18616, ~: 18662)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_70_80(uint256) (runs: 4104, μ: 18574, ~: 18618)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_80_90(uint256) (runs: 4104, μ: 18617, ~: 18662)
[PASS] testFuzzCalculateBurningAmountFromVotingPower_90_100(uint256) (runs: 4104, μ: 18618, ~: 18663)
[PASS] testFuzzCalculateIncrementedBurningAmount_0_to_110(uint256) (runs: 4104, μ: 17928, ~: 17258)
[PASS] testFuzzCalculateIncrementedBurningAmount_100_to_110(uint256) (runs: 4104, μ: 17970, ~: 17288)
[PASS] testFuzzCalculateIncrementedBurningAmount_10_to_110(uint256) (runs: 4104, μ: 17999, ~: 17329)
[PASS] testFuzzCalculateIncrementedBurningAmount_20_to_110(uint256) (runs: 4104, μ: 17959, ~: 17288)
[PASS] testFuzzCalculateIncrementedBurningAmount_30_to_110(uint256) (runs: 4104, μ: 17937, ~: 17266)
[PASS] testFuzzCalculateIncrementedBurningAmount_40_to_110(uint256) (runs: 4104, μ: 18003, ~: 17332)
[PASS] testFuzzCalculateIncrementedBurningAmount_50_to_110(uint256) (runs: 4104, μ: 17938, ~: 17265)
[PASS] testFuzzCalculateIncrementedBurningAmount_60_to_110(uint256) (runs: 4104, μ: 17982, ~: 17308)
[PASS] testFuzzCalculateIncrementedBurningAmount_70_to_110(uint256) (runs: 4104, μ: 17961, ~: 17287)
[PASS] testFuzzCalculateIncrementedBurningAmount_80_to_110(uint256) (runs: 4104, μ: 17919, ~: 17244)
[PASS] testFuzzCalculateIncrementedBurningAmount_90_to_110(uint256) (runs: 4104, μ: 17988, ~: 17310)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount(uint256) (runs: 4104, μ: 20407, ~: 19752)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_0_925(uint256) (runs: 4104, μ: 20404, ~: 19731)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_12700_19625(uint256) (runs: 4104, μ: 21358, ~: 21399)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_19625_28050(uint256) (runs: 4104, μ: 21350, ~: 21402)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_28050_37975(uint256) (runs: 4104, μ: 21352, ~: 21401)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_3350_7275(uint256) (runs: 4104, μ: 21235, ~: 21270)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_37975_49400(uint256) (runs: 4104, μ: 21218, ~: 21251)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_49400_62325(uint256) (runs: 4104, μ: 21222, ~: 21271)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_62325_76750(uint256) (runs: 4104, μ: 21212, ~: 21252)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_7275_12700(uint256) (runs: 4104, μ: 21270, ~: 21330)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_76750_92675(uint256) (runs: 4104, μ: 21246, ~: 21275)
[PASS] testFuzzCalculateVotingPowerFromBurnedAmount_925_3350(uint256) (runs: 4104, μ: 21297, ~: 21361)
[PASS] testSetVotingPowerCap(uint256) (runs: 4100, μ: 25451, ~: 25451)
[PASS] testSetVotingPowerCap_revertWhenLowerThanExisting(uint256) (runs: 4100, μ: 18046, ~: 18046)
[PASS] testSetVotingPowerCap_revertWhenNonManagerCalled(address) (runs: 4104, μ: 17759, ~: 17759)
Suite result: ok. 59 passed; 0 failed; 0 skipped; finished in 28.74s (192.56s CPU time)
Ran 34 tests for test/integration/VotingPowerExchange.t.sol:VotingPowerExchangeTest
[PASS] testBasicVotingPowerExchangeInfo() (gas: 14590)
[PASS] testCalculateIncrementedBurningAmountWhenCurrentIsNotZero() (gas: 48619)
[PASS] testCalculateIncrementedBurningAmountWhenCurrentIsZero() (gas: 41986)
[PASS] testCalculationOfIncreasedVotingPowerWhenCurrentIsNotZero() (gas: 70426)
[PASS] testCalculationOfIncreasedVotingPowerWhenCurrentIsZero() (gas: 50901)
[PASS] testConstantValues() (gas: 11697)
[PASS] testConstructorOfVotingPowerExchange() (gas: 2236713)
[PASS] testExchangeFailCaseWhenAmountIsTooSmall() (gas: 41022)
[PASS] testExchangeFailCaseWhenNonceIsUsed() (gas: 202448)
[PASS] testExchangeFailCaseWhenSenderIsNotSigner() (gas: 67348)
[PASS] testExchangeFailCaseWhenSignatureExpired() (gas: 44099)
[PASS] testExchangeFailCaseWhenSignatureIsInvalid() (gas: 67050)
[PASS] testExchangeFailCaseWhenUserGotMoreThanVotingPowerCap() (gas: 133248)
[PASS] testExchangeFailsWhenSenderIsZeroAddress() (gas: 38841)
[PASS] testExchangeLargeAmountSuccessCase() (gas: 210242)
[PASS] testExchangeMediumAmountSuccessCase() (gas: 215165)
[PASS] testExchangeSmallAmountSuccessCase() (gas: 210504)
[PASS] testExchangeTwiceToCrossVotingPowerCapFailureCase() (gas: 249775)
[PASS] testExchangeTwiceToGetToVotingPowerCapSuccessCase() (gas: 304984)
[PASS] testExchangeVotingPowerCapSuccessCase() (gas: 221279)
[PASS] testGovTokenBasicInfo() (gas: 25278)
[PASS] testGovTokenNotBeingTransferrable() (gas: 68747)
[PASS] testReturnedSetupValues() (gas: 63204)
[PASS] testSettingVotingPowerCap() (gas: 25153)
[PASS] testSettingVotingPowerCapFails() (gas: 14249)
[PASS] testSettingVotingPowerCapFailsCase2() (gas: 23198)
[PASS] testTokensAccessRoles() (gas: 70485)
[PASS] testTokensBalanceOf() (gas: 27834)
[PASS] testTokensBurning() (gas: 86324)
[PASS] testUtilityTokenBasicInfo() (gas: 31675)
[PASS] testUtilityTokenCanBeTransferred() (gas: 88383)
[PASS] testUtilityTokensPausability() (gas: 76194)
[PASS] testVotingPowerCap() (gas: 11060)
[PASS] testVotingPowerExchangesRoles() (gas: 57604)
Suite result: ok. 34 passed; 0 failed; 0 skipped; finished in 28.74s (171.18ms CPU time)
Ran 7 test suites in 28.75s (61.25s CPU time): 160 tests passed, 0 failed, 0 skipped (160 total tests)
Uncovered for script/DeployContracts.s.sol:
- Branch (branch: 0, path: 1) (location: source ID 111, line 50, chars 1622-3019, hits: 0)
- Line (location: source ID 111, line 53, chars 1790-1812, hits: 0)
- Statement (location: source ID 111, line 53, chars 1790-1812, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 111, line 53, chars 1814-2414, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 111, line 53, chars 1786-3019, hits: 0)
- Line (location: source ID 111, line 54, chars 1828-1882, hits: 0)
- Statement (location: source ID 111, line 54, chars 1828-1882, hits: 0)
- Line (location: source ID 111, line 56, chars 1897-2403, hits: 0)
- Statement (location: source ID 111, line 56, chars 1897-2403, hits: 0)
- Line (location: source ID 111, line 69, chars 2424-2445, hits: 0)
- Statement (location: source ID 111, line 69, chars 2424-2445, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 111, line 69, chars 2447-3047, hits: 0)
- Line (location: source ID 111, line 70, chars 2461-2515, hits: 0)
- Statement (location: source ID 111, line 70, chars 2461-2515, hits: 0)
- Line (location: source ID 111, line 72, chars 2530-3036, hits: 0)
- Statement (location: source ID 111, line 72, chars 2530-3036, hits: 0)
- Function "deploymentsOnLocalNetwork" (location: source ID 111, line 91, chars 3144-5598, hits: 0)
Uncovered for src/AmbassadorNft.sol:
Uncovered for src/DaoGovernor.sol:
- Function "proposalThreshold" (location: source ID 113, line 79, chars 2817-2962, hits: 0)
Uncovered for src/ERC20UpgradeableTokenV1.sol:
Uncovered for src/GovToken.sol:
Uncovered for src/Timelock.sol:
Uncovered for src/VotingPowerExchange.sol:
Uncovered for test/integration/utils/VotingPowerExchangeTestHelper.t.sol:
Uncovered for test/mocks/ERC20UpgradeableTokenV2.sol:
- Function "setTreasury" (location: source ID 123, line 27, chars 900-1013, hits: 0)
- Line (location: source ID 123, line 28, chars 983-1006, hits: 0)
- Statement (location: source ID 123, line 28, chars 983-1006, hits: 0)
Anchors for Contract "IERC721TokenReceiver" (solc 0.8.24, source ID 19):
Anchors for Contract "AmbassadorTest" (solc 0.8.24, source ID 124):
Anchors for Contract "IAccessControl" (solc 0.8.24, source ID 38):
Anchors for Contract "IERC5805" (solc 0.8.24, source ID 54):
Anchors for Contract "IERC20UpgradeableTokenV1" (solc 0.8.24, source ID 116):
Anchors for Contract "UpgradeableBeacon" (solc 0.8.24, source ID 63):
Anchors for Contract "Timelock" (solc 0.8.24, source ID 117):
- IC 5 -> Item 352
- Runtime code
- Refers to item: Function "" (location: source ID 117, line 17, chars 727-900, hits: 4)
Anchors for Contract "ERC20" (solc 0.8.24, source ID 72):
Anchors for Contract "Initializable" (solc 0.8.24, source ID 25):
Anchors for Contract "IERC1271" (solc 0.8.24, source ID 50):
Anchors for Contract "UnsafeUpgrades" (solc 0.8.24, source ID 103):
Anchors for Contract "IERC20Errors" (solc 0.8.24, source ID 57):
Anchors for Contract "StdUtils" (solc 0.8.24, source ID 12):
Anchors for Contract "IERC1155MetadataURI" (solc 0.8.24, source ID 70):
Anchors for Contract "ECDSA" (solc 0.8.24, source ID 88):
Anchors for Contract "IBeacon" (solc 0.8.24, source ID 62):
Anchors for Contract "VotingPowerExchangeUnitTest" (solc 0.8.24, source ID 127):
Anchors for Contract "IERC721Receiver" (solc 0.8.24, source ID 79):
Anchors for Contract "Checkpoints" (solc 0.8.24, source ID 97):
Anchors for Contract "ScriptBase" (solc 0.8.24, source ID 0):
Anchors for Contract "Test" (solc 0.8.24, source ID 13):
Anchors for Contract "Ownable" (solc 0.8.24, source ID 39):
Anchors for Contract "IERC721Metadata" (solc 0.8.24, source ID 19):
Anchors for Contract "MockERC721" (solc 0.8.24, source ID 22):
Anchors for Contract "PausableUpgradeable" (solc 0.8.24, source ID 33):
Anchors for Contract "ProxyAdmin" (solc 0.8.24, source ID 64):
Anchors for Contract "IERC721Enumerable" (solc 0.8.24, source ID 19):
Anchors for Contract "NoncesUpgradeable" (solc 0.8.24, source ID 32):
Anchors for Contract "StdChains" (solc 0.8.24, source ID 3):
Anchors for Contract "ITransparentUpgradeableProxy" (solc 0.8.24, source ID 65):
Anchors for Contract "ERC20Burnable" (solc 0.8.24, source ID 74):
Anchors for Contract "IUpgradeableProxy" (solc 0.8.24, source ID 110):
Anchors for Contract "IERC5267" (solc 0.8.24, source ID 53):
Anchors for Contract "SafeCast" (solc 0.8.24, source ID 95):
Anchors for Contract "console" (solc 0.8.24, source ID 15):
Anchors for Contract "stdError" (solc 0.8.24, source ID 5):
Anchors for Contract "VotingPowerExchangeTestHelper" (solc 0.8.24, source ID 122):
- IC 448 -> Item 121
- Creation code
- Refers to item: Function "generateSignatureFromPrivateKey" (location: source ID 122, line 15, chars 564-1559, hits: 36946)
- IC 2271 -> Item 122
- Creation code
- Refers to item: Line (location: source ID 122, line 22, chars 798-834, hits: 36946)
- IC 2271 -> Item 123
- Creation code
- Refers to item: Statement (location: source ID 122, line 22, chars 798-834, hits: 36946)
- IC 2308 -> Item 124
- Creation code
- Refers to item: Statement (location: source ID 122, line 22, chars 815-834, hits: 36946)
- IC 2431 -> Item 125
- Creation code
- Refers to item: Line (location: source ID 122, line 23, chars 844-873, hits: 36946)
- IC 2431 -> Item 126
- Creation code
- Refers to item: Statement (location: source ID 122, line 23, chars 844-873, hits: 36946)
- IC 2494 -> Item 127
- Creation code
- Refers to item: Line (location: source ID 122, line 24, chars 883-980, hits: 36946)
- IC 2494 -> Item 128
- Creation code
- Refers to item: Statement (location: source ID 122, line 24, chars 883-980, hits: 36946)
- IC 2529 -> Item 129
- Creation code
- Refers to item: Statement (location: source ID 122, line 24, chars 904-980, hits: 36946)
- IC 2577 -> Item 130
- Creation code
- Refers to item: Line (location: source ID 122, line 26, chars 991-1344, hits: 36946)
- IC 2577 -> Item 131
- Creation code
- Refers to item: Statement (location: source ID 122, line 26, chars 991-1344, hits: 36946)
- IC 2579 -> Item 132
- Creation code
- Refers to item: Statement (location: source ID 122, line 26, chars 1017-1344, hits: 36946)
- IC 2780 -> Item 133
- Creation code
- Refers to item: Line (location: source ID 122, line 36, chars 1355-1431, hits: 36946)
- IC 2780 -> Item 134
- Creation code
- Refers to item: Statement (location: source ID 122, line 36, chars 1355-1431, hits: 36946)
- IC 2782 -> Item 135
- Creation code
- Refers to item: Statement (location: source ID 122, line 36, chars 1370-1431, hits: 36946)
- IC 2794 -> Item 136
- Creation code
- Refers to item: Line (location: source ID 122, line 38, chars 1442-1501, hits: 36946)
- IC 2794 -> Item 137
- Creation code
- Refers to item: Statement (location: source ID 122, line 38, chars 1442-1501, hits: 36946)
- IC 2835 -> Item 138
- Creation code
- Refers to item: Statement (location: source ID 122, line 38, chars 1476-1501, hits: 36946)
- IC 2964 -> Item 139
- Creation code
- Refers to item: Line (location: source ID 122, line 40, chars 1512-1552, hits: 36946)
- IC 2964 -> Item 140
- Creation code
- Refers to item: Statement (location: source ID 122, line 40, chars 1512-1552, hits: 36946)
- IC 250 -> Item 141
- Creation code
- Refers to item: Function "createDigest" (location: source ID 122, line 51, chars 1900-2624, hits: 4104)
- IC 740 -> Item 142
- Creation code
- Refers to item: Line (location: source ID 122, line 56, chars 2079-2176, hits: 4104)
- IC 740 -> Item 143
- Creation code
- Refers to item: Statement (location: source ID 122, line 56, chars 2079-2176, hits: 4104)
- IC 774 -> Item 144
- Creation code
- Refers to item: Statement (location: source ID 122, line 56, chars 2100-2176, hits: 4104)
- IC 822 -> Item 145
- Creation code
- Refers to item: Line (location: source ID 122, line 57, chars 2186-2539, hits: 4104)
- IC 822 -> Item 146
- Creation code
- Refers to item: Statement (location: source ID 122, line 57, chars 2186-2539, hits: 4104)
- IC 824 -> Item 147
- Creation code
- Refers to item: Statement (location: source ID 122, line 57, chars 2212-2539, hits: 4104)
- IC 1025 -> Item 148
- Creation code
- Refers to item: Line (location: source ID 122, line 66, chars 2549-2617, hits: 4104)
- IC 1025 -> Item 149
- Creation code
- Refers to item: Statement (location: source ID 122, line 66, chars 2549-2617, hits: 4104)
- IC 1025 -> Item 150
- Creation code
- Refers to item: Statement (location: source ID 122, line 66, chars 2556-2617, hits: 4104)
Anchors for Contract "IGovToken" (solc 0.8.24, source ID 116):
Anchors for Contract "IMulticall3" (solc 0.8.24, source ID 20):
Anchors for Contract "MockERC20" (solc 0.8.24, source ID 21):
Anchors for Contract "IAccessControl" (solc 0.8.24, source ID 36):
Anchors for Contract "Upgrades" (solc 0.8.24, source ID 103):
Anchors for Contract "StdStyle" (solc 0.8.24, source ID 10):
Anchors for Contract "VotingPwoerExchangeTest" (solc 0.8.24, source ID 119):
Anchors for Contract "IERC721" (solc 0.8.24, source ID 19):
Anchors for Contract "ERC20Upgradeable" (solc 0.8.24, source ID 27):
Anchors for Contract "DAOGovernorTest" (solc 0.8.24, source ID 120):
Anchors for Contract "Versions" (solc 0.8.24, source ID 107):
Anchors for Contract "ERC165" (solc 0.8.24, source ID 92):
Anchors for Contract "Utils" (solc 0.8.24, source ID 106):
Anchors for Contract "IERC20Permit" (solc 0.8.24, source ID 78):
Anchors for Contract "safeconsole" (solc 0.8.24, source ID 23):
Anchors for Contract "GovernorVotes" (solc 0.8.24, source ID 46):
Anchors for Contract "EIP712" (solc 0.8.24, source ID 89):
Anchors for Contract "ERC1967Proxy" (solc 0.8.24, source ID 58):
Anchors for Contract "GovernorSettings" (solc 0.8.24, source ID 44):
Anchors for Contract "EIP712Upgradeable" (solc 0.8.24, source ID 34):
Anchors for Contract "VotingPowerExchange" (solc 0.8.24, source ID 118):
- IC 6 -> Item 151
- Runtime code
- Refers to item: Function "" (location: source ID 118, line 66, chars 3140-3837, hits: 112)
- IC 341 -> Item 152
- Runtime code
- Refers to item: Line (location: source ID 118, line 69, chars 3313-3339, hits: 112)
- IC 341 -> Item 153
- Runtime code
- Refers to item: Statement (location: source ID 118, line 69, chars 3313-3339, hits: 112)
- IC 394 -> Item 154
- Runtime code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 118, line 69, chars 3341-3395, hits: 2)
- IC 394 -> Item 155
- Runtime code
- Refers to item: Statement (location: source ID 118, line 69, chars 3341-3395, hits: 2)
- IC 444 -> Item 156
- Runtime code
- Refers to item: Line (location: source ID 118, line 70, chars 3409-3463, hits: 110)
- IC 444 -> Item 157
- Runtime code
- Refers to item: Statement (location: source ID 118, line 70, chars 3409-3463, hits: 110)
- IC 444 -> Item 158
- Runtime code
- Refers to item: Statement (location: source ID 118, line 70, chars 3409-3432, hits: 110)
- IC 499 -> Item 159
- Runtime code
- Refers to item: Statement (location: source ID 118, line 70, chars 3436-3463, hits: 109)
- IC 554 -> Item 160
- Runtime code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 118, line 70, chars 3465-3542, hits: 2)
- IC 554 -> Item 161
- Runtime code
- Refers to item: Line (location: source ID 118, line 71, chars 3479-3531, hits: 2)
- IC 554 -> Item 162
- Runtime code
- Refers to item: Statement (location: source ID 118, line 71, chars 3479-3531, hits: 2)
- IC 604 -> Item 163
- Runtime code
- Refers to item: Line (location: source ID 118, line 74, chars 3552-3583, hits: 108)
- IC 604 -> Item 164
- Runtime code
- Refers to item: Statement (location: source ID 118, line 74, chars 3552-3583, hits: 108)
- IC 657 -> Item 165
- Runtime code
- Refers to item: Line (location: source ID 118, line 75, chars 3593-3647, hits: 108)
- IC 657 -> Item 166
- Runtime code
- Refers to item: Statement (location: source ID 118, line 75, chars 3593-3647, hits: 108)
- IC 710 -> Item 167
- Runtime code
- Refers to item: Line (location: source ID 118, line 76, chars 3657-3701, hits: 108)
- IC 710 -> Item 168
- Runtime code
- Refers to item: Statement (location: source ID 118, line 76, chars 3657-3701, hits: 108)
- IC 732 -> Item 169
- Runtime code
- Refers to item: Line (location: source ID 118, line 77, chars 3711-3744, hits: 108)
- IC 732 -> Item 170
- Runtime code
- Refers to item: Statement (location: source ID 118, line 77, chars 3711-3744, hits: 108)
- IC 783 -> Item 171
- Runtime code
- Refers to item: Line (location: source ID 118, line 78, chars 3754-3791, hits: 108)
- IC 783 -> Item 172
- Runtime code
- Refers to item: Statement (location: source ID 118, line 78, chars 3754-3791, hits: 108)
- IC 834 -> Item 173
- Runtime code
- Refers to item: Line (location: source ID 118, line 79, chars 3801-3830, hits: 108)
- IC 834 -> Item 174
- Runtime code
- Refers to item: Statement (location: source ID 118, line 79, chars 3801-3830, hits: 108)
- IC 1310 -> Item 244
- Runtime code
- Refers to item: Function "_setVotingPowerCap" (location: source ID 118, line 172, chars 8969-9129, hits: 8313)
- IC 1311 -> Item 245
- Runtime code
- Refers to item: Line (location: source ID 118, line 173, chars 9041-9073, hits: 8313)
- IC 1311 -> Item 246
- Runtime code
- Refers to item: Statement (location: source ID 118, line 173, chars 9041-9073, hits: 8313)
- IC 1318 -> Item 247
- Runtime code
- Refers to item: Line (location: source ID 118, line 174, chars 9083-9122, hits: 8313)
- IC 1318 -> Item 248
- Runtime code
- Refers to item: Statement (location: source ID 118, line 174, chars 9083-9122, hits: 8313)
- IC 613 -> Item 175
- Creation code
- Refers to item: Function "exchange" (location: source ID 118, line 98, chars 5073-7860, hits: 36947)
- IC 1595 -> Item 176
- Creation code
- Refers to item: Line (location: source ID 118, line 102, chars 5252-5272, hits: 32843)
- IC 1595 -> Item 177
- Creation code
- Refers to item: Statement (location: source ID 118, line 102, chars 5252-5272, hits: 32843)
- IC 1647 -> Item 178
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 118, line 102, chars 5274-5317, hits: 1)
- IC 1647 -> Item 179
- Creation code
- Refers to item: Statement (location: source ID 118, line 102, chars 5274-5317, hits: 1)
- IC 1697 -> Item 180
- Creation code
- Refers to item: Line (location: source ID 118, line 103, chars 5331-5344, hits: 32842)
- IC 1697 -> Item 181
- Creation code
- Refers to item: Statement (location: source ID 118, line 103, chars 5331-5344, hits: 32842)
- IC 1713 -> Item 182
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 118, line 103, chars 5346-5392, hits: 4101)
- IC 1713 -> Item 183
- Creation code
- Refers to item: Statement (location: source ID 118, line 103, chars 5346-5392, hits: 4101)
- IC 1763 -> Item 184
- Creation code
- Refers to item: Line (location: source ID 118, line 104, chars 5457-5490, hits: 28741)
- IC 1763 -> Item 185
- Creation code
- Refers to item: Statement (location: source ID 118, line 104, chars 5457-5490, hits: 28741)
- IC 1778 -> Item 186
- Creation code
- Refers to item: Branch (branch: 4, path: 0) (location: source ID 118, line 104, chars 5492-5534, hits: 4105)
- IC 1778 -> Item 187
- Creation code
- Refers to item: Statement (location: source ID 118, line 104, chars 5492-5534, hits: 4105)
- IC 1828 -> Item 188
- Creation code
- Refers to item: Line (location: source ID 118, line 105, chars 5548-5576, hits: 24636)
- IC 1828 -> Item 189
- Creation code
- Refers to item: Statement (location: source ID 118, line 105, chars 5548-5576, hits: 24636)
- IC 1836 -> Item 190
- Creation code
- Refers to item: Branch (branch: 5, path: 0) (location: source ID 118, line 105, chars 5578-5624, hits: 4105)
- IC 1836 -> Item 191
- Creation code
- Refers to item: Statement (location: source ID 118, line 105, chars 5578-5624, hits: 4105)
- IC 1886 -> Item 192
- Creation code
- Refers to item: Line (location: source ID 118, line 107, chars 5696-5751, hits: 20531)
- IC 1886 -> Item 193
- Creation code
- Refers to item: Statement (location: source ID 118, line 107, chars 5696-5751, hits: 20531)
- IC 1888 -> Item 194
- Creation code
- Refers to item: Statement (location: source ID 118, line 107, chars 5725-5751, hits: 20531)
- IC 2044 -> Item 195
- Creation code
- Refers to item: Line (location: source ID 118, line 108, chars 5765-5801, hits: 20531)
- IC 2044 -> Item 196
- Creation code
- Refers to item: Statement (location: source ID 118, line 108, chars 5765-5801, hits: 20531)
- IC 2053 -> Item 197
- Creation code
- Refers to item: Branch (branch: 6, path: 0) (location: source ID 118, line 108, chars 5803-5902, hits: 2)
- IC 2053 -> Item 198
- Creation code
- Refers to item: Line (location: source ID 118, line 109, chars 5817-5891, hits: 2)
- IC 2053 -> Item 199
- Creation code
- Refers to item: Statement (location: source ID 118, line 109, chars 5817-5891, hits: 2)
- IC 2114 -> Item 200
- Creation code
- Refers to item: Line (location: source ID 118, line 113, chars 5996-6107, hits: 20529)
- IC 2114 -> Item 201
- Creation code
- Refers to item: Statement (location: source ID 118, line 113, chars 5996-6107, hits: 20529)
- IC 2116 -> Item 202
- Creation code
- Refers to item: Statement (location: source ID 118, line 113, chars 6013-6107, hits: 20529)
- IC 2205 -> Item 203
- Creation code
- Refers to item: Line (location: source ID 118, line 114, chars 6121-6167, hits: 20529)
- IC 2205 -> Item 204
- Creation code
- Refers to item: Statement (location: source ID 118, line 114, chars 6121-6167, hits: 20529)
- IC 2320 -> Item 205
- Creation code
- Refers to item: Branch (branch: 7, path: 0) (location: source ID 118, line 114, chars 6169-6257, hits: 4106)
- IC 2320 -> Item 206
- Creation code
- Refers to item: Line (location: source ID 118, line 115, chars 6183-6246, hits: 4106)
- IC 2320 -> Item 207
- Creation code
- Refers to item: Statement (location: source ID 118, line 115, chars 6183-6246, hits: 4106)
- IC 2385 -> Item 208
- Creation code
- Refers to item: Line (location: source ID 118, line 119, chars 6331-6373, hits: 16423)
- IC 2385 -> Item 209
- Creation code
- Refers to item: Statement (location: source ID 118, line 119, chars 6331-6373, hits: 16423)
- IC 2490 -> Item 210
- Creation code
- Refers to item: Line (location: source ID 118, line 121, chars 6441-6511, hits: 16423)
- IC 2490 -> Item 211
- Creation code
- Refers to item: Statement (location: source ID 118, line 121, chars 6441-6511, hits: 16423)
- IC 2492 -> Item 212
- Creation code
- Refers to item: Statement (location: source ID 118, line 121, chars 6471-6511, hits: 16423)
- IC 2648 -> Item 213
- Creation code
- Refers to item: Line (location: source ID 118, line 125, chars 6682-6775, hits: 16423)
- IC 2648 -> Item 214
- Creation code
- Refers to item: Statement (location: source ID 118, line 125, chars 6682-6775, hits: 16423)
- IC 2650 -> Item 215
- Creation code
- Refers to item: Statement (location: source ID 118, line 125, chars 6715-6775, hits: 16423)
- IC 2662 -> Item 216
- Creation code
- Refers to item: Line (location: source ID 118, line 127, chars 6786-6821, hits: 16423)
- IC 2662 -> Item 217
- Creation code
- Refers to item: Statement (location: source ID 118, line 127, chars 6786-6821, hits: 16423)
- IC 2667 -> Item 218
- Creation code
- Refers to item: Line (location: source ID 118, line 129, chars 6927-6987, hits: 16423)
- IC 2667 -> Item 219
- Creation code
- Refers to item: Statement (location: source ID 118, line 129, chars 6927-6987, hits: 16423)
- IC 2670 -> Item 220
- Creation code
- Refers to item: Statement (location: source ID 118, line 129, chars 6927-6970, hits: 16423)
- IC 2688 -> Item 221
- Creation code
- Refers to item: Branch (branch: 8, path: 0) (location: source ID 118, line 129, chars 6989-7401, hits: 1)
- IC 2688 -> Item 222
- Creation code
- Refers to item: Line (location: source ID 118, line 131, chars 7130-7190, hits: 1)
- IC 2688 -> Item 223
- Creation code
- Refers to item: Statement (location: source ID 118, line 131, chars 7130-7190, hits: 1)
- IC 2704 -> Item 224
- Creation code
- Refers to item: Line (location: source ID 118, line 133, chars 7292-7390, hits: 1)
- IC 2704 -> Item 225
- Creation code
- Refers to item: Statement (location: source ID 118, line 133, chars 7292-7390, hits: 1)
- IC 2717 -> Item 226
- Creation code
- Refers to item: Line (location: source ID 118, line 137, chars 7458-7511, hits: 16423)
- IC 2717 -> Item 227
- Creation code
- Refers to item: Statement (location: source ID 118, line 137, chars 7458-7511, hits: 16423)
- IC 2858 -> Item 228
- Creation code
- Refers to item: Line (location: source ID 118, line 140, chars 7574-7659, hits: 16423)
- IC 2858 -> Item 229
- Creation code
- Refers to item: Statement (location: source ID 118, line 140, chars 7574-7659, hits: 16423)
- IC 3010 -> Item 230
- Creation code
- Refers to item: Line (location: source ID 118, line 143, chars 7722-7767, hits: 16423)
- IC 3010 -> Item 231
- Creation code
- Refers to item: Statement (location: source ID 118, line 143, chars 7722-7767, hits: 16423)
- IC 3151 -> Item 232
- Creation code
- Refers to item: Line (location: source ID 118, line 144, chars 7777-7853, hits: 16423)
- IC 3151 -> Item 233
- Creation code
- Refers to item: Statement (location: source ID 118, line 144, chars 7777-7853, hits: 16423)
- IC 884 -> Item 234
- Creation code
- Refers to item: Function "setVotingPowerCap" (location: source ID 118, line 152, chars 8050-8289, hits: 16412)
- IC 3844 -> Item 235
- Creation code
- Refers to item: Line (location: source ID 118, line 153, chars 8148-8181, hits: 12307)
- IC 3844 -> Item 236
- Creation code
- Refers to item: Statement (location: source ID 118, line 153, chars 8148-8181, hits: 12307)
- IC 3853 -> Item 237
- Creation code
- Refers to item: Branch (branch: 9, path: 0) (location: source ID 118, line 153, chars 8183-8237, hits: 4102)
- IC 3853 -> Item 238
- Creation code
- Refers to item: Statement (location: source ID 118, line 153, chars 8183-8237, hits: 4102)
- IC 3903 -> Item 239
- Creation code
- Refers to item: Line (location: source ID 118, line 154, chars 8247-8282, hits: 8205)
- IC 3903 -> Item 240
- Creation code
- Refers to item: Statement (location: source ID 118, line 154, chars 8247-8282, hits: 8205)
- IC 940 -> Item 241
- Creation code
- Refers to item: Function "authorizationState" (location: source ID 118, line 160, chars 8478-8631, hits: 8)
- IC 3952 -> Item 242
- Creation code
- Refers to item: Line (location: source ID 118, line 161, chars 8578-8624, hits: 28749)
- IC 3952 -> Item 243
- Creation code
- Refers to item: Statement (location: source ID 118, line 161, chars 8578-8624, hits: 28749)
- IC 5320 -> Item 244
- Creation code
- Refers to item: Function "_setVotingPowerCap" (location: source ID 118, line 172, chars 8969-9129, hits: 8313)
- IC 5321 -> Item 245
- Creation code
- Refers to item: Line (location: source ID 118, line 173, chars 9041-9073, hits: 8313)
- IC 5321 -> Item 246
- Creation code
- Refers to item: Statement (location: source ID 118, line 173, chars 9041-9073, hits: 8313)
- IC 5328 -> Item 247
- Creation code
- Refers to item: Line (location: source ID 118, line 174, chars 9083-9122, hits: 8313)
- IC 5328 -> Item 248
- Creation code
- Refers to item: Statement (location: source ID 118, line 174, chars 9083-9122, hits: 8313)
- IC 401 -> Item 249
- Creation code
- Refers to item: Function "calculateIncrementedVotingPower" (location: source ID 118, line 187, chars 9705-10033, hits: 65689)
- IC 1272 -> Item 250
- Creation code
- Refers to item: Line (location: source ID 118, line 192, chars 9870-10026, hits: 82112)
- IC 1272 -> Item 251
- Creation code
- Refers to item: Statement (location: source ID 118, line 192, chars 9870-10026, hits: 82112)
- IC 1272 -> Item 252
- Creation code
- Refers to item: Statement (location: source ID 118, line 192, chars 9877-10026, hits: 82112)
- IC 1281 -> Item 253
- Creation code
- Refers to item: Statement (location: source ID 118, line 192, chars 9877-9954, hits: 82112)
- IC 1272 -> Item 254
- Creation code
- Refers to item: Line (location: source ID 118, line 193, chars 9969-10026, hits: 82112)
- IC 1272 -> Item 255
- Creation code
- Refers to item: Statement (location: source ID 118, line 193, chars 9969-10026, hits: 82112)
- IC 641 -> Item 256
- Creation code
- Refers to item: Function "calculateVotingPowerFromBurnedAmount" (location: source ID 118, line 204, chars 10574-11034, hits: 49365)
- IC 3247 -> Item 257
- Creation code
- Refers to item: Line (location: source ID 118, line 206, chars 10711-10760, hits: 213589)
- IC 3247 -> Item 258
- Creation code
- Refers to item: Statement (location: source ID 118, line 206, chars 10711-10760, hits: 213589)
- IC 3283 -> Item 259
- Creation code
- Refers to item: Line (location: source ID 118, line 208, chars 10813-10873, hits: 213589)
- IC 3283 -> Item 260
- Creation code
- Refers to item: Statement (location: source ID 118, line 208, chars 10813-10873, hits: 213589)
- IC 3290 -> Item 261
- Creation code
- Refers to item: Statement (location: source ID 118, line 208, chars 10832-10873, hits: 213589)
- IC 3290 -> Item 262
- Creation code
- Refers to item: Statement (location: source ID 118, line 208, chars 10832-10857, hits: 213589)
- IC 3290 -> Item 263
- Creation code
- Refers to item: Statement (location: source ID 118, line 208, chars 10836-10857, hits: 213589)
- IC 3323 -> Item 264
- Creation code
- Refers to item: Line (location: source ID 118, line 210, chars 10935-11004, hits: 213589)
- IC 3323 -> Item 265
- Creation code
- Refers to item: Statement (location: source ID 118, line 210, chars 10935-11004, hits: 213589)
- IC 3334 -> Item 266
- Creation code
- Refers to item: Statement (location: source ID 118, line 210, chars 10952-11004, hits: 213589)
- IC 3334 -> Item 267
- Creation code
- Refers to item: Statement (location: source ID 118, line 210, chars 10952-10992, hits: 213589)
- IC 3390 -> Item 268
- Creation code
- Refers to item: Line (location: source ID 118, line 211, chars 11014-11027, hits: 213589)
- IC 3390 -> Item 269
- Creation code
- Refers to item: Statement (location: source ID 118, line 211, chars 11014-11027, hits: 213589)
- IC 836 -> Item 270
- Creation code
- Refers to item: Function "calculateIncrementedBurningAmount" (location: source ID 118, line 221, chars 11451-11790, hits: 45170)
- IC 3755 -> Item 271
- Creation code
- Refers to item: Line (location: source ID 118, line 226, chars 11622-11783, hits: 45171)
- IC 3755 -> Item 272
- Creation code
- Refers to item: Statement (location: source ID 118, line 226, chars 11622-11783, hits: 45171)
- IC 3755 -> Item 273
- Creation code
- Refers to item: Statement (location: source ID 118, line 226, chars 11629-11783, hits: 45171)
- IC 3764 -> Item 274
- Creation code
- Refers to item: Statement (location: source ID 118, line 226, chars 11629-11711, hits: 45171)
- IC 3755 -> Item 275
- Creation code
- Refers to item: Line (location: source ID 118, line 227, chars 11726-11783, hits: 45171)
- IC 3755 -> Item 276
- Creation code
- Refers to item: Statement (location: source ID 118, line 227, chars 11726-11783, hits: 45171)
- IC 353 -> Item 277
- Creation code
- Refers to item: Function "calculateBurningAmountFromVotingPower" (location: source ID 118, line 236, chars 12071-12393, hits: 49348)
- IC 1174 -> Item 278
- Creation code
- Refers to item: Line (location: source ID 118, line 238, chars 12232-12328, hits: 139690)
- IC 1174 -> Item 279
- Creation code
- Refers to item: Statement (location: source ID 118, line 238, chars 12232-12328, hits: 139690)
- IC 1175 -> Item 280
- Creation code
- Refers to item: Statement (location: source ID 118, line 238, chars 12247-12328, hits: 139690)
- IC 1197 -> Item 281
- Creation code
- Refers to item: Statement (location: source ID 118, line 238, chars 12247-12303, hits: 139690)
- IC 1197 -> Item 282
- Creation code
- Refers to item: Statement (location: source ID 118, line 238, chars 12247-12291, hits: 139690)
- IC 1175 -> Item 283
- Creation code
- Refers to item: Statement (location: source ID 118, line 238, chars 12306-12328, hits: 139690)
- IC 1243 -> Item 284
- Creation code
- Refers to item: Line (location: source ID 118, line 239, chars 12338-12363, hits: 139690)
- IC 1243 -> Item 285
- Creation code
- Refers to item: Statement (location: source ID 118, line 239, chars 12338-12363, hits: 139690)
- IC 1245 -> Item 286
- Creation code
- Refers to item: Statement (location: source ID 118, line 239, chars 12355-12363, hits: 139690)
- IC 1260 -> Item 287
- Creation code
- Refers to item: Line (location: source ID 118, line 240, chars 12373-12386, hits: 139690)
- IC 1260 -> Item 288
- Creation code
- Refers to item: Statement (location: source ID 118, line 240, chars 12373-12386, hits: 139690)
- IC 449 -> Item 289
- Creation code
- Refers to item: Function "getVotingPowerCap" (location: source ID 118, line 247, chars 12550-12649, hits: 12304)
- IC 1321 -> Item 290
- Creation code
- Refers to item: Line (location: source ID 118, line 248, chars 12621-12642, hits: 12304)
- IC 1321 -> Item 291
- Creation code
- Refers to item: Statement (location: source ID 118, line 248, chars 12621-12642, hits: 12304)
- IC 773 -> Item 292
- Creation code
- Refers to item: Function "getConstants" (location: source ID 118, line 255, chars 12825-13175, hits: 1)
- IC 3716 -> Item 293
- Creation code
- Refers to item: Line (location: source ID 118, line 260, chars 13010-13050, hits: 1)
- IC 3716 -> Item 294
- Creation code
- Refers to item: Statement (location: source ID 118, line 260, chars 13010-13050, hits: 1)
- IC 3723 -> Item 295
- Creation code
- Refers to item: Line (location: source ID 118, line 261, chars 13060-13090, hits: 1)
- IC 3723 -> Item 296
- Creation code
- Refers to item: Statement (location: source ID 118, line 261, chars 13060-13090, hits: 1)
- IC 3727 -> Item 297
- Creation code
- Refers to item: Line (location: source ID 118, line 262, chars 13100-13136, hits: 1)
- IC 3727 -> Item 298
- Creation code
- Refers to item: Statement (location: source ID 118, line 262, chars 13100-13136, hits: 1)
- IC 3738 -> Item 299
- Creation code
- Refers to item: Line (location: source ID 118, line 263, chars 13146-13168, hits: 1)
- IC 3738 -> Item 300
- Creation code
- Refers to item: Statement (location: source ID 118, line 263, chars 13146-13168, hits: 1)
- IC 1018 -> Item 301
- Creation code
- Refers to item: Function "getTokenAddresses" (location: source ID 118, line 270, chars 13349-13536, hits: 1)
- IC 4093 -> Item 302
- Creation code
- Refers to item: Line (location: source ID 118, line 271, chars 13453-13490, hits: 1)
- IC 4093 -> Item 303
- Creation code
- Refers to item: Statement (location: source ID 118, line 271, chars 13453-13490, hits: 1)
- IC 4128 -> Item 304
- Creation code
- Refers to item: Line (location: source ID 118, line 272, chars 13500-13529, hits: 1)
- IC 4128 -> Item 305
- Creation code
- Refers to item: Statement (location: source ID 118, line 272, chars 13500-13529, hits: 1)
Anchors for Contract "GovernorTimelockControl" (solc 0.8.24, source ID 45):
Anchors for Contract "StdCheats" (solc 0.8.24, source ID 4):
Anchors for Contract "Votes" (solc 0.8.24, source ID 49):
Anchors for Contract "stdStorage" (solc 0.8.24, source ID 9):
Anchors for Contract "strings" (solc 0.8.24, source ID 100):
Anchors for Contract "SignatureChecker" (solc 0.8.24, source ID 91):
Anchors for Contract "ERC20BurnableUpgradeable" (solc 0.8.24, source ID 28):
Anchors for Contract "ERC20PausableUpgradeable" (solc 0.8.24, source ID 29):
Anchors for Contract "DoubleEndedQueue" (solc 0.8.24, source ID 98):
Anchors for Contract "stdMath" (solc 0.8.24, source ID 8):
Anchors for Contract "ERC1155Holder" (solc 0.8.24, source ID 71):
Anchors for Contract "AccessControlUpgradeable" (solc 0.8.24, source ID 24):
Anchors for Contract "StorageSlot" (solc 0.8.24, source ID 86):
Anchors for Contract "IProxyAdmin" (solc 0.8.24, source ID 108):
Anchors for Contract "DeployContracts" (solc 0.8.24, source ID 111):
- IC 703 -> Item 59
- Creation code
- Refers to item: Function "run" (location: source ID 111, line 48, chars 1531-3077, hits: 97)
- IC 5235 -> Item 60
- Creation code
- Refers to item: Line (location: source ID 111, line 50, chars 1626-1648, hits: 97)
- IC 5235 -> Item 61
- Creation code
- Refers to item: Statement (location: source ID 111, line 50, chars 1626-1648, hits: 97)
- IC 5245 -> Item 62
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 111, line 50, chars 1650-1780, hits: 97)
- IC 8205 -> Item 63
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 111, line 50, chars 1622-3019, hits: 0)
- IC 5245 -> Item 64
- Creation code
- Refers to item: Line (location: source ID 111, line 51, chars 1664-1719, hits: 97)
- IC 5245 -> Item 65
- Creation code
- Refers to item: Statement (location: source ID 111, line 51, chars 1664-1719, hits: 97)
- IC 5281 -> Item 66
- Creation code
- Refers to item: Line (location: source ID 111, line 52, chars 1733-1769, hits: 97)
- IC 5281 -> Item 67
- Creation code
- Refers to item: Statement (location: source ID 111, line 52, chars 1733-1769, hits: 97)
- IC 5964 -> Item 68
- Creation code
- Refers to item: Line (location: source ID 111, line 53, chars 1790-1812, hits: 0)
- IC 5964 -> Item 69
- Creation code
- Refers to item: Statement (location: source ID 111, line 53, chars 1790-1812, hits: 0)
- IC 5975 -> Item 70
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 111, line 53, chars 1814-2414, hits: 0)
- IC 8205 -> Item 71
- Creation code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 111, line 53, chars 1786-3019, hits: 0)
- IC 5975 -> Item 72
- Creation code
- Refers to item: Line (location: source ID 111, line 54, chars 1828-1882, hits: 0)
- IC 5975 -> Item 73
- Creation code
- Refers to item: Statement (location: source ID 111, line 54, chars 1828-1882, hits: 0)
- IC 6011 -> Item 74
- Creation code
- Refers to item: Line (location: source ID 111, line 56, chars 1897-2403, hits: 0)
- IC 6011 -> Item 75
- Creation code
- Refers to item: Statement (location: source ID 111, line 56, chars 1897-2403, hits: 0)
- IC 7446 -> Item 76
- Creation code
- Refers to item: Line (location: source ID 111, line 69, chars 2424-2445, hits: 0)
- IC 7446 -> Item 77