Skip to content

Instantly share code, notes, and snippets.

@sunzcdev
Created March 23, 2022 07:40
Show Gist options
  • Save sunzcdev/64c5ce6d9d97e05c41763f9c80e77d88 to your computer and use it in GitHub Desktop.
Save sunzcdev/64c5ce6d9d97e05c41763f9c80e77d88 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=builtin&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
contract Counter {
uint public count;
// Function to get the current count
function get() public view returns (uint) {
return count;
}
// Function to increment count by 1
function inc() public {
count += 1;
}
// Function to decrement count by 1
function dec() public {
count -= 1;
}
// Mapping from address to uint
mapping(address => uint) public myMap;
function get(address _addr) public view returns (uint) {
// Mapping always returns a value.
// If the value was never set, it will return the default value.
return myMap[_addr];
}
function set(address _addr, uint _i) public {
// Update the value at this address
myMap[_addr] = _i;
}
function remove(address _addr) public {
// Reset the value to the default value.
delete myMap[_addr];
}
}
// 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": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610621806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80634cc822151461004657806371e5ee5f14610062578063f8a8fd6d14610092575b600080fd5b610060600480360381019061005b9190610389565b61009c565b005b61007c60048036038101906100779190610389565b61018e565b60405161008991906103c5565b60405180910390f35b61009a6101b2565b005b60008054905081106100e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100da9061043d565b60405180910390fd5b60008190505b60016000805490506100fb919061048c565b81101561016257600060018261011191906104c0565b8154811061012257610121610516565b5b90600052602060002001546000828154811061014157610140610516565b5b9060005260206000200181905550808061015a90610545565b9150506100e9565b5060008054806101755761017461058d565b5b6001900381819060005260206000200160009055905550565b6000818154811061019e57600080fd5b906000526020600020016000915090505481565b6040518060a00160405280600160ff168152602001600260ff168152602001600360ff168152602001600460ff168152602001600560ff1681525060009060056101fd9291906102df565b50610208600261009c565b60016000808154811061021e5761021d610516565b5b906000526020600020015414610237576102366105bc565b5b6002600060018154811061024e5761024d610516565b5b906000526020600020015414610267576102666105bc565b5b6004600060028154811061027e5761027d610516565b5b906000526020600020015414610297576102966105bc565b5b600560006003815481106102ae576102ad610516565b5b9060005260206000200154146102c7576102c66105bc565b5b6004600080549050146102dd576102dc6105bc565b5b565b828054828255906000526020600020908101928215610320579160200282015b8281111561031f578251829060ff169055916020019190600101906102ff565b5b50905061032d9190610331565b5090565b5b8082111561034a576000816000905550600101610332565b5090565b600080fd5b6000819050919050565b61036681610353565b811461037157600080fd5b50565b6000813590506103838161035d565b92915050565b60006020828403121561039f5761039e61034e565b5b60006103ad84828501610374565b91505092915050565b6103bf81610353565b82525050565b60006020820190506103da60008301846103b6565b92915050565b600082825260208201905092915050565b7f6f7574206f6620626f6e64730000000000000000000000000000000000000000600082015250565b6000610427600c836103e0565b9150610432826103f1565b602082019050919050565b600060208201905081810360008301526104568161041a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061049782610353565b91506104a283610353565b9250828210156104b5576104b461045d565b5b828203905092915050565b60006104cb82610353565b91506104d683610353565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561050b5761050a61045d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061055082610353565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036105825761058161045d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea2646970667358221220aa8664dce30ba4a4d3911b30c7f057318a535258c592fa8f2045c059801965a264736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x621 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 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0xF8A8FD6D EQ PUSH2 0x92 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x389 JUMP JUMPDEST PUSH2 0x9C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x389 JUMP JUMPDEST PUSH2 0x18E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x89 SWAP2 SWAP1 PUSH2 0x3C5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9A PUSH2 0x1B2 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT PUSH2 0xE3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDA SWAP1 PUSH2 0x43D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 POP PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x48C JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x162 JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x111 SWAP2 SWAP1 PUSH2 0x4C0 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x122 JUMPI PUSH2 0x121 PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x141 JUMPI PUSH2 0x140 PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x15A SWAP1 PUSH2 0x545 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE9 JUMP JUMPDEST POP PUSH1 0x0 DUP1 SLOAD DUP1 PUSH2 0x175 JUMPI PUSH2 0x174 PUSH2 0x58D JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x19E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x5 PUSH2 0x1FD SWAP3 SWAP2 SWAP1 PUSH2 0x2DF JUMP JUMPDEST POP PUSH2 0x208 PUSH1 0x2 PUSH2 0x9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP2 SLOAD DUP2 LT PUSH2 0x21E JUMPI PUSH2 0x21D PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x237 JUMPI PUSH2 0x236 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x2 PUSH1 0x0 PUSH1 0x1 DUP2 SLOAD DUP2 LT PUSH2 0x24E JUMPI PUSH2 0x24D PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x267 JUMPI PUSH2 0x266 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x4 PUSH1 0x0 PUSH1 0x2 DUP2 SLOAD DUP2 LT PUSH2 0x27E JUMPI PUSH2 0x27D PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x297 JUMPI PUSH2 0x296 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x5 PUSH1 0x0 PUSH1 0x3 DUP2 SLOAD DUP2 LT PUSH2 0x2AE JUMPI PUSH2 0x2AD PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x2C7 JUMPI PUSH2 0x2C6 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP1 SLOAD SWAP1 POP EQ PUSH2 0x2DD JUMPI PUSH2 0x2DC PUSH2 0x5BC JUMP JUMPDEST JUMPDEST JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x320 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x31F JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2FF JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x32D SWAP2 SWAP1 PUSH2 0x331 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x34A JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x332 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x366 DUP2 PUSH2 0x353 JUMP JUMPDEST DUP2 EQ PUSH2 0x371 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x383 DUP2 PUSH2 0x35D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39F JUMPI PUSH2 0x39E PUSH2 0x34E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3AD DUP5 DUP3 DUP6 ADD PUSH2 0x374 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3BF DUP2 PUSH2 0x353 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3DA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3B6 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 PUSH32 0x6F7574206F6620626F6E64730000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x427 PUSH1 0xC DUP4 PUSH2 0x3E0 JUMP JUMPDEST SWAP2 POP PUSH2 0x432 DUP3 PUSH2 0x3F1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x456 DUP2 PUSH2 0x41A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x497 DUP3 PUSH2 0x353 JUMP JUMPDEST SWAP2 POP PUSH2 0x4A2 DUP4 PUSH2 0x353 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x4B5 JUMPI PUSH2 0x4B4 PUSH2 0x45D JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CB DUP3 PUSH2 0x353 JUMP JUMPDEST SWAP2 POP PUSH2 0x4D6 DUP4 PUSH2 0x353 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x50B JUMPI PUSH2 0x50A PUSH2 0x45D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x550 DUP3 PUSH2 0x353 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x582 JUMPI PUSH2 0x581 PUSH2 0x45D JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAA DUP7 PUSH5 0xDCE30BA4A4 0xD3 SWAP2 SHL ADDRESS 0xC7 CREATE JUMPI BALANCE DUP11 MSTORE8 MSTORE PC 0xC5 SWAP3 STATICCALL DUP16 KECCAK256 GASLIMIT 0xC0 MSIZE DUP1 NOT PUSH6 0xA264736F6C63 NUMBER STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "532:511:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@arr_60": {
"entryPoint": 398,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@remove_104": {
"entryPoint": 156,
"id": 104,
"parameterSlots": 1,
"returnSlots": 0
},
"@test_160": {
"entryPoint": 434,
"id": 160,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 884,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 905,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1050,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 950,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1085,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 965,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 992,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1216,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 1164,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 851,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 1349,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x01": {
"entryPoint": 1468,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1117,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 1421,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 1302,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 846,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a": {
"entryPoint": 1009,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 861,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4005:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1090:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1130:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1112:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1112:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1100:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1100:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1078:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1085:3:1",
"type": ""
}
],
"src": "1025:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1247:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1269:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1265:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1350:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1293:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1293:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1293:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1219:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1231:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1242:4:1",
"type": ""
}
],
"src": "1149:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1473:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1490:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1495:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1483:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1483:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1483:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1511:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1530:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1535:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1526:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1526:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1511:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1445:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1450:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1461:11:1",
"type": ""
}
],
"src": "1377:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1658:56:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1680:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1688:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1676:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1676:14:1"
},
{
"hexValue": "6f7574206f6620626f6e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1692:14:1",
"type": "",
"value": "out of bonds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1669:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1669:38:1"
},
"nodeType": "YulExpressionStatement",
"src": "1669:38:1"
}
]
},
"name": "store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1650:6:1",
"type": ""
}
],
"src": "1552:162:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1866:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1876:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1942:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:2:1",
"type": "",
"value": "12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1883:58:1"
},
"nodeType": "YulFunctionCall",
"src": "1883:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1876:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2048:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a",
"nodeType": "YulIdentifier",
"src": "1959:88:1"
},
"nodeType": "YulFunctionCall",
"src": "1959:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "1959:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2061:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2072:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2077:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2068:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2068:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2061:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1854:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1862:3:1",
"type": ""
}
],
"src": "1720:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2263:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2273:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2285:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2296:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2281:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2281:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2273:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2320:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2331:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2316:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2316:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2339:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2345:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2335:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2335:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2309:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2309:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2309:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2365:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2499:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2373:124:1"
},
"nodeType": "YulFunctionCall",
"src": "2373:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2365:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2243:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2258:4:1",
"type": ""
}
],
"src": "2092:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2562:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2565:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2555:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2555:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "2555:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2659:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2662:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2652:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2652:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2652:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2683:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2686:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2676:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2676:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2676:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "2517:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2748:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2758:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2781:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2763:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2763:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2758:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2792:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2815:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2797:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2797:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2792:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2839:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2841:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2841:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2841:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2833:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2836:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2830:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2830:8:1"
},
"nodeType": "YulIf",
"src": "2827:34:1"
},
{
"nodeType": "YulAssignment",
"src": "2871:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2883:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2886:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2879:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2879:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "2871:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2734:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2737:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "2743:4:1",
"type": ""
}
],
"src": "2703:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2944:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2954:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2977:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2959:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2959:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2954:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2988:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3011:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2993:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2993:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2988:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3151:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3153:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3153:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3153:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3072:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3079:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3147:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3075:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3075:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3069:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3069:81:1"
},
"nodeType": "YulIf",
"src": "3066:107:1"
},
{
"nodeType": "YulAssignment",
"src": "3183:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3194:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3197:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3190:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3190:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "3183:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2931:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2934:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2940:3:1",
"type": ""
}
],
"src": "2900:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3239:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3256:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3259:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3249:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3249:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3249:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3353:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3356:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3346:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3346:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3346:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3377:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3380:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3370:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3370:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3370:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "3211:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3440:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3450:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3477:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3459:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3459:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3450:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3573:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3575:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3575:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3575:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3498:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3505:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3495:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3495:77:1"
},
"nodeType": "YulIf",
"src": "3492:103:1"
},
{
"nodeType": "YulAssignment",
"src": "3604:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3615:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3622:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3611:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3611:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "3604:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3426:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "3436:3:1",
"type": ""
}
],
"src": "3397:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3664:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3681:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3684:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3674:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3674:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3674:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3778:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3781:4:1",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3771:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3771:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3771:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3802:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3805:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3795:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3795:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3795:15:1"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "3636:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3850:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3867:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3870:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3860:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3860:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3860:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3964:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3967:4:1",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3957:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3957:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3957:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3988:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3991:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3981:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3981:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3981:15:1"
}
]
},
"name": "panic_error_0x01",
"nodeType": "YulFunctionDefinition",
"src": "3822:180:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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 store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a(memPtr) {\n\n mstore(add(memPtr, 0), \"out of bonds\")\n\n }\n\n function abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 12)\n store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a__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_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\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 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 panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\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_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n function panic_error_0x01() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x01)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80634cc822151461004657806371e5ee5f14610062578063f8a8fd6d14610092575b600080fd5b610060600480360381019061005b9190610389565b61009c565b005b61007c60048036038101906100779190610389565b61018e565b60405161008991906103c5565b60405180910390f35b61009a6101b2565b005b60008054905081106100e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100da9061043d565b60405180910390fd5b60008190505b60016000805490506100fb919061048c565b81101561016257600060018261011191906104c0565b8154811061012257610121610516565b5b90600052602060002001546000828154811061014157610140610516565b5b9060005260206000200181905550808061015a90610545565b9150506100e9565b5060008054806101755761017461058d565b5b6001900381819060005260206000200160009055905550565b6000818154811061019e57600080fd5b906000526020600020016000915090505481565b6040518060a00160405280600160ff168152602001600260ff168152602001600360ff168152602001600460ff168152602001600560ff1681525060009060056101fd9291906102df565b50610208600261009c565b60016000808154811061021e5761021d610516565b5b906000526020600020015414610237576102366105bc565b5b6002600060018154811061024e5761024d610516565b5b906000526020600020015414610267576102666105bc565b5b6004600060028154811061027e5761027d610516565b5b906000526020600020015414610297576102966105bc565b5b600560006003815481106102ae576102ad610516565b5b9060005260206000200154146102c7576102c66105bc565b5b6004600080549050146102dd576102dc6105bc565b5b565b828054828255906000526020600020908101928215610320579160200282015b8281111561031f578251829060ff169055916020019190600101906102ff565b5b50905061032d9190610331565b5090565b5b8082111561034a576000816000905550600101610332565b5090565b600080fd5b6000819050919050565b61036681610353565b811461037157600080fd5b50565b6000813590506103838161035d565b92915050565b60006020828403121561039f5761039e61034e565b5b60006103ad84828501610374565b91505092915050565b6103bf81610353565b82525050565b60006020820190506103da60008301846103b6565b92915050565b600082825260208201905092915050565b7f6f7574206f6620626f6e64730000000000000000000000000000000000000000600082015250565b6000610427600c836103e0565b9150610432826103f1565b602082019050919050565b600060208201905081810360008301526104568161041a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061049782610353565b91506104a283610353565b9250828210156104b5576104b461045d565b5b828203905092915050565b60006104cb82610353565b91506104d683610353565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561050b5761050a61045d565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061055082610353565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036105825761058161045d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea2646970667358221220aa8664dce30ba4a4d3911b30c7f057318a535258c592fa8f2045c059801965a264736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0xF8A8FD6D EQ PUSH2 0x92 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x389 JUMP JUMPDEST PUSH2 0x9C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x389 JUMP JUMPDEST PUSH2 0x18E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x89 SWAP2 SWAP1 PUSH2 0x3C5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9A PUSH2 0x1B2 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT PUSH2 0xE3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDA SWAP1 PUSH2 0x43D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD SWAP1 POP PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x48C JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0x162 JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x111 SWAP2 SWAP1 PUSH2 0x4C0 JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x122 JUMPI PUSH2 0x121 PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x141 JUMPI PUSH2 0x140 PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x15A SWAP1 PUSH2 0x545 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE9 JUMP JUMPDEST POP PUSH1 0x0 DUP1 SLOAD DUP1 PUSH2 0x175 JUMPI PUSH2 0x174 PUSH2 0x58D JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x19E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x5 PUSH2 0x1FD SWAP3 SWAP2 SWAP1 PUSH2 0x2DF JUMP JUMPDEST POP PUSH2 0x208 PUSH1 0x2 PUSH2 0x9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP2 SLOAD DUP2 LT PUSH2 0x21E JUMPI PUSH2 0x21D PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x237 JUMPI PUSH2 0x236 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x2 PUSH1 0x0 PUSH1 0x1 DUP2 SLOAD DUP2 LT PUSH2 0x24E JUMPI PUSH2 0x24D PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x267 JUMPI PUSH2 0x266 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x4 PUSH1 0x0 PUSH1 0x2 DUP2 SLOAD DUP2 LT PUSH2 0x27E JUMPI PUSH2 0x27D PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x297 JUMPI PUSH2 0x296 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x5 PUSH1 0x0 PUSH1 0x3 DUP2 SLOAD DUP2 LT PUSH2 0x2AE JUMPI PUSH2 0x2AD PUSH2 0x516 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x2C7 JUMPI PUSH2 0x2C6 PUSH2 0x5BC JUMP JUMPDEST JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP1 SLOAD SWAP1 POP EQ PUSH2 0x2DD JUMPI PUSH2 0x2DC PUSH2 0x5BC JUMP JUMPDEST JUMPDEST JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x320 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x31F JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2FF JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x32D SWAP2 SWAP1 PUSH2 0x331 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x34A JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x332 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x366 DUP2 PUSH2 0x353 JUMP JUMPDEST DUP2 EQ PUSH2 0x371 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x383 DUP2 PUSH2 0x35D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x39F JUMPI PUSH2 0x39E PUSH2 0x34E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3AD DUP5 DUP3 DUP6 ADD PUSH2 0x374 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3BF DUP2 PUSH2 0x353 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3DA PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3B6 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 PUSH32 0x6F7574206F6620626F6E64730000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x427 PUSH1 0xC DUP4 PUSH2 0x3E0 JUMP JUMPDEST SWAP2 POP PUSH2 0x432 DUP3 PUSH2 0x3F1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x456 DUP2 PUSH2 0x41A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x497 DUP3 PUSH2 0x353 JUMP JUMPDEST SWAP2 POP PUSH2 0x4A2 DUP4 PUSH2 0x353 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x4B5 JUMPI PUSH2 0x4B4 PUSH2 0x45D JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CB DUP3 PUSH2 0x353 JUMP JUMPDEST SWAP2 POP PUSH2 0x4D6 DUP4 PUSH2 0x353 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x50B JUMPI PUSH2 0x50A PUSH2 0x45D JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x550 DUP3 PUSH2 0x353 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x582 JUMPI PUSH2 0x581 PUSH2 0x45D JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAA DUP7 PUSH5 0xDCE30BA4A4 0xD3 SWAP2 SHL ADDRESS 0xC7 CREATE JUMPI BALANCE DUP11 MSTORE8 MSTORE PC 0xC5 SWAP3 STATICCALL DUP16 KECCAK256 GASLIMIT 0xC0 MSIZE DUP1 NOT PUSH6 0xA264736F6C63 NUMBER STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "532:511:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;588:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;562:17;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;811:229;;;:::i;:::-;;588:215;652:3;:10;;;;643:6;:19;635:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;693:6;702;693:15;;689:87;725:1;713:3;:10;;;;:13;;;;:::i;:::-;710:1;:16;689:87;;;756:3;762:1;760;:3;;;;:::i;:::-;756:8;;;;;;;;:::i;:::-;;;;;;;;;;747:3;751:1;747:6;;;;;;;;:::i;:::-;;;;;;;;;:17;;;;728:3;;;;;:::i;:::-;;;;689:87;;;;786:3;:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;588:215;:::o;562:17::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;811:229::-;847:17;;;;;;;;854:1;847:17;;;;;;856:1;847:17;;;;;;858:1;847:17;;;;;;860:1;847:17;;;;;;862:1;847:17;;;;;:3;:17;;;;;;;:::i;:::-;;875:9;882:1;875:6;:9::i;:::-;910:1;902:3;906:1;902:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;895:17;;;;:::i;:::-;;938:1;930:3;934:1;930:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;923:17;;;;:::i;:::-;;966:1;958:3;962:1;958:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;951:17;;;;:::i;:::-;;994:1;986:3;990:1;986:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;979:17;;;;:::i;:::-;;1028:1;1014:3;:10;;;;:15;1007:23;;;;:::i;:::-;;811:229::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:222::-;1242:4;1280:2;1269:9;1265:18;1257:26;;1293:71;1361:1;1350:9;1346:17;1337:6;1293:71;:::i;:::-;1149:222;;;;:::o;1377:169::-;1461:11;1495:6;1490:3;1483:19;1535:4;1530:3;1526:14;1511:29;;1377:169;;;;:::o;1552:162::-;1692:14;1688:1;1680:6;1676:14;1669:38;1552:162;:::o;1720:366::-;1862:3;1883:67;1947:2;1942:3;1883:67;:::i;:::-;1876:74;;1959:93;2048:3;1959:93;:::i;:::-;2077:2;2072:3;2068:12;2061:19;;1720:366;;;:::o;2092:419::-;2258:4;2296:2;2285:9;2281:18;2273:26;;2345:9;2339:4;2335:20;2331:1;2320:9;2316:17;2309:47;2373:131;2499:4;2373:131;:::i;:::-;2365:139;;2092:419;;;:::o;2517:180::-;2565:77;2562:1;2555:88;2662:4;2659:1;2652:15;2686:4;2683:1;2676:15;2703:191;2743:4;2763:20;2781:1;2763:20;:::i;:::-;2758:25;;2797:20;2815:1;2797:20;:::i;:::-;2792:25;;2836:1;2833;2830:8;2827:34;;;2841:18;;:::i;:::-;2827:34;2886:1;2883;2879:9;2871:17;;2703:191;;;;:::o;2900:305::-;2940:3;2959:20;2977:1;2959:20;:::i;:::-;2954:25;;2993:20;3011:1;2993:20;:::i;:::-;2988:25;;3147:1;3079:66;3075:74;3072:1;3069:81;3066:107;;;3153:18;;:::i;:::-;3066:107;3197:1;3194;3190:9;3183:16;;2900:305;;;;:::o;3211:180::-;3259:77;3256:1;3249:88;3356:4;3353:1;3346:15;3380:4;3377:1;3370:15;3397:233;3436:3;3459:24;3477:5;3459:24;:::i;:::-;3450:33;;3505:66;3498:5;3495:77;3492:103;;3575:18;;:::i;:::-;3492:103;3622:1;3615:5;3611:13;3604:20;;3397:233;;;:::o;3636:180::-;3684:77;3681:1;3674:88;3781:4;3778:1;3771:15;3805:4;3802:1;3795:15;3822:180;3870:77;3867:1;3860:88;3967:4;3964:1;3957:15;3991:4;3988:1;3981:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "313800",
"executionCost": "355",
"totalCost": "314155"
},
"external": {
"arr(uint256)": "infinite",
"remove(uint256)": "infinite",
"test()": "infinite"
}
},
"methodIdentifiers": {
"arr(uint256)": "71e5ee5f",
"remove(uint256)": "4cc82215",
"test()": "f8a8fd6d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "arr",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_index",
"type": "uint256"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "test",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "arr",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_index",
"type": "uint256"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "test",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/study.sol": "AdvanceArray"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/study.sol": {
"keccak256": "0xf1424f6b9a1939371a9a91d6996154857603461e0234c81ac25cd2f74aad9698",
"license": "MIT",
"urls": [
"bzz-raw://f3780c59d3bb33c4af25ac1721e940650ccc6d3c24ae7da524c0135a7b6745f1",
"dweb:/ipfs/QmTkNVoG8DNTiUVncXKtX7TVNYqdiSABNG9k4XJ3DHAkrU"
]
}
},
"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": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526040518060600160405280600160ff168152602001600260ff168152602001600360ff16815250600090600361003b92919061004e565b5034801561004857600080fd5b506100bd565b82805482825590600052602060002090810192821561008f579160200282015b8281111561008e578251829060ff1690559160200191906001019061006e565b5b50905061009c91906100a0565b5090565b5b808211156100b95760008160009055506001016100a1565b5090565b6102c8806100cc6000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80634cc822151461006757806354353f2f1461008357806371e5ee5f1461008d578063949d225d146100bd5780639507d39a146100db578063959ac4841461010b575b600080fd5b610081600480360381019061007c919061020c565b610127565b005b61008b61014c565b005b6100a760048036038101906100a2919061020c565b61014e565b6040516100b49190610248565b60405180910390f35b6100c5610172565b6040516100d29190610248565b60405180910390f35b6100f560048036038101906100f0919061020c565b61017e565b6040516101029190610248565b60405180910390f35b6101256004803603810190610120919061020c565b6101a5565b005b6000818154811061013b5761013a610263565b5b906000526020600020016000905550565b565b6000818154811061015e57600080fd5b906000526020600020016000915090505481565b60008080549050905090565b600080828154811061019357610192610263565b5b90600052602060002001549050919050565b600081908060018154018082558091505060019003906000526020600020016000909190919091505550565b600080fd5b6000819050919050565b6101e9816101d6565b81146101f457600080fd5b50565b600081359050610206816101e0565b92915050565b600060208284031215610222576102216101d1565b5b6000610230848285016101f7565b91505092915050565b610242816101d6565b82525050565b600060208201905061025d6000830184610239565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220be8b6a6a1f7cd822d5a475a78316c94f9fb67f35b17012526062d7580cb998ec64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0x3B SWAP3 SWAP2 SWAP1 PUSH2 0x4E JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8F JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8E JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x9C SWAP2 SWAP1 PUSH2 0xA0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xB9 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xA1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x2C8 DUP1 PUSH2 0xCC 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 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x9507D39A EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x959AC484 EQ PUSH2 0x10B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x127 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8B PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x14E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0x172 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x17E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x102 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x13B JUMPI PUSH2 0x13A PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x15E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x193 JUMPI PUSH2 0x192 PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E9 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP2 EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x206 DUP2 PUSH2 0x1E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x222 JUMPI PUSH2 0x221 PUSH2 0x1D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x230 DUP5 DUP3 DUP6 ADD PUSH2 0x1F7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x242 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x25D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x239 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBE DUP12 PUSH11 0x6A1F7CD822D5A475A78316 0xC9 0x4F SWAP16 0xB6 PUSH32 0x35B17012526062D7580CB998EC64736F6C634300080D00330000000000000000 ",
"sourceMap": "61:467:0:-:0;;;84:27;;;;;;;;105:1;84:27;;;;;;107:1;84:27;;;;;;109:1;84:27;;;;;;;;;;;;;:::i;:::-;;61:467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@arr_8": {
"entryPoint": 334,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
},
"@example_12": {
"entryPoint": 332,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@get_36": {
"entryPoint": 382,
"id": 36,
"parameterSlots": 1,
"returnSlots": 1
},
"@push_24": {
"entryPoint": 421,
"id": 24,
"parameterSlots": 1,
"returnSlots": 0
},
"@remove_47": {
"entryPoint": 295,
"id": 47,
"parameterSlots": 1,
"returnSlots": 0
},
"@size_56": {
"entryPoint": 370,
"id": 56,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 503,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 524,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 569,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 584,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 470,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 611,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 465,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 480,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1560:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1090:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1130:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1112:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1112:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1100:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1100:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1078:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1085:3:1",
"type": ""
}
],
"src": "1025:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1247:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1269:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1265:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1350:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1293:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1293:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1293:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1219:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1231:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1242:4:1",
"type": ""
}
],
"src": "1149:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1405:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1422:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1425:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1415:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1415:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1415:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1519:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1522:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1512:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1512:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1512:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1543:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1546:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1536:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1536:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1536:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "1377:180:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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 panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100625760003560e01c80634cc822151461006757806354353f2f1461008357806371e5ee5f1461008d578063949d225d146100bd5780639507d39a146100db578063959ac4841461010b575b600080fd5b610081600480360381019061007c919061020c565b610127565b005b61008b61014c565b005b6100a760048036038101906100a2919061020c565b61014e565b6040516100b49190610248565b60405180910390f35b6100c5610172565b6040516100d29190610248565b60405180910390f35b6100f560048036038101906100f0919061020c565b61017e565b6040516101029190610248565b60405180910390f35b6101256004803603810190610120919061020c565b6101a5565b005b6000818154811061013b5761013a610263565b5b906000526020600020016000905550565b565b6000818154811061015e57600080fd5b906000526020600020016000915090505481565b60008080549050905090565b600080828154811061019357610192610263565b5b90600052602060002001549050919050565b600081908060018154018082558091505060019003906000526020600020016000909190919091505550565b600080fd5b6000819050919050565b6101e9816101d6565b81146101f457600080fd5b50565b600081359050610206816101e0565b92915050565b600060208284031215610222576102216101d1565b5b6000610230848285016101f7565b91505092915050565b610242816101d6565b82525050565b600060208201905061025d6000830184610239565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220be8b6a6a1f7cd822d5a475a78316c94f9fb67f35b17012526062d7580cb998ec64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x9507D39A EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x959AC484 EQ PUSH2 0x10B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x127 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8B PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x14E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0x172 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x17E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x102 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x13B JUMPI PUSH2 0x13A PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x15E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x193 JUMPI PUSH2 0x192 PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E9 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP2 EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x206 DUP2 PUSH2 0x1E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x222 JUMPI PUSH2 0x221 PUSH2 0x1D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x230 DUP5 DUP3 DUP6 ADD PUSH2 0x1F7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x242 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x25D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x239 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xBE DUP12 PUSH11 0x6A1F7CD822D5A475A78316 0xC9 0x4F SWAP16 0xB6 PUSH32 0x35B17012526062D7580CB998EC64736F6C634300080D00330000000000000000 ",
"sourceMap": "61:467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;120:79;;;:::i;:::-;;84:27;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;447:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;274:87;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;207:59;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;369:70;421:3;425:5;421:10;;;;;;;;:::i;:::-;;;;;;;;;414:17;;;369:70;:::o;120:79::-;:::o;84:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;447:78::-;484:4;507:3;:10;;;;500:17;;447:78;:::o;274:87::-;320:4;343:3;347:5;343:10;;;;;;;;:::i;:::-;;;;;;;;;;336:17;;274:87;;;:::o;207:59::-;247:3;256:1;247:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207:59;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:222::-;1242:4;1280:2;1269:9;1265:18;1257:26;;1293:71;1361:1;1350:9;1346:17;1337:6;1293:71;:::i;:::-;1149:222;;;;:::o;1377:180::-;1425:77;1422:1;1415:88;1522:4;1519:1;1512:15;1546:4;1543:1;1536:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "142400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"arr(uint256)": "infinite",
"example()": "144",
"get(uint256)": "infinite",
"push(uint256)": "46917",
"remove(uint256)": "7573",
"size()": "2489"
}
},
"methodIdentifiers": {
"arr(uint256)": "71e5ee5f",
"example()": "54353f2f",
"get(uint256)": "9507d39a",
"push(uint256)": "959ac484",
"remove(uint256)": "4cc82215",
"size()": "949d225d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "arr",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "example",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "e",
"type": "uint256"
}
],
"name": "push",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "size",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "arr",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "example",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "e",
"type": "uint256"
}
],
"name": "push",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "size",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/study.sol": "Array"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/study.sol": {
"keccak256": "0xf1424f6b9a1939371a9a91d6996154857603461e0234c81ac25cd2f74aad9698",
"license": "MIT",
"urls": [
"bzz-raw://f3780c59d3bb33c4af25ac1721e940650ccc6d3c24ae7da524c0135a7b6745f1",
"dweb:/ipfs/QmTkNVoG8DNTiUVncXKtX7TVNYqdiSABNG9k4XJ3DHAkrU"
]
}
},
"version": 1
}
{
"id": "08860367b884b5c7f547a9335b60fb9c",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"contracts/1_first.sol": {
"content": "// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.10;\r\n\r\ncontract Counter {\r\n uint public count;\r\n\r\n // Function to get the current count\r\n function get() public view returns (uint) {\r\n return count;\r\n }\r\n\r\n // Function to increment count by 1\r\n function inc() public {\r\n count += 1;\r\n }\r\n\r\n // Function to decrement count by 1\r\n function dec() public {\r\n count -= 1;\r\n }\r\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/1_first.sol": {
"Counter": {
"abi": [
{
"inputs": [],
"name": "count",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "dec",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "inc",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/1_first.sol\":61:429 contract Counter {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/1_first.sol\":61:429 contract Counter {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x06661abd\n eq\n tag_3\n jumpi\n dup1\n 0x371303c0\n eq\n tag_4\n jumpi\n dup1\n 0x6d4ce63c\n eq\n tag_5\n jumpi\n dup1\n 0xb3bcfa82\n eq\n tag_6\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/1_first.sol\":85:102 uint public count */\n tag_3:\n tag_7\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n tag_9\n swap2\n swap1\n tag_10\n jump\t// in\n tag_9:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/1_first.sol\":275:326 function inc() public {... */\n tag_4:\n tag_11\n tag_12\n jump\t// in\n tag_11:\n stop\n /* \"contracts/1_first.sol\":153:226 function get() public view returns (uint) {... */\n tag_5:\n tag_13\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n tag_15\n swap2\n swap1\n tag_10\n jump\t// in\n tag_15:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/1_first.sol\":375:426 function dec() public {... */\n tag_6:\n tag_16\n tag_17\n jump\t// in\n tag_16:\n stop\n /* \"contracts/1_first.sol\":85:102 uint public count */\n tag_8:\n sload(0x00)\n dup2\n jump\t// out\n /* \"contracts/1_first.sol\":275:326 function inc() public {... */\n tag_12:\n /* \"contracts/1_first.sol\":317:318 1 */\n 0x01\n /* \"contracts/1_first.sol\":308:313 count */\n 0x00\n dup1\n /* \"contracts/1_first.sol\":308:318 count += 1 */\n dup3\n dup3\n sload\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/1_first.sol\":275:326 function inc() public {... */\n jump\t// out\n /* \"contracts/1_first.sol\":153:226 function get() public view returns (uint) {... */\n tag_14:\n /* \"contracts/1_first.sol\":189:193 uint */\n 0x00\n /* \"contracts/1_first.sol\":213:218 count */\n dup1\n sload\n /* \"contracts/1_first.sol\":206:218 return count */\n swap1\n pop\n /* \"contracts/1_first.sol\":153:226 function get() public view returns (uint) {... */\n swap1\n jump\t// out\n /* \"contracts/1_first.sol\":375:426 function dec() public {... */\n tag_17:\n /* \"contracts/1_first.sol\":417:418 1 */\n 0x01\n /* \"contracts/1_first.sol\":408:413 count */\n 0x00\n dup1\n /* \"contracts/1_first.sol\":408:418 count -= 1 */\n dup3\n dup3\n sload\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/1_first.sol\":375:426 function dec() public {... */\n jump\t// out\n /* \"#utility.yul\":7:84 */\n tag_25:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":73:78 */\n dup2\n /* \"#utility.yul\":62:78 */\n swap1\n pop\n /* \"#utility.yul\":7:84 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":90:208 */\n tag_26:\n /* \"#utility.yul\":177:201 */\n tag_31\n /* \"#utility.yul\":195:200 */\n dup2\n /* \"#utility.yul\":177:201 */\n tag_25\n jump\t// in\n tag_31:\n /* \"#utility.yul\":172:175 */\n dup3\n /* \"#utility.yul\":165:202 */\n mstore\n /* \"#utility.yul\":90:208 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":214:436 */\n tag_10:\n /* \"#utility.yul\":307:311 */\n 0x00\n /* \"#utility.yul\":345:347 */\n 0x20\n /* \"#utility.yul\":334:343 */\n dup3\n /* \"#utility.yul\":330:348 */\n add\n /* \"#utility.yul\":322:348 */\n swap1\n pop\n /* \"#utility.yul\":358:429 */\n tag_33\n /* \"#utility.yul\":426:427 */\n 0x00\n /* \"#utility.yul\":415:424 */\n dup4\n /* \"#utility.yul\":411:428 */\n add\n /* \"#utility.yul\":402:408 */\n dup5\n /* \"#utility.yul\":358:429 */\n tag_26\n jump\t// in\n tag_33:\n /* \"#utility.yul\":214:436 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":442:622 */\n tag_27:\n /* \"#utility.yul\":490:567 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":487:488 */\n 0x00\n /* \"#utility.yul\":480:568 */\n mstore\n /* \"#utility.yul\":587:591 */\n 0x11\n /* \"#utility.yul\":584:585 */\n 0x04\n /* \"#utility.yul\":577:592 */\n mstore\n /* \"#utility.yul\":611:615 */\n 0x24\n /* \"#utility.yul\":608:609 */\n 0x00\n /* \"#utility.yul\":601:616 */\n revert\n /* \"#utility.yul\":628:933 */\n tag_20:\n /* \"#utility.yul\":668:671 */\n 0x00\n /* \"#utility.yul\":687:707 */\n tag_36\n /* \"#utility.yul\":705:706 */\n dup3\n /* \"#utility.yul\":687:707 */\n tag_25\n jump\t// in\n tag_36:\n /* \"#utility.yul\":682:707 */\n swap2\n pop\n /* \"#utility.yul\":721:741 */\n tag_37\n /* \"#utility.yul\":739:740 */\n dup4\n /* \"#utility.yul\":721:741 */\n tag_25\n jump\t// in\n tag_37:\n /* \"#utility.yul\":716:741 */\n swap3\n pop\n /* \"#utility.yul\":875:876 */\n dup3\n /* \"#utility.yul\":807:873 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":803:877 */\n sub\n /* \"#utility.yul\":800:801 */\n dup3\n /* \"#utility.yul\":797:878 */\n gt\n /* \"#utility.yul\":794:901 */\n iszero\n tag_38\n jumpi\n /* \"#utility.yul\":881:899 */\n tag_39\n tag_27\n jump\t// in\n tag_39:\n /* \"#utility.yul\":794:901 */\n tag_38:\n /* \"#utility.yul\":925:926 */\n dup3\n /* \"#utility.yul\":922:923 */\n dup3\n /* \"#utility.yul\":918:927 */\n add\n /* \"#utility.yul\":911:927 */\n swap1\n pop\n /* \"#utility.yul\":628:933 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":939:1130 */\n tag_24:\n /* \"#utility.yul\":979:983 */\n 0x00\n /* \"#utility.yul\":999:1019 */\n tag_41\n /* \"#utility.yul\":1017:1018 */\n dup3\n /* \"#utility.yul\":999:1019 */\n tag_25\n jump\t// in\n tag_41:\n /* \"#utility.yul\":994:1019 */\n swap2\n pop\n /* \"#utility.yul\":1033:1053 */\n tag_42\n /* \"#utility.yul\":1051:1052 */\n dup4\n /* \"#utility.yul\":1033:1053 */\n tag_25\n jump\t// in\n tag_42:\n /* \"#utility.yul\":1028:1053 */\n swap3\n pop\n /* \"#utility.yul\":1072:1073 */\n dup3\n /* \"#utility.yul\":1069:1070 */\n dup3\n /* \"#utility.yul\":1066:1074 */\n lt\n /* \"#utility.yul\":1063:1097 */\n iszero\n tag_43\n jumpi\n /* \"#utility.yul\":1077:1095 */\n tag_44\n tag_27\n jump\t// in\n tag_44:\n /* \"#utility.yul\":1063:1097 */\n tag_43:\n /* \"#utility.yul\":1122:1123 */\n dup3\n /* \"#utility.yul\":1119:1120 */\n dup3\n /* \"#utility.yul\":1115:1124 */\n sub\n /* \"#utility.yul\":1107:1124 */\n swap1\n pop\n /* \"#utility.yul\":939:1130 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212200fe43cbab452e08aa41738960cc40fbe2e477d145da6e7aa6eb30072af923f9964736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610209806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806306661abd14610051578063371303c01461006f5780636d4ce63c14610079578063b3bcfa8214610097575b600080fd5b6100596100a1565b60405161006691906100ff565b60405180910390f35b6100776100a7565b005b6100816100c2565b60405161008e91906100ff565b60405180910390f35b61009f6100cb565b005b60005481565b60016000808282546100b99190610149565b92505081905550565b60008054905090565b60016000808282546100dd919061019f565b92505081905550565b6000819050919050565b6100f9816100e6565b82525050565b600060208201905061011460008301846100f0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610154826100e6565b915061015f836100e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156101945761019361011a565b5b828201905092915050565b60006101aa826100e6565b91506101b5836100e6565b9250828210156101c8576101c761011a565b5b82820390509291505056fea26469706673582212200fe43cbab452e08aa41738960cc40fbe2e477d145da6e7aa6eb30072af923f9964736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x209 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 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6661ABD EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x371303C0 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x6D4CE63C EQ PUSH2 0x79 JUMPI DUP1 PUSH4 0xB3BCFA82 EQ PUSH2 0x97 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0xFF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0xA7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x81 PUSH2 0xC2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x8E SWAP2 SWAP1 PUSH2 0xFF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9F PUSH2 0xCB JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0xB9 SWAP2 SWAP1 PUSH2 0x149 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0xDD SWAP2 SWAP1 PUSH2 0x19F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF9 DUP2 PUSH2 0xE6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x114 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x154 DUP3 PUSH2 0xE6 JUMP JUMPDEST SWAP2 POP PUSH2 0x15F DUP4 PUSH2 0xE6 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x194 JUMPI PUSH2 0x193 PUSH2 0x11A JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AA DUP3 PUSH2 0xE6 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B5 DUP4 PUSH2 0xE6 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0x11A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF 0xE4 EXTCODECOPY 0xBA 0xB4 MSTORE 0xE0 DUP11 LOG4 OR CODESIZE SWAP7 0xC 0xC4 0xF 0xBE 0x2E SELFBALANCE PUSH30 0x145DA6E7AA6EB30072AF923F9964736F6C634300080D0033000000000000 ",
"sourceMap": "61:368:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@count_3": {
"entryPoint": 161,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"@dec_27": {
"entryPoint": 203,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@get_11": {
"entryPoint": 194,
"id": 11,
"parameterSlots": 0,
"returnSlots": 1
},
"@inc_19": {
"entryPoint": 167,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 240,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 255,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 329,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 415,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 230,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 282,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1133:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "470:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "487:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "490:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "480:6:1"
},
"nodeType": "YulFunctionCall",
"src": "480:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "480:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "584:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "587:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "577:6:1"
},
"nodeType": "YulFunctionCall",
"src": "577:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "577:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "608:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "611:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "601:6:1"
},
"nodeType": "YulFunctionCall",
"src": "601:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "601:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "442:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "672:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "682:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "705:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "687:17:1"
},
"nodeType": "YulFunctionCall",
"src": "687:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "682:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "716:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "739:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "721:17:1"
},
"nodeType": "YulFunctionCall",
"src": "721:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "716:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "879:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "881:16:1"
},
"nodeType": "YulFunctionCall",
"src": "881:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "881:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "800:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "807:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "875:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "803:3:1"
},
"nodeType": "YulFunctionCall",
"src": "803:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "797:2:1"
},
"nodeType": "YulFunctionCall",
"src": "797:81:1"
},
"nodeType": "YulIf",
"src": "794:107:1"
},
{
"nodeType": "YulAssignment",
"src": "911:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "922:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "925:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "918:3:1"
},
"nodeType": "YulFunctionCall",
"src": "918:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "911:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "659:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "662:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "668:3:1",
"type": ""
}
],
"src": "628:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "984:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "994:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1017:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "999:17:1"
},
"nodeType": "YulFunctionCall",
"src": "999:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "994:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1028:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1051:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1033:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1033:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1028:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1075:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "1077:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1077:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1077:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1069:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1072:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1066:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1066:8:1"
},
"nodeType": "YulIf",
"src": "1063:34:1"
},
{
"nodeType": "YulAssignment",
"src": "1107:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "1119:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "1122:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1115:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1115:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "1107:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "970:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "973:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "979:4:1",
"type": ""
}
],
"src": "939:191:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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_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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c806306661abd14610051578063371303c01461006f5780636d4ce63c14610079578063b3bcfa8214610097575b600080fd5b6100596100a1565b60405161006691906100ff565b60405180910390f35b6100776100a7565b005b6100816100c2565b60405161008e91906100ff565b60405180910390f35b61009f6100cb565b005b60005481565b60016000808282546100b99190610149565b92505081905550565b60008054905090565b60016000808282546100dd919061019f565b92505081905550565b6000819050919050565b6100f9816100e6565b82525050565b600060208201905061011460008301846100f0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610154826100e6565b915061015f836100e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156101945761019361011a565b5b828201905092915050565b60006101aa826100e6565b91506101b5836100e6565b9250828210156101c8576101c761011a565b5b82820390509291505056fea26469706673582212200fe43cbab452e08aa41738960cc40fbe2e477d145da6e7aa6eb30072af923f9964736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6661ABD EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x371303C0 EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x6D4CE63C EQ PUSH2 0x79 JUMPI DUP1 PUSH4 0xB3BCFA82 EQ PUSH2 0x97 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0xFF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0xA7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x81 PUSH2 0xC2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x8E SWAP2 SWAP1 PUSH2 0xFF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9F PUSH2 0xCB JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0xB9 SWAP2 SWAP1 PUSH2 0x149 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0xDD SWAP2 SWAP1 PUSH2 0x19F JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF9 DUP2 PUSH2 0xE6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x114 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xF0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x154 DUP3 PUSH2 0xE6 JUMP JUMPDEST SWAP2 POP PUSH2 0x15F DUP4 PUSH2 0xE6 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x194 JUMPI PUSH2 0x193 PUSH2 0x11A JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1AA DUP3 PUSH2 0xE6 JUMP JUMPDEST SWAP2 POP PUSH2 0x1B5 DUP4 PUSH2 0xE6 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0x11A JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF 0xE4 EXTCODECOPY 0xBA 0xB4 MSTORE 0xE0 DUP11 LOG4 OR CODESIZE SWAP7 0xC 0xC4 0xF 0xBE 0x2E SELFBALANCE PUSH30 0x145DA6E7AA6EB30072AF923F9964736F6C634300080D0033000000000000 ",
"sourceMap": "61:368:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;275:51;;;:::i;:::-;;153:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;375:51;;;:::i;:::-;;85:17;;;;:::o;275:51::-;317:1;308:5;;:10;;;;;;;:::i;:::-;;;;;;;;275:51::o;153:73::-;189:4;213:5;;206:12;;153:73;:::o;375:51::-;417:1;408:5;;:10;;;;;;;:::i;:::-;;;;;;;;375:51::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:180::-;490:77;487:1;480:88;587:4;584:1;577:15;611:4;608:1;601:15;628:305;668:3;687:20;705:1;687:20;:::i;:::-;682:25;;721:20;739:1;721:20;:::i;:::-;716:25;;875:1;807:66;803:74;800:1;797:81;794:107;;;881:18;;:::i;:::-;794:107;925:1;922;918:9;911:16;;628:305;;;;:::o;939:191::-;979:4;999:20;1017:1;999:20;:::i;:::-;994:25;;1033:20;1051:1;1033:20;:::i;:::-;1028:25;;1072:1;1069;1066:8;1063:34;;;1077:18;;:::i;:::-;1063:34;1122:1;1119;1115:9;1107:17;;939:191;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "104200",
"executionCost": "153",
"totalCost": "104353"
},
"external": {
"count()": "2407",
"dec()": "infinite",
"get()": "2459",
"inc()": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 61,
"end": 429,
"name": "MSTORE",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 429,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "REVERT",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 429,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 429,
"name": "CODECOPY",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 429,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212200fe43cbab452e08aa41738960cc40fbe2e477d145da6e7aa6eb30072af923f9964736f6c634300080d0033",
".code": [
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 61,
"end": 429,
"name": "MSTORE",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 429,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "REVERT",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 429,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 429,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "LT",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 429,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 429,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 61,
"end": 429,
"name": "SHR",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "6661ABD"
},
{
"begin": 61,
"end": 429,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 61,
"end": 429,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "371303C0"
},
{
"begin": 61,
"end": 429,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 429,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "6D4CE63C"
},
{
"begin": 61,
"end": 429,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 61,
"end": 429,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "B3BCFA82"
},
{
"begin": 61,
"end": 429,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 61,
"end": 429,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 429,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 429,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 429,
"name": "REVERT",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 85,
"end": 102,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 85,
"end": 102,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 85,
"end": 102,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 85,
"end": 102,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 85,
"end": 102,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 85,
"end": 102,
"name": "MLOAD",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 85,
"end": 102,
"name": "SWAP2",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "SWAP1",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 85,
"end": 102,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 85,
"end": 102,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 85,
"end": 102,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 85,
"end": 102,
"name": "MLOAD",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "DUP1",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "SWAP2",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "SUB",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "SWAP1",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "RETURN",
"source": 0
},
{
"begin": 275,
"end": 326,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 275,
"end": 326,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 275,
"end": 326,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 275,
"end": 326,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 275,
"end": 326,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 275,
"end": 326,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 275,
"end": 326,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 275,
"end": 326,
"name": "STOP",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 153,
"end": 226,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 153,
"end": 226,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 153,
"end": 226,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 153,
"end": 226,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 153,
"end": 226,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 153,
"end": 226,
"name": "MLOAD",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 153,
"end": 226,
"name": "SWAP2",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "SWAP1",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 153,
"end": 226,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 153,
"end": 226,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 153,
"end": 226,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 153,
"end": 226,
"name": "MLOAD",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "DUP1",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "SWAP2",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "SUB",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "SWAP1",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "RETURN",
"source": 0
},
{
"begin": 375,
"end": 426,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 375,
"end": 426,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 375,
"end": 426,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 375,
"end": 426,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 375,
"end": 426,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 375,
"end": 426,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 375,
"end": 426,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 375,
"end": 426,
"name": "STOP",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 85,
"end": 102,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 85,
"end": 102,
"name": "SLOAD",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "DUP2",
"source": 0
},
{
"begin": 85,
"end": 102,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 275,
"end": 326,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 275,
"end": 326,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 317,
"end": 318,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 308,
"end": 313,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 308,
"end": 313,
"name": "DUP1",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "DUP3",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "DUP3",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "SLOAD",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 308,
"end": 318,
"name": "SWAP2",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "SWAP1",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 308,
"end": 318,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 308,
"end": 318,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 308,
"end": 318,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "SWAP3",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "POP",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "POP",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "DUP2",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "SWAP1",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "SSTORE",
"source": 0
},
{
"begin": 308,
"end": 318,
"name": "POP",
"source": 0
},
{
"begin": 275,
"end": 326,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 153,
"end": 226,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 153,
"end": 226,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 189,
"end": 193,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 213,
"end": 218,
"name": "DUP1",
"source": 0
},
{
"begin": 213,
"end": 218,
"name": "SLOAD",
"source": 0
},
{
"begin": 206,
"end": 218,
"name": "SWAP1",
"source": 0
},
{
"begin": 206,
"end": 218,
"name": "POP",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "SWAP1",
"source": 0
},
{
"begin": 153,
"end": 226,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 375,
"end": 426,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 375,
"end": 426,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 417,
"end": 418,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 408,
"end": 413,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 408,
"end": 413,
"name": "DUP1",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "DUP3",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "DUP3",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "SLOAD",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 408,
"end": 418,
"name": "SWAP2",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "SWAP1",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 408,
"end": 418,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 408,
"end": 418,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 408,
"end": 418,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "SWAP3",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "POP",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "POP",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "DUP2",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "SWAP1",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "SSTORE",
"source": 0
},
{
"begin": 408,
"end": 418,
"name": "POP",
"source": 0
},
{
"begin": 375,
"end": 426,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 84,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 7,
"end": 84,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 44,
"end": 51,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 73,
"end": 78,
"name": "DUP2",
"source": 1
},
{
"begin": 62,
"end": 78,
"name": "SWAP1",
"source": 1
},
{
"begin": 62,
"end": 78,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 90,
"end": 208,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 90,
"end": 208,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 1,
"value": "31"
},
{
"begin": 195,
"end": 200,
"name": "DUP2",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 177,
"end": 201,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 177,
"end": 201,
"name": "tag",
"source": 1,
"value": "31"
},
{
"begin": 177,
"end": 201,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 172,
"end": 175,
"name": "DUP3",
"source": 1
},
{
"begin": 165,
"end": 202,
"name": "MSTORE",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 214,
"end": 436,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 214,
"end": 436,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 307,
"end": 311,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 345,
"end": 347,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 334,
"end": 343,
"name": "DUP3",
"source": 1
},
{
"begin": 330,
"end": 348,
"name": "ADD",
"source": 1
},
{
"begin": 322,
"end": 348,
"name": "SWAP1",
"source": 1
},
{
"begin": 322,
"end": 348,
"name": "POP",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 1,
"value": "33"
},
{
"begin": 426,
"end": 427,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 415,
"end": 424,
"name": "DUP4",
"source": 1
},
{
"begin": 411,
"end": 428,
"name": "ADD",
"source": 1
},
{
"begin": 402,
"end": 408,
"name": "DUP5",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 358,
"end": 429,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 358,
"end": 429,
"name": "tag",
"source": 1,
"value": "33"
},
{
"begin": 358,
"end": 429,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "SWAP3",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "SWAP2",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 442,
"end": 622,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 442,
"end": 622,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 490,
"end": 567,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 487,
"end": 488,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 480,
"end": 568,
"name": "MSTORE",
"source": 1
},
{
"begin": 587,
"end": 591,
"name": "PUSH",
"source": 1,
"value": "11"
},
{
"begin": 584,
"end": 585,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 577,
"end": 592,
"name": "MSTORE",
"source": 1
},
{
"begin": 611,
"end": 615,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 608,
"end": 609,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 601,
"end": 616,
"name": "REVERT",
"source": 1
},
{
"begin": 628,
"end": 933,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 628,
"end": 933,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 668,
"end": 671,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 687,
"end": 707,
"name": "PUSH [tag]",
"source": 1,
"value": "36"
},
{
"begin": 705,
"end": 706,
"name": "DUP3",
"source": 1
},
{
"begin": 687,
"end": 707,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 687,
"end": 707,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 687,
"end": 707,
"name": "tag",
"source": 1,
"value": "36"
},
{
"begin": 687,
"end": 707,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 682,
"end": 707,
"name": "SWAP2",
"source": 1
},
{
"begin": 682,
"end": 707,
"name": "POP",
"source": 1
},
{
"begin": 721,
"end": 741,
"name": "PUSH [tag]",
"source": 1,
"value": "37"
},
{
"begin": 739,
"end": 740,
"name": "DUP4",
"source": 1
},
{
"begin": 721,
"end": 741,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 721,
"end": 741,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 721,
"end": 741,
"name": "tag",
"source": 1,
"value": "37"
},
{
"begin": 721,
"end": 741,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 716,
"end": 741,
"name": "SWAP3",
"source": 1
},
{
"begin": 716,
"end": 741,
"name": "POP",
"source": 1
},
{
"begin": 875,
"end": 876,
"name": "DUP3",
"source": 1
},
{
"begin": 807,
"end": 873,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 803,
"end": 877,
"name": "SUB",
"source": 1
},
{
"begin": 800,
"end": 801,
"name": "DUP3",
"source": 1
},
{
"begin": 797,
"end": 878,
"name": "GT",
"source": 1
},
{
"begin": 794,
"end": 901,
"name": "ISZERO",
"source": 1
},
{
"begin": 794,
"end": 901,
"name": "PUSH [tag]",
"source": 1,
"value": "38"
},
{
"begin": 794,
"end": 901,
"name": "JUMPI",
"source": 1
},
{
"begin": 881,
"end": 899,
"name": "PUSH [tag]",
"source": 1,
"value": "39"
},
{
"begin": 881,
"end": 899,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 881,
"end": 899,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 881,
"end": 899,
"name": "tag",
"source": 1,
"value": "39"
},
{
"begin": 881,
"end": 899,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 794,
"end": 901,
"name": "tag",
"source": 1,
"value": "38"
},
{
"begin": 794,
"end": 901,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 925,
"end": 926,
"name": "DUP3",
"source": 1
},
{
"begin": 922,
"end": 923,
"name": "DUP3",
"source": 1
},
{
"begin": 918,
"end": 927,
"name": "ADD",
"source": 1
},
{
"begin": 911,
"end": 927,
"name": "SWAP1",
"source": 1
},
{
"begin": 911,
"end": 927,
"name": "POP",
"source": 1
},
{
"begin": 628,
"end": 933,
"name": "SWAP3",
"source": 1
},
{
"begin": 628,
"end": 933,
"name": "SWAP2",
"source": 1
},
{
"begin": 628,
"end": 933,
"name": "POP",
"source": 1
},
{
"begin": 628,
"end": 933,
"name": "POP",
"source": 1
},
{
"begin": 628,
"end": 933,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 939,
"end": 1130,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 939,
"end": 1130,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 979,
"end": 983,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 999,
"end": 1019,
"name": "PUSH [tag]",
"source": 1,
"value": "41"
},
{
"begin": 1017,
"end": 1018,
"name": "DUP3",
"source": 1
},
{
"begin": 999,
"end": 1019,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 999,
"end": 1019,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 999,
"end": 1019,
"name": "tag",
"source": 1,
"value": "41"
},
{
"begin": 999,
"end": 1019,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 994,
"end": 1019,
"name": "SWAP2",
"source": 1
},
{
"begin": 994,
"end": 1019,
"name": "POP",
"source": 1
},
{
"begin": 1033,
"end": 1053,
"name": "PUSH [tag]",
"source": 1,
"value": "42"
},
{
"begin": 1051,
"end": 1052,
"name": "DUP4",
"source": 1
},
{
"begin": 1033,
"end": 1053,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1033,
"end": 1053,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1033,
"end": 1053,
"name": "tag",
"source": 1,
"value": "42"
},
{
"begin": 1033,
"end": 1053,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1028,
"end": 1053,
"name": "SWAP3",
"source": 1
},
{
"begin": 1028,
"end": 1053,
"name": "POP",
"source": 1
},
{
"begin": 1072,
"end": 1073,
"name": "DUP3",
"source": 1
},
{
"begin": 1069,
"end": 1070,
"name": "DUP3",
"source": 1
},
{
"begin": 1066,
"end": 1074,
"name": "LT",
"source": 1
},
{
"begin": 1063,
"end": 1097,
"name": "ISZERO",
"source": 1
},
{
"begin": 1063,
"end": 1097,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 1063,
"end": 1097,
"name": "JUMPI",
"source": 1
},
{
"begin": 1077,
"end": 1095,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 1077,
"end": 1095,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 1077,
"end": 1095,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1077,
"end": 1095,
"name": "tag",
"source": 1,
"value": "44"
},
{
"begin": 1077,
"end": 1095,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1063,
"end": 1097,
"name": "tag",
"source": 1,
"value": "43"
},
{
"begin": 1063,
"end": 1097,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1122,
"end": 1123,
"name": "DUP3",
"source": 1
},
{
"begin": 1119,
"end": 1120,
"name": "DUP3",
"source": 1
},
{
"begin": 1115,
"end": 1124,
"name": "SUB",
"source": 1
},
{
"begin": 1107,
"end": 1124,
"name": "SWAP1",
"source": 1
},
{
"begin": 1107,
"end": 1124,
"name": "POP",
"source": 1
},
{
"begin": 939,
"end": 1130,
"name": "SWAP3",
"source": 1
},
{
"begin": 939,
"end": 1130,
"name": "SWAP2",
"source": 1
},
{
"begin": 939,
"end": 1130,
"name": "POP",
"source": 1
},
{
"begin": 939,
"end": 1130,
"name": "POP",
"source": 1
},
{
"begin": 939,
"end": 1130,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"count()": "06661abd",
"dec()": "b3bcfa82",
"get()": "6d4ce63c",
"inc()": "371303c0"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"count\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"dec\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"get\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"inc\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/1_first.sol\":\"Counter\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/1_first.sol\":{\"keccak256\":\"0xbdcf01b788456dfcc808eec08771c444f7055759e4cde00badd6002abcf59acc\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://029b0308bc5544581cfdc3e155a4540cc415c6f873a08114c976bddc7509d6ee\",\"dweb:/ipfs/QmTPpVXfxcCE7w2wpyJhqqsEkzP5HoqodohidoLVsFt9qF\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/1_first.sol": {
"ast": {
"absolutePath": "contracts/1_first.sol",
"exportedSymbols": {
"Counter": [
28
]
},
"id": 29,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".10"
],
"nodeType": "PragmaDirective",
"src": "33:24:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "Counter",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 28,
"linearizedBaseContracts": [
28
],
"name": "Counter",
"nameLocation": "70:7:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "06661abd",
"id": 3,
"mutability": "mutable",
"name": "count",
"nameLocation": "97:5:0",
"nodeType": "VariableDeclaration",
"scope": 28,
"src": "85:17:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "85:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "public"
},
{
"body": {
"id": 10,
"nodeType": "Block",
"src": "195:31:0",
"statements": [
{
"expression": {
"id": 8,
"name": "count",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "213:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"functionReturnParameters": 7,
"id": 9,
"nodeType": "Return",
"src": "206:12:0"
}
]
},
"functionSelector": "6d4ce63c",
"id": 11,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "get",
"nameLocation": "162:3:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 4,
"nodeType": "ParameterList",
"parameters": [],
"src": "165:2:0"
},
"returnParameters": {
"id": 7,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 6,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "189:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 5,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "189:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "188:6:0"
},
"scope": 28,
"src": "153:73:0",
"stateMutability": "view",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 18,
"nodeType": "Block",
"src": "297:29:0",
"statements": [
{
"expression": {
"id": 16,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 14,
"name": "count",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "308:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "+=",
"rightHandSide": {
"hexValue": "31",
"id": 15,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "317:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1_by_1",
"typeString": "int_const 1"
},
"value": "1"
},
"src": "308:10:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 17,
"nodeType": "ExpressionStatement",
"src": "308:10:0"
}
]
},
"functionSelector": "371303c0",
"id": 19,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "inc",
"nameLocation": "284:3:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [],
"src": "287:2:0"
},
"returnParameters": {
"id": 13,
"nodeType": "ParameterList",
"parameters": [],
"src": "297:0:0"
},
"scope": 28,
"src": "275:51:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 26,
"nodeType": "Block",
"src": "397:29:0",
"statements": [
{
"expression": {
"id": 24,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 22,
"name": "count",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "408:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "-=",
"rightHandSide": {
"hexValue": "31",
"id": 23,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "417:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1_by_1",
"typeString": "int_const 1"
},
"value": "1"
},
"src": "408:10:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 25,
"nodeType": "ExpressionStatement",
"src": "408:10:0"
}
]
},
"functionSelector": "b3bcfa82",
"id": 27,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "dec",
"nameLocation": "384:3:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 20,
"nodeType": "ParameterList",
"parameters": [],
"src": "387:2:0"
},
"returnParameters": {
"id": 21,
"nodeType": "ParameterList",
"parameters": [],
"src": "397:0:0"
},
"scope": 28,
"src": "375:51:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
}
],
"scope": 29,
"src": "61:368:0",
"usedErrors": []
}
],
"src": "33:396:0"
},
"id": 0
}
}
}
}
{
"id": "134b3af8c93e32cfbaa11fd2e01e3004",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"contracts/study.sol": {
"content": "// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.10;\r\n\r\ncontract Array{\r\n\r\n uint[] public arr = [1,2,3];\r\n\r\n function example() public {\r\n // uint[] memory a = new uint[](5);\r\n }\r\n\r\n function push(uint e) public {\r\n arr.push(e);\r\n }\r\n\r\n function get(uint index) public view returns (uint){\r\n\r\n }\r\n\r\n function remove(uint index) public view{\r\n\r\n }\r\n\r\n function size() public view returns (uint){\r\n\r\n }\r\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/study.sol": {
"Array": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "arr",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "example",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "e",
"type": "uint256"
}
],
"name": "push",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "size",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/study.sol\":61:455 contract Array{... */\n mstore(0x40, 0x80)\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n /* \"contracts/study.sol\":105:106 1 */\n 0x01\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":107:108 2 */\n 0x02\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":109:110 3 */\n 0x03\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n pop\n 0x00\n swap1\n 0x03\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"contracts/study.sol\":61:455 contract Array{... */\n callvalue\n dup1\n iszero\n tag_3\n jumpi\n 0x00\n dup1\n revert\ntag_3:\n pop\n jump(tag_4)\ntag_2:\n dup3\n dup1\n sload\n dup3\n dup3\n sstore\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n dup2\n add\n swap3\n dup3\n iszero\n tag_5\n jumpi\n swap2\n 0x20\n mul\n dup3\n add\ntag_6:\n dup3\n dup2\n gt\n iszero\n tag_7\n jumpi\n dup3\n mload\n dup3\n swap1\n 0xff\n and\n swap1\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_6)\ntag_7:\ntag_5:\n pop\n swap1\n pop\n tag_8\n swap2\n swap1\n tag_9\n jump\t// in\ntag_8:\n pop\n swap1\n jump\t// out\ntag_9:\ntag_10:\n dup1\n dup3\n gt\n iszero\n tag_11\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_10)\ntag_11:\n pop\n swap1\n jump\t// out\ntag_4:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/study.sol\":61:455 contract Array{... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x4cc82215\n eq\n tag_3\n jumpi\n dup1\n 0x54353f2f\n eq\n tag_4\n jumpi\n dup1\n 0x71e5ee5f\n eq\n tag_5\n jumpi\n dup1\n 0x949d225d\n eq\n tag_6\n jumpi\n dup1\n 0x9507d39a\n eq\n tag_7\n jumpi\n dup1\n 0x959ac484\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/study.sol\":343:392 function remove(uint index) public view{... */\n tag_3:\n tag_9\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n tag_12\n jump\t// in\n tag_9:\n stop\n /* \"contracts/study.sol\":120:199 function example() public {... */\n tag_4:\n tag_13\n tag_14\n jump\t// in\n tag_13:\n stop\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n tag_5:\n tag_15\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_16\n swap2\n swap1\n tag_11\n jump\t// in\n tag_16:\n tag_17\n jump\t// in\n tag_15:\n mload(0x40)\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\n tag_18:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/study.sol\":400:452 function size() public view returns (uint){... */\n tag_6:\n tag_20\n tag_21\n jump\t// in\n tag_20:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_19\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/study.sol\":274:335 function get(uint index) public view returns (uint){... */\n tag_7:\n tag_23\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_24\n swap2\n swap1\n tag_11\n jump\t// in\n tag_24:\n tag_25\n jump\t// in\n tag_23:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_19\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/study.sol\":207:266 function push(uint e) public {... */\n tag_8:\n tag_27\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_28\n swap2\n swap1\n tag_11\n jump\t// in\n tag_28:\n tag_29\n jump\t// in\n tag_27:\n stop\n /* \"contracts/study.sol\":343:392 function remove(uint index) public view{... */\n tag_12:\n pop\n jump\t// out\n /* \"contracts/study.sol\":120:199 function example() public {... */\n tag_14:\n jump\t// out\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n tag_17:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_32\n jumpi\n 0x00\n dup1\n revert\n tag_32:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"contracts/study.sol\":400:452 function size() public view returns (uint){... */\n tag_21:\n /* \"contracts/study.sol\":437:441 uint */\n 0x00\n /* \"contracts/study.sol\":400:452 function size() public view returns (uint){... */\n swap1\n jump\t// out\n /* \"contracts/study.sol\":274:335 function get(uint index) public view returns (uint){... */\n tag_25:\n /* \"contracts/study.sol\":320:324 uint */\n 0x00\n /* \"contracts/study.sol\":274:335 function get(uint index) public view returns (uint){... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/study.sol\":207:266 function push(uint e) public {... */\n tag_29:\n /* \"contracts/study.sol\":247:250 arr */\n 0x00\n /* \"contracts/study.sol\":256:257 e */\n dup2\n /* \"contracts/study.sol\":247:258 arr.push(e) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n sstore\n /* \"contracts/study.sol\":207:266 function push(uint e) public {... */\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_39:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:411 */\n tag_41:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":400:405 */\n dup2\n /* \"#utility.yul\":389:405 */\n swap1\n pop\n /* \"#utility.yul\":334:411 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":417:539 */\n tag_42:\n /* \"#utility.yul\":490:514 */\n tag_51\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_41\n jump\t// in\n tag_51:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_52\n jumpi\n /* \"#utility.yul\":529:530 */\n 0x00\n /* \"#utility.yul\":526:527 */\n dup1\n /* \"#utility.yul\":519:531 */\n revert\n /* \"#utility.yul\":470:533 */\n tag_52:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_43:\n /* \"#utility.yul\":591:596 */\n 0x00\n /* \"#utility.yul\":629:635 */\n dup2\n /* \"#utility.yul\":616:636 */\n calldataload\n /* \"#utility.yul\":607:636 */\n swap1\n pop\n /* \"#utility.yul\":645:678 */\n tag_54\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_42\n jump\t// in\n tag_54:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_11:\n /* \"#utility.yul\":749:755 */\n 0x00\n /* \"#utility.yul\":798:800 */\n 0x20\n /* \"#utility.yul\":786:795 */\n dup3\n /* \"#utility.yul\":777:784 */\n dup5\n /* \"#utility.yul\":773:796 */\n sub\n /* \"#utility.yul\":769:801 */\n slt\n /* \"#utility.yul\":766:885 */\n iszero\n tag_56\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_57\n tag_39\n jump\t// in\n tag_57:\n /* \"#utility.yul\":766:885 */\n tag_56:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_58\n /* \"#utility.yul\":994:1001 */\n dup5\n /* \"#utility.yul\":985:991 */\n dup3\n /* \"#utility.yul\":974:983 */\n dup6\n /* \"#utility.yul\":970:992 */\n add\n /* \"#utility.yul\":949:1002 */\n tag_43\n jump\t// in\n tag_58:\n /* \"#utility.yul\":939:1002 */\n swap2\n pop\n /* \"#utility.yul\":895:1012 */\n pop\n /* \"#utility.yul\":690:1019 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1025:1143 */\n tag_44:\n /* \"#utility.yul\":1112:1136 */\n tag_60\n /* \"#utility.yul\":1130:1135 */\n dup2\n /* \"#utility.yul\":1112:1136 */\n tag_41\n jump\t// in\n tag_60:\n /* \"#utility.yul\":1107:1110 */\n dup3\n /* \"#utility.yul\":1100:1137 */\n mstore\n /* \"#utility.yul\":1025:1143 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1149:1371 */\n tag_19:\n /* \"#utility.yul\":1242:1246 */\n 0x00\n /* \"#utility.yul\":1280:1282 */\n 0x20\n /* \"#utility.yul\":1269:1278 */\n dup3\n /* \"#utility.yul\":1265:1283 */\n add\n /* \"#utility.yul\":1257:1283 */\n swap1\n pop\n /* \"#utility.yul\":1293:1364 */\n tag_62\n /* \"#utility.yul\":1361:1362 */\n 0x00\n /* \"#utility.yul\":1350:1359 */\n dup4\n /* \"#utility.yul\":1346:1363 */\n add\n /* \"#utility.yul\":1337:1343 */\n dup5\n /* \"#utility.yul\":1293:1364 */\n tag_44\n jump\t// in\n tag_62:\n /* \"#utility.yul\":1149:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220341af188ce8390dd72725a9931b4f22706654ef7907b4ede74ba410df3a45fda64736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526040518060600160405280600160ff168152602001600260ff168152602001600360ff16815250600090600361003b92919061004e565b5034801561004857600080fd5b506100bd565b82805482825590600052602060002090810192821561008f579160200282015b8281111561008e578251829060ff1690559160200191906001019061006e565b5b50905061009c91906100a0565b5090565b5b808211156100b95760008160009055506001016100a1565b5090565b610250806100cc6000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80634cc822151461006757806354353f2f1461008357806371e5ee5f1461008d578063949d225d146100bd5780639507d39a146100db578063959ac4841461010b575b600080fd5b610081600480360381019061007c91906101c3565b610127565b005b61008b61012a565b005b6100a760048036038101906100a291906101c3565b61012c565b6040516100b491906101ff565b60405180910390f35b6100c5610150565b6040516100d291906101ff565b60405180910390f35b6100f560048036038101906100f091906101c3565b610155565b60405161010291906101ff565b60405180910390f35b610125600480360381019061012091906101c3565b61015c565b005b50565b565b6000818154811061013c57600080fd5b906000526020600020016000915090505481565b600090565b6000919050565b600081908060018154018082558091505060019003906000526020600020016000909190919091505550565b600080fd5b6000819050919050565b6101a08161018d565b81146101ab57600080fd5b50565b6000813590506101bd81610197565b92915050565b6000602082840312156101d9576101d8610188565b5b60006101e7848285016101ae565b91505092915050565b6101f98161018d565b82525050565b600060208201905061021460008301846101f0565b9291505056fea2646970667358221220341af188ce8390dd72725a9931b4f22706654ef7907b4ede74ba410df3a45fda64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0x3B SWAP3 SWAP2 SWAP1 PUSH2 0x4E JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8F JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8E JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x9C SWAP2 SWAP1 PUSH2 0xA0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xB9 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xA1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x250 DUP1 PUSH2 0xCC 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 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x9507D39A EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x959AC484 EQ PUSH2 0x10B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x127 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8B PUSH2 0x12A JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x12C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0x150 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x155 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x102 SWAP2 SWAP1 PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST STOP JUMPDEST POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x13C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1A0 DUP2 PUSH2 0x18D JUMP JUMPDEST DUP2 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BD DUP2 PUSH2 0x197 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D9 JUMPI PUSH2 0x1D8 PUSH2 0x188 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E7 DUP5 DUP3 DUP6 ADD PUSH2 0x1AE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1F9 DUP2 PUSH2 0x18D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x214 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1F0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE BYTE CALL DUP9 0xCE DUP4 SWAP1 0xDD PUSH19 0x725A9931B4F22706654EF7907B4EDE74BA410D RETURN LOG4 0x5F 0xDA PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "61:394:0:-:0;;;84:27;;;;;;;;105:1;84:27;;;;;;107:1;84:27;;;;;;109:1;84:27;;;;;;;;;;;;;:::i;:::-;;61:394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@arr_8": {
"entryPoint": 300,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
},
"@example_12": {
"entryPoint": 298,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@get_32": {
"entryPoint": 341,
"id": 32,
"parameterSlots": 1,
"returnSlots": 1
},
"@push_24": {
"entryPoint": 348,
"id": 24,
"parameterSlots": 1,
"returnSlots": 0
},
"@remove_38": {
"entryPoint": 295,
"id": 38,
"parameterSlots": 1,
"returnSlots": 0
},
"@size_44": {
"entryPoint": 336,
"id": 44,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 430,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 451,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 496,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 511,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 397,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 392,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 407,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1374:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1090:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1130:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1112:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1112:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1100:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1100:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1078:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1085:3:1",
"type": ""
}
],
"src": "1025:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1247:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1269:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1265:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1350:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1293:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1293:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1293:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1219:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1231:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1242:4:1",
"type": ""
}
],
"src": "1149:222:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100625760003560e01c80634cc822151461006757806354353f2f1461008357806371e5ee5f1461008d578063949d225d146100bd5780639507d39a146100db578063959ac4841461010b575b600080fd5b610081600480360381019061007c91906101c3565b610127565b005b61008b61012a565b005b6100a760048036038101906100a291906101c3565b61012c565b6040516100b491906101ff565b60405180910390f35b6100c5610150565b6040516100d291906101ff565b60405180910390f35b6100f560048036038101906100f091906101c3565b610155565b60405161010291906101ff565b60405180910390f35b610125600480360381019061012091906101c3565b61015c565b005b50565b565b6000818154811061013c57600080fd5b906000526020600020016000915090505481565b600090565b6000919050565b600081908060018154018082558091505060019003906000526020600020016000909190919091505550565b600080fd5b6000819050919050565b6101a08161018d565b81146101ab57600080fd5b50565b6000813590506101bd81610197565b92915050565b6000602082840312156101d9576101d8610188565b5b60006101e7848285016101ae565b91505092915050565b6101f98161018d565b82525050565b600060208201905061021460008301846101f0565b9291505056fea2646970667358221220341af188ce8390dd72725a9931b4f22706654ef7907b4ede74ba410df3a45fda64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x9507D39A EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x959AC484 EQ PUSH2 0x10B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x127 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8B PUSH2 0x12A JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x12C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0x150 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x155 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x102 SWAP2 SWAP1 PUSH2 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x1C3 JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST STOP JUMPDEST POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x13C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH1 0x0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1A0 DUP2 PUSH2 0x18D JUMP JUMPDEST DUP2 EQ PUSH2 0x1AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BD DUP2 PUSH2 0x197 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D9 JUMPI PUSH2 0x1D8 PUSH2 0x188 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E7 DUP5 DUP3 DUP6 ADD PUSH2 0x1AE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1F9 DUP2 PUSH2 0x18D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x214 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1F0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE BYTE CALL DUP9 0xCE DUP4 SWAP1 0xDD PUSH19 0x725A9931B4F22706654EF7907B4EDE74BA410D RETURN LOG4 0x5F 0xDA PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "61:394:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;343:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;120:79;;;:::i;:::-;;84:27;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;400:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;274:61;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;207:59;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;343:49;;:::o;120:79::-;:::o;84:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;400:52::-;437:4;400:52;:::o;274:61::-;320:4;274:61;;;:::o;207:59::-;247:3;256:1;247:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207:59;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:222::-;1242:4;1280:2;1269:9;1265:18;1257:26;;1293:71;1361:1;1350:9;1346:17;1337:6;1293:71;:::i;:::-;1149:222;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "118400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"arr(uint256)": "infinite",
"example()": "144",
"get(uint256)": "infinite",
"push(uint256)": "46917",
"remove(uint256)": "384",
"size()": "373"
}
},
"legacyAssembly": {
".code": [
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 61,
"end": 455,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 105,
"end": 106,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 111,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 107,
"end": 108,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 111,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 109,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 111,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "POP",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 84,
"end": 111,
"name": "SWAP3",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "REVERT",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 455,
"name": "JUMP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SLOAD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SSTORE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "MSTORE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "KECCAK256",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP2",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 61,
"end": 455,
"name": "MUL",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP2",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "GT",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "MLOAD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 61,
"end": 455,
"name": "AND",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SSTORE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 61,
"end": 455,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 455,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 61,
"end": 455,
"name": "JUMP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 61,
"end": 455,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 61,
"end": 455,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "GT",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "DUP2",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SSTORE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 455,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 61,
"end": 455,
"name": "JUMP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "CODECOPY",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220341af188ce8390dd72725a9931b4f22706654ef7907b4ede74ba410df3a45fda64736f6c634300080d0033",
".code": [
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 61,
"end": 455,
"name": "MSTORE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "REVERT",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 455,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "LT",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 61,
"end": 455,
"name": "SHR",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "4CC82215"
},
{
"begin": 61,
"end": 455,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "54353F2F"
},
{
"begin": 61,
"end": 455,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "71E5EE5F"
},
{
"begin": 61,
"end": 455,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "949D225D"
},
{
"begin": 61,
"end": 455,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "9507D39A"
},
{
"begin": 61,
"end": 455,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "959AC484"
},
{
"begin": 61,
"end": 455,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 61,
"end": 455,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 455,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 455,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 455,
"name": "REVERT",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 343,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 343,
"end": 392,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 343,
"end": 392,
"name": "DUP1",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "SUB",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "DUP2",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "ADD",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "SWAP1",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 343,
"end": 392,
"name": "SWAP2",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "SWAP1",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 343,
"end": 392,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 343,
"end": 392,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 343,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 343,
"end": 392,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 343,
"end": 392,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 343,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "STOP",
"source": 0
},
{
"begin": 120,
"end": 199,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 120,
"end": 199,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 120,
"end": 199,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 120,
"end": 199,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 120,
"end": 199,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 120,
"end": 199,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 120,
"end": 199,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 120,
"end": 199,
"name": "STOP",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SUB",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SUB",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "RETURN",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 400,
"end": 452,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 400,
"end": 452,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 400,
"end": 452,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 400,
"end": 452,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 400,
"end": 452,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 400,
"end": 452,
"name": "MLOAD",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 400,
"end": 452,
"name": "SWAP2",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "SWAP1",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 400,
"end": 452,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 400,
"end": 452,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 400,
"end": 452,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 400,
"end": 452,
"name": "MLOAD",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "DUP1",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "SWAP2",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "SUB",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "SWAP1",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "RETURN",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 274,
"end": 335,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 274,
"end": 335,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 274,
"end": 335,
"name": "DUP1",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SUB",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "DUP2",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "ADD",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 274,
"end": 335,
"name": "SWAP2",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 274,
"end": 335,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 274,
"end": 335,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 274,
"end": 335,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 274,
"end": 335,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 274,
"end": 335,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 274,
"end": 335,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 274,
"end": 335,
"name": "MLOAD",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 274,
"end": 335,
"name": "SWAP2",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 274,
"end": 335,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 274,
"end": 335,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 274,
"end": 335,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 274,
"end": 335,
"name": "MLOAD",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "DUP1",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SWAP2",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SUB",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "RETURN",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 207,
"end": 266,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 207,
"end": 266,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 207,
"end": 266,
"name": "DUP1",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "SUB",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "DUP2",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "ADD",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "SWAP1",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 207,
"end": 266,
"name": "SWAP2",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "SWAP1",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 207,
"end": 266,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 207,
"end": 266,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 207,
"end": 266,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 207,
"end": 266,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 207,
"end": 266,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 207,
"end": 266,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "STOP",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 343,
"end": 392,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "POP",
"source": 0
},
{
"begin": 343,
"end": 392,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 120,
"end": 199,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 120,
"end": 199,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 120,
"end": 199,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "LT",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 84,
"end": 111,
"name": "JUMPI",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "REVERT",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 111,
"name": "KECCAK256",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "POP",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "POP",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 400,
"end": 452,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 400,
"end": 452,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 437,
"end": 441,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 400,
"end": 452,
"name": "SWAP1",
"source": 0
},
{
"begin": 400,
"end": 452,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 274,
"end": 335,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 274,
"end": 335,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 320,
"end": 324,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 274,
"end": 335,
"name": "SWAP2",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "POP",
"source": 0
},
{
"begin": 274,
"end": 335,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 207,
"end": 266,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 207,
"end": 266,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 247,
"end": 250,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 256,
"end": 257,
"name": "DUP2",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "DUP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 247,
"end": 258,
"name": "DUP2",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SLOAD",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "ADD",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "DUP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "DUP3",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SSTORE",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "DUP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP2",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "POP",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "POP",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 247,
"end": 258,
"name": "SWAP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SUB",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 247,
"end": 258,
"name": "MSTORE",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 247,
"end": 258,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 247,
"end": 258,
"name": "KECCAK256",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "ADD",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 247,
"end": 258,
"name": "SWAP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP2",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP2",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP1",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SWAP2",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "POP",
"source": 0
},
{
"begin": 247,
"end": 258,
"name": "SSTORE",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "POP",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "39"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 1
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "tag",
"source": 1,
"value": "41"
},
{
"begin": 334,
"end": 411,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 371,
"end": 378,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 400,
"end": 405,
"name": "DUP2",
"source": 1
},
{
"begin": 389,
"end": 405,
"name": "SWAP1",
"source": 1
},
{
"begin": 389,
"end": 405,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "SWAP2",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "SWAP1",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 417,
"end": 539,
"name": "tag",
"source": 1,
"value": "42"
},
{
"begin": 417,
"end": 539,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "51"
},
{
"begin": 508,
"end": 513,
"name": "DUP2",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "41"
},
{
"begin": 490,
"end": 514,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 490,
"end": 514,
"name": "tag",
"source": 1,
"value": "51"
},
{
"begin": 490,
"end": 514,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 483,
"end": 488,
"name": "DUP2",
"source": 1
},
{
"begin": 480,
"end": 515,
"name": "EQ",
"source": 1
},
{
"begin": 470,
"end": 533,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 470,
"end": 533,
"name": "JUMPI",
"source": 1
},
{
"begin": 529,
"end": 530,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 526,
"end": 527,
"name": "DUP1",
"source": 1
},
{
"begin": 519,
"end": 531,
"name": "REVERT",
"source": 1
},
{
"begin": 470,
"end": 533,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 470,
"end": 533,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 417,
"end": 539,
"name": "POP",
"source": 1
},
{
"begin": 417,
"end": 539,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 545,
"end": 684,
"name": "tag",
"source": 1,
"value": "43"
},
{
"begin": 545,
"end": 684,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 591,
"end": 596,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 629,
"end": 635,
"name": "DUP2",
"source": 1
},
{
"begin": 616,
"end": 636,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 607,
"end": 636,
"name": "SWAP1",
"source": 1
},
{
"begin": 607,
"end": 636,
"name": "POP",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 672,
"end": 677,
"name": "DUP2",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "PUSH [tag]",
"source": 1,
"value": "42"
},
{
"begin": 645,
"end": 678,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 645,
"end": 678,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 645,
"end": 678,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "SWAP3",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "SWAP2",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "POP",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "POP",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 690,
"end": 1019,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 690,
"end": 1019,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 749,
"end": 755,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 798,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 786,
"end": 795,
"name": "DUP3",
"source": 1
},
{
"begin": 777,
"end": 784,
"name": "DUP5",
"source": 1
},
{
"begin": 773,
"end": 796,
"name": "SUB",
"source": 1
},
{
"begin": 769,
"end": 801,
"name": "SLT",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "ISZERO",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 766,
"end": 885,
"name": "JUMPI",
"source": 1
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "39"
},
{
"begin": 804,
"end": 883,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 804,
"end": 883,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 804,
"end": 883,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 766,
"end": 885,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 924,
"end": 925,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 949,
"end": 1002,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 994,
"end": 1001,
"name": "DUP5",
"source": 1
},
{
"begin": 985,
"end": 991,
"name": "DUP3",
"source": 1
},
{
"begin": 974,
"end": 983,
"name": "DUP6",
"source": 1
},
{
"begin": 970,
"end": 992,
"name": "ADD",
"source": 1
},
{
"begin": 949,
"end": 1002,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 949,
"end": 1002,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 949,
"end": 1002,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 949,
"end": 1002,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 939,
"end": 1002,
"name": "SWAP2",
"source": 1
},
{
"begin": 939,
"end": 1002,
"name": "POP",
"source": 1
},
{
"begin": 895,
"end": 1012,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "SWAP3",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "SWAP2",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1025,
"end": 1143,
"name": "tag",
"source": 1,
"value": "44"
},
{
"begin": 1025,
"end": 1143,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1112,
"end": 1136,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 1130,
"end": 1135,
"name": "DUP2",
"source": 1
},
{
"begin": 1112,
"end": 1136,
"name": "PUSH [tag]",
"source": 1,
"value": "41"
},
{
"begin": 1112,
"end": 1136,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1112,
"end": 1136,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 1112,
"end": 1136,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1107,
"end": 1110,
"name": "DUP3",
"source": 1
},
{
"begin": 1100,
"end": 1137,
"name": "MSTORE",
"source": 1
},
{
"begin": 1025,
"end": 1143,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1143,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1143,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1149,
"end": 1371,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 1149,
"end": 1371,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1242,
"end": 1246,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1280,
"end": 1282,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1269,
"end": 1278,
"name": "DUP3",
"source": 1
},
{
"begin": 1265,
"end": 1283,
"name": "ADD",
"source": 1
},
{
"begin": 1257,
"end": 1283,
"name": "SWAP1",
"source": 1
},
{
"begin": 1257,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 1293,
"end": 1364,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 1361,
"end": 1362,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1350,
"end": 1359,
"name": "DUP4",
"source": 1
},
{
"begin": 1346,
"end": 1363,
"name": "ADD",
"source": 1
},
{
"begin": 1337,
"end": 1343,
"name": "DUP5",
"source": 1
},
{
"begin": 1293,
"end": 1364,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 1293,
"end": 1364,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1293,
"end": 1364,
"name": "tag",
"source": 1,
"value": "62"
},
{
"begin": 1293,
"end": 1364,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "SWAP3",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "SWAP2",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"arr(uint256)": "71e5ee5f",
"example()": "54353f2f",
"get(uint256)": "9507d39a",
"push(uint256)": "959ac484",
"remove(uint256)": "4cc82215",
"size()": "949d225d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"arr\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"example\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"get\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"e\",\"type\":\"uint256\"}],\"name\":\"push\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"remove\",\"outputs\":[],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"size\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/study.sol\":\"Array\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/study.sol\":{\"keccak256\":\"0x2489bff051332b424a71e77d819e9b28e172f724c1b2a5b9a21f98b8d0bce170\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9fe44eca094248a2b6817a7488b3512270c9df75897d0ac7f8c8abf82c9d4d99\",\"dweb:/ipfs/QmPL2A8nNyTCXq7CKZvADVBHV4YKR7P4aZtv9EsiCUxWgE\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/study.sol": {
"ast": {
"absolutePath": "contracts/study.sol",
"exportedSymbols": {
"Array": [
45
]
},
"id": 46,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".10"
],
"nodeType": "PragmaDirective",
"src": "33:24:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "Array",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 45,
"linearizedBaseContracts": [
45
],
"name": "Array",
"nameLocation": "70:5:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "71e5ee5f",
"id": 8,
"mutability": "mutable",
"name": "arr",
"nameLocation": "98:3:0",
"nodeType": "VariableDeclaration",
"scope": 45,
"src": "84:27:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint256_$dyn_storage",
"typeString": "uint256[]"
},
"typeName": {
"baseType": {
"id": 2,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "84:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 3,
"nodeType": "ArrayTypeName",
"src": "84:6:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint256_$dyn_storage_ptr",
"typeString": "uint256[]"
}
},
"value": {
"components": [
{
"hexValue": "31",
"id": 4,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "105:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1_by_1",
"typeString": "int_const 1"
},
"value": "1"
},
{
"hexValue": "32",
"id": 5,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "107:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_2_by_1",
"typeString": "int_const 2"
},
"value": "2"
},
{
"hexValue": "33",
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "109:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_3_by_1",
"typeString": "int_const 3"
},
"value": "3"
}
],
"id": 7,
"isConstant": false,
"isInlineArray": true,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "TupleExpression",
"src": "104:7:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint8_$3_memory_ptr",
"typeString": "uint8[3] memory"
}
},
"visibility": "public"
},
{
"body": {
"id": 11,
"nodeType": "Block",
"src": "146:53:0",
"statements": []
},
"functionSelector": "54353f2f",
"id": 12,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "example",
"nameLocation": "129:7:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 9,
"nodeType": "ParameterList",
"parameters": [],
"src": "136:2:0"
},
"returnParameters": {
"id": 10,
"nodeType": "ParameterList",
"parameters": [],
"src": "146:0:0"
},
"scope": 45,
"src": "120:79:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 23,
"nodeType": "Block",
"src": "236:30:0",
"statements": [
{
"expression": {
"arguments": [
{
"id": 20,
"name": "e",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 14,
"src": "256:1:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"id": 17,
"name": "arr",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8,
"src": "247:3:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_uint256_$dyn_storage",
"typeString": "uint256[] storage ref"
}
},
"id": 19,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "push",
"nodeType": "MemberAccess",
"src": "247:8:0",
"typeDescriptions": {
"typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_uint256_$dyn_storage_ptr_$_t_uint256_$returns$__$bound_to$_t_array$_t_uint256_$dyn_storage_ptr_$",
"typeString": "function (uint256[] storage pointer,uint256)"
}
},
"id": 21,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "247:11:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 22,
"nodeType": "ExpressionStatement",
"src": "247:11:0"
}
]
},
"functionSelector": "959ac484",
"id": 24,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "push",
"nameLocation": "216:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 15,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"mutability": "mutable",
"name": "e",
"nameLocation": "226:1:0",
"nodeType": "VariableDeclaration",
"scope": 24,
"src": "221:6:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 13,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "221:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "220:8:0"
},
"returnParameters": {
"id": 16,
"nodeType": "ParameterList",
"parameters": [],
"src": "236:0:0"
},
"scope": 45,
"src": "207:59:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 31,
"nodeType": "Block",
"src": "325:10:0",
"statements": []
},
"functionSelector": "9507d39a",
"id": 32,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "get",
"nameLocation": "283:3:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 27,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 26,
"mutability": "mutable",
"name": "index",
"nameLocation": "292:5:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "287:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 25,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "287:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "286:12:0"
},
"returnParameters": {
"id": 30,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 29,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "320:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 28,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "320:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "319:6:0"
},
"scope": 45,
"src": "274:61:0",
"stateMutability": "view",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 37,
"nodeType": "Block",
"src": "382:10:0",
"statements": []
},
"functionSelector": "4cc82215",
"id": 38,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "remove",
"nameLocation": "352:6:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 35,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 34,
"mutability": "mutable",
"name": "index",
"nameLocation": "364:5:0",
"nodeType": "VariableDeclaration",
"scope": 38,
"src": "359:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 33,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "359:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "358:12:0"
},
"returnParameters": {
"id": 36,
"nodeType": "ParameterList",
"parameters": [],
"src": "382:0:0"
},
"scope": 45,
"src": "343:49:0",
"stateMutability": "view",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 43,
"nodeType": "Block",
"src": "442:10:0",
"statements": []
},
"functionSelector": "949d225d",
"id": 44,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "size",
"nameLocation": "409:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 39,
"nodeType": "ParameterList",
"parameters": [],
"src": "413:2:0"
},
"returnParameters": {
"id": 42,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 41,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 44,
"src": "437:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 40,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "437:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "436:6:0"
},
"scope": 45,
"src": "400:52:0",
"stateMutability": "view",
"virtual": false,
"visibility": "public"
}
],
"scope": 46,
"src": "61:394:0",
"usedErrors": []
}
],
"src": "33:422:0"
},
"id": 0
}
}
}
}
{
"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": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506104c8806100206000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80633825d8281161005b5780633825d828146101015780636d4ce63c1461011d578063b3bcfa821461013b578063c2bc2efc1461014557610088565b806306661abd1461008d57806327cbd529146100ab57806329092d0e146100db578063371303c0146100f7575b600080fd5b610095610175565b6040516100a291906102c2565b60405180910390f35b6100c560048036038101906100c09190610340565b61017b565b6040516100d291906102c2565b60405180910390f35b6100f560048036038101906100f09190610340565b610193565b005b6100ff6101d9565b005b61011b60048036038101906101169190610399565b6101f4565b005b61012561023c565b60405161013291906102c2565b60405180910390f35b610143610245565b005b61015f600480360381019061015a9190610340565b610260565b60405161016c91906102c2565b60405180910390f35b60005481565b60016020528060005260406000206000915090505481565b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905550565b60016000808282546101eb9190610408565b92505081905550565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008054905090565b6001600080828254610257919061045e565b92505081905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000819050919050565b6102bc816102a9565b82525050565b60006020820190506102d760008301846102b3565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061030d826102e2565b9050919050565b61031d81610302565b811461032857600080fd5b50565b60008135905061033a81610314565b92915050565b600060208284031215610356576103556102dd565b5b60006103648482850161032b565b91505092915050565b610376816102a9565b811461038157600080fd5b50565b6000813590506103938161036d565b92915050565b600080604083850312156103b0576103af6102dd565b5b60006103be8582860161032b565b92505060206103cf85828601610384565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610413826102a9565b915061041e836102a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610453576104526103d9565b5b828201905092915050565b6000610469826102a9565b9150610474836102a9565b925082821015610487576104866103d9565b5b82820390509291505056fea26469706673582212207dba5462b39e34e4053787e87f58068cfcc38a9d841009dad79cccc33a35e1bc64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4C8 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 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3825D828 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x3825D828 EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x6D4CE63C EQ PUSH2 0x11D JUMPI DUP1 PUSH4 0xB3BCFA82 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xC2BC2EFC EQ PUSH2 0x145 JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0x6661ABD EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x27CBD529 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x29092D0E EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x371303C0 EQ PUSH2 0xF7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x95 PUSH2 0x175 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x340 JUMP JUMPDEST PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x340 JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFF PUSH2 0x1D9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x399 JUMP JUMPDEST PUSH2 0x1F4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x125 PUSH2 0x23C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x132 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x143 PUSH2 0x245 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15A SWAP2 SWAP1 PUSH2 0x340 JUMP JUMPDEST PUSH2 0x260 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16C SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x408 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x257 SWAP2 SWAP1 PUSH2 0x45E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BC DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP3 PUSH2 0x2E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x31D DUP2 PUSH2 0x302 JUMP JUMPDEST DUP2 EQ PUSH2 0x328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33A DUP2 PUSH2 0x314 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x356 JUMPI PUSH2 0x355 PUSH2 0x2DD JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x364 DUP5 DUP3 DUP6 ADD PUSH2 0x32B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x376 DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP2 EQ PUSH2 0x381 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x393 DUP2 PUSH2 0x36D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3B0 JUMPI PUSH2 0x3AF PUSH2 0x2DD JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3BE DUP6 DUP3 DUP7 ADD PUSH2 0x32B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3CF DUP6 DUP3 DUP7 ADD PUSH2 0x384 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x413 DUP3 PUSH2 0x2A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x41E DUP4 PUSH2 0x2A9 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x453 JUMPI PUSH2 0x452 PUSH2 0x3D9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 DUP3 PUSH2 0x2A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x474 DUP4 PUSH2 0x2A9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x487 JUMPI PUSH2 0x486 PUSH2 0x3D9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0xBA5462B39E34E4053787E87F58068CFCC38A9D841009DAD79CCCC33A35E1 0xBC PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "61:941:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@count_3": {
"entryPoint": 373,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"@dec_27": {
"entryPoint": 581,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@get_11": {
"entryPoint": 572,
"id": 11,
"parameterSlots": 0,
"returnSlots": 1
},
"@get_43": {
"entryPoint": 608,
"id": 43,
"parameterSlots": 1,
"returnSlots": 1
},
"@inc_19": {
"entryPoint": 473,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"@myMap_31": {
"entryPoint": 379,
"id": 31,
"parameterSlots": 0,
"returnSlots": 0
},
"@remove_68": {
"entryPoint": 403,
"id": 68,
"parameterSlots": 1,
"returnSlots": 0
},
"@set_57": {
"entryPoint": 500,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 811,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 900,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 832,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 921,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 691,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 706,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1032,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 1118,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 770,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 738,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 681,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 985,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 733,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 788,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 877,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3055:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "814:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "824:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "839:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "846:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "835:3:1"
},
"nodeType": "YulFunctionCall",
"src": "835:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "824:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "796:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "806:7:1",
"type": ""
}
],
"src": "769:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "946:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "956:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "985:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "967:17:1"
},
"nodeType": "YulFunctionCall",
"src": "967:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "956:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "928:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "938:7:1",
"type": ""
}
],
"src": "901:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1046:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1103:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1115:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1105:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1105:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1105:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1069:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1094:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1076:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1076:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1066:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1066:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1059:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1059:43:1"
},
"nodeType": "YulIf",
"src": "1056:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1039:5:1",
"type": ""
}
],
"src": "1003:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1183:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1193:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1215:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1202:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1202:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1193:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1258:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "1231:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1231:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1231:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1161:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1169:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1177:5:1",
"type": ""
}
],
"src": "1131:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1342:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1388:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1390:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1390:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1390:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1363:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1372:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1359:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1359:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1384:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1355:32:1"
},
"nodeType": "YulIf",
"src": "1352:119:1"
},
{
"nodeType": "YulBlock",
"src": "1481:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1496:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1510:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1500:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1525:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1560:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1571:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1556:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1556:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1580:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1535:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1535:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1525:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1312:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1323:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1335:6:1",
"type": ""
}
],
"src": "1276:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1654:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1711:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1723:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1713:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1713:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1713:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1677:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1702:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1684:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1674:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1674:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1667:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1667:43:1"
},
"nodeType": "YulIf",
"src": "1664:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1647:5:1",
"type": ""
}
],
"src": "1611:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1791:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1801:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1823:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1810:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1810:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1801:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1866:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1839:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1839:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1769:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1777:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1785:5:1",
"type": ""
}
],
"src": "1739:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1967:391:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2013:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2015:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2015:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2015:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1988:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1997:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1984:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1984:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2009:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1980:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1980:32:1"
},
"nodeType": "YulIf",
"src": "1977:119:1"
},
{
"nodeType": "YulBlock",
"src": "2106:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2121:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2135:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2125:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2150:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2185:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2196:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2181:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2181:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2205:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2160:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2160:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2150:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2233:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2248:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2262:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2252:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2278:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2313:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2324:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2309:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2309:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2333:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2288:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2288:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2278:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1929:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1940:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1952:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1960:6:1",
"type": ""
}
],
"src": "1884:474:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2392:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2409:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2412:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2402:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2402:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "2402:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2506:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2509:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2499:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2499:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2499:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2530:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2533:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2523:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2523:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2523:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "2364:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2594:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2604:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2627:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2609:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2609:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2604:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2638:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2661:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2643:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2643:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2638:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2801:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2803:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2803:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2803:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2722:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2729:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2797:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2725:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2725:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2719:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2719:81:1"
},
"nodeType": "YulIf",
"src": "2716:107:1"
},
{
"nodeType": "YulAssignment",
"src": "2833:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2844:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2847:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2840:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2840:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2833:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2581:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2584:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2590:3:1",
"type": ""
}
],
"src": "2550:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2906:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2916:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2939:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2921:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2921:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2916:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2950:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2973:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2955:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2955:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2950:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2997:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2999:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2999:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2999:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2991:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2994:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2988:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2988:8:1"
},
"nodeType": "YulIf",
"src": "2985:34:1"
},
{
"nodeType": "YulAssignment",
"src": "3029:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3041:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3044:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3037:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3037:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "3029:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2892:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2895:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "2901:4:1",
"type": ""
}
],
"src": "2861:191:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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_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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\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 abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\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 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_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100885760003560e01c80633825d8281161005b5780633825d828146101015780636d4ce63c1461011d578063b3bcfa821461013b578063c2bc2efc1461014557610088565b806306661abd1461008d57806327cbd529146100ab57806329092d0e146100db578063371303c0146100f7575b600080fd5b610095610175565b6040516100a291906102c2565b60405180910390f35b6100c560048036038101906100c09190610340565b61017b565b6040516100d291906102c2565b60405180910390f35b6100f560048036038101906100f09190610340565b610193565b005b6100ff6101d9565b005b61011b60048036038101906101169190610399565b6101f4565b005b61012561023c565b60405161013291906102c2565b60405180910390f35b610143610245565b005b61015f600480360381019061015a9190610340565b610260565b60405161016c91906102c2565b60405180910390f35b60005481565b60016020528060005260406000206000915090505481565b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905550565b60016000808282546101eb9190610408565b92505081905550565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60008054905090565b6001600080828254610257919061045e565b92505081905550565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000819050919050565b6102bc816102a9565b82525050565b60006020820190506102d760008301846102b3565b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061030d826102e2565b9050919050565b61031d81610302565b811461032857600080fd5b50565b60008135905061033a81610314565b92915050565b600060208284031215610356576103556102dd565b5b60006103648482850161032b565b91505092915050565b610376816102a9565b811461038157600080fd5b50565b6000813590506103938161036d565b92915050565b600080604083850312156103b0576103af6102dd565b5b60006103be8582860161032b565b92505060206103cf85828601610384565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610413826102a9565b915061041e836102a9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610453576104526103d9565b5b828201905092915050565b6000610469826102a9565b9150610474836102a9565b925082821015610487576104866103d9565b5b82820390509291505056fea26469706673582212207dba5462b39e34e4053787e87f58068cfcc38a9d841009dad79cccc33a35e1bc64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x88 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3825D828 GT PUSH2 0x5B JUMPI DUP1 PUSH4 0x3825D828 EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x6D4CE63C EQ PUSH2 0x11D JUMPI DUP1 PUSH4 0xB3BCFA82 EQ PUSH2 0x13B JUMPI DUP1 PUSH4 0xC2BC2EFC EQ PUSH2 0x145 JUMPI PUSH2 0x88 JUMP JUMPDEST DUP1 PUSH4 0x6661ABD EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x27CBD529 EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0x29092D0E EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x371303C0 EQ PUSH2 0xF7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x95 PUSH2 0x175 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x340 JUMP JUMPDEST PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x340 JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xFF PUSH2 0x1D9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x399 JUMP JUMPDEST PUSH2 0x1F4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x125 PUSH2 0x23C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x132 SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x143 PUSH2 0x245 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x15F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15A SWAP2 SWAP1 PUSH2 0x340 JUMP JUMPDEST PUSH2 0x260 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16C SWAP2 SWAP1 PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x408 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP3 DUP3 SLOAD PUSH2 0x257 SWAP2 SWAP1 PUSH2 0x45E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2BC DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2B3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30D DUP3 PUSH2 0x2E2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x31D DUP2 PUSH2 0x302 JUMP JUMPDEST DUP2 EQ PUSH2 0x328 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x33A DUP2 PUSH2 0x314 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x356 JUMPI PUSH2 0x355 PUSH2 0x2DD JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x364 DUP5 DUP3 DUP6 ADD PUSH2 0x32B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x376 DUP2 PUSH2 0x2A9 JUMP JUMPDEST DUP2 EQ PUSH2 0x381 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x393 DUP2 PUSH2 0x36D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3B0 JUMPI PUSH2 0x3AF PUSH2 0x2DD JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3BE DUP6 DUP3 DUP7 ADD PUSH2 0x32B JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3CF DUP6 DUP3 DUP7 ADD PUSH2 0x384 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x413 DUP3 PUSH2 0x2A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x41E DUP4 PUSH2 0x2A9 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x453 JUMPI PUSH2 0x452 PUSH2 0x3D9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 DUP3 PUSH2 0x2A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x474 DUP4 PUSH2 0x2A9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x487 JUMPI PUSH2 0x486 PUSH2 0x3D9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0xBA5462B39E34E4053787E87F58068CFCC38A9D841009DAD79CCCC33A35E1 0xBC PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "61:941:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85:17;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;475:37;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;873:126;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;275:51;;;:::i;:::-;;740:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;153:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;375:51;;;:::i;:::-;;521:211;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85:17;;;;:::o;475:37::-;;;;;;;;;;;;;;;;;:::o;873:126::-;979:5;:12;985:5;979:12;;;;;;;;;;;;;;;972:19;;;873:126;:::o;275:51::-;317:1;308:5;;:10;;;;;;;:::i;:::-;;;;;;;;275:51::o;740:125::-;855:2;840:5;:12;846:5;840:12;;;;;;;;;;;;;;;:17;;;;740:125;;:::o;153:73::-;189:4;213:5;;206:12;;153:73;:::o;375:51::-;417:1;408:5;;:10;;;;;;;:::i;:::-;;;;;;;;375:51::o;521:211::-;570:4;712:5;:12;718:5;712:12;;;;;;;;;;;;;;;;705:19;;521:211;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:126;806:7;846:42;839:5;835:54;824:65;;769:126;;;:::o;901:96::-;938:7;967:24;985:5;967:24;:::i;:::-;956:35;;901:96;;;:::o;1003:122::-;1076:24;1094:5;1076:24;:::i;:::-;1069:5;1066:35;1056:63;;1115:1;1112;1105:12;1056:63;1003:122;:::o;1131:139::-;1177:5;1215:6;1202:20;1193:29;;1231:33;1258:5;1231:33;:::i;:::-;1131:139;;;;:::o;1276:329::-;1335:6;1384:2;1372:9;1363:7;1359:23;1355:32;1352:119;;;1390:79;;:::i;:::-;1352:119;1510:1;1535:53;1580:7;1571:6;1560:9;1556:22;1535:53;:::i;:::-;1525:63;;1481:117;1276:329;;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:474::-;1952:6;1960;2009:2;1997:9;1988:7;1984:23;1980:32;1977:119;;;2015:79;;:::i;:::-;1977:119;2135:1;2160:53;2205:7;2196:6;2185:9;2181:22;2160:53;:::i;:::-;2150:63;;2106:117;2262:2;2288:53;2333:7;2324:6;2313:9;2309:22;2288:53;:::i;:::-;2278:63;;2233:118;1884:474;;;;;:::o;2364:180::-;2412:77;2409:1;2402:88;2509:4;2506:1;2499:15;2533:4;2530:1;2523:15;2550:305;2590:3;2609:20;2627:1;2609:20;:::i;:::-;2604:25;;2643:20;2661:1;2643:20;:::i;:::-;2638:25;;2797:1;2729:66;2725:74;2722:1;2719:81;2716:107;;;2803:18;;:::i;:::-;2716:107;2847:1;2844;2840:9;2833:16;;2550:305;;;;:::o;2861:191::-;2901:4;2921:20;2939:1;2921:20;:::i;:::-;2916:25;;2955:20;2973:1;2955:20;:::i;:::-;2950:25;;2994:1;2991;2988:8;2985:34;;;2999:18;;:::i;:::-;2985:34;3044:1;3041;3037:9;3029:17;;2861:191;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "244800",
"executionCost": "287",
"totalCost": "245087"
},
"external": {
"count()": "2430",
"dec()": "infinite",
"get()": "2459",
"get(address)": "2907",
"inc()": "infinite",
"myMap(address)": "2837",
"remove(address)": "5599",
"set(address,uint256)": "22832"
}
},
"methodIdentifiers": {
"count()": "06661abd",
"dec()": "b3bcfa82",
"get()": "6d4ce63c",
"get(address)": "c2bc2efc",
"inc()": "371303c0",
"myMap(address)": "27cbd529",
"remove(address)": "29092d0e",
"set(address,uint256)": "3825d828"
}
},
"abi": [
{
"inputs": [],
"name": "count",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "dec",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "inc",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "myMap",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
},
{
"internalType": "uint256",
"name": "_i",
"type": "uint256"
}
],
"name": "set",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "count",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "dec",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "inc",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "myMap",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_addr",
"type": "address"
},
{
"internalType": "uint256",
"name": "_i",
"type": "uint256"
}
],
"name": "set",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/1_first.sol": "Counter"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/1_first.sol": {
"keccak256": "0x08355a457c53c61a2bf0765c2b35d2494af3b3174d449f6d630e4dd70216e4ed",
"license": "MIT",
"urls": [
"bzz-raw://cb2a50c15cdd47dd56b44dbaad5b53f7ec02601d63dadfffdc02b2a5ac329d1c",
"dweb:/ipfs/QmbhAHBT2E5KtuBe6V3zLHarhpEavAB7NntW6kvv9uuUcn"
]
}
},
"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": {
"functionDebugData": {
"extract_byte_array_length": {
"entryPoint": 308,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 261,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "35:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "52:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "55:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "45:6:1"
},
"nodeType": "YulFunctionCall",
"src": "45:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "45:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "149:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "142:6:1"
},
"nodeType": "YulFunctionCall",
"src": "142:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "142:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "173:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "166:6:1"
},
"nodeType": "YulFunctionCall",
"src": "166:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "166:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "244:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "254:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "268:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "264:3:1"
},
"nodeType": "YulFunctionCall",
"src": "264:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "254:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "285:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "315:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "321:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "311:3:1"
},
"nodeType": "YulFunctionCall",
"src": "311:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "289:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "362:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "376:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "390:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "386:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "376:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "342:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "335:6:1"
},
"nodeType": "YulFunctionCall",
"src": "335:26:1"
},
"nodeType": "YulIf",
"src": "332:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "465:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "479:16:1"
},
"nodeType": "YulFunctionCall",
"src": "479:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "479:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "429:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "452:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "460:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "449:2:1"
},
"nodeType": "YulFunctionCall",
"src": "449:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "426:2:1"
},
"nodeType": "YulFunctionCall",
"src": "426:38:1"
},
"nodeType": "YulIf",
"src": "423:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "228:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "237:6:1",
"type": ""
}
],
"src": "193:320:1"
}
]
},
"contents": "{\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060400160405280600c81526020017f48656c6c6f20576f726c642100000000000000000000000000000000000000008152506000908051906020019061004f929190610062565b5034801561005c57600080fd5b50610165565b82805461006e90610134565b90600052602060002090601f01602090048101928261009057600085556100d7565b82601f106100a957805160ff19168380011785556100d7565b828001600101855582156100d7579182015b828111156100d65782518255916020019190600101906100bb565b5b5090506100e491906100e8565b5090565b5b808211156101015760008160009055506001016100e9565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061014c57607f821691505b60208210810361015f5761015e610105565b5b50919050565b61022d806101746000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063cfae321714610030575b600080fd5b61003861004e565b6040516100459190610175565b60405180910390f35b6000805461005b906101c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610087906101c6565b80156100d45780601f106100a9576101008083540402835291602001916100d4565b820191906000526020600020905b8154815290600101906020018083116100b757829003601f168201915b505050505081565b600081519050919050565b600082825260208201905092915050565b60005b838110156101165780820151818401526020810190506100fb565b83811115610125576000848401525b50505050565b6000601f19601f8301169050919050565b6000610147826100dc565b61015181856100e7565b93506101618185602086016100f8565b61016a8161012b565b840191505092915050565b6000602082019050818103600083015261018f818461013c565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806101de57607f821691505b6020821081036101f1576101f0610197565b5b5091905056fea264697066735822122059e8162318128cec753326bdf50921ea23b9ba9218c29addcc11e26e28efac6664736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xC DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x48656C6C6F20576F726C64210000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x4F SWAP3 SWAP2 SWAP1 PUSH2 0x62 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x165 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x6E SWAP1 PUSH2 0x134 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x90 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0xD7 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0xA9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0xD7 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0xD7 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0xD6 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0xBB JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0xE4 SWAP2 SWAP1 PUSH2 0xE8 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x101 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xE9 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x14C JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x15F JUMPI PUSH2 0x15E PUSH2 0x105 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x22D DUP1 PUSH2 0x174 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 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xCFAE3217 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x38 PUSH2 0x4E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x175 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH2 0x5B SWAP1 PUSH2 0x1C6 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 0x87 SWAP1 PUSH2 0x1C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xA9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xD4 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 0xB7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x116 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xFB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x125 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x147 DUP3 PUSH2 0xDC JUMP JUMPDEST PUSH2 0x151 DUP2 DUP6 PUSH2 0xE7 JUMP JUMPDEST SWAP4 POP PUSH2 0x161 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF8 JUMP JUMPDEST PUSH2 0x16A DUP2 PUSH2 0x12B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18F DUP2 DUP5 PUSH2 0x13C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1DE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1F1 JUMPI PUSH2 0x1F0 PUSH2 0x197 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSIZE 0xE8 AND 0x23 XOR SLT DUP13 0xEC PUSH22 0x3326BDF50921EA23B9BA9218C29ADDCC11E26E28EFAC PUSH7 0x64736F6C634300 ADDMOD 0xD STOP CALLER ",
"sourceMap": "142:67:0:-:0;;;169:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;142:67;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:180:1:-;55:77;52:1;45:88;152:4;149:1;142:15;176:4;173:1;166:15;193:320;237:6;274:1;268:4;264:12;254:22;;321:1;315:4;311:12;342:18;332:81;;398:4;390:6;386:17;376:27;;332:81;460:2;452:6;449:14;429:18;426:38;423:84;;479:18;;:::i;:::-;423:84;244:269;193:320;;;:::o;142:67:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@greet_4": {
"entryPoint": 78,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 316,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 373,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 220,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 231,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 248,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 454,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 407,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 299,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1906:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:1"
},
"nodeType": "YulFunctionCall",
"src": "87:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:1",
"type": ""
}
],
"src": "7:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:1"
},
"nodeType": "YulFunctionCall",
"src": "218:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:1"
},
{
"nodeType": "YulAssignment",
"src": "246:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
"nodeType": "YulFunctionCall",
"src": "261:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:1",
"type": ""
}
],
"src": "112:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "336:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "346:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "355:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "350:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "415:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "440:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "445:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "436:3:1"
},
"nodeType": "YulFunctionCall",
"src": "436:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "459:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "464:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "455:3:1"
},
"nodeType": "YulFunctionCall",
"src": "455:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "449:5:1"
},
"nodeType": "YulFunctionCall",
"src": "449:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "429:6:1"
},
"nodeType": "YulFunctionCall",
"src": "429:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "429:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "376:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "379:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "373:2:1"
},
"nodeType": "YulFunctionCall",
"src": "373:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "387:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "398:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "401:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "394:3:1"
},
"nodeType": "YulFunctionCall",
"src": "394:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "369:3:1",
"statements": []
},
"src": "365:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "512:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "562:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "567:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "558:3:1"
},
"nodeType": "YulFunctionCall",
"src": "558:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "576:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "551:6:1"
},
"nodeType": "YulFunctionCall",
"src": "551:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "551:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "493:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "496:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "490:2:1"
},
"nodeType": "YulFunctionCall",
"src": "490:13:1"
},
"nodeType": "YulIf",
"src": "487:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "318:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "323:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "328:6:1",
"type": ""
}
],
"src": "287:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "658:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "683:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "672:3:1"
},
"nodeType": "YulFunctionCall",
"src": "672:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "692:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "688:3:1"
},
"nodeType": "YulFunctionCall",
"src": "688:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "658:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "631:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "641:6:1",
"type": ""
}
],
"src": "600:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "800:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "810:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "857:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "824:32:1"
},
"nodeType": "YulFunctionCall",
"src": "824:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "814:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "872:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "938:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "943:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "879:58:1"
},
"nodeType": "YulFunctionCall",
"src": "879:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "872:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "985:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "992:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "981:3:1"
},
"nodeType": "YulFunctionCall",
"src": "981:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "999:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1004:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "959:21:1"
},
"nodeType": "YulFunctionCall",
"src": "959:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "959:52:1"
},
{
"nodeType": "YulAssignment",
"src": "1020:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1031:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1058:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1036:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1027:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1027:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1020:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "781:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "788:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "796:3:1",
"type": ""
}
],
"src": "708:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1206:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1218:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1229:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1214:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1206:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1253:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1264:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1249:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1249:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1272:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1278:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1268:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1268:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1242:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1242:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "1242:47:1"
},
{
"nodeType": "YulAssignment",
"src": "1298:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1370:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1379:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1306:63:1"
},
"nodeType": "YulFunctionCall",
"src": "1306:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1298: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": "1168:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1180:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1191:4:1",
"type": ""
}
],
"src": "1078:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1425:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1442:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1445:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1435:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1435:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1435:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1542:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1532:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1532:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1532:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1563:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1566:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1556:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1556:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "1397:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1634:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1644:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1658:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1664:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1654:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1654:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1644:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1675:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1705:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1711:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1701:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1701:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1679:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1752:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1766:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1780:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1788:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1776:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1776:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1766:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1732:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1725:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1725:26:1"
},
"nodeType": "YulIf",
"src": "1722:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1855:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "1869:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1869:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1869:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1819:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1842:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1850:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1839:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1816:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1816:38:1"
},
"nodeType": "YulIf",
"src": "1813:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1618:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1627:6:1",
"type": ""
}
],
"src": "1583:320:1"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 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 round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\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_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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c8063cfae321714610030575b600080fd5b61003861004e565b6040516100459190610175565b60405180910390f35b6000805461005b906101c6565b80601f0160208091040260200160405190810160405280929190818152602001828054610087906101c6565b80156100d45780601f106100a9576101008083540402835291602001916100d4565b820191906000526020600020905b8154815290600101906020018083116100b757829003601f168201915b505050505081565b600081519050919050565b600082825260208201905092915050565b60005b838110156101165780820151818401526020810190506100fb565b83811115610125576000848401525b50505050565b6000601f19601f8301169050919050565b6000610147826100dc565b61015181856100e7565b93506101618185602086016100f8565b61016a8161012b565b840191505092915050565b6000602082019050818103600083015261018f818461013c565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806101de57607f821691505b6020821081036101f1576101f0610197565b5b5091905056fea264697066735822122059e8162318128cec753326bdf50921ea23b9ba9218c29addcc11e26e28efac6664736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xCFAE3217 EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x38 PUSH2 0x4E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x175 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH2 0x5B SWAP1 PUSH2 0x1C6 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 0x87 SWAP1 PUSH2 0x1C6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xA9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xD4 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 0xB7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x116 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xFB JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x125 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x147 DUP3 PUSH2 0xDC JUMP JUMPDEST PUSH2 0x151 DUP2 DUP6 PUSH2 0xE7 JUMP JUMPDEST SWAP4 POP PUSH2 0x161 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF8 JUMP JUMPDEST PUSH2 0x16A DUP2 PUSH2 0x12B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x18F DUP2 DUP5 PUSH2 0x13C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1DE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1F1 JUMPI PUSH2 0x1F0 PUSH2 0x197 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSIZE 0xE8 AND 0x23 XOR SLT DUP13 0xEC PUSH22 0x3326BDF50921EA23B9BA9218C29ADDCC11E26E28EFAC PUSH7 0x64736F6C634300 ADDMOD 0xD STOP CALLER ",
"sourceMap": "142:67:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;169:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:180::-;1445:77;1442:1;1435:88;1542:4;1539:1;1532:15;1566:4;1563:1;1556:15;1583:320;1627:6;1664:1;1658:4;1654:12;1644:22;;1711:1;1705:4;1701:12;1732:18;1722:81;;1788:4;1780:6;1776:17;1766:27;;1722:81;1850:2;1842:6;1839:14;1819:18;1816:38;1813:84;;1869:18;;:::i;:::-;1813:84;1634:269;1583:320;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "111400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"greet()": "infinite"
}
},
"methodIdentifiers": {
"greet()": "cfae3217"
}
},
"abi": [
{
"inputs": [],
"name": "greet",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "greet",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/hello_world.sol": "HelloWorld"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/hello_world.sol": {
"keccak256": "0x9ae7d924a3ee2c91beb579eb1ca50cbfe850c65e888f566465d3ab27c27f737a",
"license": "MIT",
"urls": [
"bzz-raw://50f33e7d4c52d2145fcd0aa2ee4cd5ee78b976da0fd1b2064f0cba0b6868ce9d",
"dweb:/ipfs/QmVhBMt5mq6panmXBFgeMhF89JPhsu1ZxCmvhaJXaGHLsA"
]
}
},
"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": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610150806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100a1565b60405180910390f35b610073600480360381019061006e91906100ed565b61007e565b005b60008054905090565b8060008190555050565b6000819050919050565b61009b81610088565b82525050565b60006020820190506100b66000830184610092565b92915050565b600080fd5b6100ca81610088565b81146100d557600080fd5b50565b6000813590506100e7816100c1565b92915050565b600060208284031215610103576101026100bc565b5b6000610111848285016100d8565b9150509291505056fea264697066735822122044f0132d3ce474198482cc3f79c22d7ed4cece5e1dcbb2c7cb533a23068c5d6064736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x150 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 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0xED JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCA DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE7 DUP2 PUSH2 0xC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103 JUMPI PUSH2 0x102 PUSH2 0xBC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111 DUP5 DUP3 DUP6 ADD PUSH2 0xD8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIFFICULTY CREATE SGT 0x2D EXTCODECOPY 0xE4 PUSH21 0x198482CC3F79C22D7ED4CECE5E1DCBB2C7CB533A23 MOD DUP13 0x5D PUSH1 0x64 PUSH20 0x6F6C634300080D00330000000000000000000000 ",
"sourceMap": "141:356:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@retrieve_24": {
"entryPoint": 117,
"id": 24,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_15": {
"entryPoint": 126,
"id": 15,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 216,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 237,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 146,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 161,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 136,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 188,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 193,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1374:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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_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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n 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 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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100a1565b60405180910390f35b610073600480360381019061006e91906100ed565b61007e565b005b60008054905090565b8060008190555050565b6000819050919050565b61009b81610088565b82525050565b60006020820190506100b66000830184610092565b92915050565b600080fd5b6100ca81610088565b81146100d557600080fd5b50565b6000813590506100e7816100c1565b92915050565b600060208284031215610103576101026100bc565b5b6000610111848285016100d8565b9150509291505056fea264697066735822122044f0132d3ce474198482cc3f79c22d7ed4cece5e1dcbb2c7cb533a23068c5d6064736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0xED JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCA DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE7 DUP2 PUSH2 0xC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103 JUMPI PUSH2 0x102 PUSH2 0xBC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111 DUP5 DUP3 DUP6 ADD PUSH2 0xD8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIFFICULTY CREATE SGT 0x2D EXTCODECOPY 0xE4 PUSH21 0x198482CC3F79C22D7ED4CECE5E1DCBB2C7CB533A23 MOD DUP13 0x5D PUSH1 0x64 PUSH20 0x6F6C634300080D00330000000000000000000000 ",
"sourceMap": "141:356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;416:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;271:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;416:79;457:7;482:6;;475:13;;416:79;:::o;271:64::-;325:3;316:6;:12;;;;271:64;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "67200",
"executionCost": "117",
"totalCost": "67317"
},
"external": {
"retrieve()": "2415",
"store(uint256)": "22520"
}
},
"methodIdentifiers": {
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "num",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "num",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Store & retrieve value in a variable",
"kind": "dev",
"methods": {
"retrieve()": {
"details": "Return value ",
"returns": {
"_0": "value of 'number'"
}
},
"store(uint256)": {
"details": "Store value in variable",
"params": {
"num": "value to store"
}
}
},
"title": "Storage",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/1_Storage.sol": "Storage"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/1_Storage.sol": {
"keccak256": "0xb6ee9d528b336942dd70d3b41e2811be10a473776352009fd73f85604f5ed206",
"license": "GPL-3.0",
"urls": [
"bzz-raw://fe52c6e3c04ba5d83ede6cc1a43c45fa43caa435b207f64707afb17d3af1bcf1",
"dweb:/ipfs/QmawU3NM1WNWkBauRudYCiFvuFE1tTLHB98akyBvb9UWwA"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "1d5a46324d97f9a9b0db12148a9f7c30",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"contracts/study.sol": {
"content": "// SPDX-License-Identifier: MIT\r\npragma solidity ^0.8.10;\r\n\r\ncontract Array{\r\n\r\n uint[] public arr = [1,2,3];\r\n\r\n function example() public {\r\n // uint[] memory a = new uint[](5);\r\n }\r\n\r\n function push(uint e) public {\r\n arr.push(e);\r\n }\r\n\r\n function get(uint index) public view returns (uint){\r\n return arr[index];\r\n }\r\n\r\n function remove(uint index) public{\r\n delete arr[index];\r\n }\r\n\r\n function size() public view returns (uint){\r\n return arr.length;\r\n }\r\n}\r\n\r\ncontract AdvanceArray{\r\n\r\n uint[] public arr = [1,2,3];\r\n\r\n function remove(uint _index) public {\r\n require(_index < arr.length,\"out of bonds\");\r\n for(uint i = _index; i< arr.length; i++){\r\n arr[i] = arr[i+1];\r\n }\r\n arr.pop();\r\n }\r\n\r\n function test() external {\r\n arr = [1,2,3,4,5];\r\n remove(2);\r\n assert(arr[0]==1);\r\n assert(arr[1]==2);\r\n assert(arr[2]==3);\r\n assert(arr[3]==4);\r\n assert(arr[4]==5);\r\n\r\n }\r\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/study.sol": {
"AdvanceArray": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "arr",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_index",
"type": "uint256"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "test",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/study.sol\":532:1044 contract AdvanceArray{... */\n mstore(0x40, 0x80)\n /* \"contracts/study.sol\":562:589 uint[] public arr = [1,2,3] */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n /* \"contracts/study.sol\":583:584 1 */\n 0x01\n /* \"contracts/study.sol\":562:589 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":585:586 2 */\n 0x02\n /* \"contracts/study.sol\":562:589 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":587:588 3 */\n 0x03\n /* \"contracts/study.sol\":562:589 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n pop\n 0x00\n swap1\n 0x03\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"contracts/study.sol\":532:1044 contract AdvanceArray{... */\n callvalue\n dup1\n iszero\n tag_3\n jumpi\n 0x00\n dup1\n revert\ntag_3:\n pop\n jump(tag_4)\ntag_2:\n dup3\n dup1\n sload\n dup3\n dup3\n sstore\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n dup2\n add\n swap3\n dup3\n iszero\n tag_5\n jumpi\n swap2\n 0x20\n mul\n dup3\n add\ntag_6:\n dup3\n dup2\n gt\n iszero\n tag_7\n jumpi\n dup3\n mload\n dup3\n swap1\n 0xff\n and\n swap1\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_6)\ntag_7:\ntag_5:\n pop\n swap1\n pop\n tag_8\n swap2\n swap1\n tag_9\n jump\t// in\ntag_8:\n pop\n swap1\n jump\t// out\ntag_9:\ntag_10:\n dup1\n dup3\n gt\n iszero\n tag_11\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_10)\ntag_11:\n pop\n swap1\n jump\t// out\ntag_4:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/study.sol\":532:1044 contract AdvanceArray{... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x4cc82215\n eq\n tag_3\n jumpi\n dup1\n 0x71e5ee5f\n eq\n tag_4\n jumpi\n dup1\n 0xf8a8fd6d\n eq\n tag_5\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/study.sol\":598:810 function remove(uint _index) public {... */\n tag_3:\n tag_6\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n tag_9\n jump\t// in\n tag_6:\n stop\n /* \"contracts/study.sol\":562:589 uint[] public arr = [1,2,3] */\n tag_4:\n tag_10\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_11\n swap2\n swap1\n tag_8\n jump\t// in\n tag_11:\n tag_12\n jump\t// in\n tag_10:\n mload(0x40)\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/study.sol\":818:1041 function test() external {... */\n tag_5:\n tag_15\n tag_16\n jump\t// in\n tag_15:\n stop\n /* \"contracts/study.sol\":598:810 function remove(uint _index) public {... */\n tag_9:\n /* \"contracts/study.sol\":662:665 arr */\n 0x00\n /* \"contracts/study.sol\":662:672 arr.length */\n dup1\n sload\n swap1\n pop\n /* \"contracts/study.sol\":653:659 _index */\n dup2\n /* \"contracts/study.sol\":653:672 _index < arr.length */\n lt\n /* \"contracts/study.sol\":645:688 require(_index < arr.length,\"out of bonds\") */\n tag_18\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_19\n swap1\n tag_20\n jump\t// in\n tag_19:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_18:\n /* \"contracts/study.sol\":703:709 uint i */\n 0x00\n /* \"contracts/study.sol\":712:718 _index */\n dup2\n /* \"contracts/study.sol\":703:718 uint i = _index */\n swap1\n pop\n /* \"contracts/study.sol\":699:783 for(uint i = _index; i< arr.length; i++){... */\n tag_21:\n /* \"contracts/study.sol\":723:726 arr */\n 0x00\n /* \"contracts/study.sol\":723:733 arr.length */\n dup1\n sload\n swap1\n pop\n /* \"contracts/study.sol\":720:721 i */\n dup2\n /* \"contracts/study.sol\":720:733 i< arr.length */\n lt\n /* \"contracts/study.sol\":699:783 for(uint i = _index; i< arr.length; i++){... */\n iszero\n tag_22\n jumpi\n /* \"contracts/study.sol\":763:766 arr */\n 0x00\n /* \"contracts/study.sol\":769:770 1 */\n 0x01\n /* \"contracts/study.sol\":767:768 i */\n dup3\n /* \"contracts/study.sol\":767:770 i+1 */\n tag_24\n swap2\n swap1\n tag_25\n jump\t// in\n tag_24:\n /* \"contracts/study.sol\":763:771 arr[i+1] */\n dup2\n sload\n dup2\n lt\n tag_26\n jumpi\n tag_27\n tag_28\n jump\t// in\n tag_27:\n tag_26:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n sload\n /* \"contracts/study.sol\":754:757 arr */\n 0x00\n /* \"contracts/study.sol\":758:759 i */\n dup3\n /* \"contracts/study.sol\":754:760 arr[i] */\n dup2\n sload\n dup2\n lt\n tag_30\n jumpi\n tag_31\n tag_28\n jump\t// in\n tag_31:\n tag_30:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n /* \"contracts/study.sol\":754:771 arr[i] = arr[i+1] */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/study.sol\":735:738 i++ */\n dup1\n dup1\n tag_33\n swap1\n tag_34\n jump\t// in\n tag_33:\n swap2\n pop\n pop\n /* \"contracts/study.sol\":699:783 for(uint i = _index; i< arr.length; i++){... */\n jump(tag_21)\n tag_22:\n pop\n /* \"contracts/study.sol\":793:796 arr */\n 0x00\n /* \"contracts/study.sol\":793:802 arr.pop() */\n dup1\n sload\n dup1\n tag_35\n jumpi\n tag_36\n tag_37\n jump\t// in\n tag_36:\n tag_35:\n 0x01\n swap1\n sub\n dup2\n dup2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n sstore\n swap1\n sstore\n /* \"contracts/study.sol\":598:810 function remove(uint _index) public {... */\n pop\n jump\t// out\n /* \"contracts/study.sol\":562:589 uint[] public arr = [1,2,3] */\n tag_12:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_39\n jumpi\n 0x00\n dup1\n revert\n tag_39:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"contracts/study.sol\":818:1041 function test() external {... */\n tag_16:\n /* \"contracts/study.sol\":854:871 arr = [1,2,3,4,5] */\n mload(0x40)\n dup1\n 0xa0\n add\n 0x40\n mstore\n dup1\n /* \"contracts/study.sol\":861:862 1 */\n 0x01\n /* \"contracts/study.sol\":854:871 arr = [1,2,3,4,5] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":863:864 2 */\n 0x02\n /* \"contracts/study.sol\":854:871 arr = [1,2,3,4,5] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":865:866 3 */\n 0x03\n /* \"contracts/study.sol\":854:871 arr = [1,2,3,4,5] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":867:868 4 */\n 0x04\n /* \"contracts/study.sol\":854:871 arr = [1,2,3,4,5] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":869:870 5 */\n 0x05\n /* \"contracts/study.sol\":854:871 arr = [1,2,3,4,5] */\n 0xff\n and\n dup2\n mstore\n pop\n /* \"contracts/study.sol\":854:857 arr */\n 0x00\n /* \"contracts/study.sol\":854:871 arr = [1,2,3,4,5] */\n swap1\n 0x05\n tag_42\n swap3\n swap2\n swap1\n tag_43\n jump\t// in\n tag_42:\n pop\n /* \"contracts/study.sol\":882:891 remove(2) */\n tag_44\n /* \"contracts/study.sol\":889:890 2 */\n 0x02\n /* \"contracts/study.sol\":882:888 remove */\n tag_9\n /* \"contracts/study.sol\":882:891 remove(2) */\n jump\t// in\n tag_44:\n /* \"contracts/study.sol\":917:918 1 */\n 0x01\n /* \"contracts/study.sol\":909:912 arr */\n 0x00\n /* \"contracts/study.sol\":913:914 0 */\n dup1\n /* \"contracts/study.sol\":909:915 arr[0] */\n dup2\n sload\n dup2\n lt\n tag_45\n jumpi\n tag_46\n tag_28\n jump\t// in\n tag_46:\n tag_45:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n sload\n /* \"contracts/study.sol\":909:918 arr[0]==1 */\n eq\n /* \"contracts/study.sol\":902:919 assert(arr[0]==1) */\n tag_48\n jumpi\n tag_49\n tag_50\n jump\t// in\n tag_49:\n tag_48:\n /* \"contracts/study.sol\":945:946 2 */\n 0x02\n /* \"contracts/study.sol\":937:940 arr */\n 0x00\n /* \"contracts/study.sol\":941:942 1 */\n 0x01\n /* \"contracts/study.sol\":937:943 arr[1] */\n dup2\n sload\n dup2\n lt\n tag_51\n jumpi\n tag_52\n tag_28\n jump\t// in\n tag_52:\n tag_51:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n sload\n /* \"contracts/study.sol\":937:946 arr[1]==2 */\n eq\n /* \"contracts/study.sol\":930:947 assert(arr[1]==2) */\n tag_54\n jumpi\n tag_55\n tag_50\n jump\t// in\n tag_55:\n tag_54:\n /* \"contracts/study.sol\":973:974 3 */\n 0x03\n /* \"contracts/study.sol\":965:968 arr */\n 0x00\n /* \"contracts/study.sol\":969:970 2 */\n 0x02\n /* \"contracts/study.sol\":965:971 arr[2] */\n dup2\n sload\n dup2\n lt\n tag_56\n jumpi\n tag_57\n tag_28\n jump\t// in\n tag_57:\n tag_56:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n sload\n /* \"contracts/study.sol\":965:974 arr[2]==3 */\n eq\n /* \"contracts/study.sol\":958:975 assert(arr[2]==3) */\n tag_59\n jumpi\n tag_60\n tag_50\n jump\t// in\n tag_60:\n tag_59:\n /* \"contracts/study.sol\":1001:1002 4 */\n 0x04\n /* \"contracts/study.sol\":993:996 arr */\n 0x00\n /* \"contracts/study.sol\":997:998 3 */\n 0x03\n /* \"contracts/study.sol\":993:999 arr[3] */\n dup2\n sload\n dup2\n lt\n tag_61\n jumpi\n tag_62\n tag_28\n jump\t// in\n tag_62:\n tag_61:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n sload\n /* \"contracts/study.sol\":993:1002 arr[3]==4 */\n eq\n /* \"contracts/study.sol\":986:1003 assert(arr[3]==4) */\n tag_64\n jumpi\n tag_65\n tag_50\n jump\t// in\n tag_65:\n tag_64:\n /* \"contracts/study.sol\":1029:1030 5 */\n 0x05\n /* \"contracts/study.sol\":1021:1024 arr */\n 0x00\n /* \"contracts/study.sol\":1025:1026 4 */\n 0x04\n /* \"contracts/study.sol\":1021:1027 arr[4] */\n dup2\n sload\n dup2\n lt\n tag_66\n jumpi\n tag_67\n tag_28\n jump\t// in\n tag_67:\n tag_66:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n sload\n /* \"contracts/study.sol\":1021:1030 arr[4]==5 */\n eq\n /* \"contracts/study.sol\":1014:1031 assert(arr[4]==5) */\n tag_69\n jumpi\n tag_70\n tag_50\n jump\t// in\n tag_70:\n tag_69:\n /* \"contracts/study.sol\":818:1041 function test() external {... */\n jump\t// out\n tag_43:\n dup3\n dup1\n sload\n dup3\n dup3\n sstore\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n dup2\n add\n swap3\n dup3\n iszero\n tag_71\n jumpi\n swap2\n 0x20\n mul\n dup3\n add\n tag_72:\n dup3\n dup2\n gt\n iszero\n tag_73\n jumpi\n dup3\n mload\n dup3\n swap1\n 0xff\n and\n swap1\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_72)\n tag_73:\n tag_71:\n pop\n swap1\n pop\n tag_74\n swap2\n swap1\n tag_75\n jump\t// in\n tag_74:\n pop\n swap1\n jump\t// out\n tag_75:\n tag_76:\n dup1\n dup3\n gt\n iszero\n tag_77\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_76)\n tag_77:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_79:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:411 */\n tag_81:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":400:405 */\n dup2\n /* \"#utility.yul\":389:405 */\n swap1\n pop\n /* \"#utility.yul\":334:411 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":417:539 */\n tag_82:\n /* \"#utility.yul\":490:514 */\n tag_95\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_81\n jump\t// in\n tag_95:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_96\n jumpi\n /* \"#utility.yul\":529:530 */\n 0x00\n /* \"#utility.yul\":526:527 */\n dup1\n /* \"#utility.yul\":519:531 */\n revert\n /* \"#utility.yul\":470:533 */\n tag_96:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_83:\n /* \"#utility.yul\":591:596 */\n 0x00\n /* \"#utility.yul\":629:635 */\n dup2\n /* \"#utility.yul\":616:636 */\n calldataload\n /* \"#utility.yul\":607:636 */\n swap1\n pop\n /* \"#utility.yul\":645:678 */\n tag_98\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_82\n jump\t// in\n tag_98:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_8:\n /* \"#utility.yul\":749:755 */\n 0x00\n /* \"#utility.yul\":798:800 */\n 0x20\n /* \"#utility.yul\":786:795 */\n dup3\n /* \"#utility.yul\":777:784 */\n dup5\n /* \"#utility.yul\":773:796 */\n sub\n /* \"#utility.yul\":769:801 */\n slt\n /* \"#utility.yul\":766:885 */\n iszero\n tag_100\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_101\n tag_79\n jump\t// in\n tag_101:\n /* \"#utility.yul\":766:885 */\n tag_100:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_102\n /* \"#utility.yul\":994:1001 */\n dup5\n /* \"#utility.yul\":985:991 */\n dup3\n /* \"#utility.yul\":974:983 */\n dup6\n /* \"#utility.yul\":970:992 */\n add\n /* \"#utility.yul\":949:1002 */\n tag_83\n jump\t// in\n tag_102:\n /* \"#utility.yul\":939:1002 */\n swap2\n pop\n /* \"#utility.yul\":895:1012 */\n pop\n /* \"#utility.yul\":690:1019 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1025:1143 */\n tag_84:\n /* \"#utility.yul\":1112:1136 */\n tag_104\n /* \"#utility.yul\":1130:1135 */\n dup2\n /* \"#utility.yul\":1112:1136 */\n tag_81\n jump\t// in\n tag_104:\n /* \"#utility.yul\":1107:1110 */\n dup3\n /* \"#utility.yul\":1100:1137 */\n mstore\n /* \"#utility.yul\":1025:1143 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1149:1371 */\n tag_14:\n /* \"#utility.yul\":1242:1246 */\n 0x00\n /* \"#utility.yul\":1280:1282 */\n 0x20\n /* \"#utility.yul\":1269:1278 */\n dup3\n /* \"#utility.yul\":1265:1283 */\n add\n /* \"#utility.yul\":1257:1283 */\n swap1\n pop\n /* \"#utility.yul\":1293:1364 */\n tag_106\n /* \"#utility.yul\":1361:1362 */\n 0x00\n /* \"#utility.yul\":1350:1359 */\n dup4\n /* \"#utility.yul\":1346:1363 */\n add\n /* \"#utility.yul\":1337:1343 */\n dup5\n /* \"#utility.yul\":1293:1364 */\n tag_84\n jump\t// in\n tag_106:\n /* \"#utility.yul\":1149:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1546 */\n tag_85:\n /* \"#utility.yul\":1461:1472 */\n 0x00\n /* \"#utility.yul\":1495:1501 */\n dup3\n /* \"#utility.yul\":1490:1493 */\n dup3\n /* \"#utility.yul\":1483:1502 */\n mstore\n /* \"#utility.yul\":1535:1539 */\n 0x20\n /* \"#utility.yul\":1530:1533 */\n dup3\n /* \"#utility.yul\":1526:1540 */\n add\n /* \"#utility.yul\":1511:1540 */\n swap1\n pop\n /* \"#utility.yul\":1377:1546 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1552:1714 */\n tag_86:\n /* \"#utility.yul\":1692:1706 */\n 0x6f7574206f6620626f6e64730000000000000000000000000000000000000000\n /* \"#utility.yul\":1688:1689 */\n 0x00\n /* \"#utility.yul\":1680:1686 */\n dup3\n /* \"#utility.yul\":1676:1690 */\n add\n /* \"#utility.yul\":1669:1707 */\n mstore\n /* \"#utility.yul\":1552:1714 */\n pop\n jump\t// out\n /* \"#utility.yul\":1720:2086 */\n tag_87:\n /* \"#utility.yul\":1862:1865 */\n 0x00\n /* \"#utility.yul\":1883:1950 */\n tag_110\n /* \"#utility.yul\":1947:1949 */\n 0x0c\n /* \"#utility.yul\":1942:1945 */\n dup4\n /* \"#utility.yul\":1883:1950 */\n tag_85\n jump\t// in\n tag_110:\n /* \"#utility.yul\":1876:1950 */\n swap2\n pop\n /* \"#utility.yul\":1959:2052 */\n tag_111\n /* \"#utility.yul\":2048:2051 */\n dup3\n /* \"#utility.yul\":1959:2052 */\n tag_86\n jump\t// in\n tag_111:\n /* \"#utility.yul\":2077:2079 */\n 0x20\n /* \"#utility.yul\":2072:2075 */\n dup3\n /* \"#utility.yul\":2068:2080 */\n add\n /* \"#utility.yul\":2061:2080 */\n swap1\n pop\n /* \"#utility.yul\":1720:2086 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2092:2511 */\n tag_20:\n /* \"#utility.yul\":2258:2262 */\n 0x00\n /* \"#utility.yul\":2296:2298 */\n 0x20\n /* \"#utility.yul\":2285:2294 */\n dup3\n /* \"#utility.yul\":2281:2299 */\n add\n /* \"#utility.yul\":2273:2299 */\n swap1\n pop\n /* \"#utility.yul\":2345:2354 */\n dup2\n /* \"#utility.yul\":2339:2343 */\n dup2\n /* \"#utility.yul\":2335:2355 */\n sub\n /* \"#utility.yul\":2331:2332 */\n 0x00\n /* \"#utility.yul\":2320:2329 */\n dup4\n /* \"#utility.yul\":2316:2333 */\n add\n /* \"#utility.yul\":2309:2356 */\n mstore\n /* \"#utility.yul\":2373:2504 */\n tag_113\n /* \"#utility.yul\":2499:2503 */\n dup2\n /* \"#utility.yul\":2373:2504 */\n tag_87\n jump\t// in\n tag_113:\n /* \"#utility.yul\":2365:2504 */\n swap1\n pop\n /* \"#utility.yul\":2092:2511 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2517:2697 */\n tag_88:\n /* \"#utility.yul\":2565:2642 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2562:2563 */\n 0x00\n /* \"#utility.yul\":2555:2643 */\n mstore\n /* \"#utility.yul\":2662:2666 */\n 0x11\n /* \"#utility.yul\":2659:2660 */\n 0x04\n /* \"#utility.yul\":2652:2667 */\n mstore\n /* \"#utility.yul\":2686:2690 */\n 0x24\n /* \"#utility.yul\":2683:2684 */\n 0x00\n /* \"#utility.yul\":2676:2691 */\n revert\n /* \"#utility.yul\":2703:3008 */\n tag_25:\n /* \"#utility.yul\":2743:2746 */\n 0x00\n /* \"#utility.yul\":2762:2782 */\n tag_116\n /* \"#utility.yul\":2780:2781 */\n dup3\n /* \"#utility.yul\":2762:2782 */\n tag_81\n jump\t// in\n tag_116:\n /* \"#utility.yul\":2757:2782 */\n swap2\n pop\n /* \"#utility.yul\":2796:2816 */\n tag_117\n /* \"#utility.yul\":2814:2815 */\n dup4\n /* \"#utility.yul\":2796:2816 */\n tag_81\n jump\t// in\n tag_117:\n /* \"#utility.yul\":2791:2816 */\n swap3\n pop\n /* \"#utility.yul\":2950:2951 */\n dup3\n /* \"#utility.yul\":2882:2948 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":2878:2952 */\n sub\n /* \"#utility.yul\":2875:2876 */\n dup3\n /* \"#utility.yul\":2872:2953 */\n gt\n /* \"#utility.yul\":2869:2976 */\n iszero\n tag_118\n jumpi\n /* \"#utility.yul\":2956:2974 */\n tag_119\n tag_88\n jump\t// in\n tag_119:\n /* \"#utility.yul\":2869:2976 */\n tag_118:\n /* \"#utility.yul\":3000:3001 */\n dup3\n /* \"#utility.yul\":2997:2998 */\n dup3\n /* \"#utility.yul\":2993:3002 */\n add\n /* \"#utility.yul\":2986:3002 */\n swap1\n pop\n /* \"#utility.yul\":2703:3008 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3014:3194 */\n tag_28:\n /* \"#utility.yul\":3062:3139 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3059:3060 */\n 0x00\n /* \"#utility.yul\":3052:3140 */\n mstore\n /* \"#utility.yul\":3159:3163 */\n 0x32\n /* \"#utility.yul\":3156:3157 */\n 0x04\n /* \"#utility.yul\":3149:3164 */\n mstore\n /* \"#utility.yul\":3183:3187 */\n 0x24\n /* \"#utility.yul\":3180:3181 */\n 0x00\n /* \"#utility.yul\":3173:3188 */\n revert\n /* \"#utility.yul\":3200:3433 */\n tag_34:\n /* \"#utility.yul\":3239:3242 */\n 0x00\n /* \"#utility.yul\":3262:3286 */\n tag_122\n /* \"#utility.yul\":3280:3285 */\n dup3\n /* \"#utility.yul\":3262:3286 */\n tag_81\n jump\t// in\n tag_122:\n /* \"#utility.yul\":3253:3286 */\n swap2\n pop\n /* \"#utility.yul\":3308:3374 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":3301:3306 */\n dup3\n /* \"#utility.yul\":3298:3375 */\n sub\n /* \"#utility.yul\":3295:3398 */\n tag_123\n jumpi\n /* \"#utility.yul\":3378:3396 */\n tag_124\n tag_88\n jump\t// in\n tag_124:\n /* \"#utility.yul\":3295:3398 */\n tag_123:\n /* \"#utility.yul\":3425:3426 */\n 0x01\n /* \"#utility.yul\":3418:3423 */\n dup3\n /* \"#utility.yul\":3414:3427 */\n add\n /* \"#utility.yul\":3407:3427 */\n swap1\n pop\n /* \"#utility.yul\":3200:3433 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3439:3619 */\n tag_37:\n /* \"#utility.yul\":3487:3564 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3484:3485 */\n 0x00\n /* \"#utility.yul\":3477:3565 */\n mstore\n /* \"#utility.yul\":3584:3588 */\n 0x31\n /* \"#utility.yul\":3581:3582 */\n 0x04\n /* \"#utility.yul\":3574:3589 */\n mstore\n /* \"#utility.yul\":3608:3612 */\n 0x24\n /* \"#utility.yul\":3605:3606 */\n 0x00\n /* \"#utility.yul\":3598:3613 */\n revert\n /* \"#utility.yul\":3625:3805 */\n tag_50:\n /* \"#utility.yul\":3673:3750 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3670:3671 */\n 0x00\n /* \"#utility.yul\":3663:3751 */\n mstore\n /* \"#utility.yul\":3770:3774 */\n 0x01\n /* \"#utility.yul\":3767:3768 */\n 0x04\n /* \"#utility.yul\":3760:3775 */\n mstore\n /* \"#utility.yul\":3794:3798 */\n 0x24\n /* \"#utility.yul\":3791:3792 */\n 0x00\n /* \"#utility.yul\":3784:3799 */\n revert\n\n auxdata: 0xa2646970667358221220049f4b09464a865ba3a98dc01d343fd9a757d47581bc57de45beeac7681aadcd64736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526040518060600160405280600160ff168152602001600260ff168152602001600360ff16815250600090600361003b92919061004e565b5034801561004857600080fd5b506100bd565b82805482825590600052602060002090810192821561008f579160200282015b8281111561008e578251829060ff1690559160200191906001019061006e565b5b50905061009c91906100a0565b5090565b5b808211156100b95760008160009055506001016100a1565b5090565b6105fb806100cc6000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80634cc822151461004657806371e5ee5f14610062578063f8a8fd6d14610092575b600080fd5b610060600480360381019061005b9190610397565b61009c565b005b61007c60048036038101906100779190610397565b610182565b60405161008991906103d3565b60405180910390f35b61009a6101a6565b005b60008054905081106100e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100da9061044b565b60405180910390fd5b60008190505b600080549050811015610156576000600182610105919061049a565b81548110610116576101156104f0565b5b906000526020600020015460008281548110610135576101346104f0565b5b9060005260206000200181905550808061014e9061051f565b9150506100e9565b50600080548061016957610168610567565b5b6001900381819060005260206000200160009055905550565b6000818154811061019257600080fd5b906000526020600020016000915090505481565b6040518060a00160405280600160ff168152602001600260ff168152602001600360ff168152602001600460ff168152602001600560ff1681525060009060056101f19291906102ed565b506101fc600261009c565b600160008081548110610212576102116104f0565b5b90600052602060002001541461022b5761022a610596565b5b60026000600181548110610242576102416104f0565b5b90600052602060002001541461025b5761025a610596565b5b60036000600281548110610272576102716104f0565b5b90600052602060002001541461028b5761028a610596565b5b600460006003815481106102a2576102a16104f0565b5b9060005260206000200154146102bb576102ba610596565b5b600560006004815481106102d2576102d16104f0565b5b9060005260206000200154146102eb576102ea610596565b5b565b82805482825590600052602060002090810192821561032e579160200282015b8281111561032d578251829060ff1690559160200191906001019061030d565b5b50905061033b919061033f565b5090565b5b80821115610358576000816000905550600101610340565b5090565b600080fd5b6000819050919050565b61037481610361565b811461037f57600080fd5b50565b6000813590506103918161036b565b92915050565b6000602082840312156103ad576103ac61035c565b5b60006103bb84828501610382565b91505092915050565b6103cd81610361565b82525050565b60006020820190506103e860008301846103c4565b92915050565b600082825260208201905092915050565b7f6f7574206f6620626f6e64730000000000000000000000000000000000000000600082015250565b6000610435600c836103ee565b9150610440826103ff565b602082019050919050565b6000602082019050818103600083015261046481610428565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104a582610361565b91506104b083610361565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156104e5576104e461046b565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061052a82610361565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361055c5761055b61046b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea2646970667358221220049f4b09464a865ba3a98dc01d343fd9a757d47581bc57de45beeac7681aadcd64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0x3B SWAP3 SWAP2 SWAP1 PUSH2 0x4E JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8F JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8E JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x9C SWAP2 SWAP1 PUSH2 0xA0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xB9 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xA1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x5FB DUP1 PUSH2 0xCC 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 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0xF8A8FD6D EQ PUSH2 0x92 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x397 JUMP JUMPDEST PUSH2 0x9C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x397 JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x89 SWAP2 SWAP1 PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9A PUSH2 0x1A6 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT PUSH2 0xE3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDA SWAP1 PUSH2 0x44B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x156 JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x105 SWAP2 SWAP1 PUSH2 0x49A JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x116 JUMPI PUSH2 0x115 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x135 JUMPI PUSH2 0x134 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x14E SWAP1 PUSH2 0x51F JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE9 JUMP JUMPDEST POP PUSH1 0x0 DUP1 SLOAD DUP1 PUSH2 0x169 JUMPI PUSH2 0x168 PUSH2 0x567 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x192 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x5 PUSH2 0x1F1 SWAP3 SWAP2 SWAP1 PUSH2 0x2ED JUMP JUMPDEST POP PUSH2 0x1FC PUSH1 0x2 PUSH2 0x9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP2 SLOAD DUP2 LT PUSH2 0x212 JUMPI PUSH2 0x211 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x22B JUMPI PUSH2 0x22A PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x2 PUSH1 0x0 PUSH1 0x1 DUP2 SLOAD DUP2 LT PUSH2 0x242 JUMPI PUSH2 0x241 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x25B JUMPI PUSH2 0x25A PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x3 PUSH1 0x0 PUSH1 0x2 DUP2 SLOAD DUP2 LT PUSH2 0x272 JUMPI PUSH2 0x271 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x28B JUMPI PUSH2 0x28A PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x4 PUSH1 0x0 PUSH1 0x3 DUP2 SLOAD DUP2 LT PUSH2 0x2A2 JUMPI PUSH2 0x2A1 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x2BB JUMPI PUSH2 0x2BA PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x5 PUSH1 0x0 PUSH1 0x4 DUP2 SLOAD DUP2 LT PUSH2 0x2D2 JUMPI PUSH2 0x2D1 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x2EB JUMPI PUSH2 0x2EA PUSH2 0x596 JUMP JUMPDEST JUMPDEST JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x32E JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x32D JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x30D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x33F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x358 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x340 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x374 DUP2 PUSH2 0x361 JUMP JUMPDEST DUP2 EQ PUSH2 0x37F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x391 DUP2 PUSH2 0x36B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3AD JUMPI PUSH2 0x3AC PUSH2 0x35C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3BB DUP5 DUP3 DUP6 ADD PUSH2 0x382 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3CD DUP2 PUSH2 0x361 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3E8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3C4 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 PUSH32 0x6F7574206F6620626F6E64730000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x435 PUSH1 0xC DUP4 PUSH2 0x3EE JUMP JUMPDEST SWAP2 POP PUSH2 0x440 DUP3 PUSH2 0x3FF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x464 DUP2 PUSH2 0x428 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x4A5 DUP3 PUSH2 0x361 JUMP JUMPDEST SWAP2 POP PUSH2 0x4B0 DUP4 PUSH2 0x361 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x4E5 JUMPI PUSH2 0x4E4 PUSH2 0x46B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x52A DUP3 PUSH2 0x361 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x55C JUMPI PUSH2 0x55B PUSH2 0x46B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIV SWAP16 0x4B MULMOD CHAINID 0x4A DUP7 JUMPDEST LOG3 0xA9 DUP14 0xC0 SAR CALLVALUE EXTCODEHASH 0xD9 0xA7 JUMPI 0xD4 PUSH22 0x81BC57DE45BEEAC7681AADCD64736F6C634300080D00 CALLER ",
"sourceMap": "532:512:0:-:0;;;562:27;;;;;;;;583:1;562:27;;;;;;585:1;562:27;;;;;;587:1;562:27;;;;;;;;;;;;;:::i;:::-;;532:512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@arr_64": {
"entryPoint": 386,
"id": 64,
"parameterSlots": 0,
"returnSlots": 0
},
"@remove_106": {
"entryPoint": 156,
"id": 106,
"parameterSlots": 1,
"returnSlots": 0
},
"@test_163": {
"entryPoint": 422,
"id": 163,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 898,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 919,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1064,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 964,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1099,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 979,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1006,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1178,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 865,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 1311,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x01": {
"entryPoint": 1430,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1131,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 1383,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 1264,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 860,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a": {
"entryPoint": 1023,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 875,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3808:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1090:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1130:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1112:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1112:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1100:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1100:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1078:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1085:3:1",
"type": ""
}
],
"src": "1025:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1247:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1269:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1265:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1350:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1293:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1293:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1293:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1219:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1231:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1242:4:1",
"type": ""
}
],
"src": "1149:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1473:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1490:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1495:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1483:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1483:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1483:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1511:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1530:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1535:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1526:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1526:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1511:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1445:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1450:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1461:11:1",
"type": ""
}
],
"src": "1377:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1658:56:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1680:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1688:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1676:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1676:14:1"
},
{
"hexValue": "6f7574206f6620626f6e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1692:14:1",
"type": "",
"value": "out of bonds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1669:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1669:38:1"
},
"nodeType": "YulExpressionStatement",
"src": "1669:38:1"
}
]
},
"name": "store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1650:6:1",
"type": ""
}
],
"src": "1552:162:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1866:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1876:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1942:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:2:1",
"type": "",
"value": "12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1883:58:1"
},
"nodeType": "YulFunctionCall",
"src": "1883:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1876:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2048:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a",
"nodeType": "YulIdentifier",
"src": "1959:88:1"
},
"nodeType": "YulFunctionCall",
"src": "1959:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "1959:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2061:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2072:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2077:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2068:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2068:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2061:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1854:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1862:3:1",
"type": ""
}
],
"src": "1720:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2263:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2273:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2285:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2296:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2281:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2281:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2273:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2320:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2331:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2316:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2316:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2339:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2345:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2335:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2335:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2309:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2309:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2309:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2365:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2499:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2373:124:1"
},
"nodeType": "YulFunctionCall",
"src": "2373:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2365:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2243:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2258:4:1",
"type": ""
}
],
"src": "2092:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2562:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2565:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2555:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2555:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "2555:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2659:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2662:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2652:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2652:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2652:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2683:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2686:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2676:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2676:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2676:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "2517:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2747:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2757:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2780:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2762:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2762:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2757:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2791:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2814:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2796:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2796:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2791:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2954:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "2956:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2956:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2956:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2875:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2882:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2950:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2878:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2878:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2872:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2872:81:1"
},
"nodeType": "YulIf",
"src": "2869:107:1"
},
{
"nodeType": "YulAssignment",
"src": "2986:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2997:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3000:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2993:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2993:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "2986:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2734:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2737:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "2743:3:1",
"type": ""
}
],
"src": "2703:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3042:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3059:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3062:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3052:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3052:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3052:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3156:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3159:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3149:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3149:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3149:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3180:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3183:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3173:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3173:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3173:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "3014:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3243:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3253:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3280:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3262:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3262:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3253:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3376:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "3378:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3378:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3378:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3301:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3308:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3298:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3298:77:1"
},
"nodeType": "YulIf",
"src": "3295:103:1"
},
{
"nodeType": "YulAssignment",
"src": "3407:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3418:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3425:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3414:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3414:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "3407:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3229:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "3239:3:1",
"type": ""
}
],
"src": "3200:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3467:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3487:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3477:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3477:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3477:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3581:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3584:4:1",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3574:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3574:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3574:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3605:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3608:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3598:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3598:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3598:15:1"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "3439:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3653:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3670:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3673:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3663:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3663:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3663:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3767:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3770:4:1",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3760:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3760:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3760:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3791:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3794:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3784:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3784:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3784:15:1"
}
]
},
"name": "panic_error_0x01",
"nodeType": "YulFunctionDefinition",
"src": "3625:180:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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 store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a(memPtr) {\n\n mstore(add(memPtr, 0), \"out of bonds\")\n\n }\n\n function abi_encode_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 12)\n store_literal_in_memory_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a__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_f439d9466e58b7807053d0c54e367c18d85e5709defd111497af244ed154843a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\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 panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\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_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n function panic_error_0x01() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x01)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80634cc822151461004657806371e5ee5f14610062578063f8a8fd6d14610092575b600080fd5b610060600480360381019061005b9190610397565b61009c565b005b61007c60048036038101906100779190610397565b610182565b60405161008991906103d3565b60405180910390f35b61009a6101a6565b005b60008054905081106100e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100da9061044b565b60405180910390fd5b60008190505b600080549050811015610156576000600182610105919061049a565b81548110610116576101156104f0565b5b906000526020600020015460008281548110610135576101346104f0565b5b9060005260206000200181905550808061014e9061051f565b9150506100e9565b50600080548061016957610168610567565b5b6001900381819060005260206000200160009055905550565b6000818154811061019257600080fd5b906000526020600020016000915090505481565b6040518060a00160405280600160ff168152602001600260ff168152602001600360ff168152602001600460ff168152602001600560ff1681525060009060056101f19291906102ed565b506101fc600261009c565b600160008081548110610212576102116104f0565b5b90600052602060002001541461022b5761022a610596565b5b60026000600181548110610242576102416104f0565b5b90600052602060002001541461025b5761025a610596565b5b60036000600281548110610272576102716104f0565b5b90600052602060002001541461028b5761028a610596565b5b600460006003815481106102a2576102a16104f0565b5b9060005260206000200154146102bb576102ba610596565b5b600560006004815481106102d2576102d16104f0565b5b9060005260206000200154146102eb576102ea610596565b5b565b82805482825590600052602060002090810192821561032e579160200282015b8281111561032d578251829060ff1690559160200191906001019061030d565b5b50905061033b919061033f565b5090565b5b80821115610358576000816000905550600101610340565b5090565b600080fd5b6000819050919050565b61037481610361565b811461037f57600080fd5b50565b6000813590506103918161036b565b92915050565b6000602082840312156103ad576103ac61035c565b5b60006103bb84828501610382565b91505092915050565b6103cd81610361565b82525050565b60006020820190506103e860008301846103c4565b92915050565b600082825260208201905092915050565b7f6f7574206f6620626f6e64730000000000000000000000000000000000000000600082015250565b6000610435600c836103ee565b9150610440826103ff565b602082019050919050565b6000602082019050818103600083015261046481610428565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006104a582610361565b91506104b083610361565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156104e5576104e461046b565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061052a82610361565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361055c5761055b61046b565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea2646970667358221220049f4b09464a865ba3a98dc01d343fd9a757d47581bc57de45beeac7681aadcd64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0xF8A8FD6D EQ PUSH2 0x92 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x397 JUMP JUMPDEST PUSH2 0x9C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x397 JUMP JUMPDEST PUSH2 0x182 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x89 SWAP2 SWAP1 PUSH2 0x3D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x9A PUSH2 0x1A6 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT PUSH2 0xE3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDA SWAP1 PUSH2 0x44B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x156 JUMPI PUSH1 0x0 PUSH1 0x1 DUP3 PUSH2 0x105 SWAP2 SWAP1 PUSH2 0x49A JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x116 JUMPI PUSH2 0x115 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD PUSH1 0x0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x135 JUMPI PUSH2 0x134 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x14E SWAP1 PUSH2 0x51F JUMP JUMPDEST SWAP2 POP POP PUSH2 0xE9 JUMP JUMPDEST POP PUSH1 0x0 DUP1 SLOAD DUP1 PUSH2 0x169 JUMPI PUSH2 0x168 PUSH2 0x567 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x192 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x5 PUSH2 0x1F1 SWAP3 SWAP2 SWAP1 PUSH2 0x2ED JUMP JUMPDEST POP PUSH2 0x1FC PUSH1 0x2 PUSH2 0x9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 DUP1 DUP2 SLOAD DUP2 LT PUSH2 0x212 JUMPI PUSH2 0x211 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x22B JUMPI PUSH2 0x22A PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x2 PUSH1 0x0 PUSH1 0x1 DUP2 SLOAD DUP2 LT PUSH2 0x242 JUMPI PUSH2 0x241 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x25B JUMPI PUSH2 0x25A PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x3 PUSH1 0x0 PUSH1 0x2 DUP2 SLOAD DUP2 LT PUSH2 0x272 JUMPI PUSH2 0x271 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x28B JUMPI PUSH2 0x28A PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x4 PUSH1 0x0 PUSH1 0x3 DUP2 SLOAD DUP2 LT PUSH2 0x2A2 JUMPI PUSH2 0x2A1 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x2BB JUMPI PUSH2 0x2BA PUSH2 0x596 JUMP JUMPDEST JUMPDEST PUSH1 0x5 PUSH1 0x0 PUSH1 0x4 DUP2 SLOAD DUP2 LT PUSH2 0x2D2 JUMPI PUSH2 0x2D1 PUSH2 0x4F0 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD EQ PUSH2 0x2EB JUMPI PUSH2 0x2EA PUSH2 0x596 JUMP JUMPDEST JUMPDEST JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x32E JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x32D JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x30D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x33F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x358 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x340 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x374 DUP2 PUSH2 0x361 JUMP JUMPDEST DUP2 EQ PUSH2 0x37F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x391 DUP2 PUSH2 0x36B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3AD JUMPI PUSH2 0x3AC PUSH2 0x35C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3BB DUP5 DUP3 DUP6 ADD PUSH2 0x382 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3CD DUP2 PUSH2 0x361 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3E8 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3C4 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 PUSH32 0x6F7574206F6620626F6E64730000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x435 PUSH1 0xC DUP4 PUSH2 0x3EE JUMP JUMPDEST SWAP2 POP PUSH2 0x440 DUP3 PUSH2 0x3FF JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x464 DUP2 PUSH2 0x428 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x4A5 DUP3 PUSH2 0x361 JUMP JUMPDEST SWAP2 POP PUSH2 0x4B0 DUP4 PUSH2 0x361 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x4E5 JUMPI PUSH2 0x4E4 PUSH2 0x46B JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x52A DUP3 PUSH2 0x361 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x55C JUMPI PUSH2 0x55B PUSH2 0x46B JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DIV SWAP16 0x4B MULMOD CHAINID 0x4A DUP7 JUMPDEST LOG3 0xA9 DUP14 0xC0 SAR CALLVALUE EXTCODEHASH 0xD9 0xA7 JUMPI 0xD4 PUSH22 0x81BC57DE45BEEAC7681AADCD64736F6C634300080D00 CALLER ",
"sourceMap": "532:512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;598:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;562:27;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;818:223;;;:::i;:::-;;598:212;662:3;:10;;;;653:6;:19;645:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;703:6;712;703:15;;699:84;723:3;:10;;;;720:1;:13;699:84;;;763:3;769:1;767;:3;;;;:::i;:::-;763:8;;;;;;;;:::i;:::-;;;;;;;;;;754:3;758:1;754:6;;;;;;;;:::i;:::-;;;;;;;;;:17;;;;735:3;;;;;:::i;:::-;;;;699:84;;;;793:3;:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;598:212;:::o;562:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;818:223::-;854:17;;;;;;;;861:1;854:17;;;;;;863:1;854:17;;;;;;865:1;854:17;;;;;;867:1;854:17;;;;;;869:1;854:17;;;;;:3;:17;;;;;;;:::i;:::-;;882:9;889:1;882:6;:9::i;:::-;917:1;909:3;913:1;909:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;902:17;;;;:::i;:::-;;945:1;937:3;941:1;937:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;930:17;;;;:::i;:::-;;973:1;965:3;969:1;965:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;958:17;;;;:::i;:::-;;1001:1;993:3;997:1;993:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;986:17;;;;:::i;:::-;;1029:1;1021:3;1025:1;1021:6;;;;;;;;:::i;:::-;;;;;;;;;;:9;1014:17;;;;:::i;:::-;;818:223::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:222::-;1242:4;1280:2;1269:9;1265:18;1257:26;;1293:71;1361:1;1350:9;1346:17;1337:6;1293:71;:::i;:::-;1149:222;;;;:::o;1377:169::-;1461:11;1495:6;1490:3;1483:19;1535:4;1530:3;1526:14;1511:29;;1377:169;;;;:::o;1552:162::-;1692:14;1688:1;1680:6;1676:14;1669:38;1552:162;:::o;1720:366::-;1862:3;1883:67;1947:2;1942:3;1883:67;:::i;:::-;1876:74;;1959:93;2048:3;1959:93;:::i;:::-;2077:2;2072:3;2068:12;2061:19;;1720:366;;;:::o;2092:419::-;2258:4;2296:2;2285:9;2281:18;2273:26;;2345:9;2339:4;2335:20;2331:1;2320:9;2316:17;2309:47;2373:131;2499:4;2373:131;:::i;:::-;2365:139;;2092:419;;;:::o;2517:180::-;2565:77;2562:1;2555:88;2662:4;2659:1;2652:15;2686:4;2683:1;2676:15;2703:305;2743:3;2762:20;2780:1;2762:20;:::i;:::-;2757:25;;2796:20;2814:1;2796:20;:::i;:::-;2791:25;;2950:1;2882:66;2878:74;2875:1;2872:81;2869:107;;;2956:18;;:::i;:::-;2869:107;3000:1;2997;2993:9;2986:16;;2703:305;;;;:::o;3014:180::-;3062:77;3059:1;3052:88;3159:4;3156:1;3149:15;3183:4;3180:1;3173:15;3200:233;3239:3;3262:24;3280:5;3262:24;:::i;:::-;3253:33;;3308:66;3301:5;3298:77;3295:103;;3378:18;;:::i;:::-;3295:103;3425:1;3418:5;3414:13;3407:20;;3200:233;;;:::o;3439:180::-;3487:77;3484:1;3477:88;3584:4;3581:1;3574:15;3608:4;3605:1;3598:15;3625:180;3673:77;3670:1;3663:88;3770:4;3767:1;3760:15;3794:4;3791:1;3784:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "306200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"arr(uint256)": "infinite",
"remove(uint256)": "infinite",
"test()": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 532,
"end": 1044,
"name": "MSTORE",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 562,
"end": 589,
"name": "MLOAD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 562,
"end": 589,
"name": "ADD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 562,
"end": 589,
"name": "MSTORE",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP1",
"source": 0
},
{
"begin": 583,
"end": 584,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 562,
"end": 589,
"name": "AND",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "MSTORE",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 562,
"end": 589,
"name": "ADD",
"source": 0
},
{
"begin": 585,
"end": 586,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 562,
"end": 589,
"name": "AND",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "MSTORE",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 562,
"end": 589,
"name": "ADD",
"source": 0
},
{
"begin": 587,
"end": 588,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 562,
"end": 589,
"name": "AND",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "MSTORE",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "POP",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 562,
"end": 589,
"name": "SWAP3",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 562,
"end": 589,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 562,
"end": 589,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 562,
"end": 589,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "ISZERO",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "REVERT",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 532,
"end": 1044,
"name": "JUMP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SLOAD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SSTORE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "MSTORE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "KECCAK256",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP2",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "ADD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "ISZERO",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP2",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 532,
"end": 1044,
"name": "MUL",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "ADD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP2",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "GT",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "ISZERO",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "MLOAD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 532,
"end": 1044,
"name": "AND",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SSTORE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP2",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 532,
"end": 1044,
"name": "ADD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP2",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 532,
"end": 1044,
"name": "ADD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 532,
"end": 1044,
"name": "JUMP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 532,
"end": 1044,
"name": "SWAP2",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 532,
"end": 1044,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP3",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "GT",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "ISZERO",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "DUP2",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SSTORE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 532,
"end": 1044,
"name": "ADD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 532,
"end": 1044,
"name": "JUMP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "SWAP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "CODECOPY",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220049f4b09464a865ba3a98dc01d343fd9a757d47581bc57de45beeac7681aadcd64736f6c634300080d0033",
".code": [
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 532,
"end": 1044,
"name": "MSTORE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "ISZERO",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "REVERT",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "POP",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 532,
"end": 1044,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "LT",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 532,
"end": 1044,
"name": "SHR",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "4CC82215"
},
{
"begin": 532,
"end": 1044,
"name": "EQ",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "71E5EE5F"
},
{
"begin": 532,
"end": 1044,
"name": "EQ",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "F8A8FD6D"
},
{
"begin": 532,
"end": 1044,
"name": "EQ",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPI",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 532,
"end": 1044,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 532,
"end": 1044,
"name": "DUP1",
"source": 0
},
{
"begin": 532,
"end": 1044,
"name": "REVERT",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 598,
"end": 810,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 598,
"end": 810,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 598,
"end": 810,
"name": "DUP1",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "SUB",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "DUP2",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "ADD",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "SWAP1",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 598,
"end": 810,
"name": "SWAP2",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "SWAP1",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 598,
"end": 810,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 598,
"end": 810,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 598,
"end": 810,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 598,
"end": 810,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 598,
"end": 810,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 598,
"end": 810,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "STOP",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 562,
"end": 589,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 562,
"end": 589,
"name": "DUP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SUB",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "ADD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 562,
"end": 589,
"name": "SWAP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 562,
"end": 589,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 562,
"end": 589,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 562,
"end": 589,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 562,
"end": 589,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 562,
"end": 589,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 562,
"end": 589,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 562,
"end": 589,
"name": "MLOAD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 562,
"end": 589,
"name": "SWAP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 562,
"end": 589,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 562,
"end": 589,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 562,
"end": 589,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 562,
"end": 589,
"name": "MLOAD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SUB",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "RETURN",
"source": 0
},
{
"begin": 818,
"end": 1041,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 818,
"end": 1041,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 818,
"end": 1041,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 818,
"end": 1041,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 818,
"end": 1041,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 818,
"end": 1041,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 818,
"end": 1041,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 818,
"end": 1041,
"name": "STOP",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 598,
"end": 810,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 662,
"end": 665,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 662,
"end": 672,
"name": "DUP1",
"source": 0
},
{
"begin": 662,
"end": 672,
"name": "SLOAD",
"source": 0
},
{
"begin": 662,
"end": 672,
"name": "SWAP1",
"source": 0
},
{
"begin": 662,
"end": 672,
"name": "POP",
"source": 0
},
{
"begin": 653,
"end": 659,
"name": "DUP2",
"source": 0
},
{
"begin": 653,
"end": 672,
"name": "LT",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 645,
"end": 688,
"name": "JUMPI",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 645,
"end": 688,
"name": "MLOAD",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 645,
"end": 688,
"name": "DUP2",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "MSTORE",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 645,
"end": 688,
"name": "ADD",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 645,
"end": 688,
"name": "SWAP1",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 645,
"end": 688,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 645,
"end": 688,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 645,
"end": 688,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 645,
"end": 688,
"name": "MLOAD",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "DUP1",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "SWAP2",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "SUB",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "SWAP1",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "REVERT",
"source": 0
},
{
"begin": 645,
"end": 688,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 645,
"end": 688,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 703,
"end": 709,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 712,
"end": 718,
"name": "DUP2",
"source": 0
},
{
"begin": 703,
"end": 718,
"name": "SWAP1",
"source": 0
},
{
"begin": 703,
"end": 718,
"name": "POP",
"source": 0
},
{
"begin": 699,
"end": 783,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 699,
"end": 783,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 723,
"end": 726,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 723,
"end": 733,
"name": "DUP1",
"source": 0
},
{
"begin": 723,
"end": 733,
"name": "SLOAD",
"source": 0
},
{
"begin": 723,
"end": 733,
"name": "SWAP1",
"source": 0
},
{
"begin": 723,
"end": 733,
"name": "POP",
"source": 0
},
{
"begin": 720,
"end": 721,
"name": "DUP2",
"source": 0
},
{
"begin": 720,
"end": 733,
"name": "LT",
"source": 0
},
{
"begin": 699,
"end": 783,
"name": "ISZERO",
"source": 0
},
{
"begin": 699,
"end": 783,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 699,
"end": 783,
"name": "JUMPI",
"source": 0
},
{
"begin": 763,
"end": 766,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 769,
"end": 770,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 767,
"end": 768,
"name": "DUP3",
"source": 0
},
{
"begin": 767,
"end": 770,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 767,
"end": 770,
"name": "SWAP2",
"source": 0
},
{
"begin": 767,
"end": 770,
"name": "SWAP1",
"source": 0
},
{
"begin": 767,
"end": 770,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 767,
"end": 770,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 767,
"end": 770,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 767,
"end": 770,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "DUP2",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "SLOAD",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "DUP2",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "LT",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 763,
"end": 771,
"name": "JUMPI",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 763,
"end": 771,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 763,
"end": 771,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 763,
"end": 771,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 763,
"end": 771,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 763,
"end": 771,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "SWAP1",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 763,
"end": 771,
"name": "MSTORE",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 763,
"end": 771,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 763,
"end": 771,
"name": "KECCAK256",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "ADD",
"source": 0
},
{
"begin": 763,
"end": 771,
"name": "SLOAD",
"source": 0
},
{
"begin": 754,
"end": 757,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 758,
"end": 759,
"name": "DUP3",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "DUP2",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "SLOAD",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "DUP2",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "LT",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 754,
"end": 760,
"name": "JUMPI",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 754,
"end": 760,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 754,
"end": 760,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 754,
"end": 760,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 754,
"end": 760,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 754,
"end": 760,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "SWAP1",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 754,
"end": 760,
"name": "MSTORE",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 754,
"end": 760,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 754,
"end": 760,
"name": "KECCAK256",
"source": 0
},
{
"begin": 754,
"end": 760,
"name": "ADD",
"source": 0
},
{
"begin": 754,
"end": 771,
"name": "DUP2",
"source": 0
},
{
"begin": 754,
"end": 771,
"name": "SWAP1",
"source": 0
},
{
"begin": 754,
"end": 771,
"name": "SSTORE",
"source": 0
},
{
"begin": 754,
"end": 771,
"name": "POP",
"source": 0
},
{
"begin": 735,
"end": 738,
"name": "DUP1",
"source": 0
},
{
"begin": 735,
"end": 738,
"name": "DUP1",
"source": 0
},
{
"begin": 735,
"end": 738,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 735,
"end": 738,
"name": "SWAP1",
"source": 0
},
{
"begin": 735,
"end": 738,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 735,
"end": 738,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 735,
"end": 738,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 735,
"end": 738,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 735,
"end": 738,
"name": "SWAP2",
"source": 0
},
{
"begin": 735,
"end": 738,
"name": "POP",
"source": 0
},
{
"begin": 735,
"end": 738,
"name": "POP",
"source": 0
},
{
"begin": 699,
"end": 783,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 699,
"end": 783,
"name": "JUMP",
"source": 0
},
{
"begin": 699,
"end": 783,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 699,
"end": 783,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 699,
"end": 783,
"name": "POP",
"source": 0
},
{
"begin": 793,
"end": 796,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 793,
"end": 802,
"name": "DUP1",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "SLOAD",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "DUP1",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 793,
"end": 802,
"name": "JUMPI",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 793,
"end": 802,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 793,
"end": 802,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 793,
"end": 802,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 793,
"end": 802,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 793,
"end": 802,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 793,
"end": 802,
"name": "SWAP1",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "SUB",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "DUP2",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "DUP2",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "SWAP1",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 793,
"end": 802,
"name": "MSTORE",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 793,
"end": 802,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 793,
"end": 802,
"name": "KECCAK256",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "ADD",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 793,
"end": 802,
"name": "SWAP1",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "SSTORE",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "SWAP1",
"source": 0
},
{
"begin": 793,
"end": 802,
"name": "SSTORE",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "POP",
"source": 0
},
{
"begin": 598,
"end": 810,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 562,
"end": 589,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 562,
"end": 589,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SLOAD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "LT",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 562,
"end": 589,
"name": "JUMPI",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 562,
"end": 589,
"name": "DUP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "REVERT",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 562,
"end": 589,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 562,
"end": 589,
"name": "MSTORE",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 562,
"end": 589,
"name": "KECCAK256",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "ADD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 562,
"end": 589,
"name": "SWAP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "POP",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SWAP1",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "POP",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "SLOAD",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "DUP2",
"source": 0
},
{
"begin": 562,
"end": 589,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 818,
"end": 1041,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 818,
"end": 1041,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 854,
"end": 871,
"name": "MLOAD",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "DUP1",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "A0"
},
{
"begin": 854,
"end": 871,
"name": "ADD",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 854,
"end": 871,
"name": "MSTORE",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "DUP1",
"source": 0
},
{
"begin": 861,
"end": 862,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 854,
"end": 871,
"name": "AND",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "DUP2",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "MSTORE",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 854,
"end": 871,
"name": "ADD",
"source": 0
},
{
"begin": 863,
"end": 864,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 854,
"end": 871,
"name": "AND",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "DUP2",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "MSTORE",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 854,
"end": 871,
"name": "ADD",
"source": 0
},
{
"begin": 865,
"end": 866,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 854,
"end": 871,
"name": "AND",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "DUP2",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "MSTORE",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 854,
"end": 871,
"name": "ADD",
"source": 0
},
{
"begin": 867,
"end": 868,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 854,
"end": 871,
"name": "AND",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "DUP2",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "MSTORE",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 854,
"end": 871,
"name": "ADD",
"source": 0
},
{
"begin": 869,
"end": 870,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 854,
"end": 871,
"name": "AND",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "DUP2",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "MSTORE",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "POP",
"source": 0
},
{
"begin": 854,
"end": 857,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 854,
"end": 871,
"name": "SWAP1",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 854,
"end": 871,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 854,
"end": 871,
"name": "SWAP3",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "SWAP2",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "SWAP1",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 854,
"end": 871,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 854,
"end": 871,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 854,
"end": 871,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 854,
"end": 871,
"name": "POP",
"source": 0
},
{
"begin": 882,
"end": 891,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 889,
"end": 890,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 882,
"end": 888,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 882,
"end": 891,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 882,
"end": 891,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 882,
"end": 891,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 917,
"end": 918,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 909,
"end": 912,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 913,
"end": 914,
"name": "DUP1",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "DUP2",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "SLOAD",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "DUP2",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "LT",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 909,
"end": 915,
"name": "JUMPI",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 909,
"end": 915,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 909,
"end": 915,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 909,
"end": 915,
"name": "tag",
"source": 0,
"value": "46"
},
{
"begin": 909,
"end": 915,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "tag",
"source": 0,
"value": "45"
},
{
"begin": 909,
"end": 915,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "SWAP1",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 909,
"end": 915,
"name": "MSTORE",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 909,
"end": 915,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 909,
"end": 915,
"name": "KECCAK256",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "ADD",
"source": 0
},
{
"begin": 909,
"end": 915,
"name": "SLOAD",
"source": 0
},
{
"begin": 909,
"end": 918,
"name": "EQ",
"source": 0
},
{
"begin": 902,
"end": 919,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 902,
"end": 919,
"name": "JUMPI",
"source": 0
},
{
"begin": 902,
"end": 919,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 902,
"end": 919,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 902,
"end": 919,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 902,
"end": 919,
"name": "tag",
"source": 0,
"value": "49"
},
{
"begin": 902,
"end": 919,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 902,
"end": 919,
"name": "tag",
"source": 0,
"value": "48"
},
{
"begin": 902,
"end": 919,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 945,
"end": 946,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 937,
"end": 940,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 941,
"end": 942,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 937,
"end": 943,
"name": "DUP2",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "SLOAD",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "DUP2",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "LT",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "PUSH [tag]",
"source": 0,
"value": "51"
},
{
"begin": 937,
"end": 943,
"name": "JUMPI",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "PUSH [tag]",
"source": 0,
"value": "52"
},
{
"begin": 937,
"end": 943,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 937,
"end": 943,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 937,
"end": 943,
"name": "tag",
"source": 0,
"value": "52"
},
{
"begin": 937,
"end": 943,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "tag",
"source": 0,
"value": "51"
},
{
"begin": 937,
"end": 943,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "SWAP1",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 937,
"end": 943,
"name": "MSTORE",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 937,
"end": 943,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 937,
"end": 943,
"name": "KECCAK256",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "ADD",
"source": 0
},
{
"begin": 937,
"end": 943,
"name": "SLOAD",
"source": 0
},
{
"begin": 937,
"end": 946,
"name": "EQ",
"source": 0
},
{
"begin": 930,
"end": 947,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 930,
"end": 947,
"name": "JUMPI",
"source": 0
},
{
"begin": 930,
"end": 947,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 930,
"end": 947,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 930,
"end": 947,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 930,
"end": 947,
"name": "tag",
"source": 0,
"value": "55"
},
{
"begin": 930,
"end": 947,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 930,
"end": 947,
"name": "tag",
"source": 0,
"value": "54"
},
{
"begin": 930,
"end": 947,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 973,
"end": 974,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 965,
"end": 968,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 969,
"end": 970,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 965,
"end": 971,
"name": "DUP2",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "SLOAD",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "DUP2",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "LT",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "PUSH [tag]",
"source": 0,
"value": "56"
},
{
"begin": 965,
"end": 971,
"name": "JUMPI",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "PUSH [tag]",
"source": 0,
"value": "57"
},
{
"begin": 965,
"end": 971,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 965,
"end": 971,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 965,
"end": 971,
"name": "tag",
"source": 0,
"value": "57"
},
{
"begin": 965,
"end": 971,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "tag",
"source": 0,
"value": "56"
},
{
"begin": 965,
"end": 971,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "SWAP1",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 965,
"end": 971,
"name": "MSTORE",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 965,
"end": 971,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 965,
"end": 971,
"name": "KECCAK256",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "ADD",
"source": 0
},
{
"begin": 965,
"end": 971,
"name": "SLOAD",
"source": 0
},
{
"begin": 965,
"end": 974,
"name": "EQ",
"source": 0
},
{
"begin": 958,
"end": 975,
"name": "PUSH [tag]",
"source": 0,
"value": "59"
},
{
"begin": 958,
"end": 975,
"name": "JUMPI",
"source": 0
},
{
"begin": 958,
"end": 975,
"name": "PUSH [tag]",
"source": 0,
"value": "60"
},
{
"begin": 958,
"end": 975,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 958,
"end": 975,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 958,
"end": 975,
"name": "tag",
"source": 0,
"value": "60"
},
{
"begin": 958,
"end": 975,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 958,
"end": 975,
"name": "tag",
"source": 0,
"value": "59"
},
{
"begin": 958,
"end": 975,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1001,
"end": 1002,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 993,
"end": 996,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 997,
"end": 998,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 993,
"end": 999,
"name": "DUP2",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "SLOAD",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "DUP2",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "LT",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "PUSH [tag]",
"source": 0,
"value": "61"
},
{
"begin": 993,
"end": 999,
"name": "JUMPI",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "PUSH [tag]",
"source": 0,
"value": "62"
},
{
"begin": 993,
"end": 999,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 993,
"end": 999,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 993,
"end": 999,
"name": "tag",
"source": 0,
"value": "62"
},
{
"begin": 993,
"end": 999,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "tag",
"source": 0,
"value": "61"
},
{
"begin": 993,
"end": 999,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "SWAP1",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 993,
"end": 999,
"name": "MSTORE",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 993,
"end": 999,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 993,
"end": 999,
"name": "KECCAK256",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "ADD",
"source": 0
},
{
"begin": 993,
"end": 999,
"name": "SLOAD",
"source": 0
},
{
"begin": 993,
"end": 1002,
"name": "EQ",
"source": 0
},
{
"begin": 986,
"end": 1003,
"name": "PUSH [tag]",
"source": 0,
"value": "64"
},
{
"begin": 986,
"end": 1003,
"name": "JUMPI",
"source": 0
},
{
"begin": 986,
"end": 1003,
"name": "PUSH [tag]",
"source": 0,
"value": "65"
},
{
"begin": 986,
"end": 1003,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 986,
"end": 1003,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 986,
"end": 1003,
"name": "tag",
"source": 0,
"value": "65"
},
{
"begin": 986,
"end": 1003,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 986,
"end": 1003,
"name": "tag",
"source": 0,
"value": "64"
},
{
"begin": 986,
"end": 1003,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1029,
"end": 1030,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 1021,
"end": 1024,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1025,
"end": 1026,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1021,
"end": 1027,
"name": "DUP2",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "SLOAD",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "DUP2",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "LT",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "PUSH [tag]",
"source": 0,
"value": "66"
},
{
"begin": 1021,
"end": 1027,
"name": "JUMPI",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "PUSH [tag]",
"source": 0,
"value": "67"
},
{
"begin": 1021,
"end": 1027,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1021,
"end": 1027,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1021,
"end": 1027,
"name": "tag",
"source": 0,
"value": "67"
},
{
"begin": 1021,
"end": 1027,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "tag",
"source": 0,
"value": "66"
},
{
"begin": 1021,
"end": 1027,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "SWAP1",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1021,
"end": 1027,
"name": "MSTORE",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1021,
"end": 1027,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1021,
"end": 1027,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "ADD",
"source": 0
},
{
"begin": 1021,
"end": 1027,
"name": "SLOAD",
"source": 0
},
{
"begin": 1021,
"end": 1030,
"name": "EQ",
"source": 0
},
{
"begin": 1014,
"end": 1031,
"name": "PUSH [tag]",
"source": 0,
"value": "69"
},
{
"begin": 1014,
"end": 1031,
"name": "JUMPI",
"source": 0
},
{
"begin": 1014,
"end": 1031,
"name": "PUSH [tag]",
"source": 0,
"value": "70"
},
{
"begin": 1014,
"end": 1031,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 1014,
"end": 1031,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1014,
"end": 1031,
"name": "tag",
"source": 0,
"value": "70"
},
{
"begin": 1014,
"end": 1031,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1014,
"end": 1031,
"name": "tag",
"source": 0,
"value": "69"
},
{
"begin": 1014,
"end": 1031,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 818,
"end": 1041,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "43"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "KECCAK256",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "71"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "MUL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "72"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "GT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "73"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "FF"
},
{
"begin": -1,
"end": -1,
"name": "AND",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "72"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "73"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "71"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "74"
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "75"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "74"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "75"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "76"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "GT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "77"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "76"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "77"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[out]"
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "79"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 1
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "tag",
"source": 1,
"value": "81"
},
{
"begin": 334,
"end": 411,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 371,
"end": 378,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 400,
"end": 405,
"name": "DUP2",
"source": 1
},
{
"begin": 389,
"end": 405,
"name": "SWAP1",
"source": 1
},
{
"begin": 389,
"end": 405,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "SWAP2",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "SWAP1",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 417,
"end": 539,
"name": "tag",
"source": 1,
"value": "82"
},
{
"begin": 417,
"end": 539,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "95"
},
{
"begin": 508,
"end": 513,
"name": "DUP2",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 490,
"end": 514,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 490,
"end": 514,
"name": "tag",
"source": 1,
"value": "95"
},
{
"begin": 490,
"end": 514,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 483,
"end": 488,
"name": "DUP2",
"source": 1
},
{
"begin": 480,
"end": 515,
"name": "EQ",
"source": 1
},
{
"begin": 470,
"end": 533,
"name": "PUSH [tag]",
"source": 1,
"value": "96"
},
{
"begin": 470,
"end": 533,
"name": "JUMPI",
"source": 1
},
{
"begin": 529,
"end": 530,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 526,
"end": 527,
"name": "DUP1",
"source": 1
},
{
"begin": 519,
"end": 531,
"name": "REVERT",
"source": 1
},
{
"begin": 470,
"end": 533,
"name": "tag",
"source": 1,
"value": "96"
},
{
"begin": 470,
"end": 533,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 417,
"end": 539,
"name": "POP",
"source": 1
},
{
"begin": 417,
"end": 539,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 545,
"end": 684,
"name": "tag",
"source": 1,
"value": "83"
},
{
"begin": 545,
"end": 684,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 591,
"end": 596,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 629,
"end": 635,
"name": "DUP2",
"source": 1
},
{
"begin": 616,
"end": 636,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 607,
"end": 636,
"name": "SWAP1",
"source": 1
},
{
"begin": 607,
"end": 636,
"name": "POP",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "PUSH [tag]",
"source": 1,
"value": "98"
},
{
"begin": 672,
"end": 677,
"name": "DUP2",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "PUSH [tag]",
"source": 1,
"value": "82"
},
{
"begin": 645,
"end": 678,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 645,
"end": 678,
"name": "tag",
"source": 1,
"value": "98"
},
{
"begin": 645,
"end": 678,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "SWAP3",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "SWAP2",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "POP",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "POP",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 690,
"end": 1019,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 690,
"end": 1019,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 749,
"end": 755,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 798,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 786,
"end": 795,
"name": "DUP3",
"source": 1
},
{
"begin": 777,
"end": 784,
"name": "DUP5",
"source": 1
},
{
"begin": 773,
"end": 796,
"name": "SUB",
"source": 1
},
{
"begin": 769,
"end": 801,
"name": "SLT",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "ISZERO",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "PUSH [tag]",
"source": 1,
"value": "100"
},
{
"begin": 766,
"end": 885,
"name": "JUMPI",
"source": 1
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "101"
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 804,
"end": 883,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 804,
"end": 883,
"name": "tag",
"source": 1,
"value": "101"
},
{
"begin": 804,
"end": 883,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "tag",
"source": 1,
"value": "100"
},
{
"begin": 766,
"end": 885,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 924,
"end": 925,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 949,
"end": 1002,
"name": "PUSH [tag]",
"source": 1,
"value": "102"
},
{
"begin": 994,
"end": 1001,
"name": "DUP5",
"source": 1
},
{
"begin": 985,
"end": 991,
"name": "DUP3",
"source": 1
},
{
"begin": 974,
"end": 983,
"name": "DUP6",
"source": 1
},
{
"begin": 970,
"end": 992,
"name": "ADD",
"source": 1
},
{
"begin": 949,
"end": 1002,
"name": "PUSH [tag]",
"source": 1,
"value": "83"
},
{
"begin": 949,
"end": 1002,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 949,
"end": 1002,
"name": "tag",
"source": 1,
"value": "102"
},
{
"begin": 949,
"end": 1002,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 939,
"end": 1002,
"name": "SWAP2",
"source": 1
},
{
"begin": 939,
"end": 1002,
"name": "POP",
"source": 1
},
{
"begin": 895,
"end": 1012,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "SWAP3",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "SWAP2",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1025,
"end": 1143,
"name": "tag",
"source": 1,
"value": "84"
},
{
"begin": 1025,
"end": 1143,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1112,
"end": 1136,
"name": "PUSH [tag]",
"source": 1,
"value": "104"
},
{
"begin": 1130,
"end": 1135,
"name": "DUP2",
"source": 1
},
{
"begin": 1112,
"end": 1136,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 1112,
"end": 1136,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1112,
"end": 1136,
"name": "tag",
"source": 1,
"value": "104"
},
{
"begin": 1112,
"end": 1136,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1107,
"end": 1110,
"name": "DUP3",
"source": 1
},
{
"begin": 1100,
"end": 1137,
"name": "MSTORE",
"source": 1
},
{
"begin": 1025,
"end": 1143,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1143,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1143,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1149,
"end": 1371,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 1149,
"end": 1371,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1242,
"end": 1246,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1280,
"end": 1282,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1269,
"end": 1278,
"name": "DUP3",
"source": 1
},
{
"begin": 1265,
"end": 1283,
"name": "ADD",
"source": 1
},
{
"begin": 1257,
"end": 1283,
"name": "SWAP1",
"source": 1
},
{
"begin": 1257,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 1293,
"end": 1364,
"name": "PUSH [tag]",
"source": 1,
"value": "106"
},
{
"begin": 1361,
"end": 1362,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1350,
"end": 1359,
"name": "DUP4",
"source": 1
},
{
"begin": 1346,
"end": 1363,
"name": "ADD",
"source": 1
},
{
"begin": 1337,
"end": 1343,
"name": "DUP5",
"source": 1
},
{
"begin": 1293,
"end": 1364,
"name": "PUSH [tag]",
"source": 1,
"value": "84"
},
{
"begin": 1293,
"end": 1364,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1293,
"end": 1364,
"name": "tag",
"source": 1,
"value": "106"
},
{
"begin": 1293,
"end": 1364,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "SWAP3",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "SWAP2",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1149,
"end": 1371,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1377,
"end": 1546,
"name": "tag",
"source": 1,
"value": "85"
},
{
"begin": 1377,
"end": 1546,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1461,
"end": 1472,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1495,
"end": 1501,
"name": "DUP3",
"source": 1
},
{
"begin": 1490,
"end": 1493,
"name": "DUP3",
"source": 1
},
{
"begin": 1483,
"end": 1502,
"name": "MSTORE",
"source": 1
},
{
"begin": 1535,
"end": 1539,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1530,
"end": 1533,
"name": "DUP3",
"source": 1
},
{
"begin": 1526,
"end": 1540,
"name": "ADD",
"source": 1
},
{
"begin": 1511,
"end": 1540,
"name": "SWAP1",
"source": 1
},
{
"begin": 1511,
"end": 1540,
"name": "POP",
"source": 1
},
{
"begin": 1377,
"end": 1546,
"name": "SWAP3",
"source": 1
},
{
"begin": 1377,
"end": 1546,
"name": "SWAP2",
"source": 1
},
{
"begin": 1377,
"end": 1546,
"name": "POP",
"source": 1
},
{
"begin": 1377,
"end": 1546,
"name": "POP",
"source": 1
},
{
"begin": 1377,
"end": 1546,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1552,
"end": 1714,
"name": "tag",
"source": 1,
"value": "86"
},
{
"begin": 1552,
"end": 1714,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1692,
"end": 1706,
"name": "PUSH",
"source": 1,
"value": "6F7574206F6620626F6E64730000000000000000000000000000000000000000"
},
{
"begin": 1688,
"end": 1689,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1680,
"end": 1686,
"name": "DUP3",
"source": 1
},
{
"begin": 1676,
"end": 1690,
"name": "ADD",
"source": 1
},
{
"begin": 1669,
"end": 1707,
"name": "MSTORE",
"source": 1
},
{
"begin": 1552,
"end": 1714,
"name": "POP",
"source": 1
},
{
"begin": 1552,
"end": 1714,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1720,
"end": 2086,
"name": "tag",
"source": 1,
"value": "87"
},
{
"begin": 1720,
"end": 2086,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1862,
"end": 1865,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1883,
"end": 1950,
"name": "PUSH [tag]",
"source": 1,
"value": "110"
},
{
"begin": 1947,
"end": 1949,
"name": "PUSH",
"source": 1,
"value": "C"
},
{
"begin": 1942,
"end": 1945,
"name": "DUP4",
"source": 1
},
{
"begin": 1883,
"end": 1950,
"name": "PUSH [tag]",
"source": 1,
"value": "85"
},
{
"begin": 1883,
"end": 1950,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1883,
"end": 1950,
"name": "tag",
"source": 1,
"value": "110"
},
{
"begin": 1883,
"end": 1950,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1876,
"end": 1950,
"name": "SWAP2",
"source": 1
},
{
"begin": 1876,
"end": 1950,
"name": "POP",
"source": 1
},
{
"begin": 1959,
"end": 2052,
"name": "PUSH [tag]",
"source": 1,
"value": "111"
},
{
"begin": 2048,
"end": 2051,
"name": "DUP3",
"source": 1
},
{
"begin": 1959,
"end": 2052,
"name": "PUSH [tag]",
"source": 1,
"value": "86"
},
{
"begin": 1959,
"end": 2052,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1959,
"end": 2052,
"name": "tag",
"source": 1,
"value": "111"
},
{
"begin": 1959,
"end": 2052,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2077,
"end": 2079,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2072,
"end": 2075,
"name": "DUP3",
"source": 1
},
{
"begin": 2068,
"end": 2080,
"name": "ADD",
"source": 1
},
{
"begin": 2061,
"end": 2080,
"name": "SWAP1",
"source": 1
},
{
"begin": 2061,
"end": 2080,
"name": "POP",
"source": 1
},
{
"begin": 1720,
"end": 2086,
"name": "SWAP2",
"source": 1
},
{
"begin": 1720,
"end": 2086,
"name": "SWAP1",
"source": 1
},
{
"begin": 1720,
"end": 2086,
"name": "POP",
"source": 1
},
{
"begin": 1720,
"end": 2086,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2092,
"end": 2511,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 2092,
"end": 2511,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2258,
"end": 2262,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2296,
"end": 2298,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2285,
"end": 2294,
"name": "DUP3",
"source": 1
},
{
"begin": 2281,
"end": 2299,
"name": "ADD",
"source": 1
},
{
"begin": 2273,
"end": 2299,
"name": "SWAP1",
"source": 1
},
{
"begin": 2273,
"end": 2299,
"name": "POP",
"source": 1
},
{
"begin": 2345,
"end": 2354,
"name": "DUP2",
"source": 1
},
{
"begin": 2339,
"end": 2343,
"name": "DUP2",
"source": 1
},
{
"begin": 2335,
"end": 2355,
"name": "SUB",
"source": 1
},
{
"begin": 2331,
"end": 2332,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2320,
"end": 2329,
"name": "DUP4",
"source": 1
},
{
"begin": 2316,
"end": 2333,
"name": "ADD",
"source": 1
},
{
"begin": 2309,
"end": 2356,
"name": "MSTORE",
"source": 1
},
{
"begin": 2373,
"end": 2504,
"name": "PUSH [tag]",
"source": 1,
"value": "113"
},
{
"begin": 2499,
"end": 2503,
"name": "DUP2",
"source": 1
},
{
"begin": 2373,
"end": 2504,
"name": "PUSH [tag]",
"source": 1,
"value": "87"
},
{
"begin": 2373,
"end": 2504,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2373,
"end": 2504,
"name": "tag",
"source": 1,
"value": "113"
},
{
"begin": 2373,
"end": 2504,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2365,
"end": 2504,
"name": "SWAP1",
"source": 1
},
{
"begin": 2365,
"end": 2504,
"name": "POP",
"source": 1
},
{
"begin": 2092,
"end": 2511,
"name": "SWAP2",
"source": 1
},
{
"begin": 2092,
"end": 2511,
"name": "SWAP1",
"source": 1
},
{
"begin": 2092,
"end": 2511,
"name": "POP",
"source": 1
},
{
"begin": 2092,
"end": 2511,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2517,
"end": 2697,
"name": "tag",
"source": 1,
"value": "88"
},
{
"begin": 2517,
"end": 2697,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2565,
"end": 2642,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 2562,
"end": 2563,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2555,
"end": 2643,
"name": "MSTORE",
"source": 1
},
{
"begin": 2662,
"end": 2666,
"name": "PUSH",
"source": 1,
"value": "11"
},
{
"begin": 2659,
"end": 2660,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 2652,
"end": 2667,
"name": "MSTORE",
"source": 1
},
{
"begin": 2686,
"end": 2690,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 2683,
"end": 2684,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2676,
"end": 2691,
"name": "REVERT",
"source": 1
},
{
"begin": 2703,
"end": 3008,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 2703,
"end": 3008,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2743,
"end": 2746,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2762,
"end": 2782,
"name": "PUSH [tag]",
"source": 1,
"value": "116"
},
{
"begin": 2780,
"end": 2781,
"name": "DUP3",
"source": 1
},
{
"begin": 2762,
"end": 2782,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 2762,
"end": 2782,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2762,
"end": 2782,
"name": "tag",
"source": 1,
"value": "116"
},
{
"begin": 2762,
"end": 2782,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2757,
"end": 2782,
"name": "SWAP2",
"source": 1
},
{
"begin": 2757,
"end": 2782,
"name": "POP",
"source": 1
},
{
"begin": 2796,
"end": 2816,
"name": "PUSH [tag]",
"source": 1,
"value": "117"
},
{
"begin": 2814,
"end": 2815,
"name": "DUP4",
"source": 1
},
{
"begin": 2796,
"end": 2816,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 2796,
"end": 2816,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2796,
"end": 2816,
"name": "tag",
"source": 1,
"value": "117"
},
{
"begin": 2796,
"end": 2816,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2791,
"end": 2816,
"name": "SWAP3",
"source": 1
},
{
"begin": 2791,
"end": 2816,
"name": "POP",
"source": 1
},
{
"begin": 2950,
"end": 2951,
"name": "DUP3",
"source": 1
},
{
"begin": 2882,
"end": 2948,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2878,
"end": 2952,
"name": "SUB",
"source": 1
},
{
"begin": 2875,
"end": 2876,
"name": "DUP3",
"source": 1
},
{
"begin": 2872,
"end": 2953,
"name": "GT",
"source": 1
},
{
"begin": 2869,
"end": 2976,
"name": "ISZERO",
"source": 1
},
{
"begin": 2869,
"end": 2976,
"name": "PUSH [tag]",
"source": 1,
"value": "118"
},
{
"begin": 2869,
"end": 2976,
"name": "JUMPI",
"source": 1
},
{
"begin": 2956,
"end": 2974,
"name": "PUSH [tag]",
"source": 1,
"value": "119"
},
{
"begin": 2956,
"end": 2974,
"name": "PUSH [tag]",
"source": 1,
"value": "88"
},
{
"begin": 2956,
"end": 2974,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2956,
"end": 2974,
"name": "tag",
"source": 1,
"value": "119"
},
{
"begin": 2956,
"end": 2974,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2869,
"end": 2976,
"name": "tag",
"source": 1,
"value": "118"
},
{
"begin": 2869,
"end": 2976,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3000,
"end": 3001,
"name": "DUP3",
"source": 1
},
{
"begin": 2997,
"end": 2998,
"name": "DUP3",
"source": 1
},
{
"begin": 2993,
"end": 3002,
"name": "ADD",
"source": 1
},
{
"begin": 2986,
"end": 3002,
"name": "SWAP1",
"source": 1
},
{
"begin": 2986,
"end": 3002,
"name": "POP",
"source": 1
},
{
"begin": 2703,
"end": 3008,
"name": "SWAP3",
"source": 1
},
{
"begin": 2703,
"end": 3008,
"name": "SWAP2",
"source": 1
},
{
"begin": 2703,
"end": 3008,
"name": "POP",
"source": 1
},
{
"begin": 2703,
"end": 3008,
"name": "POP",
"source": 1
},
{
"begin": 2703,
"end": 3008,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3014,
"end": 3194,
"name": "tag",
"source": 1,
"value": "28"
},
{
"begin": 3014,
"end": 3194,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3062,
"end": 3139,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3059,
"end": 3060,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3052,
"end": 3140,
"name": "MSTORE",
"source": 1
},
{
"begin": 3159,
"end": 3163,
"name": "PUSH",
"source": 1,
"value": "32"
},
{
"begin": 3156,
"end": 3157,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3149,
"end": 3164,
"name": "MSTORE",
"source": 1
},
{
"begin": 3183,
"end": 3187,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3180,
"end": 3181,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3173,
"end": 3188,
"name": "REVERT",
"source": 1
},
{
"begin": 3200,
"end": 3433,
"name": "tag",
"source": 1,
"value": "34"
},
{
"begin": 3200,
"end": 3433,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3239,
"end": 3242,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3262,
"end": 3286,
"name": "PUSH [tag]",
"source": 1,
"value": "122"
},
{
"begin": 3280,
"end": 3285,
"name": "DUP3",
"source": 1
},
{
"begin": 3262,
"end": 3286,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 3262,
"end": 3286,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3262,
"end": 3286,
"name": "tag",
"source": 1,
"value": "122"
},
{
"begin": 3262,
"end": 3286,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3253,
"end": 3286,
"name": "SWAP2",
"source": 1
},
{
"begin": 3253,
"end": 3286,
"name": "POP",
"source": 1
},
{
"begin": 3308,
"end": 3374,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3301,
"end": 3306,
"name": "DUP3",
"source": 1
},
{
"begin": 3298,
"end": 3375,
"name": "SUB",
"source": 1
},
{
"begin": 3295,
"end": 3398,
"name": "PUSH [tag]",
"source": 1,
"value": "123"
},
{
"begin": 3295,
"end": 3398,
"name": "JUMPI",
"source": 1
},
{
"begin": 3378,
"end": 3396,
"name": "PUSH [tag]",
"source": 1,
"value": "124"
},
{
"begin": 3378,
"end": 3396,
"name": "PUSH [tag]",
"source": 1,
"value": "88"
},
{
"begin": 3378,
"end": 3396,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3378,
"end": 3396,
"name": "tag",
"source": 1,
"value": "124"
},
{
"begin": 3378,
"end": 3396,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3295,
"end": 3398,
"name": "tag",
"source": 1,
"value": "123"
},
{
"begin": 3295,
"end": 3398,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3425,
"end": 3426,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 3418,
"end": 3423,
"name": "DUP3",
"source": 1
},
{
"begin": 3414,
"end": 3427,
"name": "ADD",
"source": 1
},
{
"begin": 3407,
"end": 3427,
"name": "SWAP1",
"source": 1
},
{
"begin": 3407,
"end": 3427,
"name": "POP",
"source": 1
},
{
"begin": 3200,
"end": 3433,
"name": "SWAP2",
"source": 1
},
{
"begin": 3200,
"end": 3433,
"name": "SWAP1",
"source": 1
},
{
"begin": 3200,
"end": 3433,
"name": "POP",
"source": 1
},
{
"begin": 3200,
"end": 3433,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3439,
"end": 3619,
"name": "tag",
"source": 1,
"value": "37"
},
{
"begin": 3439,
"end": 3619,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3487,
"end": 3564,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3484,
"end": 3485,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3477,
"end": 3565,
"name": "MSTORE",
"source": 1
},
{
"begin": 3584,
"end": 3588,
"name": "PUSH",
"source": 1,
"value": "31"
},
{
"begin": 3581,
"end": 3582,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3574,
"end": 3589,
"name": "MSTORE",
"source": 1
},
{
"begin": 3608,
"end": 3612,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3605,
"end": 3606,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3598,
"end": 3613,
"name": "REVERT",
"source": 1
},
{
"begin": 3625,
"end": 3805,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 3625,
"end": 3805,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3673,
"end": 3750,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3670,
"end": 3671,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3663,
"end": 3751,
"name": "MSTORE",
"source": 1
},
{
"begin": 3770,
"end": 3774,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 3767,
"end": 3768,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3760,
"end": 3775,
"name": "MSTORE",
"source": 1
},
{
"begin": 3794,
"end": 3798,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3791,
"end": 3792,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3784,
"end": 3799,
"name": "REVERT",
"source": 1
}
]
}
}
},
"methodIdentifiers": {
"arr(uint256)": "71e5ee5f",
"remove(uint256)": "4cc82215",
"test()": "f8a8fd6d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"arr\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_index\",\"type\":\"uint256\"}],\"name\":\"remove\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"test\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/study.sol\":\"AdvanceArray\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/study.sol\":{\"keccak256\":\"0x94f451f9ff4bf83799036d7b0bddb9a4d2fc74f42f8d1667d74337db13650615\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d74842f99b2848c0e5fcb0ad02c6e9051d3e787a8f85e42dc4a4f23d0066fc9c\",\"dweb:/ipfs/QmQKMs35bVHwBEDgCUhxZVXu7NpqKzn6sJLLvpUcd28f1b\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"Array": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "arr",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "example",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "get",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "e",
"type": "uint256"
}
],
"name": "push",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "remove",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "size",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/study.sol\":61:528 contract Array{... */\n mstore(0x40, 0x80)\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n /* \"contracts/study.sol\":105:106 1 */\n 0x01\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":107:108 2 */\n 0x02\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n 0x20\n add\n /* \"contracts/study.sol\":109:110 3 */\n 0x03\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n 0xff\n and\n dup2\n mstore\n pop\n 0x00\n swap1\n 0x03\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"contracts/study.sol\":61:528 contract Array{... */\n callvalue\n dup1\n iszero\n tag_3\n jumpi\n 0x00\n dup1\n revert\ntag_3:\n pop\n jump(tag_4)\ntag_2:\n dup3\n dup1\n sload\n dup3\n dup3\n sstore\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n dup2\n add\n swap3\n dup3\n iszero\n tag_5\n jumpi\n swap2\n 0x20\n mul\n dup3\n add\ntag_6:\n dup3\n dup2\n gt\n iszero\n tag_7\n jumpi\n dup3\n mload\n dup3\n swap1\n 0xff\n and\n swap1\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_6)\ntag_7:\ntag_5:\n pop\n swap1\n pop\n tag_8\n swap2\n swap1\n tag_9\n jump\t// in\ntag_8:\n pop\n swap1\n jump\t// out\ntag_9:\ntag_10:\n dup1\n dup3\n gt\n iszero\n tag_11\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_10)\ntag_11:\n pop\n swap1\n jump\t// out\ntag_4:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/study.sol\":61:528 contract Array{... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x4cc82215\n eq\n tag_3\n jumpi\n dup1\n 0x54353f2f\n eq\n tag_4\n jumpi\n dup1\n 0x71e5ee5f\n eq\n tag_5\n jumpi\n dup1\n 0x949d225d\n eq\n tag_6\n jumpi\n dup1\n 0x9507d39a\n eq\n tag_7\n jumpi\n dup1\n 0x959ac484\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/study.sol\":369:439 function remove(uint index) public{... */\n tag_3:\n tag_9\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n tag_12\n jump\t// in\n tag_9:\n stop\n /* \"contracts/study.sol\":120:199 function example() public {... */\n tag_4:\n tag_13\n tag_14\n jump\t// in\n tag_13:\n stop\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n tag_5:\n tag_15\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_16\n swap2\n swap1\n tag_11\n jump\t// in\n tag_16:\n tag_17\n jump\t// in\n tag_15:\n mload(0x40)\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\n tag_18:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/study.sol\":447:525 function size() public view returns (uint){... */\n tag_6:\n tag_20\n tag_21\n jump\t// in\n tag_20:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_19\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/study.sol\":274:361 function get(uint index) public view returns (uint){... */\n tag_7:\n tag_23\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_24\n swap2\n swap1\n tag_11\n jump\t// in\n tag_24:\n tag_25\n jump\t// in\n tag_23:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_19\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/study.sol\":207:266 function push(uint e) public {... */\n tag_8:\n tag_27\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_28\n swap2\n swap1\n tag_11\n jump\t// in\n tag_28:\n tag_29\n jump\t// in\n tag_27:\n stop\n /* \"contracts/study.sol\":369:439 function remove(uint index) public{... */\n tag_12:\n /* \"contracts/study.sol\":421:424 arr */\n 0x00\n /* \"contracts/study.sol\":425:430 index */\n dup2\n /* \"contracts/study.sol\":421:431 arr[index] */\n dup2\n sload\n dup2\n lt\n tag_31\n jumpi\n tag_32\n tag_33\n jump\t// in\n tag_32:\n tag_31:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n /* \"contracts/study.sol\":414:431 delete arr[index] */\n 0x00\n swap1\n sstore\n /* \"contracts/study.sol\":369:439 function remove(uint index) public{... */\n pop\n jump\t// out\n /* \"contracts/study.sol\":120:199 function example() public {... */\n tag_14:\n jump\t// out\n /* \"contracts/study.sol\":84:111 uint[] public arr = [1,2,3] */\n tag_17:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_36\n jumpi\n 0x00\n dup1\n revert\n tag_36:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"contracts/study.sol\":447:525 function size() public view returns (uint){... */\n tag_21:\n /* \"contracts/study.sol\":484:488 uint */\n 0x00\n /* \"contracts/study.sol\":507:510 arr */\n dup1\n /* \"contracts/study.sol\":507:517 arr.length */\n dup1\n sload\n swap1\n pop\n /* \"contracts/study.sol\":500:517 return arr.length */\n swap1\n pop\n /* \"contracts/study.sol\":447:525 function size() public view returns (uint){... */\n swap1\n jump\t// out\n /* \"contracts/study.sol\":274:361 function get(uint index) public view returns (uint){... */\n tag_25:\n /* \"contracts/study.sol\":320:324 uint */\n 0x00\n /* \"contracts/study.sol\":343:346 arr */\n dup1\n /* \"contracts/study.sol\":347:352 index */\n dup3\n /* \"contracts/study.sol\":343:353 arr[index] */\n dup2\n sload\n dup2\n lt\n tag_40\n jumpi\n tag_41\n tag_33\n jump\t// in\n tag_41:\n tag_40:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n sload\n /* \"contracts/study.sol\":336:353 return arr[index] */\n swap1\n pop\n /* \"contracts/study.sol\":274:361 function get(uint index) public view returns (uint){... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/study.sol\":207:266 function push(uint e) public {... */\n tag_29:\n /* \"contracts/study.sol\":247:250 arr */\n 0x00\n /* \"contracts/study.sol\":256:257 e */\n dup2\n /* \"contracts/study.sol\":247:258 arr.push(e) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n sstore\n /* \"contracts/study.sol\":207:266 function push(uint e) public {... */\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_46:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:411 */\n tag_48:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":400:405 */\n dup2\n /* \"#utility.yul\":389:405 */\n swap1\n pop\n /* \"#utility.yul\":334:411 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":417:539 */\n tag_49:\n /* \"#utility.yul\":490:514 */\n tag_58\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_48\n jump\t// in\n tag_58:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_59\n jumpi\n /* \"#utility.yul\":529:530 */\n 0x00\n /* \"#utility.yul\":526:527 */\n dup1\n /* \"#utility.yul\":519:531 */\n revert\n /* \"#utility.yul\":470:533 */\n tag_59:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_50:\n /* \"#utility.yul\":591:596 */\n 0x00\n /* \"#utility.yul\":629:635 */\n dup2\n /* \"#utility.yul\":616:636 */\n calldataload\n /* \"#utility.yul\":607:636 */\n swap1\n pop\n /* \"#utility.yul\":645:678 */\n tag_61\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_49\n jump\t// in\n tag_61:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_11:\n /* \"#utility.yul\":749:755 */\n 0x00\n /* \"#utility.yul\":798:800 */\n 0x20\n /* \"#utility.yul\":786:795 */\n dup3\n /* \"#utility.yul\":777:784 */\n dup5\n /* \"#utility.yul\":773:796 */\n sub\n /* \"#utility.yul\":769:801 */\n slt\n /* \"#utility.yul\":766:885 */\n iszero\n tag_63\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_64\n tag_46\n jump\t// in\n tag_64:\n /* \"#utility.yul\":766:885 */\n tag_63:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_65\n /* \"#utility.yul\":994:1001 */\n dup5\n /* \"#utility.yul\":985:991 */\n dup3\n /* \"#utility.yul\":974:983 */\n dup6\n /* \"#utility.yul\":970:992 */\n add\n /* \"#utility.yul\":949:1002 */\n tag_50\n jump\t// in\n tag_65:\n /* \"#utility.yul\":939:1002 */\n swap2\n pop\n /* \"#utility.yul\":895:1012 */\n pop\n /* \"#utility.yul\":690:1019 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1025:1143 */\n tag_51:\n /* \"#utility.yul\":1112:1136 */\n tag_67\n /* \"#utility.yul\":1130:1135 */\n dup2\n /* \"#utility.yul\":1112:1136 */\n tag_48\n jump\t// in\n tag_67:\n /* \"#utility.yul\":1107:1110 */\n dup3\n /* \"#utility.yul\":1100:1137 */\n mstore\n /* \"#utility.yul\":1025:1143 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1149:1371 */\n tag_19:\n /* \"#utility.yul\":1242:1246 */\n 0x00\n /* \"#utility.yul\":1280:1282 */\n 0x20\n /* \"#utility.yul\":1269:1278 */\n dup3\n /* \"#utility.yul\":1265:1283 */\n add\n /* \"#utility.yul\":1257:1283 */\n swap1\n pop\n /* \"#utility.yul\":1293:1364 */\n tag_69\n /* \"#utility.yul\":1361:1362 */\n 0x00\n /* \"#utility.yul\":1350:1359 */\n dup4\n /* \"#utility.yul\":1346:1363 */\n add\n /* \"#utility.yul\":1337:1343 */\n dup5\n /* \"#utility.yul\":1293:1364 */\n tag_51\n jump\t// in\n tag_69:\n /* \"#utility.yul\":1149:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1557 */\n tag_33:\n /* \"#utility.yul\":1425:1502 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1422:1423 */\n 0x00\n /* \"#utility.yul\":1415:1503 */\n mstore\n /* \"#utility.yul\":1522:1526 */\n 0x32\n /* \"#utility.yul\":1519:1520 */\n 0x04\n /* \"#utility.yul\":1512:1527 */\n mstore\n /* \"#utility.yul\":1546:1550 */\n 0x24\n /* \"#utility.yul\":1543:1544 */\n 0x00\n /* \"#utility.yul\":1536:1551 */\n revert\n\n auxdata: 0xa2646970667358221220805037f882416eb2693bc3e8478da18f27d7560589f247017f168e77c8ff3f3c64736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526040518060600160405280600160ff168152602001600260ff168152602001600360ff16815250600090600361003b92919061004e565b5034801561004857600080fd5b506100bd565b82805482825590600052602060002090810192821561008f579160200282015b8281111561008e578251829060ff1690559160200191906001019061006e565b5b50905061009c91906100a0565b5090565b5b808211156100b95760008160009055506001016100a1565b5090565b6102c8806100cc6000396000f3fe608060405234801561001057600080fd5b50600436106100625760003560e01c80634cc822151461006757806354353f2f1461008357806371e5ee5f1461008d578063949d225d146100bd5780639507d39a146100db578063959ac4841461010b575b600080fd5b610081600480360381019061007c919061020c565b610127565b005b61008b61014c565b005b6100a760048036038101906100a2919061020c565b61014e565b6040516100b49190610248565b60405180910390f35b6100c5610172565b6040516100d29190610248565b60405180910390f35b6100f560048036038101906100f0919061020c565b61017e565b6040516101029190610248565b60405180910390f35b6101256004803603810190610120919061020c565b6101a5565b005b6000818154811061013b5761013a610263565b5b906000526020600020016000905550565b565b6000818154811061015e57600080fd5b906000526020600020016000915090505481565b60008080549050905090565b600080828154811061019357610192610263565b5b90600052602060002001549050919050565b600081908060018154018082558091505060019003906000526020600020016000909190919091505550565b600080fd5b6000819050919050565b6101e9816101d6565b81146101f457600080fd5b50565b600081359050610206816101e0565b92915050565b600060208284031215610222576102216101d1565b5b6000610230848285016101f7565b91505092915050565b610242816101d6565b82525050565b600060208201905061025d6000830184610239565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220805037f882416eb2693bc3e8478da18f27d7560589f247017f168e77c8ff3f3c64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0xFF AND DUP2 MSTORE POP PUSH1 0x0 SWAP1 PUSH1 0x3 PUSH2 0x3B SWAP3 SWAP2 SWAP1 PUSH2 0x4E JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x48 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x8F JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x8E JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH1 0xFF AND SWAP1 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x6E JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x9C SWAP2 SWAP1 PUSH2 0xA0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0xB9 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0xA1 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x2C8 DUP1 PUSH2 0xCC 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 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x9507D39A EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x959AC484 EQ PUSH2 0x10B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x127 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8B PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x14E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0x172 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x17E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x102 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x13B JUMPI PUSH2 0x13A PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x15E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x193 JUMPI PUSH2 0x192 PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E9 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP2 EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x206 DUP2 PUSH2 0x1E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x222 JUMPI PUSH2 0x221 PUSH2 0x1D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x230 DUP5 DUP3 DUP6 ADD PUSH2 0x1F7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x242 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x25D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x239 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP1 POP CALLDATACOPY 0xF8 DUP3 COINBASE PUSH15 0xB2693BC3E8478DA18F27D7560589F2 SELFBALANCE ADD PUSH32 0x168E77C8FF3F3C64736F6C634300080D00330000000000000000000000000000 ",
"sourceMap": "61:467:0:-:0;;;84:27;;;;;;;;105:1;84:27;;;;;;107:1;84:27;;;;;;109:1;84:27;;;;;;;;;;;;;:::i;:::-;;61:467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@arr_8": {
"entryPoint": 334,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
},
"@example_12": {
"entryPoint": 332,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@get_36": {
"entryPoint": 382,
"id": 36,
"parameterSlots": 1,
"returnSlots": 1
},
"@push_24": {
"entryPoint": 421,
"id": 24,
"parameterSlots": 1,
"returnSlots": 0
},
"@remove_47": {
"entryPoint": 295,
"id": 47,
"parameterSlots": 1,
"returnSlots": 0
},
"@size_56": {
"entryPoint": 370,
"id": 56,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 503,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 524,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 569,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 584,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 470,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 611,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 465,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 480,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1560:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1090:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1130:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1112:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1112:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1100:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1100:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1078:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1085:3:1",
"type": ""
}
],
"src": "1025:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1247:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1269:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1265:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1350:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1293:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1293:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1293:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1219:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1231:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1242:4:1",
"type": ""
}
],
"src": "1149:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1405:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1422:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1425:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1415:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1415:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1415:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1519:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1522:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1512:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1512:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1512:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1543:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1546:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1536:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1536:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1536:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "1377:180:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\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_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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 panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100625760003560e01c80634cc822151461006757806354353f2f1461008357806371e5ee5f1461008d578063949d225d146100bd5780639507d39a146100db578063959ac4841461010b575b600080fd5b610081600480360381019061007c919061020c565b610127565b005b61008b61014c565b005b6100a760048036038101906100a2919061020c565b61014e565b6040516100b49190610248565b60405180910390f35b6100c5610172565b6040516100d29190610248565b60405180910390f35b6100f560048036038101906100f0919061020c565b61017e565b6040516101029190610248565b60405180910390f35b6101256004803603810190610120919061020c565b6101a5565b005b6000818154811061013b5761013a610263565b5b906000526020600020016000905550565b565b6000818154811061015e57600080fd5b906000526020600020016000915090505481565b60008080549050905090565b600080828154811061019357610192610263565b5b90600052602060002001549050919050565b600081908060018154018082558091505060019003906000526020600020016000909190919091505550565b600080fd5b6000819050919050565b6101e9816101d6565b81146101f457600080fd5b50565b600081359050610206816101e0565b92915050565b600060208284031215610222576102216101d1565b5b6000610230848285016101f7565b91505092915050565b610242816101d6565b82525050565b600060208201905061025d6000830184610239565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220805037f882416eb2693bc3e8478da18f27d7560589f247017f168e77c8ff3f3c64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x62 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4CC82215 EQ PUSH2 0x67 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x83 JUMPI DUP1 PUSH4 0x71E5EE5F EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0xBD JUMPI DUP1 PUSH4 0x9507D39A EQ PUSH2 0xDB JUMPI DUP1 PUSH4 0x959AC484 EQ PUSH2 0x10B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x81 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7C SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x127 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x8B PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x14E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC5 PUSH2 0x172 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xF5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x17E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x102 SWAP2 SWAP1 PUSH2 0x248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x125 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x120 SWAP2 SWAP1 PUSH2 0x20C JUMP JUMPDEST PUSH2 0x1A5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x13B JUMPI PUSH2 0x13A PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE POP JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x15E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x193 JUMPI PUSH2 0x192 PUSH2 0x263 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E9 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP2 EQ PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x206 DUP2 PUSH2 0x1E0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x222 JUMPI PUSH2 0x221 PUSH2 0x1D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x230 DUP5 DUP3 DUP6 ADD PUSH2 0x1F7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x242 DUP2 PUSH2 0x1D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x25D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x239 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP1 POP CALLDATACOPY 0xF8 DUP3 COINBASE PUSH15 0xB2693BC3E8478DA18F27D7560589F2 SELFBALANCE ADD PUSH32 0x168E77C8FF3F3C64736F6C634300080D00330000000000000000000000000000 ",
"sourceMap": "61:467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;369:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;120:79;;;:::i;:::-;;84:27;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;447:78;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;274:87;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;207:59;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;369:70;421:3;425:5;421:10;;;;;;;;:::i;:::-;;;;;;;;;414:17;;;369:70;:::o;120:79::-;:::o;84:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;447:78::-;484:4;507:3;:10;;;;500:17;;447:78;:::o;274:87::-;320:4;343:3;347:5;343:10;;;;;;;;:::i;:::-;;;;;;;;;;336:17;;274:87;;;:::o;207:59::-;247:3;256:1;247:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;207:59;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:222::-;1242:4;1280:2;1269:9;1265:18;1257:26;;1293:71;1361:1;1350:9;1346:17;1337:6;1293:71;:::i;:::-;1149:222;;;;:::o;1377:180::-;1425:77;1422:1;1415:88;1522:4;1519:1;1512:15;1546:4;1543:1;1536:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "142400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"arr(uint256)": "infinite",
"example()": "144",
"get(uint256)": "infinite",
"push(uint256)": "46917",
"remove(uint256)": "7573",
"size()": "2489"
}
},
"legacyAssembly": {
".code": [
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 61,
"end": 528,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 105,
"end": 106,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 111,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 107,
"end": 108,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 111,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 109,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 84,
"end": 111,
"name": "AND",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "MSTORE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "POP",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 84,
"end": 111,
"name": "SWAP3",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "REVERT",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 528,
"name": "JUMP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SLOAD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SSTORE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "MSTORE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "KECCAK256",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP2",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 61,
"end": 528,
"name": "MUL",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP2",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "GT",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "MLOAD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 61,
"end": 528,
"name": "AND",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SSTORE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 61,
"end": 528,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 528,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 61,
"end": 528,
"name": "JUMP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 61,
"end": 528,
"name": "SWAP2",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 61,
"end": 528,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP3",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "GT",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "DUP2",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SSTORE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 528,
"name": "ADD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 61,
"end": 528,
"name": "JUMP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "SWAP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "CODECOPY",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220805037f882416eb2693bc3e8478da18f27d7560589f247017f168e77c8ff3f3c64736f6c634300080d0033",
".code": [
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 61,
"end": 528,
"name": "MSTORE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "ISZERO",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "REVERT",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "POP",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 528,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "LT",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 61,
"end": 528,
"name": "SHR",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "4CC82215"
},
{
"begin": 61,
"end": 528,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "54353F2F"
},
{
"begin": 61,
"end": 528,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "71E5EE5F"
},
{
"begin": 61,
"end": 528,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "949D225D"
},
{
"begin": 61,
"end": 528,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "9507D39A"
},
{
"begin": 61,
"end": 528,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "959AC484"
},
{
"begin": 61,
"end": 528,
"name": "EQ",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 61,
"end": 528,
"name": "JUMPI",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 61,
"end": 528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 61,
"end": 528,
"name": "DUP1",
"source": 0
},
{
"begin": 61,
"end": 528,
"name": "REVERT",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 369,
"end": 439,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 369,
"end": 439,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 369,
"end": 439,
"name": "DUP1",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "SUB",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "DUP2",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 369,
"end": 439,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 369,
"end": 439,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 369,
"end": 439,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 369,
"end": 439,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 369,
"end": 439,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 369,
"end": 439,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 369,
"end": 439,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 369,
"end": 439,
"name": "STOP",
"source": 0
},
{
"begin": 120,
"end": 199,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 120,
"end": 199,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 120,
"end": 199,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 120,
"end": 199,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 120,
"end": 199,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 120,
"end": 199,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 120,
"end": 199,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 120,
"end": 199,
"name": "STOP",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SUB",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "ADD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 84,
"end": 111,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 84,
"end": 111,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 84,
"end": 111,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 84,
"end": 111,
"name": "MLOAD",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "DUP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP2",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SUB",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "SWAP1",
"source": 0
},
{
"begin": 84,
"end": 111,
"name": "RETURN",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 447,
"end": 525,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 447,
"end": 525,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 447,
"end": 525,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 447,
"end": 525,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 447,
"end": 525,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 447,
"end": 525,
"name": "MLOAD",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 447,
"end": 525,
"name": "SWAP2",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "SWAP1",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 447,
"end": 525,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 447,
"end": 525,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 447,
"end": 525,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 447,
"end": 525,
"name": "MLOAD",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "DUP1",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "SWAP2",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "SUB",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "SWAP1",
"source": 0
},
{
"begin": 447,
"end": 525,
"name": "RETURN",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 274,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 274,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 274,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "SUB",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "DUP2",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "ADD",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 274,
"end": 361,
"name": "SWAP2",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 274,
"end": 361,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 274,
"end": 361,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 274,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 274,
"end": 361,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 274,
"end": 361,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 274,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 274,
"end": 361,
"name": "MLOAD",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 274,
"end": 361,
"name": "SWAP2",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 274,
"end": 361,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 274,
"end": 361,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 274,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 274,
"end": 361,
"name": "MLOAD",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "SWAP2",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "SUB",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 274,
"end": 361,
"name": "RETURN",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 207,
"end": 266,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 207,
"end": 266,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 207,
"end": 266,
"name": "DUP1",
"source": 0
},
{
"begin": 207,
"end": 266,
"name": "CALLDATASIZE",
"source": 0
},
{
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment