Merge pull request #212 from Liqwid-Labs/connor/audit-fix

Fix even more issues found by auditors
This commit is contained in:
emiflake 2022-11-29 20:41:47 +01:00 committed by GitHub
commit 2deba59d21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 271 additions and 229 deletions

View file

@ -6,6 +6,17 @@ This format is based on [Keep A Changelog](https://keepachangelog.com/en/1.0.0).
### Modified
- Fix several vulnerabilities and bugs found by auditors.
Including:
- Stake locks can be removed without retracting votes. This is a bug
introduced in the refactoring of `premoveLocks` by #209.
- Stake can retract all votes in its cooldown period.
- Inconsistent delegate authority checking may fail in some cases, where the
delegate votes with own and delegated stakes.
Included by [#212](https://github.com/Liqwid-Labs/agora/pull/212)
- Mitigate potential DDoS attack(voting and unlocking repeatedly)
We fix this issue by posing cooldown time while retracting votes, encoded in

View file

@ -310,9 +310,11 @@ unlock ps = builder
removeLocks v c =
filter $ \(ProposalLock pid action) ->
pid == defProposalId
&& case action of
Voted _ _ -> v
_ -> c
&& not
( case action of
Voted _ _ -> v
_ -> c
)
stakeOutputDatum =
stakeInputDatum

View file

@ -424,7 +424,7 @@ specs =
, Unlock.mkTestTree
"unlock an irrelevant stake"
(Unlock.mkUnockIrrelevantStakes nStakes)
(Unlock.Validity False True)
(Unlock.Validity False False)
, Unlock.mkTestTree
"creator: retract votes"
(Unlock.mkCreatorRetractVotes nStakes)

View file

@ -50,7 +50,6 @@ import Agora.Stake (
),
pstakeLocked,
)
import Data.Functor ((<&>))
import Plutarch.Api.V1.Address (PCredential)
import Plutarch.Api.V2 (PMaybeData, PPOSIXTime)
import Plutarch.Extra.Bool (passert)
@ -60,7 +59,7 @@ import "liqwid-plutarch-extra" Plutarch.Extra.List (
ptryDeleteFirstBy,
ptryFromSingleton,
)
import Plutarch.Extra.Maybe (pdjust, pdnothing, pjust, pmaybe, pmaybeData, pnothing)
import Plutarch.Extra.Maybe (pdjust, pdnothing, pmaybeData)
import Plutarch.Extra.Record (mkRecordConstr, (.&), (.=))
import "liqwid-plutarch-extra" Plutarch.Extra.TermCont (pguardC, pletC, pletFieldsC, pmatchC)
import Plutarch.Extra.Time (PCurrentTime (PCurrentTime))
@ -269,14 +268,14 @@ instance DerivePlutusType PRemoveLocksMode where
{- | Remove stake locks with the proposal id given the list of existing locks.
The first parameter controls whether to remove creator locks or not. If
one of the locks performed voting action, the unlock cooldown will be
checked if it's given.
checked.
-}
premoveLocks ::
forall (s :: S).
Term
s
( PProposalId
:--> PMaybe PPOSIXTime
:--> PPOSIXTime
:--> PProposalTime
:--> PRemoveLocksMode
:--> PBuiltinList (PAsData PProposalLock)
@ -293,31 +292,30 @@ premoveLocks =
( (pfield @"createdAt" #) ->
createdAt
) =
let notInCooldown =
pmaybe
# pconstant True
# plam (\c -> createdAt + c #<= lowerBound)
# unlockCooldown
in foldl1
(#||)
[ shouldRemoveAllLocks
, ptraceIfFalse "Stake lock in cooldown" notInCooldown
]
let notInCooldown = createdAt + unlockCooldown #<= lowerBound
in pif shouldRemoveAllLocks (pconstant True) $
-- Fail the transaction if a voter lock is in cooldown.
passert
"Voter lock shouldn't be in cooldown"
notInCooldown
(pconstant True)
handleLock =
plam $
flip
pletAll
( \lockF ->
foldl1
(#&&)
[ proposalId #== lockF.proposalId
, pmatch lockF.action $ \case
PVoted r -> handleVoter r
_ -> shouldRemoveAllLocks
]
)
. pfromData
shouldRemoveLock =
flip
pletAll
( \lockF ->
foldl1
(#&&)
[ proposalId #== lockF.proposalId
, pmatch lockF.action $ \case
PVoted r -> handleVoter r
_ -> shouldRemoveAllLocks
]
)
. pfromData
-- Return true, given a lock that should be kept.
handleLock = plam $ (pnot #) . shouldRemoveLock
pure $ pfilter # handleLock
@ -340,18 +338,13 @@ pretractVote = pvoteHelper #$ phoistAcyclic $
]
proposal
(mode, unlockCooldown) <-
pmatchC (proposalF.status #== pconstant Finished) <&> \case
PTrue ->
( pcon PRemoveAllLocks
, pnothing
)
_ ->
( pcon PRemoveVoterLockOnly
, pjust
#$ pfield @"minStakeVotingTime"
# proposalF.timingConfig
)
let unlockCooldown =
pfield @"minStakeVotingTime"
# proposalF.timingConfig
mode = pmatch (proposalF.status #== pconstant Finished) $ \case
PTrue -> pcon PRemoveAllLocks
_ -> pcon PRemoveVoterLockOnly
pguardC "Authorized by either opwner or delegatee" $
pisSignedBy # pconstant True # ctx

View file

@ -226,6 +226,23 @@ stakePolicy =
--------------------------------------------------------------------------------
data PAuthCheckHelper (s :: S) = PAuthCheckHelper
{ allHaveTheSameOwner :: Term s PBool
, allOwnByOrDelegatedToTheFirstOwner :: Term s PBool
, allOwnByOrDelegatedToTheFirstDelegatee :: Term s PBool
}
deriving stock
( Generic
)
deriving anyclass
( PlutusType
)
instance DerivePlutusType PAuthCheckHelper where
type DPTStrat _ = PlutusTypeScott
--------------------------------------------------------------------------------
{- | Create a stake validator, given the implementation of stake redeemers.
== Arguments
@ -345,43 +362,68 @@ mkStakeValidator impl sstSymbol pstClass gtClass =
authorizedBy <- pletC $ pauthorizedBy # authorizationContext txInfoF
PPair allHaveSameOwner allHaveSameOrOwnedByDelegatee <-
authCheckHelperF <-
pmatchC $
pfoldr
# plam
( \d p -> unTermCont $ do
dF <- pletFieldsC @'["owner", "delegatedTo"] d
( \stake helper -> unTermCont $ do
stakeF <- pletFieldsC @'["owner", "delegatedTo"] stake
helperF <- pmatchC helper
pure $
pmatch p $ \(PPair allHaveSameOwner allHaveSameDelegatee) ->
let allHaveSameOwner' =
allHaveSameOwner
#&& dF.owner
#== firstStakeInputDatumF.owner
allHaveSameOrOwnedByDelegatee' =
let delegated =
dF.delegatedTo #== firstStakeInputDatumF.delegatedTo
ownedByDelegatee =
pdata (pdjust # dF.owner)
#== firstStakeInputDatumF.delegatedTo
in allHaveSameDelegatee
#&& (delegated #|| ownedByDelegatee)
in pcon $ PPair allHaveSameOwner' allHaveSameOrOwnedByDelegatee'
haveTheSameOwnerAsTheFirstStake <-
pletC $
stakeF.owner #== firstStakeInputDatumF.owner
let ownerOfTheFirstStakeIsTheDelegatee =
haveTheSameOwnerAsTheFirstStake
#|| stakeF.delegatedTo
#== pdata (pdjust # firstStakeInputDatumF.owner)
delegateeOfTheFirstStakeIsTheDelegatee =
pdata (pdjust # stakeF.owner)
#== firstStakeInputDatumF.delegatedTo
#|| stakeF.delegatedTo
#== firstStakeInputDatumF.delegatedTo
helper' =
pcon $
PAuthCheckHelper
( helperF.allHaveTheSameOwner
#&& haveTheSameOwnerAsTheFirstStake
)
( helperF.allOwnByOrDelegatedToTheFirstOwner
#&& ownerOfTheFirstStakeIsTheDelegatee
)
( helperF.allOwnByOrDelegatedToTheFirstDelegatee
#&& delegateeOfTheFirstStakeIsTheDelegatee
)
pure helper'
)
# pcon
( PAuthCheckHelper
(pconstant True)
(pconstant True)
(pconstant True)
)
# pcon (PPair (pconstant True) (pconstant True))
# restOfStakeInputDatums
let ownerSignsTransaction =
allHaveSameOwner
authCheckHelperF.allHaveTheSameOwner
#&& authorizedBy
# firstStakeInputDatumF.owner
delegateSignsTransaction =
allHaveSameOrOwnedByDelegatee
#&& pmaybeData
# pconstant False
# plam ((authorizedBy #) . pfromData)
# pfromData firstStakeInputDatumF.delegatedTo
( authCheckHelperF.allOwnByOrDelegatedToTheFirstDelegatee
#&& pmaybeData
# pconstant False
# plam ((authorizedBy #) . pfromData)
# pfromData firstStakeInputDatumF.delegatedTo
)
#|| ( authCheckHelperF.allOwnByOrDelegatedToTheFirstOwner
#&& authorizedBy
# firstStakeInputDatumF.owner
)
signedBy =
pif

314
bench.csv
View file

@ -6,83 +6,83 @@ Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/govern
Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/effect validator should pass,149156621,399941,4851
Agora/Stake/policy/create/valid/stake owner: pub key,77468330,198844,3625
Agora/Stake/policy/create/valid/stake owner: script,90607586,237423,3660
Agora/Stake/validator/destroy/legal/One stake/stake validator,100744620,274835,8167
Agora/Stake/validator/destroy/legal/One stake/stake validator,100468620,273635,8122
Agora/Stake/validator/destroy/legal/One stake/stake policy,29665872,85956,3612
Agora/Stake/validator/destroy/legal/Multiple stake/stake validator,639511701,1565246,11420
Agora/Stake/validator/destroy/legal/Multiple stake/stake validator,665967222,1615013,11375
Agora/Stake/validator/destroy/legal/Multiple stake/stake policy,292337523,820464,6864
Agora/Stake/validator/destroy/illegal/Destroy locked stakes/stake policy,292337523,820464,6935
Agora/Stake/validator/destroy/illegal/not authorized by owner/stake policy,292337523,820464,6833
Agora/Stake/validator/destroy/illegal/not authorized by owner/stake policy,292337523,820464,6864
Agora/Stake/validator/stakeDepositWithdraw deposit,139642477,368480,8282
Agora/Stake/validator/stakeDepositWithdraw withdraw,139642477,368480,8274
Agora/Stake/validator/set delegate/override existing delegate,171170225,438309,8413
Agora/Stake/validator/set delegate/remove existing delegate,161835229,414921,8343
Agora/Stake/validator/set delegate/set delegate to something,168741237,431209,8343
Agora/Stake/validator/stakeDepositWithdraw deposit,139366477,367280,8237
Agora/Stake/validator/stakeDepositWithdraw withdraw,139366477,367280,8229
Agora/Stake/validator/set delegate/override existing delegate,170894225,437109,8368
Agora/Stake/validator/set delegate/remove existing delegate,161559229,413721,8298
Agora/Stake/validator/set delegate/set delegate to something,168465237,430009,8298
Agora/Proposal/policy (proposal creation)/legal/proposal,33965500,89285,2794
Agora/Proposal/policy (proposal creation)/legal/governor,286951289,757722,12319
Agora/Proposal/policy (proposal creation)/legal/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/legal/stake,300221720,754654,9090
Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/proposal,33965500,89285,2794
Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/stake,300221720,754654,9090
Agora/Proposal/policy (proposal creation)/illegal/use other's stake/proposal,33965500,89285,2763
Agora/Proposal/policy (proposal creation)/illegal/use other's stake/governor,286951289,757722,12288
Agora/Proposal/policy (proposal creation)/illegal/altered stake/proposal,33965500,89285,2794
Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/proposal,33965500,89285,2809
Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/governor,286951289,757722,12334
Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/proposal,33965500,89285,2818
Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/stake,316856972,802982,9171
Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/stake,316580972,801782,9126
Agora/Proposal/policy (proposal creation)/illegal/loose time range/proposal,33965500,89285,2794
Agora/Proposal/policy (proposal creation)/illegal/loose time range/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/illegal/loose time range/stake,300221720,754654,9090
Agora/Proposal/policy (proposal creation)/illegal/open time range/proposal,33965500,89285,2790
Agora/Proposal/policy (proposal creation)/illegal/open time range/stake,300497720,755854,9131
Agora/Proposal/policy (proposal creation)/illegal/open time range/stake,300221720,754654,9086
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/proposal,33965500,89285,2794
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/stake,300221720,754654,9090
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/proposal,33965500,89285,2794
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/stake,300221720,754654,9090
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/proposal,33965500,89285,2794
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/stake,300221720,754654,9090
Agora/Proposal/policy (proposal creation)/illegal/fake SST/proposal,33965500,89285,2701
Agora/Proposal/policy (proposal creation)/illegal/wrong governor redeemer/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/illegal/wrong governor redeemer/stake,300497720,755854,9135
Agora/Proposal/policy (proposal creation)/illegal/wrong governor redeemer/stake,300221720,754654,9090
Agora/Proposal/policy (proposal creation)/illegal/wrong governor redeemer/stake,300221720,754654,9090
Agora/Proposal/validator/cosignature/legal/proposal,211218458,586864,12534
Agora/Proposal/validator/cosignature/legal/stake,262516096,688466,8924
Agora/Proposal/validator/cosignature/illegal/insufficient staked amount/stake,262516096,688466,8924
Agora/Proposal/validator/cosignature/legal/stake,262240096,687266,8879
Agora/Proposal/validator/cosignature/illegal/insufficient staked amount/stake,262240096,687266,8879
Agora/Proposal/validator/cosignature/illegal/proposal locks not updated/proposal,211218458,586864,12527
Agora/Proposal/validator/cosignature/illegal/duplicate cosigners/stake,270695722,712030,8944
Agora/Proposal/validator/cosignature/illegal/cosigners not updated/stake,262516096,688466,8890
Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262516096,688466,8924
Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262516096,688466,8924
Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262516096,688466,8924
Agora/Proposal/validator/cosignature/illegal/duplicate cosigners/stake,270419722,710830,8899
Agora/Proposal/validator/cosignature/illegal/cosigners not updated/stake,262240096,687266,8845
Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262240096,687266,8879
Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262240096,687266,8879
Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake,262240096,687266,8879
Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/proposal,236746075,667092,12391
Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/stake,286719534,754693,8797
Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/stake,286443534,753493,8752
Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/proposal,236746075,667092,12391
Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/stake,293546429,771849,8797
Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/stake,293603985,771750,8752
Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/proposal,358011461,995038,13625
Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/stake,589841466,1479597,10031
Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/stake,595505804,1489723,9986
Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/proposal,358011461,995038,13625
Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/stake,596668361,1496753,10031
Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/stake,602666255,1507980,9986
Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/proposal,479276847,1322984,14858
Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/stake,892963398,2204501,11264
Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/stake,904568074,2225953,11219
Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/proposal,479276847,1322984,14858
Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/stake,899790293,2221657,11264
Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/stake,911728525,2244210,11219
Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/proposal,600542233,1650930,16091
Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/stake,1196085330,2929405,12497
Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/stake,1213630344,2962183,12452
Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/proposal,600542233,1650930,16091
Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/stake,1202912225,2946561,12497
Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/stake,1220790795,2980440,12452
Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/proposal,721807619,1978876,17323
Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/stake,1499207262,3654309,13729
Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/stake,1522692614,3698413,13684
Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/proposal,721807619,1978876,17323
Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/stake,1506034157,3671465,13729
Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/stake,1529853065,3716670,13684
Agora/Proposal/validator/voting/legal/transparent non-GT tokens/proposal,236746075,667092,12391
Agora/Proposal/validator/voting/legal/transparent non-GT tokens/stake,286719534,754693,8797
Agora/Proposal/validator/voting/legal/transparent non-GT tokens/stake,286443534,753493,8752
Agora/Proposal/validator/voting/legal/Delegatee vote with own and delegated stakes in one tx/proposal,476847859,1315884,14788
Agora/Proposal/validator/voting/legal/Delegatee vote with own and delegated stakes in one tx/stake,902897522,2219654,11194
Agora/Proposal/validator/voting/illegal/vote for nonexistent outcome/stake,286719534,754693,8805
Agora/Proposal/validator/voting/legal/Delegatee vote with own and delegated stakes in one tx/stake,913129149,2240878,11149
Agora/Proposal/validator/voting/illegal/vote for nonexistent outcome/stake,286443534,753493,8760
Agora/Proposal/validator/voting/illegal/unauthorized tx/proposal,236746075,667092,12391
Agora/Proposal/validator/voting/illegal/more than one proposals/stake,286719534,754693,8805
Agora/Proposal/validator/voting/illegal/more than one proposals/stake,286443534,753493,8760
Agora/Proposal/validator/voting/illegal/locks not added/proposal,479276847,1322984,14803
Agora/Proposal/validator/voting/illegal/attempt to burn stakes/proposal,441096352,1210784,13765
Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,286719534,754693,8792
Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,892963398,2204501,11242
Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,286443534,753493,8747
Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake,904568074,2225953,11197
Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal,250538195,701267,13003
Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal,229925297,644252,12766
Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal,243332930,671400,14099
@ -371,126 +371,120 @@ Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/wrong
Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/proposal,589464480,1615856,17103
Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/authority,91691192,229170,5969
Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/wrong governor redeemer/proposal,589464480,1615856,17103
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/stake,293224159,762702,9027
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/proposal,250729998,700174,12627
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/stake,300051054,779858,9027
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/proposal,250729998,700174,12627
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/stake,305673493,792301,9039
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/proposal,261958222,733268,12633
Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/stake,286343529,742697,9020
Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/proposal,194627614,541712,12624
Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/stake,290948981,754990,9032
Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/proposal,196700632,547308,12632
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/stake,582113987,1442022,10403
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/proposal,404537296,1122004,14003
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/stake,588940882,1459178,10403
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/proposal,404537296,1122004,14003
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/stake,634196981,1554399,10427
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/proposal,438221968,1221286,14021
Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/stake,562666017,1388031,10379
Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/proposal,264253492,713018,13983
Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/stake,576482373,1424910,10408
Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/proposal,270472546,729806,14008
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/stake,871003815,2121342,11778
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/proposal,558344594,1543834,15378
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/stake,877830710,2138498,11778
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/proposal,558344594,1543834,15378
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/stake,982367125,2347937,11814
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/proposal,614485714,1709304,15408
Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/stake,838988505,2033365,11739
Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/proposal,333879370,884324,15343
Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/stake,862015765,2094830,11783
Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/proposal,344244460,912304,15383
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/stake,1159893643,2800662,13153
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/proposal,712151892,1965664,16753
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/stake,1166720538,2817818,13153
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/proposal,712151892,1965664,16753
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/stake,1350183925,3172915,13201
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/proposal,790749460,2197322,16795
Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/stake,1115310993,2678699,13098
Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/proposal,403505248,1055630,16702
Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/stake,1147549157,2764750,13158
Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/proposal,418016374,1094802,16758
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/stake,1448783471,3479982,14529
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/proposal,865959190,2387494,18129
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/stake,1455610366,3497138,14529
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/proposal,865959190,2387494,18129
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/stake,1737647381,4029333,14589
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/proposal,967013206,2685340,18183
Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/stake,1391633481,3324033,14457
Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/proposal,473131126,1226936,18061
Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/stake,1433082549,3434670,14534
Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/proposal,491788288,1277300,18134
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/stake,1737673299,4159302,15905
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/proposal,1019766488,2809324,19505
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/stake,1744500194,4176458,15905
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/proposal,1019766488,2809324,19505
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/stake,2144757493,4917191,15977
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/proposal,1143276952,3173358,19571
Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/stake,1667955969,3969367,15818
Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/proposal,542757004,1398242,19422
Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/stake,1718615941,4104590,15910
Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/proposal,565560202,1459798,19510
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,292658670,761500,9027
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,293789648,763904,9027
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,290948981,754990,9027
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,192931147,538106,12624
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,201089148,557678,12624
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,194062125,540510,12624
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/unlock an irrelevant stake/stake,294561760,762166,9028
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/creator: retract votes/stake,287523038,741355,9008
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/change output stake value/proposal,250729998,700174,12624
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes in cooldown/proposal,261958222,733268,12633
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,581548498,1440820,10403
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,582679476,1443224,10403
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,576482373,1424910,10403
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,262557025,709412,13983
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,270715026,728984,13983
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,263688003,711816,13983
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/unlock an irrelevant stake/stake,600861782,1463994,10393
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/creator: retract votes/stake,579745616,1401561,10353
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/change output stake value/proposal,404537296,1122004,13993
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes in cooldown/proposal,438221968,1221286,14021
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,870438326,2120140,11778
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,871569304,2122544,11778
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,862015765,2094830,11778
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,332182903,880718,15343
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,340340904,900290,15343
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,333313881,883122,15343
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/unlock an irrelevant stake/stake,926808460,2197262,11759
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/creator: retract votes/stake,891614850,2093207,11699
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/change output stake value/proposal,558344594,1543834,15363
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes in cooldown/proposal,614485714,1709304,15408
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1159328154,2799460,13153
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1160459132,2801864,13153
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1147549157,2764750,13153
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,401808781,1052024,16702
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,409966782,1071596,16702
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,402939759,1054428,16702
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/unlock an irrelevant stake/stake,1272401794,2961970,13124
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/creator: retract votes/stake,1223130740,2816293,13044
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/change output stake value/proposal,712151892,1965664,16732
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes in cooldown/proposal,790749460,2197322,16795
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1448217982,3478780,14529
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1449348960,3481184,14529
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1433082549,3434670,14529
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,471434659,1223330,18061
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,479592660,1242902,18061
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,472565637,1225734,18061
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/unlock an irrelevant stake/stake,1637641784,3758118,14489
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/creator: retract votes/stake,1574293286,3570819,14389
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/change output stake value/proposal,865959190,2387494,18102
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes in cooldown/proposal,967013206,2685340,18183
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,1737107810,4158100,15905
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,1738238788,4160504,15905
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,1718615941,4104590,15905
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,541060537,1394636,19422
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,549218538,1414208,19422
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,542191515,1397040,19422
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/unlock an irrelevant stake/stake,2022528430,4585706,15856
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/creator: retract votes/stake,1945102488,4356785,15735
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/change output stake value/proposal,1019766488,2809324,19472
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes in cooldown/proposal,1143276952,3173358,19571
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/stake,290860386,749153,8971
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/proposal,250729998,700174,12616
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/stake,298020837,767410,8971
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/proposal,250729998,700174,12616
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/stake,303014727,784007,8990
Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/proposal,261958222,733268,12629
Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/stake,288527572,742860,8968
Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/proposal,194627614,541712,12617
Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/stake,290865146,749257,8976
Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/proposal,196700632,547308,12621
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/stake,596525998,1439881,10324
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/proposal,404537296,1122004,13969
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/stake,603686449,1458138,10324
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/proposal,404537296,1122004,13969
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/stake,632989021,1544443,10370
Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/proposal,438221968,1221286,14009
Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/stake,587265600,1416194,10313
Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/proposal,264253492,713018,13962
Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/stake,594278322,1435385,10329
Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/proposal,270472546,729806,13974
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/stake,921838266,2162049,11678
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/proposal,558344594,1543834,15323
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/stake,928998717,2180306,11678
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/proposal,558344594,1543834,15323
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/stake,982609971,2336319,11749
Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/proposal,614485714,1709304,15388
Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/stake,905650284,2120968,11659
Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/proposal,333879370,884324,15308
Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/stake,917338154,2152953,11683
Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/proposal,344244460,912304,15328
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/stake,1266797190,2915657,13031
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/proposal,712151892,1965664,16676
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/stake,1273957641,2933914,13031
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/proposal,712151892,1965664,16676
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/stake,1351877577,3159635,13128
Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/proposal,790749460,2197322,16767
Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/stake,1243681624,2857182,13004
Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/proposal,403505248,1055630,16653
Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/stake,1260044642,2901961,13036
Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/proposal,418016374,1094802,16681
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/stake,1631402770,3700705,14384
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/proposal,865959190,2387494,18029
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/stake,1638563221,3718962,14384
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/proposal,865959190,2387494,18029
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/stake,1740791839,4014391,14508
Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/proposal,967013206,2685340,18147
Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/stake,1601359620,3624836,14349
Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/proposal,473131126,1226936,17998
Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/stake,1622397786,3682409,14389
Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/proposal,491788288,1277300,18034
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/stake,2015655006,4517193,15739
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/proposal,1019766488,2809324,19384
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/stake,2022815457,4535450,15739
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/proposal,1019766488,2809324,19384
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/stake,2149352757,4900587,15888
Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/proposal,1143276952,3173358,19527
Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/stake,1978684272,4423930,15695
Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/proposal,542757004,1398242,19344
Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/stake,2004397586,4494297,15744
Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/proposal,565560202,1459798,19389
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,290294897,747951,8971
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,291425875,750355,8971
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake,290865146,749257,8971
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,192931147,538106,12617
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,201089148,557678,12617
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal,194062125,540510,12617
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/creator: retract votes/stake,286814045,744810,8970
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/change output stake value/proposal,250729998,700174,12613
Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes in cooldown/proposal,261958222,733268,12629
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,595960509,1438679,10324
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,597091487,1441083,10324
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake,594278322,1435385,10324
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,262557025,709412,13962
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,270715026,728984,13962
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal,263688003,711816,13962
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/creator: retract votes/stake,569651983,1403272,10329
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/change output stake value/proposal,404537296,1122004,13960
Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes in cooldown/proposal,438221968,1221286,14009
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,921272777,2160847,11678
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,922403755,2163251,11678
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake,917338154,2152953,11678
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,332182903,880718,15308
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,340340904,900290,15308
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal,333313881,883122,15308
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/creator: retract votes/stake,852489921,2061734,11689
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/change output stake value/proposal,558344594,1543834,15308
Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes in cooldown/proposal,614485714,1709304,15388
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1266231701,2914455,13031
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1267362679,2916859,13031
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake,1260044642,2901961,13031
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,401808781,1052024,16653
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,409966782,1071596,16653
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal,402939759,1054428,16653
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/creator: retract votes/stake,1135327859,2720196,13048
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/change output stake value/proposal,712151892,1965664,16655
Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes in cooldown/proposal,790749460,2197322,16767
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1630837281,3699503,14384
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1631968259,3701907,14384
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake,1622397786,3682409,14384
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,471434659,1223330,17998
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,479592660,1242902,17998
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal,472565637,1225734,17998
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/creator: retract votes/stake,1418165797,3378658,14407
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/change output stake value/proposal,865959190,2387494,18002
Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes in cooldown/proposal,967013206,2685340,18147
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2015089517,4515991,15739
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2016220495,4518395,15739
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake,2004397586,4494297,15739
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,541060537,1394636,19344
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,549218538,1414208,19344
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal,542191515,1397040,19344
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/creator: retract votes/stake,1701003735,4037120,15768
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/change output stake value/proposal,1019766488,2809324,19350
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes in cooldown/proposal,1143276952,3173358,19527
Agora/AuthorityToken/singleAuthorityTokenBurned/Correct simple,26525223,76151,758
Agora/AuthorityToken/singleAuthorityTokenBurned/Correct many inputs,51650175,146621,858
Agora/AuthorityToken/singleAuthorityTokenBurned/Correct even though scripts don't match,26525223,76151,757

1 name cpu mem size
6 Agora/Effects/Governor Mutation Effect/validator/valid new governor datum/effect validator should pass 149156621 399941 4851
7 Agora/Stake/policy/create/valid/stake owner: pub key 77468330 198844 3625
8 Agora/Stake/policy/create/valid/stake owner: script 90607586 237423 3660
9 Agora/Stake/validator/destroy/legal/One stake/stake validator 100744620 100468620 274835 273635 8167 8122
10 Agora/Stake/validator/destroy/legal/One stake/stake policy 29665872 85956 3612
11 Agora/Stake/validator/destroy/legal/Multiple stake/stake validator 639511701 665967222 1565246 1615013 11420 11375
12 Agora/Stake/validator/destroy/legal/Multiple stake/stake policy 292337523 820464 6864
13 Agora/Stake/validator/destroy/illegal/Destroy locked stakes/stake policy 292337523 820464 6935
14 Agora/Stake/validator/destroy/illegal/not authorized by owner/stake policy 292337523 820464 6833
15 Agora/Stake/validator/destroy/illegal/not authorized by owner/stake policy 292337523 820464 6864
16 Agora/Stake/validator/stakeDepositWithdraw deposit 139642477 139366477 368480 367280 8282 8237
17 Agora/Stake/validator/stakeDepositWithdraw withdraw 139642477 139366477 368480 367280 8274 8229
18 Agora/Stake/validator/set delegate/override existing delegate 171170225 170894225 438309 437109 8413 8368
19 Agora/Stake/validator/set delegate/remove existing delegate 161835229 161559229 414921 413721 8343 8298
20 Agora/Stake/validator/set delegate/set delegate to something 168741237 168465237 431209 430009 8343 8298
21 Agora/Proposal/policy (proposal creation)/legal/proposal 33965500 89285 2794
22 Agora/Proposal/policy (proposal creation)/legal/governor 286951289 757722 12319
23 Agora/Proposal/policy (proposal creation)/legal/stake 300497720 300221720 755854 754654 9135 9090
24 Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/proposal 33965500 89285 2794
25 Agora/Proposal/policy (proposal creation)/illegal/invalid next proposal id/stake 300497720 300221720 755854 754654 9135 9090
26 Agora/Proposal/policy (proposal creation)/illegal/use other's stake/proposal 33965500 89285 2763
27 Agora/Proposal/policy (proposal creation)/illegal/use other's stake/governor 286951289 757722 12288
28 Agora/Proposal/policy (proposal creation)/illegal/altered stake/proposal 33965500 89285 2794
29 Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/proposal 33965500 89285 2809
30 Agora/Proposal/policy (proposal creation)/illegal/invalid stake locks/governor 286951289 757722 12334
31 Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/proposal 33965500 89285 2818
32 Agora/Proposal/policy (proposal creation)/illegal/has reached maximum proposals limit/stake 316856972 316580972 802982 801782 9171 9126
33 Agora/Proposal/policy (proposal creation)/illegal/loose time range/proposal 33965500 89285 2794
34 Agora/Proposal/policy (proposal creation)/illegal/loose time range/stake 300497720 300221720 755854 754654 9135 9090
35 Agora/Proposal/policy (proposal creation)/illegal/open time range/proposal 33965500 89285 2790
36 Agora/Proposal/policy (proposal creation)/illegal/open time range/stake 300497720 300221720 755854 754654 9131 9086
37 Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/proposal 33965500 89285 2794
38 Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/VotingReady/stake 300497720 300221720 755854 754654 9135 9090
39 Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/proposal 33965500 89285 2794
40 Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Locked/stake 300497720 300221720 755854 754654 9135 9090
41 Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/proposal 33965500 89285 2794
42 Agora/Proposal/policy (proposal creation)/illegal/invalid proposal status/Finished/stake 300497720 300221720 755854 754654 9135 9090
43 Agora/Proposal/policy (proposal creation)/illegal/fake SST/proposal 33965500 89285 2701
44 Agora/Proposal/policy (proposal creation)/illegal/wrong governor redeemer/stake 300497720 300221720 755854 754654 9135 9090
45 Agora/Proposal/policy (proposal creation)/illegal/wrong governor redeemer/stake 300497720 300221720 755854 754654 9135 9090
46 Agora/Proposal/validator/cosignature/legal/proposal 211218458 586864 12534
47 Agora/Proposal/validator/cosignature/legal/stake 262516096 262240096 688466 687266 8924 8879
48 Agora/Proposal/validator/cosignature/illegal/insufficient staked amount/stake 262516096 262240096 688466 687266 8924 8879
49 Agora/Proposal/validator/cosignature/illegal/proposal locks not updated/proposal 211218458 586864 12527
50 Agora/Proposal/validator/cosignature/illegal/duplicate cosigners/stake 270695722 270419722 712030 710830 8944 8899
51 Agora/Proposal/validator/cosignature/illegal/cosigners not updated/stake 262516096 262240096 688466 687266 8890 8845
52 Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake 262516096 262240096 688466 687266 8924 8879
53 Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake 262516096 262240096 688466 687266 8924 8879
54 Agora/Proposal/validator/cosignature/illegal/cosign after draft/(negative test)/stake 262516096 262240096 688466 687266 8924 8879
55 Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/proposal 236746075 667092 12391
56 Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by owner/stake 286719534 286443534 754693 753493 8797 8752
57 Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/proposal 236746075 667092 12391
58 Agora/Proposal/validator/voting/legal/different number of stakes/1 stakes/by delegatee/stake 293546429 293603985 771849 771750 8797 8752
59 Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/proposal 358011461 995038 13625
60 Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by owner/stake 589841466 595505804 1479597 1489723 10031 9986
61 Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/proposal 358011461 995038 13625
62 Agora/Proposal/validator/voting/legal/different number of stakes/3 stakes/by delegatee/stake 596668361 602666255 1496753 1507980 10031 9986
63 Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/proposal 479276847 1322984 14858
64 Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by owner/stake 892963398 904568074 2204501 2225953 11264 11219
65 Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/proposal 479276847 1322984 14858
66 Agora/Proposal/validator/voting/legal/different number of stakes/5 stakes/by delegatee/stake 899790293 911728525 2221657 2244210 11264 11219
67 Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/proposal 600542233 1650930 16091
68 Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by owner/stake 1196085330 1213630344 2929405 2962183 12497 12452
69 Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/proposal 600542233 1650930 16091
70 Agora/Proposal/validator/voting/legal/different number of stakes/7 stakes/by delegatee/stake 1202912225 1220790795 2946561 2980440 12497 12452
71 Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/proposal 721807619 1978876 17323
72 Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by owner/stake 1499207262 1522692614 3654309 3698413 13729 13684
73 Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/proposal 721807619 1978876 17323
74 Agora/Proposal/validator/voting/legal/different number of stakes/9 stakes/by delegatee/stake 1506034157 1529853065 3671465 3716670 13729 13684
75 Agora/Proposal/validator/voting/legal/transparent non-GT tokens/proposal 236746075 667092 12391
76 Agora/Proposal/validator/voting/legal/transparent non-GT tokens/stake 286719534 286443534 754693 753493 8797 8752
77 Agora/Proposal/validator/voting/legal/Delegatee vote with own and delegated stakes in one tx/proposal 476847859 1315884 14788
78 Agora/Proposal/validator/voting/legal/Delegatee vote with own and delegated stakes in one tx/stake 902897522 913129149 2219654 2240878 11194 11149
79 Agora/Proposal/validator/voting/illegal/vote for nonexistent outcome/stake 286719534 286443534 754693 753493 8805 8760
80 Agora/Proposal/validator/voting/illegal/unauthorized tx/proposal 236746075 667092 12391
81 Agora/Proposal/validator/voting/illegal/more than one proposals/stake 286719534 286443534 754693 753493 8805 8760
82 Agora/Proposal/validator/voting/illegal/locks not added/proposal 479276847 1322984 14803
83 Agora/Proposal/validator/voting/illegal/attempt to burn stakes/proposal 441096352 1210784 13765
84 Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake 286719534 286443534 754693 753493 8792 8747
85 Agora/Proposal/validator/voting/illegal/insufficient staked amount/stake 892963398 904568074 2204501 2225953 11242 11197
86 Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Draft to VotingReady/proposal 250538195 701267 13003
87 Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from VotingReady to Locked/proposal 229925297 644252 12766
88 Agora/Proposal/validator/advancing/with 1 cosigners and 1 effects/legal/to next state/from Locked to Finished/proposal 243332930 671400 14099
371 Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/proposal 589464480 1615856 17103
372 Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/invalid governor output datum/authority 91691192 229170 5969
373 Agora/Proposal/validator/advancing/with 10 cosigners and 5 effects/illegal/wrong governor redeemer/proposal 589464480 1615856 17103
374 Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/stake 293224159 290860386 762702 749153 9027 8971
375 Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting/proposal 250729998 700174 12627 12616
376 Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/stake 300051054 298020837 779858 767410 9027 8971
377 Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter: retract votes while voting by delegatee/proposal 250729998 700174 12627 12616
378 Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/stake 305673493 303014727 792301 784007 9039 8990
379 Agora/Proposal/validator/unlocking/legal/with 1 stakes/voter/creator: retract votes while voting/proposal 261958222 733268 12633 12629
380 Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/stake 286343529 288527572 742697 742860 9020 8968
381 Agora/Proposal/validator/unlocking/legal/with 1 stakes/creator: remove creator lock after voting/proposal 194627614 541712 12624 12617
382 Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/stake 290948981 290865146 754990 749257 9032 8976
383 Agora/Proposal/validator/unlocking/legal/with 1 stakes/Voter: remove lock after voting/proposal 196700632 547308 12632 12621
384 Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/stake 582113987 596525998 1442022 1439881 10403 10324
385 Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting/proposal 404537296 1122004 14003 13969
386 Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/stake 588940882 603686449 1459178 1458138 10403 10324
387 Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter: retract votes while voting by delegatee/proposal 404537296 1122004 14003 13969
388 Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/stake 634196981 632989021 1554399 1544443 10427 10370
389 Agora/Proposal/validator/unlocking/legal/with 3 stakes/voter/creator: retract votes while voting/proposal 438221968 1221286 14021 14009
390 Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/stake 562666017 587265600 1388031 1416194 10379 10313
391 Agora/Proposal/validator/unlocking/legal/with 3 stakes/creator: remove creator lock after voting/proposal 264253492 713018 13983 13962
392 Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/stake 576482373 594278322 1424910 1435385 10408 10329
393 Agora/Proposal/validator/unlocking/legal/with 3 stakes/Voter: remove lock after voting/proposal 270472546 729806 14008 13974
394 Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/stake 871003815 921838266 2121342 2162049 11778 11678
395 Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting/proposal 558344594 1543834 15378 15323
396 Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/stake 877830710 928998717 2138498 2180306 11778 11678
397 Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter: retract votes while voting by delegatee/proposal 558344594 1543834 15378 15323
398 Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/stake 982367125 982609971 2347937 2336319 11814 11749
399 Agora/Proposal/validator/unlocking/legal/with 5 stakes/voter/creator: retract votes while voting/proposal 614485714 1709304 15408 15388
400 Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/stake 838988505 905650284 2033365 2120968 11739 11659
401 Agora/Proposal/validator/unlocking/legal/with 5 stakes/creator: remove creator lock after voting/proposal 333879370 884324 15343 15308
402 Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/stake 862015765 917338154 2094830 2152953 11783 11683
403 Agora/Proposal/validator/unlocking/legal/with 5 stakes/Voter: remove lock after voting/proposal 344244460 912304 15383 15328
404 Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/stake 1159893643 1266797190 2800662 2915657 13153 13031
405 Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting/proposal 712151892 1965664 16753 16676
406 Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/stake 1166720538 1273957641 2817818 2933914 13153 13031
407 Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter: retract votes while voting by delegatee/proposal 712151892 1965664 16753 16676
408 Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/stake 1350183925 1351877577 3172915 3159635 13201 13128
409 Agora/Proposal/validator/unlocking/legal/with 7 stakes/voter/creator: retract votes while voting/proposal 790749460 2197322 16795 16767
410 Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/stake 1115310993 1243681624 2678699 2857182 13098 13004
411 Agora/Proposal/validator/unlocking/legal/with 7 stakes/creator: remove creator lock after voting/proposal 403505248 1055630 16702 16653
412 Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/stake 1147549157 1260044642 2764750 2901961 13158 13036
413 Agora/Proposal/validator/unlocking/legal/with 7 stakes/Voter: remove lock after voting/proposal 418016374 1094802 16758 16681
414 Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/stake 1448783471 1631402770 3479982 3700705 14529 14384
415 Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting/proposal 865959190 2387494 18129 18029
416 Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/stake 1455610366 1638563221 3497138 3718962 14529 14384
417 Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter: retract votes while voting by delegatee/proposal 865959190 2387494 18129 18029
418 Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/stake 1737647381 1740791839 4029333 4014391 14589 14508
419 Agora/Proposal/validator/unlocking/legal/with 9 stakes/voter/creator: retract votes while voting/proposal 967013206 2685340 18183 18147
420 Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/stake 1391633481 1601359620 3324033 3624836 14457 14349
421 Agora/Proposal/validator/unlocking/legal/with 9 stakes/creator: remove creator lock after voting/proposal 473131126 1226936 18061 17998
422 Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/stake 1433082549 1622397786 3434670 3682409 14534 14389
423 Agora/Proposal/validator/unlocking/legal/with 9 stakes/Voter: remove lock after voting/proposal 491788288 1277300 18134 18034
424 Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/stake 1737673299 2015655006 4159302 4517193 15905 15739
425 Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting/proposal 1019766488 2809324 19505 19384
426 Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/stake 1744500194 2022815457 4176458 4535450 15905 15739
427 Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter: retract votes while voting by delegatee/proposal 1019766488 2809324 19505 19384
428 Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/stake 2144757493 2149352757 4917191 4900587 15977 15888
429 Agora/Proposal/validator/unlocking/legal/with 11 stakes/voter/creator: retract votes while voting/proposal 1143276952 3173358 19571 19527
430 Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/stake 1667955969 1978684272 3969367 4423930 15818 15695
431 Agora/Proposal/validator/unlocking/legal/with 11 stakes/creator: remove creator lock after voting/proposal 542757004 1398242 19422 19344
432 Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/stake 1718615941 2004397586 4104590 4494297 15910 15744
433 Agora/Proposal/validator/unlocking/legal/with 11 stakes/Voter: remove lock after voting/proposal 565560202 1459798 19510 19389
434 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake 292658670 290294897 761500 747951 9027 8971
435 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake 293789648 291425875 763904 750355 9027 8971
436 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes while not voting/(negative test)/stake 290948981 290865146 754990 749257 9027 8971
437 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal 192931147 538106 12624 12617
438 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal 201089148 557678 12624 12617
439 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/remove creator too early/(negative test)/proposal 194062125 540510 12624 12617
440 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/unlock an irrelevant stake/stake Agora/Proposal/validator/unlocking/illegal/with 1 stakes/creator: retract votes/stake 294561760 286814045 762166 744810 9028 8970
441 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/creator: retract votes/stake Agora/Proposal/validator/unlocking/illegal/with 1 stakes/change output stake value/proposal 287523038 250729998 741355 700174 9008 12613
442 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/change output stake value/proposal Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes in cooldown/proposal 250729998 261958222 700174 733268 12624 12629
443 Agora/Proposal/validator/unlocking/illegal/with 1 stakes/retract votes in cooldown/proposal Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake 261958222 595960509 733268 1438679 12633 10324
444 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake 581548498 597091487 1440820 1441083 10403 10324
445 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake 582679476 594278322 1443224 1435385 10403 10324
446 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal 576482373 262557025 1424910 709412 10403 13962
447 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal 262557025 270715026 709412 728984 13983 13962
448 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal 270715026 263688003 728984 711816 13983 13962
449 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 3 stakes/creator: retract votes/stake 263688003 569651983 711816 1403272 13983 10329
450 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/unlock an irrelevant stake/stake Agora/Proposal/validator/unlocking/illegal/with 3 stakes/change output stake value/proposal 600861782 404537296 1463994 1122004 10393 13960
451 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/creator: retract votes/stake Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes in cooldown/proposal 579745616 438221968 1401561 1221286 10353 14009
452 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/change output stake value/proposal Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake 404537296 921272777 1122004 2160847 13993 11678
453 Agora/Proposal/validator/unlocking/illegal/with 3 stakes/retract votes in cooldown/proposal Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake 438221968 922403755 1221286 2163251 14021 11678
454 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake 870438326 917338154 2120140 2152953 11778 11678
455 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal 871569304 332182903 2122544 880718 11778 15308
456 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal 862015765 340340904 2094830 900290 11778 15308
457 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal 332182903 333313881 880718 883122 15343 15308
458 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 5 stakes/creator: retract votes/stake 340340904 852489921 900290 2061734 15343 11689
459 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 5 stakes/change output stake value/proposal 333313881 558344594 883122 1543834 15343 15308
460 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/unlock an irrelevant stake/stake Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes in cooldown/proposal 926808460 614485714 2197262 1709304 11759 15388
461 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/creator: retract votes/stake Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake 891614850 1266231701 2093207 2914455 11699 13031
462 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/change output stake value/proposal Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake 558344594 1267362679 1543834 2916859 15363 13031
463 Agora/Proposal/validator/unlocking/illegal/with 5 stakes/retract votes in cooldown/proposal Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake 614485714 1260044642 1709304 2901961 15408 13031
464 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal 1159328154 401808781 2799460 1052024 13153 16653
465 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal 1160459132 409966782 2801864 1071596 13153 16653
466 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal 1147549157 402939759 2764750 1054428 13153 16653
467 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 7 stakes/creator: retract votes/stake 401808781 1135327859 1052024 2720196 16702 13048
468 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 7 stakes/change output stake value/proposal 409966782 712151892 1071596 1965664 16702 16655
469 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes in cooldown/proposal 402939759 790749460 1054428 2197322 16702 16767
470 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/unlock an irrelevant stake/stake Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake 1272401794 1630837281 2961970 3699503 13124 14384
471 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/creator: retract votes/stake Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake 1223130740 1631968259 2816293 3701907 13044 14384
472 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/change output stake value/proposal Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake 712151892 1622397786 1965664 3682409 16732 14384
473 Agora/Proposal/validator/unlocking/illegal/with 7 stakes/retract votes in cooldown/proposal Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal 790749460 471434659 2197322 1223330 16795 17998
474 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal 1448217982 479592660 3478780 1242902 14529 17998
475 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal 1449348960 472565637 3481184 1225734 14529 17998
476 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 9 stakes/creator: retract votes/stake 1433082549 1418165797 3434670 3378658 14529 14407
477 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 9 stakes/change output stake value/proposal 471434659 865959190 1223330 2387494 18061 18002
478 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes in cooldown/proposal 479592660 967013206 1242902 2685340 18061 18147
479 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake 472565637 2015089517 1225734 4515991 18061 15739
480 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/unlock an irrelevant stake/stake Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake 1637641784 2016220495 3758118 4518395 14489 15739
481 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/creator: retract votes/stake Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake 1574293286 2004397586 3570819 4494297 14389 15739
482 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/change output stake value/proposal Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal 865959190 541060537 2387494 1394636 18102 19344
483 Agora/Proposal/validator/unlocking/illegal/with 9 stakes/retract votes in cooldown/proposal Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal 967013206 549218538 2685340 1414208 18183 19344
484 Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal 1737107810 542191515 4158100 1397040 15905 19344
485 Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 11 stakes/creator: retract votes/stake 1738238788 1701003735 4160504 4037120 15905 15768
486 Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes while not voting/(negative test)/stake Agora/Proposal/validator/unlocking/illegal/with 11 stakes/change output stake value/proposal 1718615941 1019766488 4104590 2809324 15905 19350
487 Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes in cooldown/proposal 541060537 1143276952 1394636 3173358 19422 19527
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal 549218538 1414208 19422
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/remove creator too early/(negative test)/proposal 542191515 1397040 19422
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/unlock an irrelevant stake/stake 2022528430 4585706 15856
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/creator: retract votes/stake 1945102488 4356785 15735
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/change output stake value/proposal 1019766488 2809324 19472
Agora/Proposal/validator/unlocking/illegal/with 11 stakes/retract votes in cooldown/proposal 1143276952 3173358 19571
488 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct simple 26525223 76151 758
489 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct many inputs 51650175 146621 858
490 Agora/AuthorityToken/singleAuthorityTokenBurned/Correct even though scripts don't match 26525223 76151 757