Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save web3dev6/8565d65535ae10dddd4abe2d79a817d3 to your computer and use it in GitHub Desktop.
Save web3dev6/8565d65535ae10dddd4abe2d79a817d3 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.0+commit.c7dfd78e.js&optimize=false&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506114ad806100206000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c806389bcede71161005b57806389bcede7146100fe578063d7c15ab31461012e578063f0e994671461014d578063fba4e5da1461017d5761007d565b8063171ec7a514610082578063346b83a9146100b2578063613d7c9d146100ce575b600080fd5b61009c60048036038101906100979190610e1c565b6101ad565b6040516100a991906110e9565b60405180910390f35b6100cc60048036038101906100c79190610dd7565b610358565b005b6100e860048036038101906100e39190610e1c565b610471565b6040516100f591906110c7565b60405180910390f35b61011860048036038101906101139190610e5d565b61056d565b60405161012591906110e9565b60405180910390f35b610136610904565b60405161014492919061110b565b60405180910390f35b61016760048036038101906101629190610f1d565b610af2565b60405161017491906110e9565b60405180910390f35b61019760048036038101906101929190610ec9565b610b9e565b6040516101a491906110e9565b60405180910390f35b6060600082905060008151116101ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b6000815167ffffffffffffffff81111561022f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156102615781602001600182028036833780820191505090505b509050600081905060005b835181101561034c578381815181106102ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260018387516102c9919061129d565b6102d3919061129d565b8151811061030a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061034490611379565b91505061026c565b50809350505050919050565b600080838360405161036b929190611097565b9081526020016040518091039020905060018383909180600181540180825580915050600190039060005260206000200160009091929091929091929091925091906103b8929190610c6d565b50600083839050905060005b8181101561046a5760006001826103db9190611247565b90505b8281116104565736600087879150915081818590859261040093929190611214565b9150915085828290918060018154018082558091505060019003906000526020600020016000909192909192909192909192509190610440929190610c6d565b505050808061044e90611379565b9150506103de565b50808061046290611379565b9150506103c4565b5050505050565b60606000808360405161048491906110b0565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b8282101561055e5783829060005260206000200180546104d190611347565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd90611347565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050815260200190600101906104b2565b50505050905080915050919050565b606060008390506000839050600081518351610589919061129d565b67ffffffffffffffff8111156105c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156105fa5781602001600182028036833780820191505090505b50905060008190506000805b85518110156108f55784600081518110610649577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168682815181106106af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156108275760006001826106f19190611247565b9050600060019050600190505b86518110156107fb57868181518110610740577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168883815181106107a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156107e85781806107e490611379565b9250505b80806107f390611379565b9150506106fe565b86518114156108205760018751610812919061129d565b8361081d9190611247565b92505b50506108d4565b858181518110610860577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8383815181106108a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b81806108df90611379565b92505080806108ed90611379565b915050610606565b50819550505050505092915050565b60608060608060006001808054905061091d919061129d565b90505b6000811115610ae55760018181548110610963577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001805461097890611347565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490611347565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050925060018082610a06919061129d565b81548110610a3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054610a5290611347565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90611347565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b505050505091508080610add9061131d565b915050610920565b5080829350935050509091565b60018181548110610b0257600080fd5b906000526020600020016000915090508054610b1d90611347565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990611347565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b505050505081565b6000828051602081018201805184825260208301602085012081835280955050505050508181548110610bd057600080fd5b90600052602060002001600091509150508054610bec90611347565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1890611347565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b505050505081565b828054610c7990611347565b90600052602060002090601f016020900481019282610c9b5760008555610ce2565b82601f10610cb457803560ff1916838001178555610ce2565b82800160010185558215610ce2579182015b82811115610ce1578235825591602001919060010190610cc6565b5b509050610cef9190610cf3565b5090565b5b80821115610d0c576000816000905550600101610cf4565b5090565b6000610d23610d1e84611173565b611142565b905082815260208101848484011115610d3b57600080fd5b610d468482856112db565b509392505050565b60008083601f840112610d6057600080fd5b8235905067ffffffffffffffff811115610d7957600080fd5b602083019150836001820283011115610d9157600080fd5b9250929050565b600082601f830112610da957600080fd5b8135610db9848260208601610d10565b91505092915050565b600081359050610dd181611460565b92915050565b60008060208385031215610dea57600080fd5b600083013567ffffffffffffffff811115610e0457600080fd5b610e1085828601610d4e565b92509250509250929050565b600060208284031215610e2e57600080fd5b600082013567ffffffffffffffff811115610e4857600080fd5b610e5484828501610d98565b91505092915050565b60008060408385031215610e7057600080fd5b600083013567ffffffffffffffff811115610e8a57600080fd5b610e9685828601610d98565b925050602083013567ffffffffffffffff811115610eb357600080fd5b610ebf85828601610d98565b9150509250929050565b60008060408385031215610edc57600080fd5b600083013567ffffffffffffffff811115610ef657600080fd5b610f0285828601610d98565b9250506020610f1385828601610dc2565b9150509250929050565b600060208284031215610f2f57600080fd5b6000610f3d84828501610dc2565b91505092915050565b6000610f528383610ff4565b905092915050565b6000610f65826111b3565b610f6f81856111d6565b935083602082028501610f81856111a3565b8060005b85811015610fbd5784840389528151610f9e8582610f46565b9450610fa9836111c9565b925060208a01995050600181019050610f85565b50829750879550505050505092915050565b6000610fdb8385611209565b9350610fe88385846112db565b82840190509392505050565b6000610fff826111be565b61100981856111e7565b93506110198185602086016112ea565b6110228161144f565b840191505092915050565b6000611038826111be565b61104281856111f8565b93506110528185602086016112ea565b61105b8161144f565b840191505092915050565b6000611071826111be565b61107b8185611209565b935061108b8185602086016112ea565b80840191505092915050565b60006110a4828486610fcf565b91508190509392505050565b60006110bc8284611066565b915081905092915050565b600060208201905081810360008301526110e18184610f5a565b905092915050565b60006020820190508181036000830152611103818461102d565b905092915050565b60006040820190508181036000830152611125818561102d565b90508181036020830152611139818461102d565b90509392505050565b6000604051905081810181811067ffffffffffffffff8211171561116957611168611420565b5b8060405250919050565b600067ffffffffffffffff82111561118e5761118d611420565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000808585111561122457600080fd5b8386111561123157600080fd5b6001850283019150848603905094509492505050565b6000611252826112d1565b915061125d836112d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611292576112916113c2565b5b828201905092915050565b60006112a8826112d1565b91506112b3836112d1565b9250828210156112c6576112c56113c2565b5b828203905092915050565b6000819050919050565b82818337600083830152505050565b60005b838110156113085780820151818401526020810190506112ed565b83811115611317576000848401525b50505050565b6000611328826112d1565b9150600082141561133c5761133b6113c2565b5b600182039050919050565b6000600282049050600182168061135f57607f821691505b60208210811415611373576113726113f1565b5b50919050565b6000611384826112d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156113b7576113b66113c2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b611469816112d1565b811461147457600080fd5b5056fea26469706673582212206e01fc896251f07f0ceebe8eb23cd9eb50cfd0b87054496b2bfe7c5453b4ed2a64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x14AD DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x89BCEDE7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x89BCEDE7 EQ PUSH2 0xFE JUMPI DUP1 PUSH4 0xD7C15AB3 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0xF0E99467 EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0xFBA4E5DA EQ PUSH2 0x17D JUMPI PUSH2 0x7D JUMP JUMPDEST DUP1 PUSH4 0x171EC7A5 EQ PUSH2 0x82 JUMPI DUP1 PUSH4 0x346B83A9 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x613D7C9D EQ PUSH2 0xCE JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x9C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x97 SWAP2 SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH2 0x1AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0xDD7 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH2 0x471 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF5 SWAP2 SWAP1 PUSH2 0x10C7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x118 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x113 SWAP2 SWAP1 PUSH2 0xE5D JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x136 PUSH2 0x904 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP3 SWAP2 SWAP1 PUSH2 0x110B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x167 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x162 SWAP2 SWAP1 PUSH2 0xF1D JUMP JUMPDEST PUSH2 0xAF2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x174 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x197 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x192 SWAP2 SWAP1 PUSH2 0xEC9 JUMP JUMPDEST PUSH2 0xB9E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A4 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1EC JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x22F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x261 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x34C JUMPI DUP4 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2AE JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP3 PUSH1 0x1 DUP4 DUP8 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST PUSH2 0x2D3 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x30A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP DUP1 DUP1 PUSH2 0x344 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x26C JUMP JUMPDEST POP DUP1 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x36B SWAP3 SWAP2 SWAP1 PUSH2 0x1097 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP PUSH1 0x1 DUP4 DUP4 SWAP1 SWAP2 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 POP SWAP2 SWAP1 PUSH2 0x3B8 SWAP3 SWAP2 SWAP1 PUSH2 0xC6D JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP4 SWAP1 POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x46A JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x3DB SWAP2 SWAP1 PUSH2 0x1247 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP3 DUP2 GT PUSH2 0x456 JUMPI CALLDATASIZE PUSH1 0x0 DUP8 DUP8 SWAP2 POP SWAP2 POP DUP2 DUP2 DUP6 SWAP1 DUP6 SWAP3 PUSH2 0x400 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1214 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP6 DUP3 DUP3 SWAP1 SWAP2 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 POP SWAP2 SWAP1 PUSH2 0x440 SWAP3 SWAP2 SWAP1 PUSH2 0xC6D JUMP JUMPDEST POP POP POP DUP1 DUP1 PUSH2 0x44E SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3DE JUMP JUMPDEST POP DUP1 DUP1 PUSH2 0x462 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3C4 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP4 PUSH1 0x40 MLOAD PUSH2 0x484 SWAP2 SWAP1 PUSH2 0x10B0 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x55E JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x4D1 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x4FD SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x54A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x51F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x54A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x52D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x4B2 JUMP JUMPDEST POP POP POP POP SWAP1 POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP4 SWAP1 POP PUSH1 0x0 DUP4 SWAP1 POP PUSH1 0x0 DUP2 MLOAD DUP4 MLOAD PUSH2 0x589 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5C8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x5FA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x8F5 JUMPI DUP5 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x649 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x6AF JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0x827 JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x6F1 SWAP2 SWAP1 PUSH2 0x1247 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x1 SWAP1 POP PUSH1 0x1 SWAP1 POP JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x7FB JUMPI DUP7 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x740 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x7A6 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0x7E8 JUMPI DUP2 DUP1 PUSH2 0x7E4 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP3 POP POP JUMPDEST DUP1 DUP1 PUSH2 0x7F3 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x6FE JUMP JUMPDEST DUP7 MLOAD DUP2 EQ ISZERO PUSH2 0x820 JUMPI PUSH1 0x1 DUP8 MLOAD PUSH2 0x812 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST DUP4 PUSH2 0x81D SWAP2 SWAP1 PUSH2 0x1247 JUMP JUMPDEST SWAP3 POP JUMPDEST POP POP PUSH2 0x8D4 JUMP JUMPDEST DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x860 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x8A4 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP JUMPDEST DUP2 DUP1 PUSH2 0x8DF SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP3 POP POP DUP1 DUP1 PUSH2 0x8ED SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x606 JUMP JUMPDEST POP DUP2 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x60 DUP1 PUSH1 0x0 PUSH1 0x1 DUP1 DUP1 SLOAD SWAP1 POP PUSH2 0x91D SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP2 GT ISZERO PUSH2 0xAE5 JUMPI PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x963 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x978 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x9A4 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9F1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9C6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9F1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x9D4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP3 POP PUSH1 0x1 DUP1 DUP3 PUSH2 0xA06 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xA3D JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0xA52 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xA7E SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xACB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xAA0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xACB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xAAE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP DUP1 DUP1 PUSH2 0xADD SWAP1 PUSH2 0x131D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x920 JUMP JUMPDEST POP DUP1 DUP3 SWAP4 POP SWAP4 POP POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xB02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 SLOAD PUSH2 0xB1D SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xB49 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB96 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xB6B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB96 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xB79 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xBD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP2 POP POP DUP1 SLOAD PUSH2 0xBEC SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xC18 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC65 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xC3A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC65 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xC48 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0xC79 SWAP1 PUSH2 0x1347 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0xC9B JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0xCE2 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0xCB4 JUMPI DUP1 CALLDATALOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0xCE2 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0xCE2 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xCE1 JUMPI DUP3 CALLDATALOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xCC6 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0xCEF SWAP2 SWAP1 PUSH2 0xCF3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xD0C JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xCF4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD23 PUSH2 0xD1E DUP5 PUSH2 0x1173 JUMP JUMPDEST PUSH2 0x1142 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xD3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD46 DUP5 DUP3 DUP6 PUSH2 0x12DB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xD60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0xD91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xDA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xDB9 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xD10 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDD1 DUP2 PUSH2 0x1460 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDEA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE10 DUP6 DUP3 DUP7 ADD PUSH2 0xD4E JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE2E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE54 DUP5 DUP3 DUP6 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE96 DUP6 DUP3 DUP7 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEBF DUP6 DUP3 DUP7 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEDC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF02 DUP6 DUP3 DUP7 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xF13 DUP6 DUP3 DUP7 ADD PUSH2 0xDC2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF2F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xF3D DUP5 DUP3 DUP6 ADD PUSH2 0xDC2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF52 DUP4 DUP4 PUSH2 0xFF4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF65 DUP3 PUSH2 0x11B3 JUMP JUMPDEST PUSH2 0xF6F DUP2 DUP6 PUSH2 0x11D6 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xF81 DUP6 PUSH2 0x11A3 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xFBD JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xF9E DUP6 DUP3 PUSH2 0xF46 JUMP JUMPDEST SWAP5 POP PUSH2 0xFA9 DUP4 PUSH2 0x11C9 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xF85 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFDB DUP4 DUP6 PUSH2 0x1209 JUMP JUMPDEST SWAP4 POP PUSH2 0xFE8 DUP4 DUP6 DUP5 PUSH2 0x12DB JUMP JUMPDEST DUP3 DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFF DUP3 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x1009 DUP2 DUP6 PUSH2 0x11E7 JUMP JUMPDEST SWAP4 POP PUSH2 0x1019 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12EA JUMP JUMPDEST PUSH2 0x1022 DUP2 PUSH2 0x144F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1038 DUP3 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x1042 DUP2 DUP6 PUSH2 0x11F8 JUMP JUMPDEST SWAP4 POP PUSH2 0x1052 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12EA JUMP JUMPDEST PUSH2 0x105B DUP2 PUSH2 0x144F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1071 DUP3 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x107B DUP2 DUP6 PUSH2 0x1209 JUMP JUMPDEST SWAP4 POP PUSH2 0x108B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12EA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10A4 DUP3 DUP5 DUP7 PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10BC DUP3 DUP5 PUSH2 0x1066 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10E1 DUP2 DUP5 PUSH2 0xF5A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1103 DUP2 DUP5 PUSH2 0x102D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1125 DUP2 DUP6 PUSH2 0x102D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1139 DUP2 DUP5 PUSH2 0x102D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1169 JUMPI PUSH2 0x1168 PUSH2 0x1420 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x118E JUMPI PUSH2 0x118D PUSH2 0x1420 JUMP JUMPDEST JUMPDEST PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 DUP6 GT ISZERO PUSH2 0x1224 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x1231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 DUP6 MUL DUP4 ADD SWAP2 POP DUP5 DUP7 SUB SWAP1 POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1252 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x125D DUP4 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1292 JUMPI PUSH2 0x1291 PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12A8 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x12B3 DUP4 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x12C6 JUMPI PUSH2 0x12C5 PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1308 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x12ED JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1317 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1328 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x133C JUMPI PUSH2 0x133B PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x135F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1373 JUMPI PUSH2 0x1372 PUSH2 0x13F1 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1384 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x13B7 JUMPI PUSH2 0x13B6 PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1469 DUP2 PUSH2 0x12D1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1474 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0x1FC896251F07F0CEEBE8EB23CD9EB POP 0xCF 0xD0 0xB8 PUSH17 0x54496B2BFE7C5453B4ED2A64736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "189:3324:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:12670:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:260:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "167:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:41:1"
},
"nodeType": "YulFunctionCall",
"src": "125:49:1"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "110:14:1"
},
"nodeType": "YulFunctionCall",
"src": "110:65:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "191:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "198:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "184:6:1"
},
"nodeType": "YulFunctionCall",
"src": "184:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "184:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "214:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "229:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "236:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "225:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "218:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "288:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "291:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "281:6:1"
},
"nodeType": "YulFunctionCall",
"src": "281:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "281:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "260:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "265:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "256:3:1"
},
"nodeType": "YulFunctionCall",
"src": "256:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "274:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "253:2:1"
},
"nodeType": "YulFunctionCall",
"src": "253:25:1"
},
"nodeType": "YulIf",
"src": "250:2:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "328:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "333:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "338:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "304:23:1"
},
"nodeType": "YulFunctionCall",
"src": "304:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "304:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:344:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "446:277:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "495:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "504:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "507:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "497:6:1"
},
"nodeType": "YulFunctionCall",
"src": "497:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "497:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "474:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "482:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "470:3:1"
},
"nodeType": "YulFunctionCall",
"src": "470:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "489:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "466:3:1"
},
"nodeType": "YulFunctionCall",
"src": "466:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "459:6:1"
},
"nodeType": "YulFunctionCall",
"src": "459:35:1"
},
"nodeType": "YulIf",
"src": "456:2:1"
},
{
"nodeType": "YulAssignment",
"src": "520:30:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "543:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "530:12:1"
},
"nodeType": "YulFunctionCall",
"src": "530:20:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "520:6:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "593:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "602:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "605:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "595:6:1"
},
"nodeType": "YulFunctionCall",
"src": "595:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "595:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "565:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "573:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "562:2:1"
},
"nodeType": "YulFunctionCall",
"src": "562:30:1"
},
"nodeType": "YulIf",
"src": "559:2:1"
},
{
"nodeType": "YulAssignment",
"src": "618:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "634:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "642:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "630:3:1"
},
"nodeType": "YulFunctionCall",
"src": "630:17:1"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "618:8:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "701:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "710:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "713:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "703:6:1"
},
"nodeType": "YulFunctionCall",
"src": "703:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "703:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "666:8:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "680:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "688:4:1",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "676:3:1"
},
"nodeType": "YulFunctionCall",
"src": "676:17:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "662:3:1"
},
"nodeType": "YulFunctionCall",
"src": "662:32:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "696:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "659:2:1"
},
"nodeType": "YulFunctionCall",
"src": "659:41:1"
},
"nodeType": "YulIf",
"src": "656:2:1"
}
]
},
"name": "abi_decode_t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "413:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "421:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "429:8:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "439:6:1",
"type": ""
}
],
"src": "371:352:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "805:211:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "854:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "863:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "866:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "856:6:1"
},
"nodeType": "YulFunctionCall",
"src": "856:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "856:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "833:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "841:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "829:3:1"
},
"nodeType": "YulFunctionCall",
"src": "829:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "848:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "825:3:1"
},
"nodeType": "YulFunctionCall",
"src": "825:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "818:6:1"
},
"nodeType": "YulFunctionCall",
"src": "818:35:1"
},
"nodeType": "YulIf",
"src": "815:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "879:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "906:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "893:12:1"
},
"nodeType": "YulFunctionCall",
"src": "893:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "883:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "922:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "983:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "979:3:1"
},
"nodeType": "YulFunctionCall",
"src": "979:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "998:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1006:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "931:47:1"
},
"nodeType": "YulFunctionCall",
"src": "931:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "922:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "783:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "791:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "799:5:1",
"type": ""
}
],
"src": "743:273:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1074:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1084:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1106:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1093:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1093:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1084:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1149:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1122:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1122:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1122:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1052:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1060:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1068:5:1",
"type": ""
}
],
"src": "1022:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1253:309:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1299:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1308:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1311:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1301:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1301:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1274:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1283:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1270:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1270:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1295:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1266:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1266:32:1"
},
"nodeType": "YulIf",
"src": "1263:2:1"
},
{
"nodeType": "YulBlock",
"src": "1325:230:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1340:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1371:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1382:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1367:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1367:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1354:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1354:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1344:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1432:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1441:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1444:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1434:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1434:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1434:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1404:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1412:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1401:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1401:30:1"
},
"nodeType": "YulIf",
"src": "1398:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1462:83:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1517:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1528:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1513:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1513:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1537:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "1480:32:1"
},
"nodeType": "YulFunctionCall",
"src": "1480:65:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1462:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1470:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1215:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1226:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1238:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1246:6:1",
"type": ""
}
],
"src": "1167:395:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1644:299:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1690:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1699:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1702:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1692:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1692:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1692:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1665:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1674:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1661:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1661:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1686:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1657:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1657:32:1"
},
"nodeType": "YulIf",
"src": "1654:2:1"
},
{
"nodeType": "YulBlock",
"src": "1716:220:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1731:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1762:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1773:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1758:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1758:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1745:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1745:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1735:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1823:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1832:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1835:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1825:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1825:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1795:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1803:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1792:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1792:30:1"
},
"nodeType": "YulIf",
"src": "1789:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1853:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1898:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1909:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1894:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1918:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1863:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1863:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1853:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1614:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1625:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1637:6:1",
"type": ""
}
],
"src": "1568:375:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2052:530:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2098:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2107:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2110:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2100:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2100:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2073:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2082:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2069:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2069:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2094:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2065:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2065:32:1"
},
"nodeType": "YulIf",
"src": "2062:2:1"
},
{
"nodeType": "YulBlock",
"src": "2124:220:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2139:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2170:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2181:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2166:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2166:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2153:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2153:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2143:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2231:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2240:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2243:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2233:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2233:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2233:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2203:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2211:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2200:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2200:30:1"
},
"nodeType": "YulIf",
"src": "2197:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2261:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2306:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2317:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2302:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2302:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2326:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2271:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2271:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2261:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2354:221:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2369:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2400:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2411:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2396:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2396:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2383:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2383:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2373:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2462:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2471:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2474:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2464:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2464:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2464:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2434:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2442:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2431:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2431:30:1"
},
"nodeType": "YulIf",
"src": "2428:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2492:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2537:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2548:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2533:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2533:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2557:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2502:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2502:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2492:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2014:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2025:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2037:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2045:6:1",
"type": ""
}
],
"src": "1949:633:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2681:427:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2727:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2736:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2739:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2729:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2729:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2729:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2702:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2711:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2698:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2698:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2723:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2694:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2694:32:1"
},
"nodeType": "YulIf",
"src": "2691:2:1"
},
{
"nodeType": "YulBlock",
"src": "2753:220:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2768:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2799:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2810:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2795:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2795:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2782:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2782:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2772:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2860:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2869:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2872:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2862:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2862:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2862:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2832:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2840:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2829:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2829:30:1"
},
"nodeType": "YulIf",
"src": "2826:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2890:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2935:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2946:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2931:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2931:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2955:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2900:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2900:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2890:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2983:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2998:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3012:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3002:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3028:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3063:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3074:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3059:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3059:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3083:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3038:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3038:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3028:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2643:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2654:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2666:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2674:6:1",
"type": ""
}
],
"src": "2588:520:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3180:196:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3226:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3235:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3238:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3228:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3228:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3228:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3201:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3210:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3197:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3197:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3222:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3193:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3193:32:1"
},
"nodeType": "YulIf",
"src": "3190:2:1"
},
{
"nodeType": "YulBlock",
"src": "3252:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3267:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3281:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3271:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3296:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3331:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3342:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3327:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3327:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3351:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3306:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3306:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3296:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3150:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3161:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3173:6:1",
"type": ""
}
],
"src": "3114:262:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3482:96:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3492:80:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3560:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3568:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3506:53:1"
},
"nodeType": "YulFunctionCall",
"src": "3506:66:1"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "3492:10:1"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3455:6:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3463:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "3471:10:1",
"type": ""
}
],
"src": "3382:196:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3756:847:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3766:78:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3838:5:1"
}
],
"functionName": {
"name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3780:57:1"
},
"nodeType": "YulFunctionCall",
"src": "3780:64:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3770:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3853:103:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3944:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3949:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3860:83:1"
},
"nodeType": "YulFunctionCall",
"src": "3860:96:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3853:3:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3965:20:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3982:3:1"
},
"variables": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3969:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3994:39:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4010:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4019:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4027:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4015:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4015:17:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4006:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4006:27:1"
},
"variables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3998:4:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4042:81:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4117:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4057:59:1"
},
"nodeType": "YulFunctionCall",
"src": "4057:66:1"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "4046:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4132:21:1",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "4146:7:1"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "4136:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4222:336:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4243:3:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4252:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4258:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4248:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4248:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4236:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4236:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "4236:33:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4282:34:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "4309:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4303:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4303:13:1"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "4286:13:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4329:92:1",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "4401:13:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4416:4:1"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4337:63:1"
},
"nodeType": "YulFunctionCall",
"src": "4337:84:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4329:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4434:80:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "4507:6:1"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4444:62:1"
},
"nodeType": "YulFunctionCall",
"src": "4444:70:1"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "4434:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4527:21:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4538:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4543:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4534:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4534:14:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4527:3:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4184:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4187:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4181:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4181:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4195:18:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4197:14:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4206:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4209:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4202:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4202:9:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4197:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4166:14:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4168:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4177:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4172:1:1",
"type": ""
}
]
}
]
},
"src": "4162:396:1"
},
{
"nodeType": "YulAssignment",
"src": "4567:11:1",
"value": {
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4574:4:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4567:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4587:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4594:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4587:3:1"
}
]
}
]
},
"name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3735:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3742:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3751:3:1",
"type": ""
}
],
"src": "3612:991:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4753:197:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4763:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4847:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4852:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "4770:76:1"
},
"nodeType": "YulFunctionCall",
"src": "4770:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4763:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "4893:5:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4900:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4905:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "4869:23:1"
},
"nodeType": "YulFunctionCall",
"src": "4869:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "4869:43:1"
},
{
"nodeType": "YulAssignment",
"src": "4921:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4932:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4937:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4928:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4928:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4921:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "4726:5:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4733:6:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4741:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4749:3:1",
"type": ""
}
],
"src": "4633:317:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5038:262:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5048:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5095:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5062:32:1"
},
"nodeType": "YulFunctionCall",
"src": "5062:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5052:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5110:68:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5166:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5171:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5117:48:1"
},
"nodeType": "YulFunctionCall",
"src": "5117:61:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5110:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5213:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5220:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5209:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5209:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5227:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5232:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5187:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5187:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "5187:52:1"
},
{
"nodeType": "YulAssignment",
"src": "5248:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5259:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5286:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5264:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5264:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5255:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5255:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5248:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5019:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5026:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5034:3:1",
"type": ""
}
],
"src": "4956:344:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5398:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5408:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5455:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5422:32:1"
},
"nodeType": "YulFunctionCall",
"src": "5422:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5412:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5470:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5536:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5541:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5477:58:1"
},
"nodeType": "YulFunctionCall",
"src": "5477:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5470:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5583:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5590:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5579:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5579:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5597:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5602:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5557:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5557:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "5557:52:1"
},
{
"nodeType": "YulAssignment",
"src": "5618:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5629:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5656:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5634:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5634:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5625:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5625:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5618:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5379:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5386:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5394:3:1",
"type": ""
}
],
"src": "5306:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5786:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5796:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5843:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5810:32:1"
},
"nodeType": "YulFunctionCall",
"src": "5810:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5800:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5858:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5942:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5947:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "5865:76:1"
},
"nodeType": "YulFunctionCall",
"src": "5865:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5858:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5989:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5996:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5985:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5985:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6003:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6008:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5963:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5963:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "5963:52:1"
},
{
"nodeType": "YulAssignment",
"src": "6024:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6035:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6040:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6031:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6031:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6024:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5767:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5774:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5782:3:1",
"type": ""
}
],
"src": "5676:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6205:149:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6216:112:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6307:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6315:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6324:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6223:83:1"
},
"nodeType": "YulFunctionCall",
"src": "6223:105:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6216:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6338:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6345:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6338:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_calldata_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6176:3:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6182:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6190:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6201:3:1",
"type": ""
}
],
"src": "6059:295:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6496:139:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6507:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6596:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6605:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6514:81:1"
},
"nodeType": "YulFunctionCall",
"src": "6514:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6507:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6619:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6626:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6619:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6475:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6481:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6492:3:1",
"type": ""
}
],
"src": "6360:275:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6809:245:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6819:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6831:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6842:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6827:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6827:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6819:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6866:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6877:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6862:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6862:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6885:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6891:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6881:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6881:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6855:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6855:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "6855:47:1"
},
{
"nodeType": "YulAssignment",
"src": "6911:136:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7033:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7042:4:1"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6919:113:1"
},
"nodeType": "YulFunctionCall",
"src": "6919:128:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6911:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6781:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6793:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6804:4:1",
"type": ""
}
],
"src": "6641:413:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7178:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7188:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7200:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7211:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7196:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7196:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7188:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7235:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7246:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7231:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7254:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7260:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7250:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7250:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7224:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7224:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "7224:47:1"
},
{
"nodeType": "YulAssignment",
"src": "7280:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7352:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7361:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7288:63:1"
},
"nodeType": "YulFunctionCall",
"src": "7288:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7280:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7150:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7162:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7173:4:1",
"type": ""
}
],
"src": "7060:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7545:348:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7555:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7567:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7578:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7563:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7563:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7555:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7602:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7613:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7598:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7598:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7621:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7627:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7617:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7617:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7591:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7591:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "7591:47:1"
},
{
"nodeType": "YulAssignment",
"src": "7647:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7719:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7728:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7655:63:1"
},
"nodeType": "YulFunctionCall",
"src": "7655:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7647:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7754:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7765:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7750:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7750:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7774:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7780:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7770:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7770:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7743:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "7743:48:1"
},
{
"nodeType": "YulAssignment",
"src": "7800:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7872:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7881:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7808:63:1"
},
"nodeType": "YulFunctionCall",
"src": "7808:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7800:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7509:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7521:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7529:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7540:4:1",
"type": ""
}
],
"src": "7379:514:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7939:243:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7949:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7965:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7959:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7959:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7949:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7977:35:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7999:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8007:4:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7995:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7995:17:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7981:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8123:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8125:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8125:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8125:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "8066:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8078:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8063:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8063:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "8102:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "8114:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8099:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8099:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "8060:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8060:62:1"
},
"nodeType": "YulIf",
"src": "8057:2:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8161:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "8165:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8154:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8154:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "8154:22:1"
}
]
},
"name": "allocateMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7923:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7932:6:1",
"type": ""
}
],
"src": "7899:283:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8255:265:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8360:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8362:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8362:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8362:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8332:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8340:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8329:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8329:30:1"
},
"nodeType": "YulIf",
"src": "8326:2:1"
},
{
"nodeType": "YulAssignment",
"src": "8412:41:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8428:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8436:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8424:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8424:17:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8447:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "8443:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8443:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8420:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8420:33:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8412:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8490:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8502:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8508:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8498:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8498:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8490:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8239:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "8250:4:1",
"type": ""
}
],
"src": "8188:332:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8608:60:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8618:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "8626:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8618:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8639:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "8651:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8656:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8647:14:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "8639:4:1"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "8595:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "8603:4:1",
"type": ""
}
],
"src": "8526:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8758:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8769:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8785:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8779:5:1"
},
"nodeType": "YulFunctionCall",
"src": "8779:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8769:6:1"
}
]
}
]
},
"name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8741:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8751:6:1",
"type": ""
}
],
"src": "8674:124:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8863:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8874:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8890:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8884:5:1"
},
"nodeType": "YulFunctionCall",
"src": "8884:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8874:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8846:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8856:6:1",
"type": ""
}
],
"src": "8804:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8994:38:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9004:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "9016:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9021:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9012:14:1"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "9004:4:1"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "8981:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "8989:4:1",
"type": ""
}
],
"src": "8909:123:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9159:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9176:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9181:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9169:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9169:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "9169:19:1"
},
{
"nodeType": "YulAssignment",
"src": "9197:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9216:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9221:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9212:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9212:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9197:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9131:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9136:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9147:11:1",
"type": ""
}
],
"src": "9038:194:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9324:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9341:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9346:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9334:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9334:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "9334:19:1"
},
{
"nodeType": "YulAssignment",
"src": "9362:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9381:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9386:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9377:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9377:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9362:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9296:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9301:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9312:11:1",
"type": ""
}
],
"src": "9238:159:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9499:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9516:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9521:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9509:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9509:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "9509:19:1"
},
{
"nodeType": "YulAssignment",
"src": "9537:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9556:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9561:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9552:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9552:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9537:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9471:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9476:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9487:11:1",
"type": ""
}
],
"src": "9403:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9692:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9702:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9717:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "9702:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9664:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9669:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "9680:11:1",
"type": ""
}
],
"src": "9578:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9858:209:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9896:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9905:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9908:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9898:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9898:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "9898:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "9874:10:1"
},
{
"name": "endIndex",
"nodeType": "YulIdentifier",
"src": "9886:8:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9871:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9871:24:1"
},
"nodeType": "YulIf",
"src": "9868:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9945:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9954:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9957:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "9947:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9947:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "9947:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "endIndex",
"nodeType": "YulIdentifier",
"src": "9927:8:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9937:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9924:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9924:20:1"
},
"nodeType": "YulIf",
"src": "9921:2:1"
},
{
"nodeType": "YulAssignment",
"src": "9970:44:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9987:6:1"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "9999:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10011:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9995:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9995:18:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9983:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9983:31:1"
},
"variableNames": [
{
"name": "offsetOut",
"nodeType": "YulIdentifier",
"src": "9970:9:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10023:38:1",
"value": {
"arguments": [
{
"name": "endIndex",
"nodeType": "YulIdentifier",
"src": "10040:8:1"
},
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "10050:10:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10036:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10036:25:1"
},
"variableNames": [
{
"name": "lengthOut",
"nodeType": "YulIdentifier",
"src": "10023:9:1"
}
]
}
]
},
"name": "calldata_array_index_range_access_t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9796:6:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9804:6:1",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "9812:10:1",
"type": ""
},
{
"name": "endIndex",
"nodeType": "YulTypedName",
"src": "9824:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "offsetOut",
"nodeType": "YulTypedName",
"src": "9837:9:1",
"type": ""
},
{
"name": "lengthOut",
"nodeType": "YulTypedName",
"src": "9848:9:1",
"type": ""
}
],
"src": "9732:335:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10117:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10127:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10150:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10132:17:1"
},
"nodeType": "YulFunctionCall",
"src": "10132:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10127:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10161:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10184:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10166:17:1"
},
"nodeType": "YulFunctionCall",
"src": "10166:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10161:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10324:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10326:16:1"
},
"nodeType": "YulFunctionCall",
"src": "10326:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "10326:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10245:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10252:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10320:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10248:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10248:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10242:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10242:81:1"
},
"nodeType": "YulIf",
"src": "10239:2:1"
},
{
"nodeType": "YulAssignment",
"src": "10356:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10367:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10370:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10363:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10363:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "10356:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10104:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10107:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "10113:3:1",
"type": ""
}
],
"src": "10073:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10429:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10439:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10462:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10444:17:1"
},
"nodeType": "YulFunctionCall",
"src": "10444:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10439:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10473:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10496:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10478:17:1"
},
"nodeType": "YulFunctionCall",
"src": "10478:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10473:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10520:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10522:16:1"
},
"nodeType": "YulFunctionCall",
"src": "10522:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "10522:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10514:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10517:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10511:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10511:8:1"
},
"nodeType": "YulIf",
"src": "10508:2:1"
},
{
"nodeType": "YulAssignment",
"src": "10552:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10564:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10567:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10560:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "10552:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10415:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10418:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "10424:4:1",
"type": ""
}
],
"src": "10384:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10626:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10636:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "10647:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "10636:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10608:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "10618:7:1",
"type": ""
}
],
"src": "10581:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10715:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10738:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10743:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10748:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "10725:12:1"
},
"nodeType": "YulFunctionCall",
"src": "10725:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "10725:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10796:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10801:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10792:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10792:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10810:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10785:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10785:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "10785:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10697:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10702:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10707:6:1",
"type": ""
}
],
"src": "10664:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10873:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10883:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10892:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10887:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10952:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10977:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10982:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10973:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10973:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10996:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "11001:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10992:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10992:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10986:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10986:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10966:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10966:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "10966:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10913:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10916:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10910:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10910:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10924:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10926:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10935:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10938:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10931:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10931:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10926:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10906:3:1",
"statements": []
},
"src": "10902:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11049:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "11099:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11104:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11095:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11095:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11113:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11088:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11088:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "11088:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "11030:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11033:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11027:2:1"
},
"nodeType": "YulFunctionCall",
"src": "11027:13:1"
},
"nodeType": "YulIf",
"src": "11024:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10855:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10860:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10865:6:1",
"type": ""
}
],
"src": "10824:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11180:128:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11190:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11217:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11199:17:1"
},
"nodeType": "YulFunctionCall",
"src": "11199:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11190:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11251:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "11253:16:1"
},
"nodeType": "YulFunctionCall",
"src": "11253:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "11253:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11238:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11245:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11235:2:1"
},
"nodeType": "YulFunctionCall",
"src": "11235:15:1"
},
"nodeType": "YulIf",
"src": "11232:2:1"
},
{
"nodeType": "YulAssignment",
"src": "11282:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11293:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11300:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11289:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11289:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "11282:3:1"
}
]
}
]
},
"name": "decrement_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11166:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "11176:3:1",
"type": ""
}
],
"src": "11137:171:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11365:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11375:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11389:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11395:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11385:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11385:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11375:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11406:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11436:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11442:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11432:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "11410:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11483:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11497:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11511:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11519:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11507:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11507:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11497:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11463:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11456:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11456:26:1"
},
"nodeType": "YulIf",
"src": "11453:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11586:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "11600:16:1"
},
"nodeType": "YulFunctionCall",
"src": "11600:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "11600:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11550:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11573:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11581:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11570:2:1"
},
"nodeType": "YulFunctionCall",
"src": "11570:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11547:2:1"
},
"nodeType": "YulFunctionCall",
"src": "11547:38:1"
},
"nodeType": "YulIf",
"src": "11544:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "11349:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11358:6:1",
"type": ""
}
],
"src": "11314:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11683:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11693:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11720:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11702:17:1"
},
"nodeType": "YulFunctionCall",
"src": "11702:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11693:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11816:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "11818:16:1"
},
"nodeType": "YulFunctionCall",
"src": "11818:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "11818:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11741:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11748:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11738:2:1"
},
"nodeType": "YulFunctionCall",
"src": "11738:77:1"
},
"nodeType": "YulIf",
"src": "11735:2:1"
},
{
"nodeType": "YulAssignment",
"src": "11847:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11858:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11865:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11854:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11854:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "11847:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11669:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "11679:3:1",
"type": ""
}
],
"src": "11640:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11907:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11924:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11927:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11917:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11917:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "11917:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12021:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12024:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12014:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12014:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "12014:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12045:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12048:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12038:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12038:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "12038:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "11879:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12093:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12110:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12113:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12103:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12103:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "12103:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12207:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12210:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12200:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12200:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "12200:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12231:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12234:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12224:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12224:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "12224:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "12065:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12279:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12296:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12299:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12289:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12289:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "12289:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12393:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12396:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12386:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12386:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "12386:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12417:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12420:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12410:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12410:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "12410:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "12251:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12485:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12495:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12513:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12520:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12509:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12509:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12529:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "12525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12525:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12505:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "12495:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12468:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "12478:6:1",
"type": ""
}
],
"src": "12437:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12588:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12645:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12654:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12657:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12647:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12647:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "12647:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12611:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12636:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "12618:17:1"
},
"nodeType": "YulFunctionCall",
"src": "12618:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12608:2:1"
},
"nodeType": "YulFunctionCall",
"src": "12608:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12601:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12601:43:1"
},
"nodeType": "YulIf",
"src": "12598:2:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12581:5:1",
"type": ""
}
],
"src": "12545:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocateMemory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert(0, 0) }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert(0, 0) }\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_calldata_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0, value1 := abi_decode_t_string_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos) -> updatedPos {\n updatedPos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos)\n }\n\n // string[] -> string[]\n function abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let headStart := pos\n let tail := add(pos, mul(length, 0x20))\n let baseRef := array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, sub(tail, headStart))\n let elementValue0 := mload(srcPtr)\n tail := abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(elementValue0, tail)\n srcPtr := array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(srcPtr)\n pos := add(pos, 0x20)\n }\n pos := tail\n end := pos\n }\n\n // string -> string\n function abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(start, length, pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n\n copy_calldata_to_memory(start, pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_calldata_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n }\n\n function allocateMemory(size) -> memPtr {\n memPtr := mload(64)\n let newFreePtr := add(memPtr, size)\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n // round up\n size := and(add(length, 0x1f), not(0x1f))\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n function array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function calldata_array_index_range_access_t_bytes_calldata_ptr(offset, length, startIndex, endIndex) -> offsetOut, lengthOut {\n if gt(startIndex, endIndex) { revert(0, 0) }\n if gt(endIndex, length) { revert(0, 0) }\n offsetOut := add(offset, mul(startIndex, 1))\n lengthOut := sub(endIndex, startIndex)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function decrement_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0x00) { panic_error_0x11() }\n ret := sub(value, 1)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061007d5760003560e01c806389bcede71161005b57806389bcede7146100fe578063d7c15ab31461012e578063f0e994671461014d578063fba4e5da1461017d5761007d565b8063171ec7a514610082578063346b83a9146100b2578063613d7c9d146100ce575b600080fd5b61009c60048036038101906100979190610e1c565b6101ad565b6040516100a991906110e9565b60405180910390f35b6100cc60048036038101906100c79190610dd7565b610358565b005b6100e860048036038101906100e39190610e1c565b610471565b6040516100f591906110c7565b60405180910390f35b61011860048036038101906101139190610e5d565b61056d565b60405161012591906110e9565b60405180910390f35b610136610904565b60405161014492919061110b565b60405180910390f35b61016760048036038101906101629190610f1d565b610af2565b60405161017491906110e9565b60405180910390f35b61019760048036038101906101929190610ec9565b610b9e565b6040516101a491906110e9565b60405180910390f35b6060600082905060008151116101ec577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b6000815167ffffffffffffffff81111561022f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156102615781602001600182028036833780820191505090505b509050600081905060005b835181101561034c578381815181106102ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8260018387516102c9919061129d565b6102d3919061129d565b8151811061030a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350808061034490611379565b91505061026c565b50809350505050919050565b600080838360405161036b929190611097565b9081526020016040518091039020905060018383909180600181540180825580915050600190039060005260206000200160009091929091929091929091925091906103b8929190610c6d565b50600083839050905060005b8181101561046a5760006001826103db9190611247565b90505b8281116104565736600087879150915081818590859261040093929190611214565b9150915085828290918060018154018082558091505060019003906000526020600020016000909192909192909192909192509190610440929190610c6d565b505050808061044e90611379565b9150506103de565b50808061046290611379565b9150506103c4565b5050505050565b60606000808360405161048491906110b0565b9081526020016040518091039020805480602002602001604051908101604052809291908181526020016000905b8282101561055e5783829060005260206000200180546104d190611347565b80601f01602080910402602001604051908101604052809291908181526020018280546104fd90611347565b801561054a5780601f1061051f5761010080835404028352916020019161054a565b820191906000526020600020905b81548152906001019060200180831161052d57829003601f168201915b5050505050815260200190600101906104b2565b50505050905080915050919050565b606060008390506000839050600081518351610589919061129d565b67ffffffffffffffff8111156105c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156105fa5781602001600182028036833780820191505090505b50905060008190506000805b85518110156108f55784600081518110610649577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168682815181106106af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156108275760006001826106f19190611247565b9050600060019050600190505b86518110156107fb57868181518110610740577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168883815181106107a6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156107e85781806107e490611379565b9250505b80806107f390611379565b9150506106fe565b86518114156108205760018751610812919061129d565b8361081d9190611247565b92505b50506108d4565b858181518110610860577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b8383815181106108a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505b81806108df90611379565b92505080806108ed90611379565b915050610606565b50819550505050505092915050565b60608060608060006001808054905061091d919061129d565b90505b6000811115610ae55760018181548110610963577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001805461097890611347565b80601f01602080910402602001604051908101604052809291908181526020018280546109a490611347565b80156109f15780601f106109c6576101008083540402835291602001916109f1565b820191906000526020600020905b8154815290600101906020018083116109d457829003601f168201915b5050505050925060018082610a06919061129d565b81548110610a3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054610a5290611347565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7e90611347565b8015610acb5780601f10610aa057610100808354040283529160200191610acb565b820191906000526020600020905b815481529060010190602001808311610aae57829003601f168201915b505050505091508080610add9061131d565b915050610920565b5080829350935050509091565b60018181548110610b0257600080fd5b906000526020600020016000915090508054610b1d90611347565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4990611347565b8015610b965780601f10610b6b57610100808354040283529160200191610b96565b820191906000526020600020905b815481529060010190602001808311610b7957829003601f168201915b505050505081565b6000828051602081018201805184825260208301602085012081835280955050505050508181548110610bd057600080fd5b90600052602060002001600091509150508054610bec90611347565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1890611347565b8015610c655780601f10610c3a57610100808354040283529160200191610c65565b820191906000526020600020905b815481529060010190602001808311610c4857829003601f168201915b505050505081565b828054610c7990611347565b90600052602060002090601f016020900481019282610c9b5760008555610ce2565b82601f10610cb457803560ff1916838001178555610ce2565b82800160010185558215610ce2579182015b82811115610ce1578235825591602001919060010190610cc6565b5b509050610cef9190610cf3565b5090565b5b80821115610d0c576000816000905550600101610cf4565b5090565b6000610d23610d1e84611173565b611142565b905082815260208101848484011115610d3b57600080fd5b610d468482856112db565b509392505050565b60008083601f840112610d6057600080fd5b8235905067ffffffffffffffff811115610d7957600080fd5b602083019150836001820283011115610d9157600080fd5b9250929050565b600082601f830112610da957600080fd5b8135610db9848260208601610d10565b91505092915050565b600081359050610dd181611460565b92915050565b60008060208385031215610dea57600080fd5b600083013567ffffffffffffffff811115610e0457600080fd5b610e1085828601610d4e565b92509250509250929050565b600060208284031215610e2e57600080fd5b600082013567ffffffffffffffff811115610e4857600080fd5b610e5484828501610d98565b91505092915050565b60008060408385031215610e7057600080fd5b600083013567ffffffffffffffff811115610e8a57600080fd5b610e9685828601610d98565b925050602083013567ffffffffffffffff811115610eb357600080fd5b610ebf85828601610d98565b9150509250929050565b60008060408385031215610edc57600080fd5b600083013567ffffffffffffffff811115610ef657600080fd5b610f0285828601610d98565b9250506020610f1385828601610dc2565b9150509250929050565b600060208284031215610f2f57600080fd5b6000610f3d84828501610dc2565b91505092915050565b6000610f528383610ff4565b905092915050565b6000610f65826111b3565b610f6f81856111d6565b935083602082028501610f81856111a3565b8060005b85811015610fbd5784840389528151610f9e8582610f46565b9450610fa9836111c9565b925060208a01995050600181019050610f85565b50829750879550505050505092915050565b6000610fdb8385611209565b9350610fe88385846112db565b82840190509392505050565b6000610fff826111be565b61100981856111e7565b93506110198185602086016112ea565b6110228161144f565b840191505092915050565b6000611038826111be565b61104281856111f8565b93506110528185602086016112ea565b61105b8161144f565b840191505092915050565b6000611071826111be565b61107b8185611209565b935061108b8185602086016112ea565b80840191505092915050565b60006110a4828486610fcf565b91508190509392505050565b60006110bc8284611066565b915081905092915050565b600060208201905081810360008301526110e18184610f5a565b905092915050565b60006020820190508181036000830152611103818461102d565b905092915050565b60006040820190508181036000830152611125818561102d565b90508181036020830152611139818461102d565b90509392505050565b6000604051905081810181811067ffffffffffffffff8211171561116957611168611420565b5b8060405250919050565b600067ffffffffffffffff82111561118e5761118d611420565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000808585111561122457600080fd5b8386111561123157600080fd5b6001850283019150848603905094509492505050565b6000611252826112d1565b915061125d836112d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611292576112916113c2565b5b828201905092915050565b60006112a8826112d1565b91506112b3836112d1565b9250828210156112c6576112c56113c2565b5b828203905092915050565b6000819050919050565b82818337600083830152505050565b60005b838110156113085780820151818401526020810190506112ed565b83811115611317576000848401525b50505050565b6000611328826112d1565b9150600082141561133c5761133b6113c2565b5b600182039050919050565b6000600282049050600182168061135f57607f821691505b60208210811415611373576113726113f1565b5b50919050565b6000611384826112d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156113b7576113b66113c2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b611469816112d1565b811461147457600080fd5b5056fea26469706673582212206e01fc896251f07f0ceebe8eb23cd9eb50cfd0b87054496b2bfe7c5453b4ed2a64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x89BCEDE7 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x89BCEDE7 EQ PUSH2 0xFE JUMPI DUP1 PUSH4 0xD7C15AB3 EQ PUSH2 0x12E JUMPI DUP1 PUSH4 0xF0E99467 EQ PUSH2 0x14D JUMPI DUP1 PUSH4 0xFBA4E5DA EQ PUSH2 0x17D JUMPI PUSH2 0x7D JUMP JUMPDEST DUP1 PUSH4 0x171EC7A5 EQ PUSH2 0x82 JUMPI DUP1 PUSH4 0x346B83A9 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x613D7C9D EQ PUSH2 0xCE JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x9C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x97 SWAP2 SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH2 0x1AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0xDD7 JUMP JUMPDEST PUSH2 0x358 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xE8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE3 SWAP2 SWAP1 PUSH2 0xE1C JUMP JUMPDEST PUSH2 0x471 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF5 SWAP2 SWAP1 PUSH2 0x10C7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x118 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x113 SWAP2 SWAP1 PUSH2 0xE5D JUMP JUMPDEST PUSH2 0x56D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x136 PUSH2 0x904 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x144 SWAP3 SWAP2 SWAP1 PUSH2 0x110B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x167 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x162 SWAP2 SWAP1 PUSH2 0xF1D JUMP JUMPDEST PUSH2 0xAF2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x174 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x197 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x192 SWAP2 SWAP1 PUSH2 0xEC9 JUMP JUMPDEST PUSH2 0xB9E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A4 SWAP2 SWAP1 PUSH2 0x10E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1EC JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x22F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x261 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x34C JUMPI DUP4 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2AE JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP3 PUSH1 0x1 DUP4 DUP8 MLOAD PUSH2 0x2C9 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST PUSH2 0x2D3 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x30A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP DUP1 DUP1 PUSH2 0x344 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x26C JUMP JUMPDEST POP DUP1 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP4 PUSH1 0x40 MLOAD PUSH2 0x36B SWAP3 SWAP2 SWAP1 PUSH2 0x1097 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP PUSH1 0x1 DUP4 DUP4 SWAP1 SWAP2 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 POP SWAP2 SWAP1 PUSH2 0x3B8 SWAP3 SWAP2 SWAP1 PUSH2 0xC6D JUMP JUMPDEST POP PUSH1 0x0 DUP4 DUP4 SWAP1 POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x46A JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x3DB SWAP2 SWAP1 PUSH2 0x1247 JUMP JUMPDEST SWAP1 POP JUMPDEST DUP3 DUP2 GT PUSH2 0x456 JUMPI CALLDATASIZE PUSH1 0x0 DUP8 DUP8 SWAP2 POP SWAP2 POP DUP2 DUP2 DUP6 SWAP1 DUP6 SWAP3 PUSH2 0x400 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1214 JUMP JUMPDEST SWAP2 POP SWAP2 POP DUP6 DUP3 DUP3 SWAP1 SWAP2 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 SWAP1 SWAP2 SWAP3 POP SWAP2 SWAP1 PUSH2 0x440 SWAP3 SWAP2 SWAP1 PUSH2 0xC6D JUMP JUMPDEST POP POP POP DUP1 DUP1 PUSH2 0x44E SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3DE JUMP JUMPDEST POP DUP1 DUP1 PUSH2 0x462 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x3C4 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 DUP4 PUSH1 0x40 MLOAD PUSH2 0x484 SWAP2 SWAP1 PUSH2 0x10B0 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x55E JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x4D1 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x4FD SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x54A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x51F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x54A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x52D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x4B2 JUMP JUMPDEST POP POP POP POP SWAP1 POP DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP4 SWAP1 POP PUSH1 0x0 DUP4 SWAP1 POP PUSH1 0x0 DUP2 MLOAD DUP4 MLOAD PUSH2 0x589 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5C8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x5FA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x8F5 JUMPI DUP5 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x649 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x6AF JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0x827 JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x6F1 SWAP2 SWAP1 PUSH2 0x1247 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x1 SWAP1 POP PUSH1 0x1 SWAP1 POP JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x7FB JUMPI DUP7 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x740 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP9 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x7A6 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ ISZERO PUSH2 0x7E8 JUMPI DUP2 DUP1 PUSH2 0x7E4 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP3 POP POP JUMPDEST DUP1 DUP1 PUSH2 0x7F3 SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x6FE JUMP JUMPDEST DUP7 MLOAD DUP2 EQ ISZERO PUSH2 0x820 JUMPI PUSH1 0x1 DUP8 MLOAD PUSH2 0x812 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST DUP4 PUSH2 0x81D SWAP2 SWAP1 PUSH2 0x1247 JUMP JUMPDEST SWAP3 POP JUMPDEST POP POP PUSH2 0x8D4 JUMP JUMPDEST DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x860 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x8A4 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP JUMPDEST DUP2 DUP1 PUSH2 0x8DF SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP3 POP POP DUP1 DUP1 PUSH2 0x8ED SWAP1 PUSH2 0x1379 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x606 JUMP JUMPDEST POP DUP2 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH1 0x60 DUP1 PUSH1 0x0 PUSH1 0x1 DUP1 DUP1 SLOAD SWAP1 POP PUSH2 0x91D SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH1 0x0 DUP2 GT ISZERO PUSH2 0xAE5 JUMPI PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x963 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x978 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x9A4 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x9F1 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9C6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x9F1 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x9D4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP3 POP PUSH1 0x1 DUP1 DUP3 PUSH2 0xA06 SWAP2 SWAP1 PUSH2 0x129D JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0xA3D JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0xA52 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xA7E SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xACB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xAA0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xACB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xAAE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP2 POP DUP1 DUP1 PUSH2 0xADD SWAP1 PUSH2 0x131D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x920 JUMP JUMPDEST POP DUP1 DUP3 SWAP4 POP SWAP4 POP POP POP SWAP1 SWAP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xB02 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 SLOAD PUSH2 0xB1D SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xB49 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xB96 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xB6B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xB96 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xB79 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xBD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP2 POP POP DUP1 SLOAD PUSH2 0xBEC SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xC18 SWAP1 PUSH2 0x1347 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xC65 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xC3A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xC65 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xC48 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0xC79 SWAP1 PUSH2 0x1347 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0xC9B JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0xCE2 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0xCB4 JUMPI DUP1 CALLDATALOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0xCE2 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0xCE2 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xCE1 JUMPI DUP3 CALLDATALOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xCC6 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0xCEF SWAP2 SWAP1 PUSH2 0xCF3 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xD0C JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xCF4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD23 PUSH2 0xD1E DUP5 PUSH2 0x1173 JUMP JUMPDEST PUSH2 0x1142 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xD3B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD46 DUP5 DUP3 DUP6 PUSH2 0x12DB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0xD60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xD79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0xD91 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xDA9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0xDB9 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xD10 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xDD1 DUP2 PUSH2 0x1460 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xDEA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE10 DUP6 DUP3 DUP7 ADD PUSH2 0xD4E JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE2E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE54 DUP5 DUP3 DUP6 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE70 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xE8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE96 DUP6 DUP3 DUP7 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEB3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEBF DUP6 DUP3 DUP7 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xEDC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF02 DUP6 DUP3 DUP7 ADD PUSH2 0xD98 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xF13 DUP6 DUP3 DUP7 ADD PUSH2 0xDC2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xF2F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xF3D DUP5 DUP3 DUP6 ADD PUSH2 0xDC2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF52 DUP4 DUP4 PUSH2 0xFF4 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF65 DUP3 PUSH2 0x11B3 JUMP JUMPDEST PUSH2 0xF6F DUP2 DUP6 PUSH2 0x11D6 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xF81 DUP6 PUSH2 0x11A3 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xFBD JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xF9E DUP6 DUP3 PUSH2 0xF46 JUMP JUMPDEST SWAP5 POP PUSH2 0xFA9 DUP4 PUSH2 0x11C9 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xF85 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFDB DUP4 DUP6 PUSH2 0x1209 JUMP JUMPDEST SWAP4 POP PUSH2 0xFE8 DUP4 DUP6 DUP5 PUSH2 0x12DB JUMP JUMPDEST DUP3 DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xFFF DUP3 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x1009 DUP2 DUP6 PUSH2 0x11E7 JUMP JUMPDEST SWAP4 POP PUSH2 0x1019 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12EA JUMP JUMPDEST PUSH2 0x1022 DUP2 PUSH2 0x144F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1038 DUP3 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x1042 DUP2 DUP6 PUSH2 0x11F8 JUMP JUMPDEST SWAP4 POP PUSH2 0x1052 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12EA JUMP JUMPDEST PUSH2 0x105B DUP2 PUSH2 0x144F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1071 DUP3 PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x107B DUP2 DUP6 PUSH2 0x1209 JUMP JUMPDEST SWAP4 POP PUSH2 0x108B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12EA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10A4 DUP3 DUP5 DUP7 PUSH2 0xFCF JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10BC DUP3 DUP5 PUSH2 0x1066 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x10E1 DUP2 DUP5 PUSH2 0xF5A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1103 DUP2 DUP5 PUSH2 0x102D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1125 DUP2 DUP6 PUSH2 0x102D JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1139 DUP2 DUP5 PUSH2 0x102D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1169 JUMPI PUSH2 0x1168 PUSH2 0x1420 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x118E JUMPI PUSH2 0x118D PUSH2 0x1420 JUMP JUMPDEST JUMPDEST PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 DUP6 GT ISZERO PUSH2 0x1224 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 DUP7 GT ISZERO PUSH2 0x1231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x1 DUP6 MUL DUP4 ADD SWAP2 POP DUP5 DUP7 SUB SWAP1 POP SWAP5 POP SWAP5 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1252 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x125D DUP4 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1292 JUMPI PUSH2 0x1291 PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x12A8 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH2 0x12B3 DUP4 PUSH2 0x12D1 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x12C6 JUMPI PUSH2 0x12C5 PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1308 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x12ED JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1317 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1328 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x133C JUMPI PUSH2 0x133B PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 SUB SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x135F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1373 JUMPI PUSH2 0x1372 PUSH2 0x13F1 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1384 DUP3 PUSH2 0x12D1 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x13B7 JUMPI PUSH2 0x13B6 PUSH2 0x13C2 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1469 DUP2 PUSH2 0x12D1 JUMP JUMPDEST DUP2 EQ PUSH2 0x1474 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0x1FC896251F07F0CEEBE8EB23CD9EB POP 0xCF 0xD0 0xB8 PUSH17 0x54496B2BFE7C5453B4ED2A64736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "189:3324:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1297:447;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;697:590;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;293:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1754:1119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2879:355;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;262:28;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;214:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1297:447;1360:13;1384:23;1416:5;1384:38;;1459:1;1439:10;:17;:21;1432:29;;;;;;;;;;;;1471:24;1509:10;:17;1498:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1471:56;;1537:22;1568:10;1537:42;;1593:6;1589:115;1604:10;:17;1602:1;:19;1589:115;;;1680:10;1691:1;1680:13;;;;;;;;;;;;;;;;;;;;;;;;1640:9;1675:1;1671;1651:10;:17;:21;;;;:::i;:::-;:25;;;;:::i;:::-;1640:37;;;;;;;;;;;;;;;;;;;:53;;;;;;;;;;;1622:3;;;;;:::i;:::-;;;;1589:115;;;;1727:9;1713:24;;;;;1297:447;;;:::o;697:590::-;761:31;795:7;803:3;;795:12;;;;;;;:::i;:::-;;;;;;;;;;;;;761:46;;817:12;835:3;;817:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;849:15;873:3;;867:17;;849:35;;925:6;921:317;938:10;935:1;:13;921:317;;;972:6;981:1;979;:3;;;;:::i;:::-;972:10;;968:260;987:10;984:1;:13;968:260;;1022:16;;1047:3;;1022:29;;;;1074:1;;1076;1074:6;1078:1;1074:6;;;;;;;:::i;:::-;1070:10;;;;1099:14;1126:1;;1099:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;968:260;;999:3;;;;;:::i;:::-;;;;968:260;;;;950:3;;;;;:::i;:::-;;;;921:317;;;;697:590;;;;:::o;293:136::-;352:15;376:19;398:7;406:3;398:12;;;;;;:::i;:::-;;;;;;;;;;;;;376:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;423:3;416:10;;;293:136;;;:::o;1754:1119::-;1841:13;1865:21;1895:3;1865:34;;1909:24;1942:6;1909:40;;1959:21;2012:11;:18;1994:8;:15;:36;;;;:::i;:::-;1983:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1959:72;;2041:25;2075:7;2041:42;;2198:10;2226:6;2222:608;2237:8;:15;2235:1;:17;2222:608;;;2290:11;2302:1;2290:14;;;;;;;;;;;;;;;;;;;;;;;;2275:29;;;:8;2284:1;2275:11;;;;;;;;;;;;;;;;;;;;;;;;:29;;;;2272:527;;;2356:7;2366:1;2364;:3;;;;:::i;:::-;2356:11;;2385:6;2392:1;2385:8;;2417:1;2415:3;;2411:162;2422:11;:18;2420:1;:20;2411:162;;;2487:11;2499:1;2487:14;;;;;;;;;;;;;;;;;;;;;;;;2471:30;;;:8;2480:2;2471:12;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;2468:87;;;2528:4;;;;;:::i;:::-;;;;2468:87;2442:3;;;;;:::i;:::-;;;;2411:162;;;2598:11;:18;2593:1;:23;2590:123;;;2692:1;2673:11;:18;:20;;;;:::i;:::-;2670:1;:24;;;;:::i;:::-;2667:27;;2590:123;2272:527;;;;;2773:8;2782:1;2773:11;;;;;;;;;;;;;;;;;;;;;;;;2751:12;2764:5;2751:19;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;2272:527;2812:7;;;;;:::i;:::-;;;;2253:3;;;;;:::i;:::-;;;;2222:608;;;;2853:12;2839:27;;;;;;;1754:1119;;;;:::o;2879:355::-;2935:13;2950;2975:22;3007;3054:6;3083:1;3063:12;:19;;;;:21;;;;:::i;:::-;3054:30;;3049:142;3090:1;3086;:5;3049:142;;;3123:12;3136:1;3123:15;;;;;;;;;;;;;;;;;;;;;;;3112:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3163:12;3178:1;3176;:3;;;;:::i;:::-;3163:17;;;;;;;;;;;;;;;;;;;;;;;3152:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3093:3;;;;;:::i;:::-;;;;3049:142;;;;3208:8;3218;3200:27;;;;;;2879:355;;:::o;262:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;214:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:344:1:-;;110:65;125:49;167:6;125:49;:::i;:::-;110:65;:::i;:::-;101:74;;198:6;191:5;184:21;236:4;229:5;225:16;274:3;265:6;260:3;256:16;253:25;250:2;;;291:1;288;281:12;250:2;304:41;338:6;333:3;328;304:41;:::i;:::-;91:260;;;;;;:::o;371:352::-;;;489:3;482:4;474:6;470:17;466:27;456:2;;507:1;504;497:12;456:2;543:6;530:20;520:30;;573:18;565:6;562:30;559:2;;;605:1;602;595:12;559:2;642:4;634:6;630:17;618:29;;696:3;688:4;680:6;676:17;666:8;662:32;659:41;656:2;;;713:1;710;703:12;656:2;446:277;;;;;:::o;743:273::-;;848:3;841:4;833:6;829:17;825:27;815:2;;866:1;863;856:12;815:2;906:6;893:20;931:79;1006:3;998:6;991:4;983:6;979:17;931:79;:::i;:::-;922:88;;805:211;;;;;:::o;1022:139::-;;1106:6;1093:20;1084:29;;1122:33;1149:5;1122:33;:::i;:::-;1074:87;;;;:::o;1167:395::-;;;1295:2;1283:9;1274:7;1270:23;1266:32;1263:2;;;1311:1;1308;1301:12;1263:2;1382:1;1371:9;1367:17;1354:31;1412:18;1404:6;1401:30;1398:2;;;1444:1;1441;1434:12;1398:2;1480:65;1537:7;1528:6;1517:9;1513:22;1480:65;:::i;:::-;1462:83;;;;1325:230;1253:309;;;;;:::o;1568:375::-;;1686:2;1674:9;1665:7;1661:23;1657:32;1654:2;;;1702:1;1699;1692:12;1654:2;1773:1;1762:9;1758:17;1745:31;1803:18;1795:6;1792:30;1789:2;;;1835:1;1832;1825:12;1789:2;1863:63;1918:7;1909:6;1898:9;1894:22;1863:63;:::i;:::-;1853:73;;1716:220;1644:299;;;;:::o;1949:633::-;;;2094:2;2082:9;2073:7;2069:23;2065:32;2062:2;;;2110:1;2107;2100:12;2062:2;2181:1;2170:9;2166:17;2153:31;2211:18;2203:6;2200:30;2197:2;;;2243:1;2240;2233:12;2197:2;2271:63;2326:7;2317:6;2306:9;2302:22;2271:63;:::i;:::-;2261:73;;2124:220;2411:2;2400:9;2396:18;2383:32;2442:18;2434:6;2431:30;2428:2;;;2474:1;2471;2464:12;2428:2;2502:63;2557:7;2548:6;2537:9;2533:22;2502:63;:::i;:::-;2492:73;;2354:221;2052:530;;;;;:::o;2588:520::-;;;2723:2;2711:9;2702:7;2698:23;2694:32;2691:2;;;2739:1;2736;2729:12;2691:2;2810:1;2799:9;2795:17;2782:31;2840:18;2832:6;2829:30;2826:2;;;2872:1;2869;2862:12;2826:2;2900:63;2955:7;2946:6;2935:9;2931:22;2900:63;:::i;:::-;2890:73;;2753:220;3012:2;3038:53;3083:7;3074:6;3063:9;3059:22;3038:53;:::i;:::-;3028:63;;2983:118;2681:427;;;;;:::o;3114:262::-;;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3238:1;3235;3228:12;3190:2;3281:1;3306:53;3351:7;3342:6;3331:9;3327:22;3306:53;:::i;:::-;3296:63;;3252:117;3180:196;;;;:::o;3382:::-;;3506:66;3568:3;3560:6;3506:66;:::i;:::-;3492:80;;3482:96;;;;:::o;3612:991::-;;3780:64;3838:5;3780:64;:::i;:::-;3860:96;3949:6;3944:3;3860:96;:::i;:::-;3853:103;;3982:3;4027:4;4019:6;4015:17;4010:3;4006:27;4057:66;4117:5;4057:66;:::i;:::-;4146:7;4177:1;4162:396;4187:6;4184:1;4181:13;4162:396;;;4258:9;4252:4;4248:20;4243:3;4236:33;4309:6;4303:13;4337:84;4416:4;4401:13;4337:84;:::i;:::-;4329:92;;4444:70;4507:6;4444:70;:::i;:::-;4434:80;;4543:4;4538:3;4534:14;4527:21;;4222:336;4209:1;4206;4202:9;4197:14;;4162:396;;;4166:14;4574:4;4567:11;;4594:3;4587:10;;3756:847;;;;;;;;;:::o;4633:317::-;;4770:89;4852:6;4847:3;4770:89;:::i;:::-;4763:96;;4869:43;4905:6;4900:3;4893:5;4869:43;:::i;:::-;4937:6;4932:3;4928:16;4921:23;;4753:197;;;;;:::o;4956:344::-;;5062:39;5095:5;5062:39;:::i;:::-;5117:61;5171:6;5166:3;5117:61;:::i;:::-;5110:68;;5187:52;5232:6;5227:3;5220:4;5213:5;5209:16;5187:52;:::i;:::-;5264:29;5286:6;5264:29;:::i;:::-;5259:3;5255:39;5248:46;;5038:262;;;;;:::o;5306:364::-;;5422:39;5455:5;5422:39;:::i;:::-;5477:71;5541:6;5536:3;5477:71;:::i;:::-;5470:78;;5557:52;5602:6;5597:3;5590:4;5583:5;5579:16;5557:52;:::i;:::-;5634:29;5656:6;5634:29;:::i;:::-;5629:3;5625:39;5618:46;;5398:272;;;;;:::o;5676:377::-;;5810:39;5843:5;5810:39;:::i;:::-;5865:89;5947:6;5942:3;5865:89;:::i;:::-;5858:96;;5963:52;6008:6;6003:3;5996:4;5989:5;5985:16;5963:52;:::i;:::-;6040:6;6035:3;6031:16;6024:23;;5786:267;;;;;:::o;6059:295::-;;6223:105;6324:3;6315:6;6307;6223:105;:::i;:::-;6216:112;;6345:3;6338:10;;6205:149;;;;;:::o;6360:275::-;;6514:95;6605:3;6596:6;6514:95;:::i;:::-;6507:102;;6626:3;6619:10;;6496:139;;;;:::o;6641:413::-;;6842:2;6831:9;6827:18;6819:26;;6891:9;6885:4;6881:20;6877:1;6866:9;6862:17;6855:47;6919:128;7042:4;7033:6;6919:128;:::i;:::-;6911:136;;6809:245;;;;:::o;7060:313::-;;7211:2;7200:9;7196:18;7188:26;;7260:9;7254:4;7250:20;7246:1;7235:9;7231:17;7224:47;7288:78;7361:4;7352:6;7288:78;:::i;:::-;7280:86;;7178:195;;;;:::o;7379:514::-;;7578:2;7567:9;7563:18;7555:26;;7627:9;7621:4;7617:20;7613:1;7602:9;7598:17;7591:47;7655:78;7728:4;7719:6;7655:78;:::i;:::-;7647:86;;7780:9;7774:4;7770:20;7765:2;7754:9;7750:18;7743:48;7808:78;7881:4;7872:6;7808:78;:::i;:::-;7800:86;;7545:348;;;;;:::o;7899:283::-;;7965:2;7959:9;7949:19;;8007:4;7999:6;7995:17;8114:6;8102:10;8099:22;8078:18;8066:10;8063:34;8060:62;8057:2;;;8125:18;;:::i;:::-;8057:2;8165:10;8161:2;8154:22;7939:243;;;;:::o;8188:332::-;;8340:18;8332:6;8329:30;8326:2;;;8362:18;;:::i;:::-;8326:2;8447:4;8443:9;8436:4;8428:6;8424:17;8420:33;8412:41;;8508:4;8502;8498:15;8490:23;;8255:265;;;:::o;8526:142::-;;8626:3;8618:11;;8656:4;8651:3;8647:14;8639:22;;8608:60;;;:::o;8674:124::-;;8785:5;8779:12;8769:22;;8758:40;;;:::o;8804:99::-;;8890:5;8884:12;8874:22;;8863:40;;;:::o;8909:123::-;;9021:4;9016:3;9012:14;9004:22;;8994:38;;;:::o;9038:194::-;;9181:6;9176:3;9169:19;9221:4;9216:3;9212:14;9197:29;;9159:73;;;;:::o;9238:159::-;;9346:6;9341:3;9334:19;9386:4;9381:3;9377:14;9362:29;;9324:73;;;;:::o;9403:169::-;;9521:6;9516:3;9509:19;9561:4;9556:3;9552:14;9537:29;;9499:73;;;;:::o;9578:148::-;;9717:3;9702:18;;9692:34;;;;:::o;9732:335::-;;;9886:8;9874:10;9871:24;9868:2;;;9908:1;9905;9898:12;9868:2;9937:6;9927:8;9924:20;9921:2;;;9957:1;9954;9947:12;9921:2;10011:1;9999:10;9995:18;9987:6;9983:31;9970:44;;10050:10;10040:8;10036:25;10023:38;;9858:209;;;;;;;:::o;10073:305::-;;10132:20;10150:1;10132:20;:::i;:::-;10127:25;;10166:20;10184:1;10166:20;:::i;:::-;10161:25;;10320:1;10252:66;10248:74;10245:1;10242:81;10239:2;;;10326:18;;:::i;:::-;10239:2;10370:1;10367;10363:9;10356:16;;10117:261;;;;:::o;10384:191::-;;10444:20;10462:1;10444:20;:::i;:::-;10439:25;;10478:20;10496:1;10478:20;:::i;:::-;10473:25;;10517:1;10514;10511:8;10508:2;;;10522:18;;:::i;:::-;10508:2;10567:1;10564;10560:9;10552:17;;10429:146;;;;:::o;10581:77::-;;10647:5;10636:16;;10626:32;;;:::o;10664:154::-;10748:6;10743:3;10738;10725:30;10810:1;10801:6;10796:3;10792:16;10785:27;10715:103;;;:::o;10824:307::-;10892:1;10902:113;10916:6;10913:1;10910:13;10902:113;;;11001:1;10996:3;10992:11;10986:18;10982:1;10977:3;10973:11;10966:39;10938:2;10935:1;10931:10;10926:15;;10902:113;;;11033:6;11030:1;11027:13;11024:2;;;11113:1;11104:6;11099:3;11095:16;11088:27;11024:2;10873:258;;;;:::o;11137:171::-;;11199:24;11217:5;11199:24;:::i;:::-;11190:33;;11245:4;11238:5;11235:15;11232:2;;;11253:18;;:::i;:::-;11232:2;11300:1;11293:5;11289:13;11282:20;;11180:128;;;:::o;11314:320::-;;11395:1;11389:4;11385:12;11375:22;;11442:1;11436:4;11432:12;11463:18;11453:2;;11519:4;11511:6;11507:17;11497:27;;11453:2;11581;11573:6;11570:14;11550:18;11547:38;11544:2;;;11600:18;;:::i;:::-;11544:2;11365:269;;;;:::o;11640:233::-;;11702:24;11720:5;11702:24;:::i;:::-;11693:33;;11748:66;11741:5;11738:77;11735:2;;;11818:18;;:::i;:::-;11735:2;11865:1;11858:5;11854:13;11847:20;;11683:190;;;:::o;11879:180::-;11927:77;11924:1;11917:88;12024:4;12021:1;12014:15;12048:4;12045:1;12038:15;12065:180;12113:77;12110:1;12103:88;12210:4;12207:1;12200:15;12234:4;12231:1;12224:15;12251:180;12299:77;12296:1;12289:88;12396:4;12393:1;12386:15;12420:4;12417:1;12410:15;12437:102;;12529:2;12525:7;12520:2;12513:5;12509:14;12505:28;12495:38;;12485:54;;;:::o;12545:122::-;12618:24;12636:5;12618:24;:::i;:::-;12611:5;12608:35;12598:2;;12657:1;12654;12647:12;12598:2;12588:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1058600",
"executionCost": "1100",
"totalCost": "1059700"
},
"external": {
"addStringToInput(string)": "infinite",
"deleteFromString(string,string)": "infinite",
"getSubset(string)": "infinite",
"inputStrings(uint256)": "infinite",
"reverseValue(string)": "infinite",
"subsets(string,uint256)": "infinite",
"trimStringMirroringChars()": "infinite"
}
},
"methodIdentifiers": {
"addStringToInput(string)": "346b83a9",
"deleteFromString(string,string)": "89bcede7",
"getSubset(string)": "613d7c9d",
"inputStrings(uint256)": "f0e99467",
"reverseValue(string)": "171ec7a5",
"subsets(string,uint256)": "fba4e5da",
"trimStringMirroringChars()": "d7c15ab3"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
}
],
"name": "addStringToInput",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
},
{
"internalType": "string",
"name": "subStr",
"type": "string"
}
],
"name": "deleteFromString",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
}
],
"name": "getSubset",
"outputs": [
{
"internalType": "string[]",
"name": "",
"type": "string[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "inputStrings",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_base",
"type": "string"
}
],
"name": "reverseValue",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "subsets",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "trimStringMirroringChars",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
},
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
}
],
"name": "addStringToInput",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
},
{
"internalType": "string",
"name": "subStr",
"type": "string"
}
],
"name": "deleteFromString",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
}
],
"name": "getSubset",
"outputs": [
{
"internalType": "string[]",
"name": "",
"type": "string[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "inputStrings",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "_base",
"type": "string"
}
],
"name": "reverseValue",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "subsets",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "trimStringMirroringChars",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
},
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Foo",
"kind": "dev",
"methods": {},
"title": "Foo",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Foo.sol": "Foo"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/Foo.sol": {
"keccak256": "0x550a9190fe0bd0471eb7cfc5b07be80cdd23e32f1ff5c1f2e58ac5baa7dd0d88",
"license": "MIT",
"urls": [
"bzz-raw://e08df4d94f4a423e025aa7d1fe87fd7514dd8d724a0126b4bf88dbda377b7180",
"dweb:/ipfs/QmctL2H9uDLyCe5fZGxNKHU2ukqciYYuEgXdJZPfXN8ypy"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5033600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610e30806100616000396000f3fe60806040526004361061007b5760003560e01c8063b60d42881161004e578063b60d42881461011d578063c0a86a4a14610127578063da23cad814610152578063dc0d3dff1461018f5761007b565b80630db92491146100805780633ccfd60b146100ab5780633e47d6f3146100b55780638da5cb5b146100f2575b600080fd5b34801561008c57600080fd5b506100956101cc565b6040516100a29190610a65565b60405180910390f35b6100b361026a565b005b3480156100c157600080fd5b506100dc60048036038101906100d7919061082a565b610495565b6040516100e99190610a65565b60405180910390f35b3480156100fe57600080fd5b506101076104ad565b6040516101149190610a0a565b60405180910390f35b6101256104d3565b005b34801561013357600080fd5b5061013c6105e7565b6040516101499190610a65565b60405180910390f35b34801561015e57600080fd5b5061017960048036038101906101749190610853565b61069f565b6040516101869190610a65565b60405180910390f35b34801561019b57600080fd5b506101b660048036038101906101b19190610853565b6106db565b6040516101c391906109ef565b60405180910390f35b600080739326bfa02add2366b30bacb125260af64103133190508073ffffffffffffffffffffffffffffffffffffffff166354fd4d506040518163ffffffff1660e01b815260040160206040518083038186803b15801561022c57600080fd5b505afa158015610240573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610264919061087c565b91505090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146102fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102f190610a45565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610340573d6000803e3d6000fd5b5060005b60018054905081101561040c57600080600060018481548110610390577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061040490610cf7565b915050610344565b50600067ffffffffffffffff81111561044e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561047c5781602001602082028036833780820191505090505b506001908051906020019061049292919061071a565b50565b60006020528060005260406000206000915090505481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006802b5e3af16b18800009050806104eb3461069f565b101561052c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052390610a25565b60405180910390fd5b346000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461057a9190610a91565b925050819055506001339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080739326bfa02add2366b30bacb125260af641031331905060008173ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561064957600080fd5b505afa15801561065d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068191906108a5565b5050509150506402540be400816106989190610b18565b9250505090565b60008068f3f20b8dfa69d0000090506000670de0b6b3a764000084836106c59190610c2f565b6106cf9190610ae7565b90508092505050919050565b600181815481106106eb57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b828054828255906000526020600020908101928215610793579160200282015b828111156107925782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061073a565b5b5090506107a091906107a4565b5090565b5b808211156107bd5760008160009055506001016107a5565b5090565b6000813590506107d081610d9e565b92915050565b6000815190506107e581610db5565b92915050565b6000813590506107fa81610dcc565b92915050565b60008151905061080f81610dcc565b92915050565b60008151905061082481610de3565b92915050565b60006020828403121561083c57600080fd5b600061084a848285016107c1565b91505092915050565b60006020828403121561086557600080fd5b6000610873848285016107eb565b91505092915050565b60006020828403121561088e57600080fd5b600061089c84828501610800565b91505092915050565b600080600080600060a086880312156108bd57600080fd5b60006108cb88828901610815565b95505060206108dc888289016107d6565b94505060406108ed88828901610800565b93505060606108fe88828901610800565b925050608061090f88828901610815565b9150509295509295909350565b61092581610c9b565b82525050565b61093481610c89565b82525050565b6000610947601d83610a80565b91507f596f75206e65656420746f207370656e64206d6f7265204574682e2e2e0000006000830152602082019050919050565b6000610987602383610a80565b91507f6f6e6c7920636f6e7472616374206f776e65722063616e20776974686472617760008301527f2e2e2e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6109e981610cd7565b82525050565b6000602082019050610a04600083018461092b565b92915050565b6000602082019050610a1f600083018461091c565b92915050565b60006020820190508181036000830152610a3e8161093a565b9050919050565b60006020820190508181036000830152610a5e8161097a565b9050919050565b6000602082019050610a7a60008301846109e0565b92915050565b600082825260208201905092915050565b6000610a9c82610cd7565b9150610aa783610cd7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610adc57610adb610d40565b5b828201905092915050565b6000610af282610cd7565b9150610afd83610cd7565b925082610b0d57610b0c610d6f565b5b828204905092915050565b6000610b2382610cad565b9150610b2e83610cad565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482116000841360008413161615610b6d57610b6c610d40565b5b817f80000000000000000000000000000000000000000000000000000000000000000583126000841260008413161615610baa57610ba9610d40565b5b827f80000000000000000000000000000000000000000000000000000000000000000582126000841360008412161615610be757610be6610d40565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0582126000841260008412161615610c2457610c23610d40565b5b828202905092915050565b6000610c3a82610cd7565b9150610c4583610cd7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610c7e57610c7d610d40565b5b828202905092915050565b6000610c9482610cb7565b9050919050565b6000610ca682610cb7565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600069ffffffffffffffffffff82169050919050565b6000610d0282610cd7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610d3557610d34610d40565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b610da781610c89565b8114610db257600080fd5b50565b610dbe81610cad565b8114610dc957600080fd5b50565b610dd581610cd7565b8114610de057600080fd5b50565b610dec81610ce1565b8114610df757600080fd5b5056fea2646970667358221220f5729bb71b2fb4b20bd737c2687b2549c387839dff7cae6a4ca77216e47c5d8f64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0xE30 DUP1 PUSH2 0x61 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 GT PUSH2 0x4E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x11D JUMPI DUP1 PUSH4 0xC0A86A4A EQ PUSH2 0x127 JUMPI DUP1 PUSH4 0xDA23CAD8 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0xDC0D3DFF EQ PUSH2 0x18F JUMPI PUSH2 0x7B JUMP JUMPDEST DUP1 PUSH4 0xDB92491 EQ PUSH2 0x80 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x3E47D6F3 EQ PUSH2 0xB5 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xF2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x95 PUSH2 0x1CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB3 PUSH2 0x26A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xDC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD7 SWAP2 SWAP1 PUSH2 0x82A JUMP JUMPDEST PUSH2 0x495 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x107 PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x114 SWAP2 SWAP1 PUSH2 0xA0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH2 0x4D3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x13C PUSH2 0x5E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x15E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x179 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x174 SWAP2 SWAP1 PUSH2 0x853 JUMP JUMPDEST PUSH2 0x69F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x186 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1B6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0x853 JUMP JUMPDEST PUSH2 0x6DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x9EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 PUSH20 0x9326BFA02ADD2366B30BACB125260AF641031331 SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x54FD4D50 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x22C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x240 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x264 SWAP2 SWAP1 PUSH2 0x87C JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F1 SWAP1 PUSH2 0xA45 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC SELFBALANCE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x340 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x0 JUMPDEST PUSH1 0x1 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x40C JUMPI PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x1 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x390 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x404 SWAP1 PUSH2 0xCF7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x344 JUMP JUMPDEST POP PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44E JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x47C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x492 SWAP3 SWAP2 SWAP1 PUSH2 0x71A JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH9 0x2B5E3AF16B1880000 SWAP1 POP DUP1 PUSH2 0x4EB CALLVALUE PUSH2 0x69F JUMP JUMPDEST LT ISZERO PUSH2 0x52C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x523 SWAP1 PUSH2 0xA25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH1 0x0 DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x57A SWAP2 SWAP1 PUSH2 0xA91 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 CALLER SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0x9326BFA02ADD2366B30BACB125260AF641031331 SWAP1 POP PUSH1 0x0 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xFEAF968C PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0xA0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x649 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x65D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x681 SWAP2 SWAP1 PUSH2 0x8A5 JUMP JUMPDEST POP POP POP SWAP2 POP POP PUSH5 0x2540BE400 DUP2 PUSH2 0x698 SWAP2 SWAP1 PUSH2 0xB18 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH9 0xF3F20B8DFA69D00000 SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP5 DUP4 PUSH2 0x6C5 SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH2 0x6CF SWAP2 SWAP1 PUSH2 0xAE7 JUMP JUMPDEST SWAP1 POP DUP1 SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x6EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x793 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x792 JUMPI DUP3 MLOAD DUP3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x73A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x7A0 SWAP2 SWAP1 PUSH2 0x7A4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x7BD JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x7A5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x7D0 DUP2 PUSH2 0xD9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x7E5 DUP2 PUSH2 0xDB5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x7FA DUP2 PUSH2 0xDCC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x80F DUP2 PUSH2 0xDCC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x824 DUP2 PUSH2 0xDE3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x83C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x84A DUP5 DUP3 DUP6 ADD PUSH2 0x7C1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x865 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x873 DUP5 DUP3 DUP6 ADD PUSH2 0x7EB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x88E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x89C DUP5 DUP3 DUP6 ADD PUSH2 0x800 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x8BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x8CB DUP9 DUP3 DUP10 ADD PUSH2 0x815 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x8DC DUP9 DUP3 DUP10 ADD PUSH2 0x7D6 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x8ED DUP9 DUP3 DUP10 ADD PUSH2 0x800 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x8FE DUP9 DUP3 DUP10 ADD PUSH2 0x800 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x90F DUP9 DUP3 DUP10 ADD PUSH2 0x815 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH2 0x925 DUP2 PUSH2 0xC9B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x934 DUP2 PUSH2 0xC89 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x947 PUSH1 0x1D DUP4 PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP PUSH32 0x596F75206E65656420746F207370656E64206D6F7265204574682E2E2E000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x987 PUSH1 0x23 DUP4 PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP PUSH32 0x6F6E6C7920636F6E7472616374206F776E65722063616E207769746864726177 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x2E2E2E0000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9E9 DUP2 PUSH2 0xCD7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA04 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA1F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x91C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xA3E DUP2 PUSH2 0x93A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xA5E DUP2 PUSH2 0x97A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA7A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA9C DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH2 0xAA7 DUP4 PUSH2 0xCD7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xADC JUMPI PUSH2 0xADB PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF2 DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH2 0xAFD DUP4 PUSH2 0xCD7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0xB0D JUMPI PUSH2 0xB0C PUSH2 0xD6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB23 DUP3 PUSH2 0xCAD JUMP JUMPDEST SWAP2 POP PUSH2 0xB2E DUP4 PUSH2 0xCAD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP3 GT PUSH1 0x0 DUP5 SGT PUSH1 0x0 DUP5 SGT AND AND ISZERO PUSH2 0xB6D JUMPI PUSH2 0xB6C PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP2 PUSH32 0x8000000000000000000000000000000000000000000000000000000000000000 SDIV DUP4 SLT PUSH1 0x0 DUP5 SLT PUSH1 0x0 DUP5 SGT AND AND ISZERO PUSH2 0xBAA JUMPI PUSH2 0xBA9 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 PUSH32 0x8000000000000000000000000000000000000000000000000000000000000000 SDIV DUP3 SLT PUSH1 0x0 DUP5 SGT PUSH1 0x0 DUP5 SLT AND AND ISZERO PUSH2 0xBE7 JUMPI PUSH2 0xBE6 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SDIV DUP3 SLT PUSH1 0x0 DUP5 SLT PUSH1 0x0 DUP5 SLT AND AND ISZERO PUSH2 0xC24 JUMPI PUSH2 0xC23 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC3A DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH2 0xC45 DUP4 PUSH2 0xCD7 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0xC7E JUMPI PUSH2 0xC7D PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC94 DUP3 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA6 DUP3 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH10 0xFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD02 DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xDA7 DUP2 PUSH2 0xC89 JUMP JUMPDEST DUP2 EQ PUSH2 0xDB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xDBE DUP2 PUSH2 0xCAD JUMP JUMPDEST DUP2 EQ PUSH2 0xDC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xDD5 DUP2 PUSH2 0xCD7 JUMP JUMPDEST DUP2 EQ PUSH2 0xDE0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xDEC DUP2 PUSH2 0xCE1 JUMP JUMPDEST DUP2 EQ PUSH2 0xDF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 PUSH19 0x9BB71B2FB4B20BD737C2687B2549C387839DFF PUSH29 0xAE6A4CA77216E47C5D8F64736F6C634300080000330000000000000000 ",
"sourceMap": "137:2244:1:-:0;;;288:58;;;;;;;;;;328:10;312:5;;:27;;;;;;;;;;;;;;;;;;137:2244;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:8908:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:2"
},
"nodeType": "YulFunctionCall",
"src": "78:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:2"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:2"
},
"nodeType": "YulFunctionCall",
"src": "107:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:2"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:2",
"type": ""
}
],
"src": "7:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "214:79:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "224:22:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "239:6:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "233:5:2"
},
"nodeType": "YulFunctionCall",
"src": "233:13:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "224:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "281:5:2"
}
],
"functionName": {
"name": "validator_revert_t_int256",
"nodeType": "YulIdentifier",
"src": "255:25:2"
},
"nodeType": "YulFunctionCall",
"src": "255:32:2"
},
"nodeType": "YulExpressionStatement",
"src": "255:32:2"
}
]
},
"name": "abi_decode_t_int256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "192:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "200:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "208:5:2",
"type": ""
}
],
"src": "152:141:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "351:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "361:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "383:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "370:12:2"
},
"nodeType": "YulFunctionCall",
"src": "370:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "361:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "426:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "399:26:2"
},
"nodeType": "YulFunctionCall",
"src": "399:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "399:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "329:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "337:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "345:5:2",
"type": ""
}
],
"src": "299:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "507:80:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "517:22:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "532:6:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "526:5:2"
},
"nodeType": "YulFunctionCall",
"src": "526:13:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "517:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "575:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "548:26:2"
},
"nodeType": "YulFunctionCall",
"src": "548:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "548:33:2"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "485:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "493:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "501:5:2",
"type": ""
}
],
"src": "444:143:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "655:79:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "665:22:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "680:6:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "674:5:2"
},
"nodeType": "YulFunctionCall",
"src": "674:13:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "665:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "722:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint80",
"nodeType": "YulIdentifier",
"src": "696:25:2"
},
"nodeType": "YulFunctionCall",
"src": "696:32:2"
},
"nodeType": "YulExpressionStatement",
"src": "696:32:2"
}
]
},
"name": "abi_decode_t_uint80_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "633:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "641:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "649:5:2",
"type": ""
}
],
"src": "593:141:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "806:196:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "852:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "861:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "864:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "854:6:2"
},
"nodeType": "YulFunctionCall",
"src": "854:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "854:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "827:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "836:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "823:3:2"
},
"nodeType": "YulFunctionCall",
"src": "823:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "848:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "819:3:2"
},
"nodeType": "YulFunctionCall",
"src": "819:32:2"
},
"nodeType": "YulIf",
"src": "816:2:2"
},
{
"nodeType": "YulBlock",
"src": "878:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "893:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "907:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "897:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "922:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "957:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "968:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "953:3:2"
},
"nodeType": "YulFunctionCall",
"src": "953:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "977:7:2"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "932:20:2"
},
"nodeType": "YulFunctionCall",
"src": "932:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "922:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "776:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "787:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "799:6:2",
"type": ""
}
],
"src": "740:262:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1074:196:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1120:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1129:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1132:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1122:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1122:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1122:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1095:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1104:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1091:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1091:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1116:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1087:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1087:32:2"
},
"nodeType": "YulIf",
"src": "1084:2:2"
},
{
"nodeType": "YulBlock",
"src": "1146:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1161:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1175:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1165:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1190:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1225:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1236:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1221:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1221:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1245:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1200:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1200:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1190:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1044:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1055:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1067:6:2",
"type": ""
}
],
"src": "1008:262:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1353:207:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1399:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1408:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1411:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1401:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1401:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1401:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1374:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1383:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1370:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1370:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1395:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1366:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1366:32:2"
},
"nodeType": "YulIf",
"src": "1363:2:2"
},
{
"nodeType": "YulBlock",
"src": "1425:128:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1440:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1454:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1444:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1469:74:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1515:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1526:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1511:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1511:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1535:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "1479:31:2"
},
"nodeType": "YulFunctionCall",
"src": "1479:64:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1469:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1323:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1334:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1346:6:2",
"type": ""
}
],
"src": "1276:284:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1708:762:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1755:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1764:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1767:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1757:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1757:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1757:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1729:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1738:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1725:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1725:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1750:3:2",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1721:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1721:33:2"
},
"nodeType": "YulIf",
"src": "1718:2:2"
},
{
"nodeType": "YulBlock",
"src": "1781:127:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1796:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1810:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1800:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1825:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1870:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1881:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1866:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1866:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1890:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint80_fromMemory",
"nodeType": "YulIdentifier",
"src": "1835:30:2"
},
"nodeType": "YulFunctionCall",
"src": "1835:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1825:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1918:128:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1933:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1937:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1963:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2008:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2019:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2004:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2004:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2028:7:2"
}
],
"functionName": {
"name": "abi_decode_t_int256_fromMemory",
"nodeType": "YulIdentifier",
"src": "1973:30:2"
},
"nodeType": "YulFunctionCall",
"src": "1973:63:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1963:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2056:129:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2071:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2085:2:2",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2075:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2101:74:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2147:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2143:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2143:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2167:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "2111:31:2"
},
"nodeType": "YulFunctionCall",
"src": "2111:64:2"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2101:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2195:129:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2210:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2224:2:2",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2214:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2240:74:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2286:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2297:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2282:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2282:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2306:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "2250:31:2"
},
"nodeType": "YulFunctionCall",
"src": "2250:64:2"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2240:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2334:129:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2349:17:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2363:3:2",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2353:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2380:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2425:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2436:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2421:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2421:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2445:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint80_fromMemory",
"nodeType": "YulIdentifier",
"src": "2390:30:2"
},
"nodeType": "YulFunctionCall",
"src": "2390:63:2"
},
"variableNames": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "2380:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint80t_int256t_uint256t_uint256t_uint80_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1646:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1657:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1669:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1677:6:2",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1685:6:2",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1693:6:2",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "1701:6:2",
"type": ""
}
],
"src": "1566:904:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2557:61:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2574:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2605:5:2"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2579:25:2"
},
"nodeType": "YulFunctionCall",
"src": "2579:32:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2567:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2567:45:2"
},
"nodeType": "YulExpressionStatement",
"src": "2567:45:2"
}
]
},
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2545:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2552:3:2",
"type": ""
}
],
"src": "2476:142:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2689:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2706:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2729:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2711:17:2"
},
"nodeType": "YulFunctionCall",
"src": "2711:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2699:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2699:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "2699:37:2"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2677:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2684:3:2",
"type": ""
}
],
"src": "2624:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2894:181:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2904:74:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2970:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2975:2:2",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2911:58:2"
},
"nodeType": "YulFunctionCall",
"src": "2911:67:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2904:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2999:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3004:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2995:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2995:11:2"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3008:31:2",
"type": "",
"value": "You need to spend more Eth..."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2988:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2988:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "2988:52:2"
},
{
"nodeType": "YulAssignment",
"src": "3050:19:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3061:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3066:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3057:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3057:12:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3050:3:2"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_05afcccdbef9bc4e91d4b1b66082148e4e675ecb5a958997fdc308cce7d92398_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2882:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2890:3:2",
"type": ""
}
],
"src": "2748:327:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3227:221:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3237:74:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3303:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3308:2:2",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3244:58:2"
},
"nodeType": "YulFunctionCall",
"src": "3244:67:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3237:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3332:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3337:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3328:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3328:11:2"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3341:34:2",
"type": "",
"value": "only contract owner can withdraw"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3321:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3321:55:2"
},
"nodeType": "YulExpressionStatement",
"src": "3321:55:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3397:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3402:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3393:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3393:12:2"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3407:5:2",
"type": "",
"value": "..."
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3386:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3386:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "3386:27:2"
},
{
"nodeType": "YulAssignment",
"src": "3423:19:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3434:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3439:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3430:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3430:12:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3423:3:2"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d8f2a7b332f2aa7427ad922719dc8b3969fa702d0c7d633155124c62b7d55b8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3215:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3223:3:2",
"type": ""
}
],
"src": "3081:367:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3519:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3536:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3559:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3541:17:2"
},
"nodeType": "YulFunctionCall",
"src": "3541:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3529:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3529:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "3529:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3507:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3514:3:2",
"type": ""
}
],
"src": "3454:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3676:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3686:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3698:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3709:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3694:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3694:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3686:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3766:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3779:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3790:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3775:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3775:17:2"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "3722:43:2"
},
"nodeType": "YulFunctionCall",
"src": "3722:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "3722:71:2"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3648:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3660:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3671:4:2",
"type": ""
}
],
"src": "3578:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3920:140:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3930:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3942:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3953:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3938:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3938:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3930:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4026:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4039:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4050:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4035:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4035:17:2"
}
],
"functionName": {
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulIdentifier",
"src": "3966:59:2"
},
"nodeType": "YulFunctionCall",
"src": "3966:87:2"
},
"nodeType": "YulExpressionStatement",
"src": "3966:87:2"
}
]
},
"name": "abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3892:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3904:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3915:4:2",
"type": ""
}
],
"src": "3806:254:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4237:248:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4247:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4259:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4270:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4255:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4255:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4247:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4294:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4305:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4290:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4290:17:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4313:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4319:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4309:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4309:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4283:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4283:47:2"
},
"nodeType": "YulExpressionStatement",
"src": "4283:47:2"
},
{
"nodeType": "YulAssignment",
"src": "4339:139:2",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4473:4:2"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_05afcccdbef9bc4e91d4b1b66082148e4e675ecb5a958997fdc308cce7d92398_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4347:124:2"
},
"nodeType": "YulFunctionCall",
"src": "4347:131:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4339:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_05afcccdbef9bc4e91d4b1b66082148e4e675ecb5a958997fdc308cce7d92398__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4217:9:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4232:4:2",
"type": ""
}
],
"src": "4066:419:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4662:248:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4672:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4684:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4695:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4680:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4680:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4672:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4719:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4730:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4715:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4715:17:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4738:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4744:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4734:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4734:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4708:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4708:47:2"
},
"nodeType": "YulExpressionStatement",
"src": "4708:47:2"
},
{
"nodeType": "YulAssignment",
"src": "4764:139:2",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4898:4:2"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d8f2a7b332f2aa7427ad922719dc8b3969fa702d0c7d633155124c62b7d55b8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4772:124:2"
},
"nodeType": "YulFunctionCall",
"src": "4772:131:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4764:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d8f2a7b332f2aa7427ad922719dc8b3969fa702d0c7d633155124c62b7d55b8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4642:9:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4657:4:2",
"type": ""
}
],
"src": "4491:419:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5014:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5024:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5036:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5047:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5032:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5032:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5024:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5104:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5117:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5128:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5113:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5113:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5060:43:2"
},
"nodeType": "YulFunctionCall",
"src": "5060:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "5060:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4986:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4998:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5009:4:2",
"type": ""
}
],
"src": "4916:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5240:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5257:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5262:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5250:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5250:19:2"
},
"nodeType": "YulExpressionStatement",
"src": "5250:19:2"
},
{
"nodeType": "YulAssignment",
"src": "5278:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5297:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5302:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5293:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5293:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5278:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5212:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5217:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "5228:11:2",
"type": ""
}
],
"src": "5144:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5363:261:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5373:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5396:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5378:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5378:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5373:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5407:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5430:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5412:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5412:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5407:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5570:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5572:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5572:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "5572:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5491:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5498:66:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5566:1:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5494:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5494:74:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5488:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5488:81:2"
},
"nodeType": "YulIf",
"src": "5485:2:2"
},
{
"nodeType": "YulAssignment",
"src": "5602:16:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5613:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5616:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5609:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5609:9:2"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "5602:3:2"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5350:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5353:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "5359:3:2",
"type": ""
}
],
"src": "5319:305:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5672:143:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5682:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5705:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5687:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5687:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5682:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5716:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5739:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5721:17:2"
},
"nodeType": "YulFunctionCall",
"src": "5721:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5716:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5763:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "5765:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5765:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "5765:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5760:1:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5753:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5753:9:2"
},
"nodeType": "YulIf",
"src": "5750:2:2"
},
{
"nodeType": "YulAssignment",
"src": "5795:14:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5804:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5807:1:2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5800:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5800:9:2"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "5795:1:2"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5661:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5664:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "5670:1:2",
"type": ""
}
],
"src": "5630:185:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5868:944:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5878:24:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5900:1:2"
}
],
"functionName": {
"name": "cleanup_t_int256",
"nodeType": "YulIdentifier",
"src": "5883:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5883:19:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5878:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5911:24:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5933:1:2"
}
],
"functionName": {
"name": "cleanup_t_int256",
"nodeType": "YulIdentifier",
"src": "5916:16:2"
},
"nodeType": "YulFunctionCall",
"src": "5916:19:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5911:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6122:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6124:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6124:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6124:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6020:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6023:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "6016:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6016:9:2"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6031:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6034:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "6027:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6027:9:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6012:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6012:25:2"
},
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6042:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6049:66:2",
"type": "",
"value": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6117:1:2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6045:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6045:74:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6039:2:2"
},
"nodeType": "YulFunctionCall",
"src": "6039:81:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6008:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6008:113:2"
},
"nodeType": "YulIf",
"src": "6005:2:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6333:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6335:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6335:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6335:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6229:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6232:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "6225:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6225:9:2"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6240:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6243:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6236:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6236:9:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6221:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6221:25:2"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6252:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6260:66:2",
"type": "",
"value": "0x8000000000000000000000000000000000000000000000000000000000000000"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6328:1:2"
}
],
"functionName": {
"name": "sdiv",
"nodeType": "YulIdentifier",
"src": "6255:4:2"
},
"nodeType": "YulFunctionCall",
"src": "6255:75:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6248:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6248:83:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6217:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6217:115:2"
},
"nodeType": "YulIf",
"src": "6214:2:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6544:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6546:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6546:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6546:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6440:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6443:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6436:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6436:9:2"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6451:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6454:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "6447:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6447:9:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6432:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6432:25:2"
},
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6463:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6471:66:2",
"type": "",
"value": "0x8000000000000000000000000000000000000000000000000000000000000000"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6539:1:2"
}
],
"functionName": {
"name": "sdiv",
"nodeType": "YulIdentifier",
"src": "6466:4:2"
},
"nodeType": "YulFunctionCall",
"src": "6466:75:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6459:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6459:83:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6428:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6428:115:2"
},
"nodeType": "YulIf",
"src": "6425:2:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6754:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6756:16:2"
},
"nodeType": "YulFunctionCall",
"src": "6756:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "6756:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6650:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6653:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6646:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6646:9:2"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6661:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6664:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6657:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6657:9:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6642:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6642:25:2"
},
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6673:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6681:66:2",
"type": "",
"value": "0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6749:1:2"
}
],
"functionName": {
"name": "sdiv",
"nodeType": "YulIdentifier",
"src": "6676:4:2"
},
"nodeType": "YulFunctionCall",
"src": "6676:75:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6669:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6669:83:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6638:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6638:115:2"
},
"nodeType": "YulIf",
"src": "6635:2:2"
},
{
"nodeType": "YulAssignment",
"src": "6786:20:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6801:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6804:1:2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6797:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6797:9:2"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "6786:7:2"
}
]
}
]
},
"name": "checked_mul_t_int256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5851:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5854:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "5860:7:2",
"type": ""
}
],
"src": "5821:991:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6866:300:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6876:25:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6899:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6881:17:2"
},
"nodeType": "YulFunctionCall",
"src": "6881:20:2"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6876:1:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6910:25:2",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6933:1:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6915:17:2"
},
"nodeType": "YulFunctionCall",
"src": "6915:20:2"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6910:1:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7108:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7110:16:2"
},
"nodeType": "YulFunctionCall",
"src": "7110:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "7110:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7020:1:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7013:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7013:9:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7006:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7006:17:2"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7028:1:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7035:66:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7103:1:2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7031:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7031:74:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7025:2:2"
},
"nodeType": "YulFunctionCall",
"src": "7025:81:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7002:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7002:105:2"
},
"nodeType": "YulIf",
"src": "6999:2:2"
},
{
"nodeType": "YulAssignment",
"src": "7140:20:2",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "7155:1:2"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "7158:1:2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7151:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7151:9:2"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "7140:7:2"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6849:1:2",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6852:1:2",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "6858:7:2",
"type": ""
}
],
"src": "6818:348:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7217:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7227:35:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7256:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "7238:17:2"
},
"nodeType": "YulFunctionCall",
"src": "7238:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7227:7:2"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7199:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7209:7:2",
"type": ""
}
],
"src": "7172:96:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7327:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7337:35:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7366:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "7348:17:2"
},
"nodeType": "YulFunctionCall",
"src": "7348:24:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7337:7:2"
}
]
}
]
},
"name": "cleanup_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7309:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7319:7:2",
"type": ""
}
],
"src": "7274:104:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7428:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7438:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7449:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7438:7:2"
}
]
}
]
},
"name": "cleanup_t_int256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7410:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7420:7:2",
"type": ""
}
],
"src": "7384:76:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7511:81:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7521:65:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7536:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7543:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7532:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7532:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7521:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7493:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7503:7:2",
"type": ""
}
],
"src": "7466:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7643:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7653:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7664:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7653:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7625:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7635:7:2",
"type": ""
}
],
"src": "7598:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7725:61:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7735:45:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7750:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7757:22:2",
"type": "",
"value": "0xffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7746:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7746:34:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7735:7:2"
}
]
}
]
},
"name": "cleanup_t_uint80",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7707:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7717:7:2",
"type": ""
}
],
"src": "7681:105:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7835:190:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7845:33:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7872:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7854:17:2"
},
"nodeType": "YulFunctionCall",
"src": "7854:24:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7845:5:2"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7968:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "7970:16:2"
},
"nodeType": "YulFunctionCall",
"src": "7970:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "7970:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7893:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7900:66:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7890:2:2"
},
"nodeType": "YulFunctionCall",
"src": "7890:77:2"
},
"nodeType": "YulIf",
"src": "7887:2:2"
},
{
"nodeType": "YulAssignment",
"src": "7999:20:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8010:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8017:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8006:3:2"
},
"nodeType": "YulFunctionCall",
"src": "8006:13:2"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7999:3:2"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7821:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7831:3:2",
"type": ""
}
],
"src": "7792:233:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8059:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8076:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8079:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8069:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8069:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "8069:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8173:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8176:4:2",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8166:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8166:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "8166:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8197:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8200:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8190:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8190:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "8190:15:2"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "8031:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8245:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8262:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8265:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8255:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8255:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "8255:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8359:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8362:4:2",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8352:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8352:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "8352:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8383:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8386:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8376:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8376:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "8376:15:2"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "8217:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8446:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8503:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8512:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8515:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8505:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8505:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "8505:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8469:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8494:5:2"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "8476:17:2"
},
"nodeType": "YulFunctionCall",
"src": "8476:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8466:2:2"
},
"nodeType": "YulFunctionCall",
"src": "8466:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8459:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8459:43:2"
},
"nodeType": "YulIf",
"src": "8456:2:2"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8439:5:2",
"type": ""
}
],
"src": "8403:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8573:78:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8629:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8638:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8641:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8631:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8631:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "8631:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8596:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8620:5:2"
}
],
"functionName": {
"name": "cleanup_t_int256",
"nodeType": "YulIdentifier",
"src": "8603:16:2"
},
"nodeType": "YulFunctionCall",
"src": "8603:23:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8593:2:2"
},
"nodeType": "YulFunctionCall",
"src": "8593:34:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8586:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8586:42:2"
},
"nodeType": "YulIf",
"src": "8583:2:2"
}
]
},
"name": "validator_revert_t_int256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8566:5:2",
"type": ""
}
],
"src": "8531:120:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8700:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8757:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8766:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8769:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8759:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8759:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "8759:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8723:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8748:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8730:17:2"
},
"nodeType": "YulFunctionCall",
"src": "8730:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8720:2:2"
},
"nodeType": "YulFunctionCall",
"src": "8720:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8713:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8713:43:2"
},
"nodeType": "YulIf",
"src": "8710:2:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8693:5:2",
"type": ""
}
],
"src": "8657:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8827:78:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8883:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8892:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8895:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8885:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8885:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "8885:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8850:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8874:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint80",
"nodeType": "YulIdentifier",
"src": "8857:16:2"
},
"nodeType": "YulFunctionCall",
"src": "8857:23:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8847:2:2"
},
"nodeType": "YulFunctionCall",
"src": "8847:34:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8840:6:2"
},
"nodeType": "YulFunctionCall",
"src": "8840:42:2"
},
"nodeType": "YulIf",
"src": "8837:2:2"
}
]
},
"name": "validator_revert_t_uint80",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8820:5:2",
"type": ""
}
],
"src": "8785:120:2"
}
]
},
"contents": "{\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_int256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_int256(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_t_uint80_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint80(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint80t_int256t_uint256t_uint256t_uint80_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4 {\n if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint80_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_int256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := abi_decode_t_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint80_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_payable_to_t_address_payable_fromStack(value, pos) {\n mstore(pos, cleanup_t_address_payable(value))\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_stringliteral_05afcccdbef9bc4e91d4b1b66082148e4e675ecb5a958997fdc308cce7d92398_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n\n mstore(add(pos, 0), \"You need to spend more Eth...\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_0d8f2a7b332f2aa7427ad922719dc8b3969fa702d0c7d633155124c62b7d55b8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n\n mstore(add(pos, 0), \"only contract owner can withdraw\")\n\n mstore(add(pos, 32), \"...\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_payable_to_t_address_payable_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_stringliteral_05afcccdbef9bc4e91d4b1b66082148e4e675ecb5a958997fdc308cce7d92398__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_05afcccdbef9bc4e91d4b1b66082148e4e675ecb5a958997fdc308cce7d92398_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_0d8f2a7b332f2aa7427ad922719dc8b3969fa702d0c7d633155124c62b7d55b8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0d8f2a7b332f2aa7427ad922719dc8b3969fa702d0c7d633155124c62b7d55b8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_int256(x, y) -> product {\n x := cleanup_t_int256(x)\n y := cleanup_t_int256(y)\n\n // overflow, if x > 0, y > 0 and x > (maxValue / y)\n if and(and(sgt(x, 0), sgt(y, 0)), gt(x, div(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y))) { panic_error_0x11() }\n // underflow, if x > 0, y < 0 and y < (minValue / x)\n if and(and(sgt(x, 0), slt(y, 0)), slt(y, sdiv(0x8000000000000000000000000000000000000000000000000000000000000000, x))) { panic_error_0x11() }\n // underflow, if x < 0, y > 0 and x < (minValue / y)\n if and(and(slt(x, 0), sgt(y, 0)), slt(x, sdiv(0x8000000000000000000000000000000000000000000000000000000000000000, y))) { panic_error_0x11() }\n // overflow, if x < 0, y < 0 and x < (maxValue / y)\n if and(and(slt(x, 0), slt(y, 0)), slt(x, sdiv(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_int256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint80(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffff)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_int256(value) {\n if iszero(eq(value, cleanup_t_int256(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint80(value) {\n if iszero(eq(value, cleanup_t_uint80(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040526004361061007b5760003560e01c8063b60d42881161004e578063b60d42881461011d578063c0a86a4a14610127578063da23cad814610152578063dc0d3dff1461018f5761007b565b80630db92491146100805780633ccfd60b146100ab5780633e47d6f3146100b55780638da5cb5b146100f2575b600080fd5b34801561008c57600080fd5b506100956101cc565b6040516100a29190610a65565b60405180910390f35b6100b361026a565b005b3480156100c157600080fd5b506100dc60048036038101906100d7919061082a565b610495565b6040516100e99190610a65565b60405180910390f35b3480156100fe57600080fd5b506101076104ad565b6040516101149190610a0a565b60405180910390f35b6101256104d3565b005b34801561013357600080fd5b5061013c6105e7565b6040516101499190610a65565b60405180910390f35b34801561015e57600080fd5b5061017960048036038101906101749190610853565b61069f565b6040516101869190610a65565b60405180910390f35b34801561019b57600080fd5b506101b660048036038101906101b19190610853565b6106db565b6040516101c391906109ef565b60405180910390f35b600080739326bfa02add2366b30bacb125260af64103133190508073ffffffffffffffffffffffffffffffffffffffff166354fd4d506040518163ffffffff1660e01b815260040160206040518083038186803b15801561022c57600080fd5b505afa158015610240573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610264919061087c565b91505090565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146102fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102f190610a45565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610340573d6000803e3d6000fd5b5060005b60018054905081101561040c57600080600060018481548110610390577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061040490610cf7565b915050610344565b50600067ffffffffffffffff81111561044e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561047c5781602001602082028036833780820191505090505b506001908051906020019061049292919061071a565b50565b60006020528060005260406000206000915090505481565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006802b5e3af16b18800009050806104eb3461069f565b101561052c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052390610a25565b60405180910390fd5b346000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461057a9190610a91565b925050819055506001339080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080739326bfa02add2366b30bacb125260af641031331905060008173ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561064957600080fd5b505afa15801561065d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068191906108a5565b5050509150506402540be400816106989190610b18565b9250505090565b60008068f3f20b8dfa69d0000090506000670de0b6b3a764000084836106c59190610c2f565b6106cf9190610ae7565b90508092505050919050565b600181815481106106eb57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b828054828255906000526020600020908101928215610793579160200282015b828111156107925782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061073a565b5b5090506107a091906107a4565b5090565b5b808211156107bd5760008160009055506001016107a5565b5090565b6000813590506107d081610d9e565b92915050565b6000815190506107e581610db5565b92915050565b6000813590506107fa81610dcc565b92915050565b60008151905061080f81610dcc565b92915050565b60008151905061082481610de3565b92915050565b60006020828403121561083c57600080fd5b600061084a848285016107c1565b91505092915050565b60006020828403121561086557600080fd5b6000610873848285016107eb565b91505092915050565b60006020828403121561088e57600080fd5b600061089c84828501610800565b91505092915050565b600080600080600060a086880312156108bd57600080fd5b60006108cb88828901610815565b95505060206108dc888289016107d6565b94505060406108ed88828901610800565b93505060606108fe88828901610800565b925050608061090f88828901610815565b9150509295509295909350565b61092581610c9b565b82525050565b61093481610c89565b82525050565b6000610947601d83610a80565b91507f596f75206e65656420746f207370656e64206d6f7265204574682e2e2e0000006000830152602082019050919050565b6000610987602383610a80565b91507f6f6e6c7920636f6e7472616374206f776e65722063616e20776974686472617760008301527f2e2e2e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6109e981610cd7565b82525050565b6000602082019050610a04600083018461092b565b92915050565b6000602082019050610a1f600083018461091c565b92915050565b60006020820190508181036000830152610a3e8161093a565b9050919050565b60006020820190508181036000830152610a5e8161097a565b9050919050565b6000602082019050610a7a60008301846109e0565b92915050565b600082825260208201905092915050565b6000610a9c82610cd7565b9150610aa783610cd7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610adc57610adb610d40565b5b828201905092915050565b6000610af282610cd7565b9150610afd83610cd7565b925082610b0d57610b0c610d6f565b5b828204905092915050565b6000610b2382610cad565b9150610b2e83610cad565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482116000841360008413161615610b6d57610b6c610d40565b5b817f80000000000000000000000000000000000000000000000000000000000000000583126000841260008413161615610baa57610ba9610d40565b5b827f80000000000000000000000000000000000000000000000000000000000000000582126000841360008412161615610be757610be6610d40565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0582126000841260008412161615610c2457610c23610d40565b5b828202905092915050565b6000610c3a82610cd7565b9150610c4583610cd7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610c7e57610c7d610d40565b5b828202905092915050565b6000610c9482610cb7565b9050919050565b6000610ca682610cb7565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600069ffffffffffffffffffff82169050919050565b6000610d0282610cd7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610d3557610d34610d40565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b610da781610c89565b8114610db257600080fd5b50565b610dbe81610cad565b8114610dc957600080fd5b50565b610dd581610cd7565b8114610de057600080fd5b50565b610dec81610ce1565b8114610df757600080fd5b5056fea2646970667358221220f5729bb71b2fb4b20bd737c2687b2549c387839dff7cae6a4ca77216e47c5d8f64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 GT PUSH2 0x4E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x11D JUMPI DUP1 PUSH4 0xC0A86A4A EQ PUSH2 0x127 JUMPI DUP1 PUSH4 0xDA23CAD8 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0xDC0D3DFF EQ PUSH2 0x18F JUMPI PUSH2 0x7B JUMP JUMPDEST DUP1 PUSH4 0xDB92491 EQ PUSH2 0x80 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x3E47D6F3 EQ PUSH2 0xB5 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xF2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x8C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x95 PUSH2 0x1CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB3 PUSH2 0x26A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xDC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD7 SWAP2 SWAP1 PUSH2 0x82A JUMP JUMPDEST PUSH2 0x495 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x107 PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x114 SWAP2 SWAP1 PUSH2 0xA0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH2 0x4D3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x133 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x13C PUSH2 0x5E7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x15E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x179 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x174 SWAP2 SWAP1 PUSH2 0x853 JUMP JUMPDEST PUSH2 0x69F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x186 SWAP2 SWAP1 PUSH2 0xA65 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x19B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1B6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1B1 SWAP2 SWAP1 PUSH2 0x853 JUMP JUMPDEST PUSH2 0x6DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C3 SWAP2 SWAP1 PUSH2 0x9EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 PUSH20 0x9326BFA02ADD2366B30BACB125260AF641031331 SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x54FD4D50 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x22C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x240 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x264 SWAP2 SWAP1 PUSH2 0x87C JUMP JUMPDEST SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2FA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F1 SWAP1 PUSH2 0xA45 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC SELFBALANCE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x340 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x0 JUMPDEST PUSH1 0x1 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x40C JUMPI PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x1 DUP5 DUP2 SLOAD DUP2 LT PUSH2 0x390 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x404 SWAP1 PUSH2 0xCF7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x344 JUMP JUMPDEST POP PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x44E JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x47C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x492 SWAP3 SWAP2 SWAP1 PUSH2 0x71A JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH9 0x2B5E3AF16B1880000 SWAP1 POP DUP1 PUSH2 0x4EB CALLVALUE PUSH2 0x69F JUMP JUMPDEST LT ISZERO PUSH2 0x52C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x523 SWAP1 PUSH2 0xA25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE PUSH1 0x0 DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x57A SWAP2 SWAP1 PUSH2 0xA91 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 CALLER SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0x9326BFA02ADD2366B30BACB125260AF641031331 SWAP1 POP PUSH1 0x0 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0xFEAF968C PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0xA0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x649 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x65D JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x681 SWAP2 SWAP1 PUSH2 0x8A5 JUMP JUMPDEST POP POP POP SWAP2 POP POP PUSH5 0x2540BE400 DUP2 PUSH2 0x698 SWAP2 SWAP1 PUSH2 0xB18 JUMP JUMPDEST SWAP3 POP POP POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH9 0xF3F20B8DFA69D00000 SWAP1 POP PUSH1 0x0 PUSH8 0xDE0B6B3A7640000 DUP5 DUP4 PUSH2 0x6C5 SWAP2 SWAP1 PUSH2 0xC2F JUMP JUMPDEST PUSH2 0x6CF SWAP2 SWAP1 PUSH2 0xAE7 JUMP JUMPDEST SWAP1 POP DUP1 SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x6EB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x793 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x792 JUMPI DUP3 MLOAD DUP3 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x73A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x7A0 SWAP2 SWAP1 PUSH2 0x7A4 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x7BD JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x7A5 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x7D0 DUP2 PUSH2 0xD9E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x7E5 DUP2 PUSH2 0xDB5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x7FA DUP2 PUSH2 0xDCC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x80F DUP2 PUSH2 0xDCC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x824 DUP2 PUSH2 0xDE3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x83C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x84A DUP5 DUP3 DUP6 ADD PUSH2 0x7C1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x865 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x873 DUP5 DUP3 DUP6 ADD PUSH2 0x7EB JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x88E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x89C DUP5 DUP3 DUP6 ADD PUSH2 0x800 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x8BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x8CB DUP9 DUP3 DUP10 ADD PUSH2 0x815 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 PUSH2 0x8DC DUP9 DUP3 DUP10 ADD PUSH2 0x7D6 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 PUSH2 0x8ED DUP9 DUP3 DUP10 ADD PUSH2 0x800 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 PUSH2 0x8FE DUP9 DUP3 DUP10 ADD PUSH2 0x800 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x80 PUSH2 0x90F DUP9 DUP3 DUP10 ADD PUSH2 0x815 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH2 0x925 DUP2 PUSH2 0xC9B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x934 DUP2 PUSH2 0xC89 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x947 PUSH1 0x1D DUP4 PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP PUSH32 0x596F75206E65656420746F207370656E64206D6F7265204574682E2E2E000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x987 PUSH1 0x23 DUP4 PUSH2 0xA80 JUMP JUMPDEST SWAP2 POP PUSH32 0x6F6E6C7920636F6E7472616374206F776E65722063616E207769746864726177 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x2E2E2E0000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9E9 DUP2 PUSH2 0xCD7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA04 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA1F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x91C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xA3E DUP2 PUSH2 0x93A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xA5E DUP2 PUSH2 0x97A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA7A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x9E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA9C DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH2 0xAA7 DUP4 PUSH2 0xCD7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xADC JUMPI PUSH2 0xADB PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAF2 DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH2 0xAFD DUP4 PUSH2 0xCD7 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0xB0D JUMPI PUSH2 0xB0C PUSH2 0xD6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB23 DUP3 PUSH2 0xCAD JUMP JUMPDEST SWAP2 POP PUSH2 0xB2E DUP4 PUSH2 0xCAD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP3 GT PUSH1 0x0 DUP5 SGT PUSH1 0x0 DUP5 SGT AND AND ISZERO PUSH2 0xB6D JUMPI PUSH2 0xB6C PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP2 PUSH32 0x8000000000000000000000000000000000000000000000000000000000000000 SDIV DUP4 SLT PUSH1 0x0 DUP5 SLT PUSH1 0x0 DUP5 SGT AND AND ISZERO PUSH2 0xBAA JUMPI PUSH2 0xBA9 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 PUSH32 0x8000000000000000000000000000000000000000000000000000000000000000 SDIV DUP3 SLT PUSH1 0x0 DUP5 SGT PUSH1 0x0 DUP5 SLT AND AND ISZERO PUSH2 0xBE7 JUMPI PUSH2 0xBE6 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SDIV DUP3 SLT PUSH1 0x0 DUP5 SLT PUSH1 0x0 DUP5 SLT AND AND ISZERO PUSH2 0xC24 JUMPI PUSH2 0xC23 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC3A DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH2 0xC45 DUP4 PUSH2 0xCD7 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0xC7E JUMPI PUSH2 0xC7D PUSH2 0xD40 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC94 DUP3 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA6 DUP3 PUSH2 0xCB7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH10 0xFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD02 DUP3 PUSH2 0xCD7 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0xD35 JUMPI PUSH2 0xD34 PUSH2 0xD40 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0xDA7 DUP2 PUSH2 0xC89 JUMP JUMPDEST DUP2 EQ PUSH2 0xDB2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xDBE DUP2 PUSH2 0xCAD JUMP JUMPDEST DUP2 EQ PUSH2 0xDC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xDD5 DUP2 PUSH2 0xCD7 JUMP JUMPDEST DUP2 EQ PUSH2 0xDE0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0xDEC DUP2 PUSH2 0xCE1 JUMP JUMPDEST DUP2 EQ PUSH2 0xDF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 PUSH19 0x9BB71B2FB4B20BD737C2687B2549C387839DFF PUSH29 0xAE6A4CA77216E47C5D8F64736F6C634300080000330000000000000000 ",
"sourceMap": "137:2244:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1265:213;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;855:400;;;:::i;:::-;;159:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;249:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;356:370;;;:::i;:::-;;1556:369;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2039:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;219:24;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1265:213;1317:7;1336:31;1392:42;1336:99;;1452:9;:17;;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1445:26;;;1265:213;:::o;855:400::-;787:5;;;;;;;;;;;773:19;;:10;:19;;;765:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;1042:10:::1;1034:28;;:51;1063:21;1034:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1099:9;1095:102;1114:7;:14;;;;1112:1;:16;1095:102;;;1184:1;1148:21:::0;:33:::1;1170:7;1178:1;1170:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1148:33;;;;;;;;;;;;;;;:37;;;;1130:3;;;;;:::i;:::-;;;;1095:102;;;;1245:1;1231:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1221:7;:26;;;;;;;;;;;;:::i;:::-;;855:400::o:0;159:54::-;;;;;;;;;;;;;;;;;:::o;249:28::-;;;;;;;;;;;;;:::o;356:370::-;413:18;434:13;413:34;;550:10;519:27;536:9;519:16;:27::i;:::-;:41;;511:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;676:9;639:21;:33;661:10;639:33;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;695:7;708:10;695:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;356:370;:::o;1556:369::-;1599:7;1618:31;1674:42;1618:99;;1729:9;1745;:25;;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1727:45;;;;;;1906:11;1898:5;:19;;;;:::i;:::-;1883:35;;;;1556:369;:::o;2039:340::-;2103:7;2122:16;2141:22;2122:41;;2210:23;2260:19;2248:8;2237;:19;;;;:::i;:::-;2236:43;;;;:::i;:::-;2210:69;;2357:15;2350:22;;;;2039:340;;;:::o;219:24::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:139:2:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:141::-;;239:6;233:13;224:22;;255:32;281:5;255:32;:::i;:::-;214:79;;;;:::o;299:139::-;;383:6;370:20;361:29;;399:33;426:5;399:33;:::i;:::-;351:87;;;;:::o;444:143::-;;532:6;526:13;517:22;;548:33;575:5;548:33;:::i;:::-;507:80;;;;:::o;593:141::-;;680:6;674:13;665:22;;696:32;722:5;696:32;:::i;:::-;655:79;;;;:::o;740:262::-;;848:2;836:9;827:7;823:23;819:32;816:2;;;864:1;861;854:12;816:2;907:1;932:53;977:7;968:6;957:9;953:22;932:53;:::i;:::-;922:63;;878:117;806:196;;;;:::o;1008:262::-;;1116:2;1104:9;1095:7;1091:23;1087:32;1084:2;;;1132:1;1129;1122:12;1084:2;1175:1;1200:53;1245:7;1236:6;1225:9;1221:22;1200:53;:::i;:::-;1190:63;;1146:117;1074:196;;;;:::o;1276:284::-;;1395:2;1383:9;1374:7;1370:23;1366:32;1363:2;;;1411:1;1408;1401:12;1363:2;1454:1;1479:64;1535:7;1526:6;1515:9;1511:22;1479:64;:::i;:::-;1469:74;;1425:128;1353:207;;;;:::o;1566:904::-;;;;;;1750:3;1738:9;1729:7;1725:23;1721:33;1718:2;;;1767:1;1764;1757:12;1718:2;1810:1;1835:63;1890:7;1881:6;1870:9;1866:22;1835:63;:::i;:::-;1825:73;;1781:127;1947:2;1973:63;2028:7;2019:6;2008:9;2004:22;1973:63;:::i;:::-;1963:73;;1918:128;2085:2;2111:64;2167:7;2158:6;2147:9;2143:22;2111:64;:::i;:::-;2101:74;;2056:129;2224:2;2250:64;2306:7;2297:6;2286:9;2282:22;2250:64;:::i;:::-;2240:74;;2195:129;2363:3;2390:63;2445:7;2436:6;2425:9;2421:22;2390:63;:::i;:::-;2380:73;;2334:129;1708:762;;;;;;;;:::o;2476:142::-;2579:32;2605:5;2579:32;:::i;:::-;2574:3;2567:45;2557:61;;:::o;2624:118::-;2711:24;2729:5;2711:24;:::i;:::-;2706:3;2699:37;2689:53;;:::o;2748:327::-;;2911:67;2975:2;2970:3;2911:67;:::i;:::-;2904:74;;3008:31;3004:1;2999:3;2995:11;2988:52;3066:2;3061:3;3057:12;3050:19;;2894:181;;;:::o;3081:367::-;;3244:67;3308:2;3303:3;3244:67;:::i;:::-;3237:74;;3341:34;3337:1;3332:3;3328:11;3321:55;3407:5;3402:2;3397:3;3393:12;3386:27;3439:2;3434:3;3430:12;3423:19;;3227:221;;;:::o;3454:118::-;3541:24;3559:5;3541:24;:::i;:::-;3536:3;3529:37;3519:53;;:::o;3578:222::-;;3709:2;3698:9;3694:18;3686:26;;3722:71;3790:1;3779:9;3775:17;3766:6;3722:71;:::i;:::-;3676:124;;;;:::o;3806:254::-;;3953:2;3942:9;3938:18;3930:26;;3966:87;4050:1;4039:9;4035:17;4026:6;3966:87;:::i;:::-;3920:140;;;;:::o;4066:419::-;;4270:2;4259:9;4255:18;4247:26;;4319:9;4313:4;4309:20;4305:1;4294:9;4290:17;4283:47;4347:131;4473:4;4347:131;:::i;:::-;4339:139;;4237:248;;;:::o;4491:419::-;;4695:2;4684:9;4680:18;4672:26;;4744:9;4738:4;4734:20;4730:1;4719:9;4715:17;4708:47;4772:131;4898:4;4772:131;:::i;:::-;4764:139;;4662:248;;;:::o;4916:222::-;;5047:2;5036:9;5032:18;5024:26;;5060:71;5128:1;5117:9;5113:17;5104:6;5060:71;:::i;:::-;5014:124;;;;:::o;5144:169::-;;5262:6;5257:3;5250:19;5302:4;5297:3;5293:14;5278:29;;5240:73;;;;:::o;5319:305::-;;5378:20;5396:1;5378:20;:::i;:::-;5373:25;;5412:20;5430:1;5412:20;:::i;:::-;5407:25;;5566:1;5498:66;5494:74;5491:1;5488:81;5485:2;;;5572:18;;:::i;:::-;5485:2;5616:1;5613;5609:9;5602:16;;5363:261;;;;:::o;5630:185::-;;5687:20;5705:1;5687:20;:::i;:::-;5682:25;;5721:20;5739:1;5721:20;:::i;:::-;5716:25;;5760:1;5750:2;;5765:18;;:::i;:::-;5750:2;5807:1;5804;5800:9;5795:14;;5672:143;;;;:::o;5821:991::-;;5883:19;5900:1;5883:19;:::i;:::-;5878:24;;5916:19;5933:1;5916:19;:::i;:::-;5911:24;;6117:1;6049:66;6045:74;6042:1;6039:81;6034:1;6031;6027:9;6023:1;6020;6016:9;6012:25;6008:113;6005:2;;;6124:18;;:::i;:::-;6005:2;6328:1;6260:66;6255:75;6252:1;6248:83;6243:1;6240;6236:9;6232:1;6229;6225:9;6221:25;6217:115;6214:2;;;6335:18;;:::i;:::-;6214:2;6539:1;6471:66;6466:75;6463:1;6459:83;6454:1;6451;6447:9;6443:1;6440;6436:9;6432:25;6428:115;6425:2;;;6546:18;;:::i;:::-;6425:2;6749:1;6681:66;6676:75;6673:1;6669:83;6664:1;6661;6657:9;6653:1;6650;6646:9;6642:25;6638:115;6635:2;;;6756:18;;:::i;:::-;6635:2;6804:1;6801;6797:9;6786:20;;5868:944;;;;:::o;6818:348::-;;6881:20;6899:1;6881:20;:::i;:::-;6876:25;;6915:20;6933:1;6915:20;:::i;:::-;6910:25;;7103:1;7035:66;7031:74;7028:1;7025:81;7020:1;7013:9;7006:17;7002:105;6999:2;;;7110:18;;:::i;:::-;6999:2;7158:1;7155;7151:9;7140:20;;6866:300;;;;:::o;7172:96::-;;7238:24;7256:5;7238:24;:::i;:::-;7227:35;;7217:51;;;:::o;7274:104::-;;7348:24;7366:5;7348:24;:::i;:::-;7337:35;;7327:51;;;:::o;7384:76::-;;7449:5;7438:16;;7428:32;;;:::o;7466:126::-;;7543:42;7536:5;7532:54;7521:65;;7511:81;;;:::o;7598:77::-;;7664:5;7653:16;;7643:32;;;:::o;7681:105::-;;7757:22;7750:5;7746:34;7735:45;;7725:61;;;:::o;7792:233::-;;7854:24;7872:5;7854:24;:::i;:::-;7845:33;;7900:66;7893:5;7890:77;7887:2;;;7970:18;;:::i;:::-;7887:2;8017:1;8010:5;8006:13;7999:20;;7835:190;;;:::o;8031:180::-;8079:77;8076:1;8069:88;8176:4;8173:1;8166:15;8200:4;8197:1;8190:15;8217:180;8265:77;8262:1;8255:88;8362:4;8359:1;8352:15;8386:4;8383:1;8376:15;8403:122;8476:24;8494:5;8476:24;:::i;:::-;8469:5;8466:35;8456:2;;8515:1;8512;8505:12;8456:2;8446:79;:::o;8531:120::-;8603:23;8620:5;8603:23;:::i;:::-;8596:5;8593:34;8583:2;;8641:1;8638;8631:12;8583:2;8573:78;:::o;8657:122::-;8730:24;8748:5;8730:24;:::i;:::-;8723:5;8720:35;8710:2;;8769:1;8766;8759:12;8710:2;8700:79;:::o;8785:120::-;8857:23;8874:5;8857:23;:::i;:::-;8850:5;8847:34;8837:2;;8895:1;8892;8885:12;8837:2;8827:78;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "726400",
"executionCost": "21626",
"totalCost": "748026"
},
"external": {
"addressToAmountFunded(address)": "1559",
"fund()": "infinite",
"funders(uint256)": "2422",
"getAggregatorVersion()": "infinite",
"getPriceEth()": "infinite",
"getUSDEquivalent(uint256)": "infinite",
"owner()": "1281",
"withdraw()": "infinite"
}
},
"methodIdentifiers": {
"addressToAmountFunded(address)": "3e47d6f3",
"fund()": "b60d4288",
"funders(uint256)": "dc0d3dff",
"getAggregatorVersion()": "0db92491",
"getPriceEth()": "c0a86a4a",
"getUSDEquivalent(uint256)": "da23cad8",
"owner()": "8da5cb5b",
"withdraw()": "3ccfd60b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "addressToAmountFunded",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "funders",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getAggregatorVersion",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getPriceEth",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethInWei",
"type": "uint256"
}
],
"name": "getUSDEquivalent",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address payable",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdraw",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "addressToAmountFunded",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "funders",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getAggregatorVersion",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getPriceEth",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "ethInWei",
"type": "uint256"
}
],
"name": "getUSDEquivalent",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address payable",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "withdraw",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/FundMe.sol": "FundMe"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol": {
"keccak256": "0xe6f5ac8c47f3b9b6135051efb9216f9ba5b312a6ecc20209b4f66a780443c328",
"license": "MIT",
"urls": [
"bzz-raw://ded4aa77b7b8f222a2d992eb95b03592be3250b826b6a38a4c790d2dec8b0d47",
"dweb:/ipfs/QmNUKpTKXWsBBNMyzZuYvEZ2pUhZ2zEhQuyvxYZpTwo4eT"
]
},
"contracts/FundMe.sol": {
"keccak256": "0x46ecbda2b637e96ed86cd380fb6542e5f855dc2b661867028f6ce88f703f67f9",
"license": "MIT",
"urls": [
"bzz-raw://931763bace56db713aed648518c147dcf62bcf1961094138e114cfa436cb3a95",
"dweb:/ipfs/QmXLEMHnx6L1L4ySDEH4EeXfMqjxQuX2cujmNg4tTbD3UN"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// didnt use experimental versoin, instead passing strings one by one
//
pragma solidity ^0.8.0;
pragma abicoder v2;
/**
* @title Foo
* @dev Foo
*/
contract Foo {
mapping(string => string[]) public subsets;
string[] public inputStrings;
function getSubset(string memory str) public view returns (string[] memory) {
string[] memory arr = subsets[str];
return arr;
}
// function sliceStr(bytes calldata str, uint i, uint j) public pure returns( string memory) { // pure doesn't even read state
// bytes calldata b = bytes(str);
// bytes calldata b1 = b[i:j];
// return string(b1);
// }
function addStringToInput(string calldata str) public {
string[] storage _stringSubsets = subsets[str];
inputStrings.push(str);
uint _strLength = bytes(str).length;
// uint index = 0;
for(uint j=0; j< _strLength; j++){
for(uint k=j+1; k<=_strLength; k++){
bytes calldata b = bytes(str);
b = b[j:k];
_stringSubsets.push(string(b));
// _stringSubsets[index] = string(b);
// index++;
}
}
// subsets[str] = _stringSubsets;
}
function reverseValue(string memory _base) public pure returns(string memory){
bytes memory _baseBytes = bytes(_base);
assert(_baseBytes.length > 0);
string memory _tempValue = new string(_baseBytes.length);
bytes memory _newValue = bytes(_tempValue);
for(uint i=0;i<_baseBytes.length;i++){
_newValue[ _baseBytes.length - i - 1] = _baseBytes[i];
}
return string(_newValue);
}
function deleteFromString(string memory str, string memory subStr) public pure returns(string memory){
bytes memory strBytes = bytes(str);
bytes memory subStrBytes = bytes(subStr);
string memory _newStr = new string(strBytes.length - subStrBytes.length);
bytes memory _newStrBytes = bytes(_newStr);
// A 0
// B 1
// C 2 2+2
// D 3
// E 4
// F 5
uint i_new = 0;
for(uint i=0;i<strBytes.length;i++){
if(strBytes[i] == subStrBytes[0]){
// check further
uint _i=i+1;
uint j=1;
for(j=1; j<subStrBytes.length; j++){
if(strBytes[_i] == subStrBytes[j]){
_i++;
}
}
if(j == subStrBytes.length){ //complete traversal, yesss
i= i+(subStrBytes.length-1);
}
} else {
_newStrBytes[i_new] = strBytes[i];
}
i_new++;
}
return string(_newStrBytes);
}
function trimStringMirroringChars() view public returns(string memory, string memory) {
string memory _strNext;
string memory _strPrev;
for (uint i = inputStrings.length-1; i > 0; i--) {
_strNext = inputStrings[i];
_strPrev = inputStrings[i-1];
}
return (_strPrev, _strNext);
}
// bytes exampleBytes = 'abcdef'
// exampleBytes[2:5]; # 'abc'
// exampleBytes[:5]; # '0xabc'
// exampleBytes[2:]; # 'abcd'
// exampleBytes[:]; # '0xabcd'
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol";
contract FundMe {
mapping(address=>uint256) public addressToAmountFunded;
address[] public funders;
address payable public owner;
constructor() {
owner = payable(msg.sender);
}
function fund() public payable {
// $50;
uint256 minimumUSD = 50 * 10 ** 18; // $50 UPTO 18 decimal places to compare in Wei model
require(getUSDEquivalent(msg.value) >= minimumUSD, "You need to spend more Eth..."); // uses ETH -> USD Conversion Rate
addressToAmountFunded[msg.sender] += msg.value;
funders.push(msg.sender);
}
modifier onlyOwner {
require(msg.sender == owner, "only contract owner can withdraw...");
_;
}
function withdraw() public payable onlyOwner {
// require(msg.sender == owner, "only contract owner can withdraw...");
// only admin/owner should withdraw
payable(msg.sender).transfer(address(this).balance);
for(uint256 i=0; i<funders.length; i++){
addressToAmountFunded[funders[i]] = 0;
}
// OR
funders = new address[](0);
}
function getAggregatorVersion() public view returns(uint256) {
AggregatorV3Interface priceFeed = AggregatorV3Interface(0x9326BFA02ADD2366b30bacB125260Af641031331);
return priceFeed.version();
}
// Returns 1 Eth price in USD upto 18 decimal places as uint256
function getPriceEth() public view returns(uint256) {
AggregatorV3Interface priceFeed = AggregatorV3Interface(0x9326BFA02ADD2366b30bacB125260Af641031331);
(,int price,,,) = priceFeed.latestRoundData();
// price has 8 decimal places, mul with 10000000000 to get Eth price till 18 decimial places
return uint256(price * 10000000000);
}
// Takes eth Amount in Wei
// Returns equivalent price in USD upto 18 decimal places as uint256
function getUSDEquivalent(uint256 ethInWei) public view returns(uint256) {
uint256 priceEth = 4500000000000000000000; // Eth price till 18 decimial places
uint256 equivalentPrice = (priceEth * ethInWei) / 1000000000000000000; // equivalent price in USD upto 18 decimal places as uint256
return equivalentPrice;
}
}
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithEthers script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner()
let factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer);
let contract = await factory.deploy(...constructorArgs);
console.log('Contract Address: ', contract.address);
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
console.log('Deployment successful.')
} catch (e) {
console.log(e.message)
}
})()
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithWeb3 script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
let contract = new web3.eth.Contract(metadata.abi)
contract = contract.deploy({
data: metadata.data.bytecode.object,
arguments: constructorArgs
})
const newContractInstance = await contract.send({
from: accounts[0],
gas: 1500000,
gasPrice: '30000000000'
})
console.log('Contract deployed at address: ', newContractInstance.options.address)
} catch (e) {
console.log(e.message)
}
})()
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
ballotToTest.vote(0);
Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal");
Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name");
}
function checkWinninProposalWithReturnValue () public view returns (bool) {
return ballotToTest.winningProposal() == 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment