Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tezeoffor/8fb4f34c2fc0cd0833db96fe5dde9599 to your computer and use it in GitHub Desktop.
Save tezeoffor/8fb4f34c2fc0cd0833db96fe5dde9599 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads for the very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
contract NewJob {
Job[] public jobs;
uint256 public jobCount;
struct Job {
string _jobOwner;
string _contractName;
string _description;
// uint _budget;
}
function addJob(string memory _jobOwner, string memory _contractName, string memory _description ) public {
jobs.push(Job(_jobOwner, _contractName, _description ));
jobCount += 1;
}
}
{
"id": "0ba204768acfd9f15922a706da09c168",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/4_NewJob.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.7.0 <0.9.0;\n\ncontract NewJob {\n\n Job[] public jobs;\n\n struct Job {\n string _jobOwner;\n string _contractName;\n string _description;\n // uint _budget;\n }\n\n function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {\n jobs.push(Job(_jobOwner, _contractName, _description ));\n }\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/4_NewJob.sol": {
"NewJob": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"name": "addJob",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "jobs",
"outputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/4_NewJob.sol\":70:433 contract NewJob {... */\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/4_NewJob.sol\":70:433 contract NewJob {... */\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 0x180aedf3\n eq\n tag_3\n jumpi\n dup1\n 0x28f76943\n eq\n tag_4\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/4_NewJob.sol\":93:110 Job[] public jobs */\n tag_3:\n tag_5\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_6\n swap2\n swap1\n tag_7\n jump\t// in\n tag_6:\n tag_8\n jump\t// in\n tag_5:\n mload(0x40)\n tag_9\n swap4\n swap3\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/4_NewJob.sol\":250:431 function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {... */\n tag_4:\n tag_11\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\n tag_12:\n tag_14\n jump\t// in\n tag_11:\n stop\n /* \"contracts/4_NewJob.sol\":93:110 Job[] public jobs */\n tag_8:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_15\n jumpi\n 0x00\n dup1\n revert\n tag_15:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x03\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n dup1\n sload\n tag_17\n swap1\n tag_18\n jump\t// in\n tag_17:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_19\n swap1\n tag_18\n jump\t// in\n tag_19:\n dup1\n iszero\n tag_20\n jumpi\n dup1\n 0x1f\n lt\n tag_21\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_20)\n tag_21:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_22:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_22\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_20:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x01\n add\n dup1\n sload\n tag_23\n swap1\n tag_18\n jump\t// in\n tag_23:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_24\n swap1\n tag_18\n jump\t// in\n tag_24:\n dup1\n iszero\n tag_25\n jumpi\n dup1\n 0x1f\n lt\n tag_26\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_25)\n tag_26:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_27:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_27\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_25:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x02\n add\n dup1\n sload\n tag_28\n swap1\n tag_18\n jump\t// in\n tag_28:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_29\n swap1\n tag_18\n jump\t// in\n tag_29:\n dup1\n iszero\n tag_30\n jumpi\n dup1\n 0x1f\n lt\n tag_31\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_30)\n tag_31:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_32:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_32\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_30:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup4\n jump\t// out\n /* \"contracts/4_NewJob.sol\":250:431 function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {... */\n tag_14:\n /* \"contracts/4_NewJob.sol\":369:373 jobs */\n 0x00\n /* \"contracts/4_NewJob.sol\":379:423 Job(_jobOwner, _contractName, _description ) */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n /* \"contracts/4_NewJob.sol\":383:392 _jobOwner */\n dup6\n /* \"contracts/4_NewJob.sol\":379:423 Job(_jobOwner, _contractName, _description ) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/4_NewJob.sol\":394:407 _contractName */\n dup5\n /* \"contracts/4_NewJob.sol\":379:423 Job(_jobOwner, _contractName, _description ) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/4_NewJob.sol\":409:421 _description */\n dup4\n /* \"contracts/4_NewJob.sol\":379:423 Job(_jobOwner, _contractName, _description ) */\n dup2\n mstore\n pop\n /* \"contracts/4_NewJob.sol\":369:424 jobs.push(Job(_jobOwner, _contractName, _description )) */\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 swap1\n 0x03\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_35\n swap3\n swap2\n swap1\n tag_36\n jump\t// in\n tag_35:\n pop\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_37\n swap3\n swap2\n swap1\n tag_36\n jump\t// in\n tag_37:\n pop\n 0x40\n dup3\n add\n mload\n dup2\n 0x02\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_38\n swap3\n swap2\n swap1\n tag_36\n jump\t// in\n tag_38:\n pop\n pop\n pop\n /* \"contracts/4_NewJob.sol\":250:431 function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {... */\n pop\n pop\n pop\n jump\t// out\n tag_36:\n dup3\n dup1\n sload\n tag_39\n swap1\n tag_18\n jump\t// in\n tag_39:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_41\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_40)\n tag_41:\n dup3\n 0x1f\n lt\n tag_42\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_40)\n tag_42:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_40\n jumpi\n swap2\n dup3\n add\n tag_43:\n dup3\n dup2\n gt\n iszero\n tag_44\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_43)\n tag_44:\n tag_40:\n pop\n swap1\n pop\n tag_45\n swap2\n swap1\n tag_46\n jump\t// in\n tag_45:\n pop\n swap1\n jump\t// out\n tag_46:\n tag_47:\n dup1\n dup3\n gt\n iszero\n tag_48\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_47)\n tag_48:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:419 */\n tag_50:\n /* \"#utility.yul\":85:90 */\n 0x00\n /* \"#utility.yul\":110:176 */\n tag_52\n /* \"#utility.yul\":126:175 */\n tag_53\n /* \"#utility.yul\":168:174 */\n dup5\n /* \"#utility.yul\":126:175 */\n tag_54\n jump\t// in\n tag_53:\n /* \"#utility.yul\":110:176 */\n tag_55\n jump\t// in\n tag_52:\n /* \"#utility.yul\":101:176 */\n swap1\n pop\n /* \"#utility.yul\":199:205 */\n dup3\n /* \"#utility.yul\":192:197 */\n dup2\n /* \"#utility.yul\":185:206 */\n mstore\n /* \"#utility.yul\":237:241 */\n 0x20\n /* \"#utility.yul\":230:235 */\n dup2\n /* \"#utility.yul\":226:242 */\n add\n /* \"#utility.yul\":275:278 */\n dup5\n /* \"#utility.yul\":266:272 */\n dup5\n /* \"#utility.yul\":261:264 */\n dup5\n /* \"#utility.yul\":257:273 */\n add\n /* \"#utility.yul\":254:279 */\n gt\n /* \"#utility.yul\":251:363 */\n iszero\n tag_56\n jumpi\n /* \"#utility.yul\":282:361 */\n tag_57\n tag_58\n jump\t// in\n tag_57:\n /* \"#utility.yul\":251:363 */\n tag_56:\n /* \"#utility.yul\":372:413 */\n tag_59\n /* \"#utility.yul\":406:412 */\n dup5\n /* \"#utility.yul\":401:404 */\n dup3\n /* \"#utility.yul\":396:399 */\n dup6\n /* \"#utility.yul\":372:413 */\n tag_60\n jump\t// in\n tag_59:\n /* \"#utility.yul\":91:419 */\n pop\n /* \"#utility.yul\":7:419 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":439:779 */\n tag_61:\n /* \"#utility.yul\":495:500 */\n 0x00\n /* \"#utility.yul\":544:547 */\n dup3\n /* \"#utility.yul\":537:541 */\n 0x1f\n /* \"#utility.yul\":529:535 */\n dup4\n /* \"#utility.yul\":525:542 */\n add\n /* \"#utility.yul\":521:548 */\n slt\n /* \"#utility.yul\":511:633 */\n tag_63\n jumpi\n /* \"#utility.yul\":552:631 */\n tag_64\n tag_65\n jump\t// in\n tag_64:\n /* \"#utility.yul\":511:633 */\n tag_63:\n /* \"#utility.yul\":669:675 */\n dup2\n /* \"#utility.yul\":656:676 */\n calldataload\n /* \"#utility.yul\":694:773 */\n tag_66\n /* \"#utility.yul\":769:772 */\n dup5\n /* \"#utility.yul\":761:767 */\n dup3\n /* \"#utility.yul\":754:758 */\n 0x20\n /* \"#utility.yul\":746:752 */\n dup7\n /* \"#utility.yul\":742:759 */\n add\n /* \"#utility.yul\":694:773 */\n tag_50\n jump\t// in\n tag_66:\n /* \"#utility.yul\":685:773 */\n swap2\n pop\n /* \"#utility.yul\":501:779 */\n pop\n /* \"#utility.yul\":439:779 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":785:924 */\n tag_67:\n /* \"#utility.yul\":831:836 */\n 0x00\n /* \"#utility.yul\":869:875 */\n dup2\n /* \"#utility.yul\":856:876 */\n calldataload\n /* \"#utility.yul\":847:876 */\n swap1\n pop\n /* \"#utility.yul\":885:918 */\n tag_69\n /* \"#utility.yul\":912:917 */\n dup2\n /* \"#utility.yul\":885:918 */\n tag_70\n jump\t// in\n tag_69:\n /* \"#utility.yul\":785:924 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":930:2089 */\n tag_13:\n /* \"#utility.yul\":1037:1043 */\n 0x00\n /* \"#utility.yul\":1045:1051 */\n dup1\n /* \"#utility.yul\":1053:1059 */\n 0x00\n /* \"#utility.yul\":1102:1104 */\n 0x60\n /* \"#utility.yul\":1090:1099 */\n dup5\n /* \"#utility.yul\":1081:1088 */\n dup7\n /* \"#utility.yul\":1077:1100 */\n sub\n /* \"#utility.yul\":1073:1105 */\n slt\n /* \"#utility.yul\":1070:1189 */\n iszero\n tag_72\n jumpi\n /* \"#utility.yul\":1108:1187 */\n tag_73\n tag_74\n jump\t// in\n tag_73:\n /* \"#utility.yul\":1070:1189 */\n tag_72:\n /* \"#utility.yul\":1256:1257 */\n 0x00\n /* \"#utility.yul\":1245:1254 */\n dup5\n /* \"#utility.yul\":1241:1258 */\n add\n /* \"#utility.yul\":1228:1259 */\n calldataload\n /* \"#utility.yul\":1286:1304 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1278:1284 */\n dup2\n /* \"#utility.yul\":1275:1305 */\n gt\n /* \"#utility.yul\":1272:1389 */\n iszero\n tag_75\n jumpi\n /* \"#utility.yul\":1308:1387 */\n tag_76\n tag_77\n jump\t// in\n tag_76:\n /* \"#utility.yul\":1272:1389 */\n tag_75:\n /* \"#utility.yul\":1413:1476 */\n tag_78\n /* \"#utility.yul\":1468:1475 */\n dup7\n /* \"#utility.yul\":1459:1465 */\n dup3\n /* \"#utility.yul\":1448:1457 */\n dup8\n /* \"#utility.yul\":1444:1466 */\n add\n /* \"#utility.yul\":1413:1476 */\n tag_61\n jump\t// in\n tag_78:\n /* \"#utility.yul\":1403:1476 */\n swap4\n pop\n /* \"#utility.yul\":1199:1486 */\n pop\n /* \"#utility.yul\":1553:1555 */\n 0x20\n /* \"#utility.yul\":1542:1551 */\n dup5\n /* \"#utility.yul\":1538:1556 */\n add\n /* \"#utility.yul\":1525:1557 */\n calldataload\n /* \"#utility.yul\":1584:1602 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1576:1582 */\n dup2\n /* \"#utility.yul\":1573:1603 */\n gt\n /* \"#utility.yul\":1570:1687 */\n iszero\n tag_79\n jumpi\n /* \"#utility.yul\":1606:1685 */\n tag_80\n tag_77\n jump\t// in\n tag_80:\n /* \"#utility.yul\":1570:1687 */\n tag_79:\n /* \"#utility.yul\":1711:1774 */\n tag_81\n /* \"#utility.yul\":1766:1773 */\n dup7\n /* \"#utility.yul\":1757:1763 */\n dup3\n /* \"#utility.yul\":1746:1755 */\n dup8\n /* \"#utility.yul\":1742:1764 */\n add\n /* \"#utility.yul\":1711:1774 */\n tag_61\n jump\t// in\n tag_81:\n /* \"#utility.yul\":1701:1774 */\n swap3\n pop\n /* \"#utility.yul\":1496:1784 */\n pop\n /* \"#utility.yul\":1851:1853 */\n 0x40\n /* \"#utility.yul\":1840:1849 */\n dup5\n /* \"#utility.yul\":1836:1854 */\n add\n /* \"#utility.yul\":1823:1855 */\n calldataload\n /* \"#utility.yul\":1882:1900 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1874:1880 */\n dup2\n /* \"#utility.yul\":1871:1901 */\n gt\n /* \"#utility.yul\":1868:1985 */\n iszero\n tag_82\n jumpi\n /* \"#utility.yul\":1904:1983 */\n tag_83\n tag_77\n jump\t// in\n tag_83:\n /* \"#utility.yul\":1868:1985 */\n tag_82:\n /* \"#utility.yul\":2009:2072 */\n tag_84\n /* \"#utility.yul\":2064:2071 */\n dup7\n /* \"#utility.yul\":2055:2061 */\n dup3\n /* \"#utility.yul\":2044:2053 */\n dup8\n /* \"#utility.yul\":2040:2062 */\n add\n /* \"#utility.yul\":2009:2072 */\n tag_61\n jump\t// in\n tag_84:\n /* \"#utility.yul\":1999:2072 */\n swap2\n pop\n /* \"#utility.yul\":1794:2082 */\n pop\n /* \"#utility.yul\":930:2089 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":2095:2424 */\n tag_7:\n /* \"#utility.yul\":2154:2160 */\n 0x00\n /* \"#utility.yul\":2203:2205 */\n 0x20\n /* \"#utility.yul\":2191:2200 */\n dup3\n /* \"#utility.yul\":2182:2189 */\n dup5\n /* \"#utility.yul\":2178:2201 */\n sub\n /* \"#utility.yul\":2174:2206 */\n slt\n /* \"#utility.yul\":2171:2290 */\n iszero\n tag_86\n jumpi\n /* \"#utility.yul\":2209:2288 */\n tag_87\n tag_74\n jump\t// in\n tag_87:\n /* \"#utility.yul\":2171:2290 */\n tag_86:\n /* \"#utility.yul\":2329:2330 */\n 0x00\n /* \"#utility.yul\":2354:2407 */\n tag_88\n /* \"#utility.yul\":2399:2406 */\n dup5\n /* \"#utility.yul\":2390:2396 */\n dup3\n /* \"#utility.yul\":2379:2388 */\n dup6\n /* \"#utility.yul\":2375:2397 */\n add\n /* \"#utility.yul\":2354:2407 */\n tag_67\n jump\t// in\n tag_88:\n /* \"#utility.yul\":2344:2407 */\n swap2\n pop\n /* \"#utility.yul\":2300:2417 */\n pop\n /* \"#utility.yul\":2095:2424 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2430:2794 */\n tag_89:\n /* \"#utility.yul\":2518:2521 */\n 0x00\n /* \"#utility.yul\":2546:2585 */\n tag_91\n /* \"#utility.yul\":2579:2584 */\n dup3\n /* \"#utility.yul\":2546:2585 */\n tag_92\n jump\t// in\n tag_91:\n /* \"#utility.yul\":2601:2672 */\n tag_93\n /* \"#utility.yul\":2665:2671 */\n dup2\n /* \"#utility.yul\":2660:2663 */\n dup6\n /* \"#utility.yul\":2601:2672 */\n tag_94\n jump\t// in\n tag_93:\n /* \"#utility.yul\":2594:2672 */\n swap4\n pop\n /* \"#utility.yul\":2681:2733 */\n tag_95\n /* \"#utility.yul\":2726:2732 */\n dup2\n /* \"#utility.yul\":2721:2724 */\n dup6\n /* \"#utility.yul\":2714:2718 */\n 0x20\n /* \"#utility.yul\":2707:2712 */\n dup7\n /* \"#utility.yul\":2703:2719 */\n add\n /* \"#utility.yul\":2681:2733 */\n tag_96\n jump\t// in\n tag_95:\n /* \"#utility.yul\":2758:2787 */\n tag_97\n /* \"#utility.yul\":2780:2786 */\n dup2\n /* \"#utility.yul\":2758:2787 */\n tag_98\n jump\t// in\n tag_97:\n /* \"#utility.yul\":2753:2756 */\n dup5\n /* \"#utility.yul\":2749:2788 */\n add\n /* \"#utility.yul\":2742:2788 */\n swap2\n pop\n /* \"#utility.yul\":2522:2794 */\n pop\n /* \"#utility.yul\":2430:2794 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2800:3515 */\n tag_10:\n /* \"#utility.yul\":3009:3013 */\n 0x00\n /* \"#utility.yul\":3047:3049 */\n 0x60\n /* \"#utility.yul\":3036:3045 */\n dup3\n /* \"#utility.yul\":3032:3050 */\n add\n /* \"#utility.yul\":3024:3050 */\n swap1\n pop\n /* \"#utility.yul\":3096:3105 */\n dup2\n /* \"#utility.yul\":3090:3094 */\n dup2\n /* \"#utility.yul\":3086:3106 */\n sub\n /* \"#utility.yul\":3082:3083 */\n 0x00\n /* \"#utility.yul\":3071:3080 */\n dup4\n /* \"#utility.yul\":3067:3084 */\n add\n /* \"#utility.yul\":3060:3107 */\n mstore\n /* \"#utility.yul\":3124:3202 */\n tag_100\n /* \"#utility.yul\":3197:3201 */\n dup2\n /* \"#utility.yul\":3188:3194 */\n dup7\n /* \"#utility.yul\":3124:3202 */\n tag_89\n jump\t// in\n tag_100:\n /* \"#utility.yul\":3116:3202 */\n swap1\n pop\n /* \"#utility.yul\":3249:3258 */\n dup2\n /* \"#utility.yul\":3243:3247 */\n dup2\n /* \"#utility.yul\":3239:3259 */\n sub\n /* \"#utility.yul\":3234:3236 */\n 0x20\n /* \"#utility.yul\":3223:3232 */\n dup4\n /* \"#utility.yul\":3219:3237 */\n add\n /* \"#utility.yul\":3212:3260 */\n mstore\n /* \"#utility.yul\":3277:3355 */\n tag_101\n /* \"#utility.yul\":3350:3354 */\n dup2\n /* \"#utility.yul\":3341:3347 */\n dup6\n /* \"#utility.yul\":3277:3355 */\n tag_89\n jump\t// in\n tag_101:\n /* \"#utility.yul\":3269:3355 */\n swap1\n pop\n /* \"#utility.yul\":3402:3411 */\n dup2\n /* \"#utility.yul\":3396:3400 */\n dup2\n /* \"#utility.yul\":3392:3412 */\n sub\n /* \"#utility.yul\":3387:3389 */\n 0x40\n /* \"#utility.yul\":3376:3385 */\n dup4\n /* \"#utility.yul\":3372:3390 */\n add\n /* \"#utility.yul\":3365:3413 */\n mstore\n /* \"#utility.yul\":3430:3508 */\n tag_102\n /* \"#utility.yul\":3503:3507 */\n dup2\n /* \"#utility.yul\":3494:3500 */\n dup5\n /* \"#utility.yul\":3430:3508 */\n tag_89\n jump\t// in\n tag_102:\n /* \"#utility.yul\":3422:3508 */\n swap1\n pop\n /* \"#utility.yul\":2800:3515 */\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3521:3650 */\n tag_55:\n /* \"#utility.yul\":3555:3561 */\n 0x00\n /* \"#utility.yul\":3582:3602 */\n tag_104\n tag_105\n jump\t// in\n tag_104:\n /* \"#utility.yul\":3572:3602 */\n swap1\n pop\n /* \"#utility.yul\":3611:3644 */\n tag_106\n /* \"#utility.yul\":3639:3643 */\n dup3\n /* \"#utility.yul\":3631:3637 */\n dup3\n /* \"#utility.yul\":3611:3644 */\n tag_107\n jump\t// in\n tag_106:\n /* \"#utility.yul\":3521:3650 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3656:3731 */\n tag_105:\n /* \"#utility.yul\":3689:3695 */\n 0x00\n /* \"#utility.yul\":3722:3724 */\n 0x40\n /* \"#utility.yul\":3716:3725 */\n mload\n /* \"#utility.yul\":3706:3725 */\n swap1\n pop\n /* \"#utility.yul\":3656:3731 */\n swap1\n jump\t// out\n /* \"#utility.yul\":3737:4045 */\n tag_54:\n /* \"#utility.yul\":3799:3803 */\n 0x00\n /* \"#utility.yul\":3889:3907 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3881:3887 */\n dup3\n /* \"#utility.yul\":3878:3908 */\n gt\n /* \"#utility.yul\":3875:3931 */\n iszero\n tag_110\n jumpi\n /* \"#utility.yul\":3911:3929 */\n tag_111\n tag_112\n jump\t// in\n tag_111:\n /* \"#utility.yul\":3875:3931 */\n tag_110:\n /* \"#utility.yul\":3949:3978 */\n tag_113\n /* \"#utility.yul\":3971:3977 */\n dup3\n /* \"#utility.yul\":3949:3978 */\n tag_98\n jump\t// in\n tag_113:\n /* \"#utility.yul\":3941:3978 */\n swap1\n pop\n /* \"#utility.yul\":4033:4037 */\n 0x20\n /* \"#utility.yul\":4027:4031 */\n dup2\n /* \"#utility.yul\":4023:4038 */\n add\n /* \"#utility.yul\":4015:4038 */\n swap1\n pop\n /* \"#utility.yul\":3737:4045 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4051:4150 */\n tag_92:\n /* \"#utility.yul\":4103:4109 */\n 0x00\n /* \"#utility.yul\":4137:4142 */\n dup2\n /* \"#utility.yul\":4131:4143 */\n mload\n /* \"#utility.yul\":4121:4143 */\n swap1\n pop\n /* \"#utility.yul\":4051:4150 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4156:4325 */\n tag_94:\n /* \"#utility.yul\":4240:4251 */\n 0x00\n /* \"#utility.yul\":4274:4280 */\n dup3\n /* \"#utility.yul\":4269:4272 */\n dup3\n /* \"#utility.yul\":4262:4281 */\n mstore\n /* \"#utility.yul\":4314:4318 */\n 0x20\n /* \"#utility.yul\":4309:4312 */\n dup3\n /* \"#utility.yul\":4305:4319 */\n add\n /* \"#utility.yul\":4290:4319 */\n swap1\n pop\n /* \"#utility.yul\":4156:4325 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4331:4408 */\n tag_116:\n /* \"#utility.yul\":4368:4375 */\n 0x00\n /* \"#utility.yul\":4397:4402 */\n dup2\n /* \"#utility.yul\":4386:4402 */\n swap1\n pop\n /* \"#utility.yul\":4331:4408 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4414:4568 */\n tag_60:\n /* \"#utility.yul\":4498:4504 */\n dup3\n /* \"#utility.yul\":4493:4496 */\n dup2\n /* \"#utility.yul\":4488:4491 */\n dup4\n /* \"#utility.yul\":4475:4505 */\n calldatacopy\n /* \"#utility.yul\":4560:4561 */\n 0x00\n /* \"#utility.yul\":4551:4557 */\n dup4\n /* \"#utility.yul\":4546:4549 */\n dup4\n /* \"#utility.yul\":4542:4558 */\n add\n /* \"#utility.yul\":4535:4562 */\n mstore\n /* \"#utility.yul\":4414:4568 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4574:4881 */\n tag_96:\n /* \"#utility.yul\":4642:4643 */\n 0x00\n /* \"#utility.yul\":4652:4765 */\n tag_120:\n /* \"#utility.yul\":4666:4672 */\n dup4\n /* \"#utility.yul\":4663:4664 */\n dup2\n /* \"#utility.yul\":4660:4673 */\n lt\n /* \"#utility.yul\":4652:4765 */\n iszero\n tag_122\n jumpi\n /* \"#utility.yul\":4751:4752 */\n dup1\n /* \"#utility.yul\":4746:4749 */\n dup3\n /* \"#utility.yul\":4742:4753 */\n add\n /* \"#utility.yul\":4736:4754 */\n mload\n /* \"#utility.yul\":4732:4733 */\n dup2\n /* \"#utility.yul\":4727:4730 */\n dup5\n /* \"#utility.yul\":4723:4734 */\n add\n /* \"#utility.yul\":4716:4755 */\n mstore\n /* \"#utility.yul\":4688:4690 */\n 0x20\n /* \"#utility.yul\":4685:4686 */\n dup2\n /* \"#utility.yul\":4681:4691 */\n add\n /* \"#utility.yul\":4676:4691 */\n swap1\n pop\n /* \"#utility.yul\":4652:4765 */\n jump(tag_120)\n tag_122:\n /* \"#utility.yul\":4783:4789 */\n dup4\n /* \"#utility.yul\":4780:4781 */\n dup2\n /* \"#utility.yul\":4777:4790 */\n gt\n /* \"#utility.yul\":4774:4875 */\n iszero\n tag_123\n jumpi\n /* \"#utility.yul\":4863:4864 */\n 0x00\n /* \"#utility.yul\":4854:4860 */\n dup5\n /* \"#utility.yul\":4849:4852 */\n dup5\n /* \"#utility.yul\":4845:4861 */\n add\n /* \"#utility.yul\":4838:4865 */\n mstore\n /* \"#utility.yul\":4774:4875 */\n tag_123:\n /* \"#utility.yul\":4623:4881 */\n pop\n /* \"#utility.yul\":4574:4881 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4887:5207 */\n tag_18:\n /* \"#utility.yul\":4931:4937 */\n 0x00\n /* \"#utility.yul\":4968:4969 */\n 0x02\n /* \"#utility.yul\":4962:4966 */\n dup3\n /* \"#utility.yul\":4958:4970 */\n div\n /* \"#utility.yul\":4948:4970 */\n swap1\n pop\n /* \"#utility.yul\":5015:5016 */\n 0x01\n /* \"#utility.yul\":5009:5013 */\n dup3\n /* \"#utility.yul\":5005:5017 */\n and\n /* \"#utility.yul\":5036:5054 */\n dup1\n /* \"#utility.yul\":5026:5107 */\n tag_125\n jumpi\n /* \"#utility.yul\":5092:5096 */\n 0x7f\n /* \"#utility.yul\":5084:5090 */\n dup3\n /* \"#utility.yul\":5080:5097 */\n and\n /* \"#utility.yul\":5070:5097 */\n swap2\n pop\n /* \"#utility.yul\":5026:5107 */\n tag_125:\n /* \"#utility.yul\":5154:5156 */\n 0x20\n /* \"#utility.yul\":5146:5152 */\n dup3\n /* \"#utility.yul\":5143:5157 */\n lt\n /* \"#utility.yul\":5123:5141 */\n dup2\n /* \"#utility.yul\":5120:5158 */\n eq\n /* \"#utility.yul\":5117:5201 */\n iszero\n tag_126\n jumpi\n /* \"#utility.yul\":5173:5191 */\n tag_127\n tag_128\n jump\t// in\n tag_127:\n /* \"#utility.yul\":5117:5201 */\n tag_126:\n /* \"#utility.yul\":4938:5207 */\n pop\n /* \"#utility.yul\":4887:5207 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5213:5494 */\n tag_107:\n /* \"#utility.yul\":5296:5323 */\n tag_130\n /* \"#utility.yul\":5318:5322 */\n dup3\n /* \"#utility.yul\":5296:5323 */\n tag_98\n jump\t// in\n tag_130:\n /* \"#utility.yul\":5288:5294 */\n dup2\n /* \"#utility.yul\":5284:5324 */\n add\n /* \"#utility.yul\":5426:5432 */\n dup2\n /* \"#utility.yul\":5414:5424 */\n dup2\n /* \"#utility.yul\":5411:5433 */\n lt\n /* \"#utility.yul\":5390:5408 */\n 0xffffffffffffffff\n /* \"#utility.yul\":5378:5388 */\n dup3\n /* \"#utility.yul\":5375:5409 */\n gt\n /* \"#utility.yul\":5372:5434 */\n or\n /* \"#utility.yul\":5369:5457 */\n iszero\n tag_131\n jumpi\n /* \"#utility.yul\":5437:5455 */\n tag_132\n tag_112\n jump\t// in\n tag_132:\n /* \"#utility.yul\":5369:5457 */\n tag_131:\n /* \"#utility.yul\":5477:5487 */\n dup1\n /* \"#utility.yul\":5473:5475 */\n 0x40\n /* \"#utility.yul\":5466:5488 */\n mstore\n /* \"#utility.yul\":5256:5494 */\n pop\n /* \"#utility.yul\":5213:5494 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5500:5680 */\n tag_128:\n /* \"#utility.yul\":5548:5625 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5545:5546 */\n 0x00\n /* \"#utility.yul\":5538:5626 */\n mstore\n /* \"#utility.yul\":5645:5649 */\n 0x22\n /* \"#utility.yul\":5642:5643 */\n 0x04\n /* \"#utility.yul\":5635:5650 */\n mstore\n /* \"#utility.yul\":5669:5673 */\n 0x24\n /* \"#utility.yul\":5666:5667 */\n 0x00\n /* \"#utility.yul\":5659:5674 */\n revert\n /* \"#utility.yul\":5686:5866 */\n tag_112:\n /* \"#utility.yul\":5734:5811 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5731:5732 */\n 0x00\n /* \"#utility.yul\":5724:5812 */\n mstore\n /* \"#utility.yul\":5831:5835 */\n 0x41\n /* \"#utility.yul\":5828:5829 */\n 0x04\n /* \"#utility.yul\":5821:5836 */\n mstore\n /* \"#utility.yul\":5855:5859 */\n 0x24\n /* \"#utility.yul\":5852:5853 */\n 0x00\n /* \"#utility.yul\":5845:5860 */\n revert\n /* \"#utility.yul\":5872:5989 */\n tag_65:\n /* \"#utility.yul\":5981:5982 */\n 0x00\n /* \"#utility.yul\":5978:5979 */\n dup1\n /* \"#utility.yul\":5971:5983 */\n revert\n /* \"#utility.yul\":5995:6112 */\n tag_58:\n /* \"#utility.yul\":6104:6105 */\n 0x00\n /* \"#utility.yul\":6101:6102 */\n dup1\n /* \"#utility.yul\":6094:6106 */\n revert\n /* \"#utility.yul\":6118:6235 */\n tag_77:\n /* \"#utility.yul\":6227:6228 */\n 0x00\n /* \"#utility.yul\":6224:6225 */\n dup1\n /* \"#utility.yul\":6217:6229 */\n revert\n /* \"#utility.yul\":6241:6358 */\n tag_74:\n /* \"#utility.yul\":6350:6351 */\n 0x00\n /* \"#utility.yul\":6347:6348 */\n dup1\n /* \"#utility.yul\":6340:6352 */\n revert\n /* \"#utility.yul\":6364:6466 */\n tag_98:\n /* \"#utility.yul\":6405:6411 */\n 0x00\n /* \"#utility.yul\":6456:6458 */\n 0x1f\n /* \"#utility.yul\":6452:6459 */\n not\n /* \"#utility.yul\":6447:6449 */\n 0x1f\n /* \"#utility.yul\":6440:6445 */\n dup4\n /* \"#utility.yul\":6436:6450 */\n add\n /* \"#utility.yul\":6432:6460 */\n and\n /* \"#utility.yul\":6422:6460 */\n swap1\n pop\n /* \"#utility.yul\":6364:6466 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6472:6594 */\n tag_70:\n /* \"#utility.yul\":6545:6569 */\n tag_141\n /* \"#utility.yul\":6563:6568 */\n dup2\n /* \"#utility.yul\":6545:6569 */\n tag_116\n jump\t// in\n tag_141:\n /* \"#utility.yul\":6538:6543 */\n dup2\n /* \"#utility.yul\":6535:6570 */\n eq\n /* \"#utility.yul\":6525:6588 */\n tag_142\n jumpi\n /* \"#utility.yul\":6584:6585 */\n 0x00\n /* \"#utility.yul\":6581:6582 */\n dup1\n /* \"#utility.yul\":6574:6586 */\n revert\n /* \"#utility.yul\":6525:6588 */\n tag_142:\n /* \"#utility.yul\":6472:6594 */\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122096b2820cf8a3c4f279265a0bceb3360580f8fefde80037096372026c193cdc4f64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610771806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063180aedf31461003b57806328f769431461006d575b600080fd5b610055600480360381019061005091906104ce565b610089565b60405161006493929190610534565b60405180910390f35b61008760048036038101906100829190610427565b61025b565b005b6000818154811061009957600080fd5b90600052602060002090600302016000915090508060000180546100bc9061063e565b80601f01602080910402602001604051908101604052809291908181526020018280546100e89061063e565b80156101355780601f1061010a57610100808354040283529160200191610135565b820191906000526020600020905b81548152906001019060200180831161011857829003601f168201915b50505050509080600101805461014a9061063e565b80601f01602080910402602001604051908101604052809291908181526020018280546101769061063e565b80156101c35780601f10610198576101008083540402835291602001916101c3565b820191906000526020600020905b8154815290600101906020018083116101a657829003601f168201915b5050505050908060020180546101d89061063e565b80601f01602080910402602001604051908101604052809291908181526020018280546102049061063e565b80156102515780601f1061022657610100808354040283529160200191610251565b820191906000526020600020905b81548152906001019060200180831161023457829003601f168201915b5050505050905083565b6000604051806060016040528085815260200184815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906102bd9291906102ff565b5060208201518160010190805190602001906102da9291906102ff565b5060408201518160020190805190602001906102f79291906102ff565b505050505050565b82805461030b9061063e565b90600052602060002090601f01602090048101928261032d5760008555610374565b82601f1061034657805160ff1916838001178555610374565b82800160010185558215610374579182015b82811115610373578251825591602001919060010190610358565b5b5090506103819190610385565b5090565b5b8082111561039e576000816000905550600101610386565b5090565b60006103b56103b0846105a5565b610580565b9050828152602081018484840111156103d1576103d0610704565b5b6103dc8482856105fc565b509392505050565b600082601f8301126103f9576103f86106ff565b5b81356104098482602086016103a2565b91505092915050565b60008135905061042181610724565b92915050565b6000806000606084860312156104405761043f61070e565b5b600084013567ffffffffffffffff81111561045e5761045d610709565b5b61046a868287016103e4565b935050602084013567ffffffffffffffff81111561048b5761048a610709565b5b610497868287016103e4565b925050604084013567ffffffffffffffff8111156104b8576104b7610709565b5b6104c4868287016103e4565b9150509250925092565b6000602082840312156104e4576104e361070e565b5b60006104f284828501610412565b91505092915050565b6000610506826105d6565b61051081856105e1565b935061052081856020860161060b565b61052981610713565b840191505092915050565b6000606082019050818103600083015261054e81866104fb565b9050818103602083015261056281856104fb565b9050818103604083015261057681846104fb565b9050949350505050565b600061058a61059b565b90506105968282610670565b919050565b6000604051905090565b600067ffffffffffffffff8211156105c0576105bf6106d0565b5b6105c982610713565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b82818337600083830152505050565b60005b8381101561062957808201518184015260208101905061060e565b83811115610638576000848401525b50505050565b6000600282049050600182168061065657607f821691505b6020821081141561066a576106696106a1565b5b50919050565b61067982610713565b810181811067ffffffffffffffff82111715610698576106976106d0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61072d816105f2565b811461073857600080fd5b5056fea264697066735822122096b2820cf8a3c4f279265a0bceb3360580f8fefde80037096372026c193cdc4f64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x771 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 0x180AEDF3 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x28F76943 EQ PUSH2 0x6D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x55 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x4CE JUMP JUMPDEST PUSH2 0x89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x64 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x534 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x87 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x427 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0xBC SWAP1 PUSH2 0x63E 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 0xE8 SWAP1 PUSH2 0x63E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x135 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x10A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x135 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 0x118 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x14A SWAP1 PUSH2 0x63E 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 0x176 SWAP1 PUSH2 0x63E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1C3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x198 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1C3 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 0x1A6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x1D8 SWAP1 PUSH2 0x63E 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 0x204 SWAP1 PUSH2 0x63E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x251 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x226 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x251 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 0x234 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2BD SWAP3 SWAP2 SWAP1 PUSH2 0x2FF JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2DA SWAP3 SWAP2 SWAP1 PUSH2 0x2FF JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2F7 SWAP3 SWAP2 SWAP1 PUSH2 0x2FF JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x30B SWAP1 PUSH2 0x63E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x32D JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x374 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x346 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x374 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x374 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x373 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x358 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x381 SWAP2 SWAP1 PUSH2 0x385 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x39E JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x386 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B5 PUSH2 0x3B0 DUP5 PUSH2 0x5A5 JUMP JUMPDEST PUSH2 0x580 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D0 PUSH2 0x704 JUMP JUMPDEST JUMPDEST PUSH2 0x3DC DUP5 DUP3 DUP6 PUSH2 0x5FC JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3F9 JUMPI PUSH2 0x3F8 PUSH2 0x6FF JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x409 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x421 DUP2 PUSH2 0x724 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x440 JUMPI PUSH2 0x43F PUSH2 0x70E JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x45E JUMPI PUSH2 0x45D PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH2 0x46A DUP7 DUP3 DUP8 ADD PUSH2 0x3E4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x48B JUMPI PUSH2 0x48A PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH2 0x497 DUP7 DUP3 DUP8 ADD PUSH2 0x3E4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4B8 JUMPI PUSH2 0x4B7 PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH2 0x4C4 DUP7 DUP3 DUP8 ADD PUSH2 0x3E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E4 JUMPI PUSH2 0x4E3 PUSH2 0x70E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4F2 DUP5 DUP3 DUP6 ADD PUSH2 0x412 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x506 DUP3 PUSH2 0x5D6 JUMP JUMPDEST PUSH2 0x510 DUP2 DUP6 PUSH2 0x5E1 JUMP JUMPDEST SWAP4 POP PUSH2 0x520 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x60B JUMP JUMPDEST PUSH2 0x529 DUP2 PUSH2 0x713 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x54E DUP2 DUP7 PUSH2 0x4FB JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x562 DUP2 DUP6 PUSH2 0x4FB JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x576 DUP2 DUP5 PUSH2 0x4FB JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x58A PUSH2 0x59B JUMP JUMPDEST SWAP1 POP PUSH2 0x596 DUP3 DUP3 PUSH2 0x670 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5C0 JUMPI PUSH2 0x5BF PUSH2 0x6D0 JUMP JUMPDEST JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0x713 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP 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 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x629 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x60E JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x638 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x656 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x66A JUMPI PUSH2 0x669 PUSH2 0x6A1 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x679 DUP3 PUSH2 0x713 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x698 JUMPI PUSH2 0x697 PUSH2 0x6D0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x72D DUP2 PUSH2 0x5F2 JUMP JUMPDEST DUP2 EQ PUSH2 0x738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP7 0xB2 DUP3 0xC 0xF8 LOG3 0xC4 CALLCODE PUSH26 0x265A0BCEB3360580F8FEFDE80037096372026C193CDC4F64736F PUSH13 0x63430008070033000000000000 ",
"sourceMap": "70:363:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addJob_32": {
"entryPoint": 603,
"id": 32,
"parameterSlots": 3,
"returnSlots": 0
},
"@jobs_5": {
"entryPoint": 137,
"id": 5,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 930,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 996,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1042,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 1063,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1230,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1275,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1332,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1435,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1445,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1494,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1505,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1532,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1547,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1648,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1697,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1744,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1791,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1796,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1801,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1806,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1811,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 1828,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6597:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:1"
},
"nodeType": "YulFunctionCall",
"src": "552:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "525:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "521:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "514:35:1"
},
"nodeType": "YulIf",
"src": "511:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:1"
},
"nodeType": "YulFunctionCall",
"src": "656:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "742:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:1"
},
"nodeType": "YulFunctionCall",
"src": "694:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:1",
"type": ""
}
],
"src": "439:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:1"
},
"nodeType": "YulFunctionCall",
"src": "856:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:1"
},
"nodeType": "YulFunctionCall",
"src": "885:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:1",
"type": ""
}
],
"src": "785:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1060:1029:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1106:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1108:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1108:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1108:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1090:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1077:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1077:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1102:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1073:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1073:32:1"
},
"nodeType": "YulIf",
"src": "1070:119:1"
},
{
"nodeType": "YulBlock",
"src": "1199:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1214:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1245:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1256:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1241:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1241:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1228:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1228:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1218:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1306:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1308:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1308:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1308:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1278:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1275:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1275:30:1"
},
"nodeType": "YulIf",
"src": "1272:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1403:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1448:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1459:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1444:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1444:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1468:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1413:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1413:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1403:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1496:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1511:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1542:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1553:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1525:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1525:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1515:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1604:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1606:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1606:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1606:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1576:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1584:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1573:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1573:30:1"
},
"nodeType": "YulIf",
"src": "1570:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1701:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1746:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1757:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1742:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1766:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1711:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1711:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1701:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1794:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1809:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1840:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1851:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1836:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1836:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1823:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1823:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1813:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1902:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1904:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1904:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1904:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1874:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1882:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1871:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1871:30:1"
},
"nodeType": "YulIf",
"src": "1868:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1999:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2044:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2055:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2040:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2040:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2064:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2009:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2009:63:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1999:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1014:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1025:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1037:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1045:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1053:6:1",
"type": ""
}
],
"src": "930:1159:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2161:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2209:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2182:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2191:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2178:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2178:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2174:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2174:32:1"
},
"nodeType": "YulIf",
"src": "2171:119:1"
},
{
"nodeType": "YulBlock",
"src": "2300:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2315:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2329:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2319:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2344:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2379:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2390:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2375:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2375:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2399:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2354:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2354:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2344:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2131:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2142:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2154:6:1",
"type": ""
}
],
"src": "2095:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2522:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2532:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2579:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2546:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2546:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2536:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2594:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2660:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2665:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2601:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2601:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2594:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2707:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2714:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2703:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2703:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2721:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2726:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2681:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2681:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2681:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2742:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2753:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2780:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2758:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2758:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2749:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2742:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2503:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2510:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2518:3:1",
"type": ""
}
],
"src": "2430:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3014:501:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3024:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3036:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3047:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3032:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3032:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3024:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3071:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3082:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3067:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3067:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3090:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3096:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3086:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3086:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3060:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3060:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3060:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3116:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3188:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3197:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3124:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3124:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3116:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3223:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3219:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3219:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3243:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3249:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3239:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3239:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3212:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3212:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3212:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3269:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3341:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3350:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3277:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3277:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3269:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3376:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3387:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3372:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3372:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3396:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3402:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3392:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3392:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3365:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3365:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3365:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3422:86:1",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3494:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3503:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3430:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3430:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3422:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2970:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2982:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2990:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2998:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3009:4:1",
"type": ""
}
],
"src": "2800:715:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3562:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3572:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3582:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3582:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3572:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3631:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3639:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3611:19:1"
},
"nodeType": "YulFunctionCall",
"src": "3611:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3611:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3546:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3555:6:1",
"type": ""
}
],
"src": "3521:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3696:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3706:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3722:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3716:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3716:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3706:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3689:6:1",
"type": ""
}
],
"src": "3656:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3804:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3909:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "3911:16:1"
},
"nodeType": "YulFunctionCall",
"src": "3911:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3911:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3881:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3889:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3878:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3878:30:1"
},
"nodeType": "YulIf",
"src": "3875:56:1"
},
{
"nodeType": "YulAssignment",
"src": "3941:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3971:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3949:21:1"
},
"nodeType": "YulFunctionCall",
"src": "3949:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3941:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4015:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4027:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4033:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4023:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4023:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4015:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3788:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3799:4:1",
"type": ""
}
],
"src": "3737:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4110:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4121:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4137:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4131:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4131:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4121:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4093:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4103:6:1",
"type": ""
}
],
"src": "4051:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4252:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4269:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4274:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4262:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4262:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4262:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4290:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4309:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4314:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4305:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4305:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4290:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4224:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4229:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4240:11:1",
"type": ""
}
],
"src": "4156:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4376:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4386:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "4397:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4386:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4358:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4368:7:1",
"type": ""
}
],
"src": "4331:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4465:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4488:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4493:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4498:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "4475:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4475:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "4475:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4546:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4551:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4542:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4542:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4560:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4535:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4535:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4535:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4447:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4452:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4457:6:1",
"type": ""
}
],
"src": "4414:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4623:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4633:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4642:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4637:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4702:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4727:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4732:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4723:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4723:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4746:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4751:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4742:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4736:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4736:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4716:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4716:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4716:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4663:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4666:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4660:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4660:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4674:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4676:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4685:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4688:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4681:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4681:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4676:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4656:3:1",
"statements": []
},
"src": "4652:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4799:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4849:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4854:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4845:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4845:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4863:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4838:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4838:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4838:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4780:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4783:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4777:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4777:13:1"
},
"nodeType": "YulIf",
"src": "4774:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4605:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4610:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4615:6:1",
"type": ""
}
],
"src": "4574:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4938:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4948:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4962:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4968:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4958:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4958:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4948:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4979:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5009:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5015:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5005:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5005:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4983:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5056:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5070:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5084:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5092:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5080:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5080:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5070:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5036:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5029:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5029:26:1"
},
"nodeType": "YulIf",
"src": "5026:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5159:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5173:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5173:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5173:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5123:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5146:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5154:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5143:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5143:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5120:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5120:38:1"
},
"nodeType": "YulIf",
"src": "5117:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4922:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4931:6:1",
"type": ""
}
],
"src": "4887:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5256:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5266:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5288:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "5318:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5296:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5296:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5284:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5284:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "5270:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5435:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "5437:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5437:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5437:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5378:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5390:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5375:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5375:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5414:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5426:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5411:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5411:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "5372:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5372:62:1"
},
"nodeType": "YulIf",
"src": "5369:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5473:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "5477:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5466:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5466:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "5466:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5242:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "5250:4:1",
"type": ""
}
],
"src": "5213:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5528:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5545:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5548:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5538:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5538:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5538:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5642:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5645:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5635:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5635:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5635:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5666:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5669:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5659:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5659:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5659:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "5500:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5714:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5731:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5734:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5724:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5724:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "5724:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5828:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5831:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5821:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5821:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5821:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5852:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5855:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5845:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5845:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "5845:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "5686:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5961:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5978:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5981:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5971:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5971:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5971:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "5872:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6084:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6101:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6104:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6094:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6094:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6094:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "5995:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6207:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6224:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6227:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6217:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6217:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6217:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "6118:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6330:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6347:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6350:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6340:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6340:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6340:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "6241:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6412:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6422:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6440:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6447:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6436:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6436:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6456:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6452:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6452:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6432:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6422:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6395:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6405:6:1",
"type": ""
}
],
"src": "6364:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6515:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6572:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6581:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6584:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6574:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6574:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6574:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6538:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6563:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6545:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6545:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6535:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6535:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6528:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6528:43:1"
},
"nodeType": "YulIf",
"src": "6525:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6508:5:1",
"type": ""
}
],
"src": "6472:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_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_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_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063180aedf31461003b57806328f769431461006d575b600080fd5b610055600480360381019061005091906104ce565b610089565b60405161006493929190610534565b60405180910390f35b61008760048036038101906100829190610427565b61025b565b005b6000818154811061009957600080fd5b90600052602060002090600302016000915090508060000180546100bc9061063e565b80601f01602080910402602001604051908101604052809291908181526020018280546100e89061063e565b80156101355780601f1061010a57610100808354040283529160200191610135565b820191906000526020600020905b81548152906001019060200180831161011857829003601f168201915b50505050509080600101805461014a9061063e565b80601f01602080910402602001604051908101604052809291908181526020018280546101769061063e565b80156101c35780601f10610198576101008083540402835291602001916101c3565b820191906000526020600020905b8154815290600101906020018083116101a657829003601f168201915b5050505050908060020180546101d89061063e565b80601f01602080910402602001604051908101604052809291908181526020018280546102049061063e565b80156102515780601f1061022657610100808354040283529160200191610251565b820191906000526020600020905b81548152906001019060200180831161023457829003601f168201915b5050505050905083565b6000604051806060016040528085815260200184815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906102bd9291906102ff565b5060208201518160010190805190602001906102da9291906102ff565b5060408201518160020190805190602001906102f79291906102ff565b505050505050565b82805461030b9061063e565b90600052602060002090601f01602090048101928261032d5760008555610374565b82601f1061034657805160ff1916838001178555610374565b82800160010185558215610374579182015b82811115610373578251825591602001919060010190610358565b5b5090506103819190610385565b5090565b5b8082111561039e576000816000905550600101610386565b5090565b60006103b56103b0846105a5565b610580565b9050828152602081018484840111156103d1576103d0610704565b5b6103dc8482856105fc565b509392505050565b600082601f8301126103f9576103f86106ff565b5b81356104098482602086016103a2565b91505092915050565b60008135905061042181610724565b92915050565b6000806000606084860312156104405761043f61070e565b5b600084013567ffffffffffffffff81111561045e5761045d610709565b5b61046a868287016103e4565b935050602084013567ffffffffffffffff81111561048b5761048a610709565b5b610497868287016103e4565b925050604084013567ffffffffffffffff8111156104b8576104b7610709565b5b6104c4868287016103e4565b9150509250925092565b6000602082840312156104e4576104e361070e565b5b60006104f284828501610412565b91505092915050565b6000610506826105d6565b61051081856105e1565b935061052081856020860161060b565b61052981610713565b840191505092915050565b6000606082019050818103600083015261054e81866104fb565b9050818103602083015261056281856104fb565b9050818103604083015261057681846104fb565b9050949350505050565b600061058a61059b565b90506105968282610670565b919050565b6000604051905090565b600067ffffffffffffffff8211156105c0576105bf6106d0565b5b6105c982610713565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b6000819050919050565b82818337600083830152505050565b60005b8381101561062957808201518184015260208101905061060e565b83811115610638576000848401525b50505050565b6000600282049050600182168061065657607f821691505b6020821081141561066a576106696106a1565b5b50919050565b61067982610713565b810181811067ffffffffffffffff82111715610698576106976106d0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b61072d816105f2565b811461073857600080fd5b5056fea264697066735822122096b2820cf8a3c4f279265a0bceb3360580f8fefde80037096372026c193cdc4f64736f6c63430008070033",
"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 0x180AEDF3 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x28F76943 EQ PUSH2 0x6D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x55 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x4CE JUMP JUMPDEST PUSH2 0x89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x64 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x534 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x87 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x427 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0xBC SWAP1 PUSH2 0x63E 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 0xE8 SWAP1 PUSH2 0x63E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x135 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x10A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x135 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 0x118 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x14A SWAP1 PUSH2 0x63E 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 0x176 SWAP1 PUSH2 0x63E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1C3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x198 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1C3 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 0x1A6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x1D8 SWAP1 PUSH2 0x63E 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 0x204 SWAP1 PUSH2 0x63E JUMP JUMPDEST DUP1 ISZERO PUSH2 0x251 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x226 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x251 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 0x234 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2BD SWAP3 SWAP2 SWAP1 PUSH2 0x2FF JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2DA SWAP3 SWAP2 SWAP1 PUSH2 0x2FF JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2F7 SWAP3 SWAP2 SWAP1 PUSH2 0x2FF JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x30B SWAP1 PUSH2 0x63E JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x32D JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x374 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x346 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x374 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x374 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x373 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x358 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x381 SWAP2 SWAP1 PUSH2 0x385 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x39E JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x386 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B5 PUSH2 0x3B0 DUP5 PUSH2 0x5A5 JUMP JUMPDEST PUSH2 0x580 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3D1 JUMPI PUSH2 0x3D0 PUSH2 0x704 JUMP JUMPDEST JUMPDEST PUSH2 0x3DC DUP5 DUP3 DUP6 PUSH2 0x5FC JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3F9 JUMPI PUSH2 0x3F8 PUSH2 0x6FF JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x409 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x421 DUP2 PUSH2 0x724 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x440 JUMPI PUSH2 0x43F PUSH2 0x70E JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x45E JUMPI PUSH2 0x45D PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH2 0x46A DUP7 DUP3 DUP8 ADD PUSH2 0x3E4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x48B JUMPI PUSH2 0x48A PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH2 0x497 DUP7 DUP3 DUP8 ADD PUSH2 0x3E4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4B8 JUMPI PUSH2 0x4B7 PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH2 0x4C4 DUP7 DUP3 DUP8 ADD PUSH2 0x3E4 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4E4 JUMPI PUSH2 0x4E3 PUSH2 0x70E JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x4F2 DUP5 DUP3 DUP6 ADD PUSH2 0x412 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x506 DUP3 PUSH2 0x5D6 JUMP JUMPDEST PUSH2 0x510 DUP2 DUP6 PUSH2 0x5E1 JUMP JUMPDEST SWAP4 POP PUSH2 0x520 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x60B JUMP JUMPDEST PUSH2 0x529 DUP2 PUSH2 0x713 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x54E DUP2 DUP7 PUSH2 0x4FB JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x562 DUP2 DUP6 PUSH2 0x4FB JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x576 DUP2 DUP5 PUSH2 0x4FB JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x58A PUSH2 0x59B JUMP JUMPDEST SWAP1 POP PUSH2 0x596 DUP3 DUP3 PUSH2 0x670 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x5C0 JUMPI PUSH2 0x5BF PUSH2 0x6D0 JUMP JUMPDEST JUMPDEST PUSH2 0x5C9 DUP3 PUSH2 0x713 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP 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 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x629 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x60E JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x638 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x656 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x66A JUMPI PUSH2 0x669 PUSH2 0x6A1 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x679 DUP3 PUSH2 0x713 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x698 JUMPI PUSH2 0x697 PUSH2 0x6D0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x72D DUP2 PUSH2 0x5F2 JUMP JUMPDEST DUP2 EQ PUSH2 0x738 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP7 0xB2 DUP3 0xC 0xF8 LOG3 0xC4 CALLCODE PUSH26 0x265A0BCEB3360580F8FEFDE80037096372026C193CDC4F64736F PUSH13 0x63430008070033000000000000 ",
"sourceMap": "70:363:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93:17;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;250:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;250:181::-;369:4;379:44;;;;;;;;383:9;379:44;;;;394:13;379:44;;;;409:12;379:44;;;369:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;250:181;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:1:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:1159::-;1037:6;1045;1053;1102:2;1090:9;1081:7;1077:23;1073:32;1070:119;;;1108:79;;:::i;:::-;1070:119;1256:1;1245:9;1241:17;1228:31;1286:18;1278:6;1275:30;1272:117;;;1308:79;;:::i;:::-;1272:117;1413:63;1468:7;1459:6;1448:9;1444:22;1413:63;:::i;:::-;1403:73;;1199:287;1553:2;1542:9;1538:18;1525:32;1584:18;1576:6;1573:30;1570:117;;;1606:79;;:::i;:::-;1570:117;1711:63;1766:7;1757:6;1746:9;1742:22;1711:63;:::i;:::-;1701:73;;1496:288;1851:2;1840:9;1836:18;1823:32;1882:18;1874:6;1871:30;1868:117;;;1904:79;;:::i;:::-;1868:117;2009:63;2064:7;2055:6;2044:9;2040:22;2009:63;:::i;:::-;1999:73;;1794:288;930:1159;;;;;:::o;2095:329::-;2154:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:119;;;2209:79;;:::i;:::-;2171:119;2329:1;2354:53;2399:7;2390:6;2379:9;2375:22;2354:53;:::i;:::-;2344:63;;2300:117;2095:329;;;;:::o;2430:364::-;2518:3;2546:39;2579:5;2546:39;:::i;:::-;2601:71;2665:6;2660:3;2601:71;:::i;:::-;2594:78;;2681:52;2726:6;2721:3;2714:4;2707:5;2703:16;2681:52;:::i;:::-;2758:29;2780:6;2758:29;:::i;:::-;2753:3;2749:39;2742:46;;2522:272;2430:364;;;;:::o;2800:715::-;3009:4;3047:2;3036:9;3032:18;3024:26;;3096:9;3090:4;3086:20;3082:1;3071:9;3067:17;3060:47;3124:78;3197:4;3188:6;3124:78;:::i;:::-;3116:86;;3249:9;3243:4;3239:20;3234:2;3223:9;3219:18;3212:48;3277:78;3350:4;3341:6;3277:78;:::i;:::-;3269:86;;3402:9;3396:4;3392:20;3387:2;3376:9;3372:18;3365:48;3430:78;3503:4;3494:6;3430:78;:::i;:::-;3422:86;;2800:715;;;;;;:::o;3521:129::-;3555:6;3582:20;;:::i;:::-;3572:30;;3611:33;3639:4;3631:6;3611:33;:::i;:::-;3521:129;;;:::o;3656:75::-;3689:6;3722:2;3716:9;3706:19;;3656:75;:::o;3737:308::-;3799:4;3889:18;3881:6;3878:30;3875:56;;;3911:18;;:::i;:::-;3875:56;3949:29;3971:6;3949:29;:::i;:::-;3941:37;;4033:4;4027;4023:15;4015:23;;3737:308;;;:::o;4051:99::-;4103:6;4137:5;4131:12;4121:22;;4051:99;;;:::o;4156:169::-;4240:11;4274:6;4269:3;4262:19;4314:4;4309:3;4305:14;4290:29;;4156:169;;;;:::o;4331:77::-;4368:7;4397:5;4386:16;;4331:77;;;:::o;4414:154::-;4498:6;4493:3;4488;4475:30;4560:1;4551:6;4546:3;4542:16;4535:27;4414:154;;;:::o;4574:307::-;4642:1;4652:113;4666:6;4663:1;4660:13;4652:113;;;4751:1;4746:3;4742:11;4736:18;4732:1;4727:3;4723:11;4716:39;4688:2;4685:1;4681:10;4676:15;;4652:113;;;4783:6;4780:1;4777:13;4774:101;;;4863:1;4854:6;4849:3;4845:16;4838:27;4774:101;4623:258;4574:307;;;:::o;4887:320::-;4931:6;4968:1;4962:4;4958:12;4948:22;;5015:1;5009:4;5005:12;5036:18;5026:81;;5092:4;5084:6;5080:17;5070:27;;5026:81;5154:2;5146:6;5143:14;5123:18;5120:38;5117:84;;;5173:18;;:::i;:::-;5117:84;4938:269;4887:320;;;:::o;5213:281::-;5296:27;5318:4;5296:27;:::i;:::-;5288:6;5284:40;5426:6;5414:10;5411:22;5390:18;5378:10;5375:34;5372:62;5369:88;;;5437:18;;:::i;:::-;5369:88;5477:10;5473:2;5466:22;5256:238;5213:281;;:::o;5500:180::-;5548:77;5545:1;5538:88;5645:4;5642:1;5635:15;5669:4;5666:1;5659:15;5686:180;5734:77;5731:1;5724:88;5831:4;5828:1;5821:15;5855:4;5852:1;5845:15;5872:117;5981:1;5978;5971:12;5995:117;6104:1;6101;6094:12;6118:117;6227:1;6224;6217:12;6241:117;6350:1;6347;6340:12;6364:102;6405:6;6456:2;6452:7;6447:2;6440:5;6436:14;6432:28;6422:38;;6364:102;;;:::o;6472:122::-;6545:24;6563:5;6545:24;:::i;:::-;6538:5;6535:35;6525:63;;6584:1;6581;6574:12;6525:63;6472:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "381000",
"executionCost": "418",
"totalCost": "381418"
},
"external": {
"addJob(string,string,string)": "infinite",
"jobs(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 70,
"end": 433,
"name": "MSTORE",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "ISZERO",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 433,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "REVERT",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 433,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "POP",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 433,
"name": "CODECOPY",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 433,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122096b2820cf8a3c4f279265a0bceb3360580f8fefde80037096372026c193cdc4f64736f6c63430008070033",
".code": [
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 70,
"end": 433,
"name": "MSTORE",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "ISZERO",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 433,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "REVERT",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 433,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "POP",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 70,
"end": 433,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "LT",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 70,
"end": 433,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 433,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 70,
"end": 433,
"name": "SHR",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "180AEDF3"
},
{
"begin": 70,
"end": 433,
"name": "EQ",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 70,
"end": 433,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "28F76943"
},
{
"begin": 70,
"end": 433,
"name": "EQ",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 70,
"end": 433,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 70,
"end": 433,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 433,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 433,
"name": "REVERT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 93,
"end": 110,
"name": "SWAP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "RETURN",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 250,
"end": 431,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 250,
"end": 431,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 250,
"end": 431,
"name": "DUP1",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "SUB",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "DUP2",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "ADD",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "SWAP1",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 250,
"end": 431,
"name": "SWAP2",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "SWAP1",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 250,
"end": 431,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 250,
"end": 431,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 250,
"end": 431,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 250,
"end": 431,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 250,
"end": 431,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 250,
"end": 431,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "STOP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "REVERT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ISZERO",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "GT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "AND",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ISZERO",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "GT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "AND",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ISZERO",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "GT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "AND",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 250,
"end": 431,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 250,
"end": 431,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 369,
"end": 373,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 379,
"end": 423,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 379,
"end": 423,
"name": "MLOAD",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "DUP1",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 379,
"end": 423,
"name": "ADD",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 379,
"end": 423,
"name": "MSTORE",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "DUP1",
"source": 0
},
{
"begin": 383,
"end": 392,
"name": "DUP6",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "DUP2",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "MSTORE",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 379,
"end": 423,
"name": "ADD",
"source": 0
},
{
"begin": 394,
"end": 407,
"name": "DUP5",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "DUP2",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "MSTORE",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 379,
"end": 423,
"name": "ADD",
"source": 0
},
{
"begin": 409,
"end": 421,
"name": "DUP4",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "DUP2",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "MSTORE",
"source": 0
},
{
"begin": 379,
"end": 423,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 369,
"end": 424,
"name": "DUP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SLOAD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP3",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SSTORE",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SUB",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 369,
"end": 424,
"name": "MSTORE",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 369,
"end": 424,
"name": "KECCAK256",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 369,
"end": 424,
"name": "MUL",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 369,
"end": 424,
"name": "DUP3",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "MLOAD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "MLOAD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 369,
"end": 424,
"name": "SWAP3",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 369,
"end": 424,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 369,
"end": 424,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 369,
"end": 424,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 369,
"end": 424,
"name": "DUP3",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "MLOAD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "MLOAD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 369,
"end": 424,
"name": "SWAP3",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 369,
"end": 424,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 369,
"end": 424,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 369,
"end": 424,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 369,
"end": 424,
"name": "DUP3",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "MLOAD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "DUP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "MLOAD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 369,
"end": 424,
"name": "ADD",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 369,
"end": 424,
"name": "SWAP3",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP2",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "SWAP1",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 369,
"end": 424,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 369,
"end": 424,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 369,
"end": 424,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 369,
"end": 424,
"name": "POP",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "POP",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "POP",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "POP",
"source": 0
},
{
"begin": 250,
"end": 431,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "36"
},
{
"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": "PUSH [tag]",
"source": -1,
"value": "39"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "18"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "39"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"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": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DIV",
"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": "PUSH [tag]",
"source": -1,
"value": "41"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "40"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "41"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "LT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "42"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "FF"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "AND",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "OR",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "40"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "42"
},
{
"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": "ADD",
"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": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"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": "40"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"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": "43"
},
{
"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": "44"
},
{
"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": "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": "43"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "44"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "40"
},
{
"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": "45"
},
{
"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": "46"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "45"
},
{
"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": "46"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "47"
},
{
"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": "48"
},
{
"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": "47"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "48"
},
{
"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": 7,
"end": 419,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 7,
"end": 419,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 85,
"end": 90,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 1,
"value": "53"
},
{
"begin": 168,
"end": 174,
"name": "DUP5",
"source": 1
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 126,
"end": 175,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 126,
"end": 175,
"name": "tag",
"source": 1,
"value": "53"
},
{
"begin": 126,
"end": 175,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 110,
"end": 176,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 110,
"end": 176,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 110,
"end": 176,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 101,
"end": 176,
"name": "SWAP1",
"source": 1
},
{
"begin": 101,
"end": 176,
"name": "POP",
"source": 1
},
{
"begin": 199,
"end": 205,
"name": "DUP3",
"source": 1
},
{
"begin": 192,
"end": 197,
"name": "DUP2",
"source": 1
},
{
"begin": 185,
"end": 206,
"name": "MSTORE",
"source": 1
},
{
"begin": 237,
"end": 241,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 230,
"end": 235,
"name": "DUP2",
"source": 1
},
{
"begin": 226,
"end": 242,
"name": "ADD",
"source": 1
},
{
"begin": 275,
"end": 278,
"name": "DUP5",
"source": 1
},
{
"begin": 266,
"end": 272,
"name": "DUP5",
"source": 1
},
{
"begin": 261,
"end": 264,
"name": "DUP5",
"source": 1
},
{
"begin": 257,
"end": 273,
"name": "ADD",
"source": 1
},
{
"begin": 254,
"end": 279,
"name": "GT",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "ISZERO",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 251,
"end": 363,
"name": "JUMPI",
"source": 1
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 282,
"end": 361,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 282,
"end": 361,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 282,
"end": 361,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 251,
"end": 363,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 1,
"value": "59"
},
{
"begin": 406,
"end": 412,
"name": "DUP5",
"source": 1
},
{
"begin": 401,
"end": 404,
"name": "DUP3",
"source": 1
},
{
"begin": 396,
"end": 399,
"name": "DUP6",
"source": 1
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 372,
"end": 413,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 372,
"end": 413,
"name": "tag",
"source": 1,
"value": "59"
},
{
"begin": 372,
"end": 413,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 91,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "SWAP4",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "SWAP3",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 439,
"end": 779,
"name": "tag",
"source": 1,
"value": "61"
},
{
"begin": 439,
"end": 779,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 495,
"end": 500,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 544,
"end": 547,
"name": "DUP3",
"source": 1
},
{
"begin": 537,
"end": 541,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 529,
"end": 535,
"name": "DUP4",
"source": 1
},
{
"begin": 525,
"end": 542,
"name": "ADD",
"source": 1
},
{
"begin": 521,
"end": 548,
"name": "SLT",
"source": 1
},
{
"begin": 511,
"end": 633,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 511,
"end": 633,
"name": "JUMPI",
"source": 1
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 552,
"end": 631,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 552,
"end": 631,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 552,
"end": 631,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 511,
"end": 633,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 511,
"end": 633,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 669,
"end": 675,
"name": "DUP2",
"source": 1
},
{
"begin": 656,
"end": 676,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 1,
"value": "66"
},
{
"begin": 769,
"end": 772,
"name": "DUP5",
"source": 1
},
{
"begin": 761,
"end": 767,
"name": "DUP3",
"source": 1
},
{
"begin": 754,
"end": 758,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 746,
"end": 752,
"name": "DUP7",
"source": 1
},
{
"begin": 742,
"end": 759,
"name": "ADD",
"source": 1
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 694,
"end": 773,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 694,
"end": 773,
"name": "tag",
"source": 1,
"value": "66"
},
{
"begin": 694,
"end": 773,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 685,
"end": 773,
"name": "SWAP2",
"source": 1
},
{
"begin": 685,
"end": 773,
"name": "POP",
"source": 1
},
{
"begin": 501,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "SWAP3",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "SWAP2",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 785,
"end": 924,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 785,
"end": 924,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 831,
"end": 836,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 869,
"end": 875,
"name": "DUP2",
"source": 1
},
{
"begin": 856,
"end": 876,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 847,
"end": 876,
"name": "SWAP1",
"source": 1
},
{
"begin": 847,
"end": 876,
"name": "POP",
"source": 1
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 1,
"value": "69"
},
{
"begin": 912,
"end": 917,
"name": "DUP2",
"source": 1
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 1,
"value": "70"
},
{
"begin": 885,
"end": 918,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 885,
"end": 918,
"name": "tag",
"source": 1,
"value": "69"
},
{
"begin": 885,
"end": 918,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "SWAP3",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "SWAP2",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 930,
"end": 2089,
"name": "tag",
"source": 1,
"value": "13"
},
{
"begin": 930,
"end": 2089,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1037,
"end": 1043,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1045,
"end": 1051,
"name": "DUP1",
"source": 1
},
{
"begin": 1053,
"end": 1059,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1102,
"end": 1104,
"name": "PUSH",
"source": 1,
"value": "60"
},
{
"begin": 1090,
"end": 1099,
"name": "DUP5",
"source": 1
},
{
"begin": 1081,
"end": 1088,
"name": "DUP7",
"source": 1
},
{
"begin": 1077,
"end": 1100,
"name": "SUB",
"source": 1
},
{
"begin": 1073,
"end": 1105,
"name": "SLT",
"source": 1
},
{
"begin": 1070,
"end": 1189,
"name": "ISZERO",
"source": 1
},
{
"begin": 1070,
"end": 1189,
"name": "PUSH [tag]",
"source": 1,
"value": "72"
},
{
"begin": 1070,
"end": 1189,
"name": "JUMPI",
"source": 1
},
{
"begin": 1108,
"end": 1187,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 1108,
"end": 1187,
"name": "PUSH [tag]",
"source": 1,
"value": "74"
},
{
"begin": 1108,
"end": 1187,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1108,
"end": 1187,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 1108,
"end": 1187,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1070,
"end": 1189,
"name": "tag",
"source": 1,
"value": "72"
},
{
"begin": 1070,
"end": 1189,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1256,
"end": 1257,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1245,
"end": 1254,
"name": "DUP5",
"source": 1
},
{
"begin": 1241,
"end": 1258,
"name": "ADD",
"source": 1
},
{
"begin": 1228,
"end": 1259,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1286,
"end": 1304,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1278,
"end": 1284,
"name": "DUP2",
"source": 1
},
{
"begin": 1275,
"end": 1305,
"name": "GT",
"source": 1
},
{
"begin": 1272,
"end": 1389,
"name": "ISZERO",
"source": 1
},
{
"begin": 1272,
"end": 1389,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 1272,
"end": 1389,
"name": "JUMPI",
"source": 1
},
{
"begin": 1308,
"end": 1387,
"name": "PUSH [tag]",
"source": 1,
"value": "76"
},
{
"begin": 1308,
"end": 1387,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 1308,
"end": 1387,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1308,
"end": 1387,
"name": "tag",
"source": 1,
"value": "76"
},
{
"begin": 1308,
"end": 1387,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1272,
"end": 1389,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 1272,
"end": 1389,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1413,
"end": 1476,
"name": "PUSH [tag]",
"source": 1,
"value": "78"
},
{
"begin": 1468,
"end": 1475,
"name": "DUP7",
"source": 1
},
{
"begin": 1459,
"end": 1465,
"name": "DUP3",
"source": 1
},
{
"begin": 1448,
"end": 1457,
"name": "DUP8",
"source": 1
},
{
"begin": 1444,
"end": 1466,
"name": "ADD",
"source": 1
},
{
"begin": 1413,
"end": 1476,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 1413,
"end": 1476,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1413,
"end": 1476,
"name": "tag",
"source": 1,
"value": "78"
},
{
"begin": 1413,
"end": 1476,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1403,
"end": 1476,
"name": "SWAP4",
"source": 1
},
{
"begin": 1403,
"end": 1476,
"name": "POP",
"source": 1
},
{
"begin": 1199,
"end": 1486,
"name": "POP",
"source": 1
},
{
"begin": 1553,
"end": 1555,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1542,
"end": 1551,
"name": "DUP5",
"source": 1
},
{
"begin": 1538,
"end": 1556,
"name": "ADD",
"source": 1
},
{
"begin": 1525,
"end": 1557,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1584,
"end": 1602,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1576,
"end": 1582,
"name": "DUP2",
"source": 1
},
{
"begin": 1573,
"end": 1603,
"name": "GT",
"source": 1
},
{
"begin": 1570,
"end": 1687,
"name": "ISZERO",
"source": 1
},
{
"begin": 1570,
"end": 1687,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 1570,
"end": 1687,
"name": "JUMPI",
"source": 1
},
{
"begin": 1606,
"end": 1685,
"name": "PUSH [tag]",
"source": 1,
"value": "80"
},
{
"begin": 1606,
"end": 1685,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 1606,
"end": 1685,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1606,
"end": 1685,
"name": "tag",
"source": 1,
"value": "80"
},
{
"begin": 1606,
"end": 1685,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1570,
"end": 1687,
"name": "tag",
"source": 1,
"value": "79"
},
{
"begin": 1570,
"end": 1687,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1711,
"end": 1774,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 1766,
"end": 1773,
"name": "DUP7",
"source": 1
},
{
"begin": 1757,
"end": 1763,
"name": "DUP3",
"source": 1
},
{
"begin": 1746,
"end": 1755,
"name": "DUP8",
"source": 1
},
{
"begin": 1742,
"end": 1764,
"name": "ADD",
"source": 1
},
{
"begin": 1711,
"end": 1774,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 1711,
"end": 1774,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1711,
"end": 1774,
"name": "tag",
"source": 1,
"value": "81"
},
{
"begin": 1711,
"end": 1774,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1701,
"end": 1774,
"name": "SWAP3",
"source": 1
},
{
"begin": 1701,
"end": 1774,
"name": "POP",
"source": 1
},
{
"begin": 1496,
"end": 1784,
"name": "POP",
"source": 1
},
{
"begin": 1851,
"end": 1853,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1840,
"end": 1849,
"name": "DUP5",
"source": 1
},
{
"begin": 1836,
"end": 1854,
"name": "ADD",
"source": 1
},
{
"begin": 1823,
"end": 1855,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1882,
"end": 1900,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1874,
"end": 1880,
"name": "DUP2",
"source": 1
},
{
"begin": 1871,
"end": 1901,
"name": "GT",
"source": 1
},
{
"begin": 1868,
"end": 1985,
"name": "ISZERO",
"source": 1
},
{
"begin": 1868,
"end": 1985,
"name": "PUSH [tag]",
"source": 1,
"value": "82"
},
{
"begin": 1868,
"end": 1985,
"name": "JUMPI",
"source": 1
},
{
"begin": 1904,
"end": 1983,
"name": "PUSH [tag]",
"source": 1,
"value": "83"
},
{
"begin": 1904,
"end": 1983,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 1904,
"end": 1983,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1904,
"end": 1983,
"name": "tag",
"source": 1,
"value": "83"
},
{
"begin": 1904,
"end": 1983,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1868,
"end": 1985,
"name": "tag",
"source": 1,
"value": "82"
},
{
"begin": 1868,
"end": 1985,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2009,
"end": 2072,
"name": "PUSH [tag]",
"source": 1,
"value": "84"
},
{
"begin": 2064,
"end": 2071,
"name": "DUP7",
"source": 1
},
{
"begin": 2055,
"end": 2061,
"name": "DUP3",
"source": 1
},
{
"begin": 2044,
"end": 2053,
"name": "DUP8",
"source": 1
},
{
"begin": 2040,
"end": 2062,
"name": "ADD",
"source": 1
},
{
"begin": 2009,
"end": 2072,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 2009,
"end": 2072,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2009,
"end": 2072,
"name": "tag",
"source": 1,
"value": "84"
},
{
"begin": 2009,
"end": 2072,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1999,
"end": 2072,
"name": "SWAP2",
"source": 1
},
{
"begin": 1999,
"end": 2072,
"name": "POP",
"source": 1
},
{
"begin": 1794,
"end": 2082,
"name": "POP",
"source": 1
},
{
"begin": 930,
"end": 2089,
"name": "SWAP3",
"source": 1
},
{
"begin": 930,
"end": 2089,
"name": "POP",
"source": 1
},
{
"begin": 930,
"end": 2089,
"name": "SWAP3",
"source": 1
},
{
"begin": 930,
"end": 2089,
"name": "POP",
"source": 1
},
{
"begin": 930,
"end": 2089,
"name": "SWAP3",
"source": 1
},
{
"begin": 930,
"end": 2089,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2095,
"end": 2424,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 2095,
"end": 2424,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2154,
"end": 2160,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2203,
"end": 2205,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2191,
"end": 2200,
"name": "DUP3",
"source": 1
},
{
"begin": 2182,
"end": 2189,
"name": "DUP5",
"source": 1
},
{
"begin": 2178,
"end": 2201,
"name": "SUB",
"source": 1
},
{
"begin": 2174,
"end": 2206,
"name": "SLT",
"source": 1
},
{
"begin": 2171,
"end": 2290,
"name": "ISZERO",
"source": 1
},
{
"begin": 2171,
"end": 2290,
"name": "PUSH [tag]",
"source": 1,
"value": "86"
},
{
"begin": 2171,
"end": 2290,
"name": "JUMPI",
"source": 1
},
{
"begin": 2209,
"end": 2288,
"name": "PUSH [tag]",
"source": 1,
"value": "87"
},
{
"begin": 2209,
"end": 2288,
"name": "PUSH [tag]",
"source": 1,
"value": "74"
},
{
"begin": 2209,
"end": 2288,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2209,
"end": 2288,
"name": "tag",
"source": 1,
"value": "87"
},
{
"begin": 2209,
"end": 2288,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2171,
"end": 2290,
"name": "tag",
"source": 1,
"value": "86"
},
{
"begin": 2171,
"end": 2290,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2329,
"end": 2330,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2354,
"end": 2407,
"name": "PUSH [tag]",
"source": 1,
"value": "88"
},
{
"begin": 2399,
"end": 2406,
"name": "DUP5",
"source": 1
},
{
"begin": 2390,
"end": 2396,
"name": "DUP3",
"source": 1
},
{
"begin": 2379,
"end": 2388,
"name": "DUP6",
"source": 1
},
{
"begin": 2375,
"end": 2397,
"name": "ADD",
"source": 1
},
{
"begin": 2354,
"end": 2407,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 2354,
"end": 2407,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2354,
"end": 2407,
"name": "tag",
"source": 1,
"value": "88"
},
{
"begin": 2354,
"end": 2407,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2344,
"end": 2407,
"name": "SWAP2",
"source": 1
},
{
"begin": 2344,
"end": 2407,
"name": "POP",
"source": 1
},
{
"begin": 2300,
"end": 2417,
"name": "POP",
"source": 1
},
{
"begin": 2095,
"end": 2424,
"name": "SWAP3",
"source": 1
},
{
"begin": 2095,
"end": 2424,
"name": "SWAP2",
"source": 1
},
{
"begin": 2095,
"end": 2424,
"name": "POP",
"source": 1
},
{
"begin": 2095,
"end": 2424,
"name": "POP",
"source": 1
},
{
"begin": 2095,
"end": 2424,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2430,
"end": 2794,
"name": "tag",
"source": 1,
"value": "89"
},
{
"begin": 2430,
"end": 2794,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2518,
"end": 2521,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2546,
"end": 2585,
"name": "PUSH [tag]",
"source": 1,
"value": "91"
},
{
"begin": 2579,
"end": 2584,
"name": "DUP3",
"source": 1
},
{
"begin": 2546,
"end": 2585,
"name": "PUSH [tag]",
"source": 1,
"value": "92"
},
{
"begin": 2546,
"end": 2585,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2546,
"end": 2585,
"name": "tag",
"source": 1,
"value": "91"
},
{
"begin": 2546,
"end": 2585,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2601,
"end": 2672,
"name": "PUSH [tag]",
"source": 1,
"value": "93"
},
{
"begin": 2665,
"end": 2671,
"name": "DUP2",
"source": 1
},
{
"begin": 2660,
"end": 2663,
"name": "DUP6",
"source": 1
},
{
"begin": 2601,
"end": 2672,
"name": "PUSH [tag]",
"source": 1,
"value": "94"
},
{
"begin": 2601,
"end": 2672,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2601,
"end": 2672,
"name": "tag",
"source": 1,
"value": "93"
},
{
"begin": 2601,
"end": 2672,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2594,
"end": 2672,
"name": "SWAP4",
"source": 1
},
{
"begin": 2594,
"end": 2672,
"name": "POP",
"source": 1
},
{
"begin": 2681,
"end": 2733,
"name": "PUSH [tag]",
"source": 1,
"value": "95"
},
{
"begin": 2726,
"end": 2732,
"name": "DUP2",
"source": 1
},
{
"begin": 2721,
"end": 2724,
"name": "DUP6",
"source": 1
},
{
"begin": 2714,
"end": 2718,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2707,
"end": 2712,
"name": "DUP7",
"source": 1
},
{
"begin": 2703,
"end": 2719,
"name": "ADD",
"source": 1
},
{
"begin": 2681,
"end": 2733,
"name": "PUSH [tag]",
"source": 1,
"value": "96"
},
{
"begin": 2681,
"end": 2733,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2681,
"end": 2733,
"name": "tag",
"source": 1,
"value": "95"
},
{
"begin": 2681,
"end": 2733,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2758,
"end": 2787,
"name": "PUSH [tag]",
"source": 1,
"value": "97"
},
{
"begin": 2780,
"end": 2786,
"name": "DUP2",
"source": 1
},
{
"begin": 2758,
"end": 2787,
"name": "PUSH [tag]",
"source": 1,
"value": "98"
},
{
"begin": 2758,
"end": 2787,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2758,
"end": 2787,
"name": "tag",
"source": 1,
"value": "97"
},
{
"begin": 2758,
"end": 2787,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2753,
"end": 2756,
"name": "DUP5",
"source": 1
},
{
"begin": 2749,
"end": 2788,
"name": "ADD",
"source": 1
},
{
"begin": 2742,
"end": 2788,
"name": "SWAP2",
"source": 1
},
{
"begin": 2742,
"end": 2788,
"name": "POP",
"source": 1
},
{
"begin": 2522,
"end": 2794,
"name": "POP",
"source": 1
},
{
"begin": 2430,
"end": 2794,
"name": "SWAP3",
"source": 1
},
{
"begin": 2430,
"end": 2794,
"name": "SWAP2",
"source": 1
},
{
"begin": 2430,
"end": 2794,
"name": "POP",
"source": 1
},
{
"begin": 2430,
"end": 2794,
"name": "POP",
"source": 1
},
{
"begin": 2430,
"end": 2794,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2800,
"end": 3515,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 2800,
"end": 3515,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3009,
"end": 3013,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3047,
"end": 3049,
"name": "PUSH",
"source": 1,
"value": "60"
},
{
"begin": 3036,
"end": 3045,
"name": "DUP3",
"source": 1
},
{
"begin": 3032,
"end": 3050,
"name": "ADD",
"source": 1
},
{
"begin": 3024,
"end": 3050,
"name": "SWAP1",
"source": 1
},
{
"begin": 3024,
"end": 3050,
"name": "POP",
"source": 1
},
{
"begin": 3096,
"end": 3105,
"name": "DUP2",
"source": 1
},
{
"begin": 3090,
"end": 3094,
"name": "DUP2",
"source": 1
},
{
"begin": 3086,
"end": 3106,
"name": "SUB",
"source": 1
},
{
"begin": 3082,
"end": 3083,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3071,
"end": 3080,
"name": "DUP4",
"source": 1
},
{
"begin": 3067,
"end": 3084,
"name": "ADD",
"source": 1
},
{
"begin": 3060,
"end": 3107,
"name": "MSTORE",
"source": 1
},
{
"begin": 3124,
"end": 3202,
"name": "PUSH [tag]",
"source": 1,
"value": "100"
},
{
"begin": 3197,
"end": 3201,
"name": "DUP2",
"source": 1
},
{
"begin": 3188,
"end": 3194,
"name": "DUP7",
"source": 1
},
{
"begin": 3124,
"end": 3202,
"name": "PUSH [tag]",
"source": 1,
"value": "89"
},
{
"begin": 3124,
"end": 3202,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3124,
"end": 3202,
"name": "tag",
"source": 1,
"value": "100"
},
{
"begin": 3124,
"end": 3202,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3116,
"end": 3202,
"name": "SWAP1",
"source": 1
},
{
"begin": 3116,
"end": 3202,
"name": "POP",
"source": 1
},
{
"begin": 3249,
"end": 3258,
"name": "DUP2",
"source": 1
},
{
"begin": 3243,
"end": 3247,
"name": "DUP2",
"source": 1
},
{
"begin": 3239,
"end": 3259,
"name": "SUB",
"source": 1
},
{
"begin": 3234,
"end": 3236,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3223,
"end": 3232,
"name": "DUP4",
"source": 1
},
{
"begin": 3219,
"end": 3237,
"name": "ADD",
"source": 1
},
{
"begin": 3212,
"end": 3260,
"name": "MSTORE",
"source": 1
},
{
"begin": 3277,
"end": 3355,
"name": "PUSH [tag]",
"source": 1,
"value": "101"
},
{
"begin": 3350,
"end": 3354,
"name": "DUP2",
"source": 1
},
{
"begin": 3341,
"end": 3347,
"name": "DUP6",
"source": 1
},
{
"begin": 3277,
"end": 3355,
"name": "PUSH [tag]",
"source": 1,
"value": "89"
},
{
"begin": 3277,
"end": 3355,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3277,
"end": 3355,
"name": "tag",
"source": 1,
"value": "101"
},
{
"begin": 3277,
"end": 3355,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3269,
"end": 3355,
"name": "SWAP1",
"source": 1
},
{
"begin": 3269,
"end": 3355,
"name": "POP",
"source": 1
},
{
"begin": 3402,
"end": 3411,
"name": "DUP2",
"source": 1
},
{
"begin": 3396,
"end": 3400,
"name": "DUP2",
"source": 1
},
{
"begin": 3392,
"end": 3412,
"name": "SUB",
"source": 1
},
{
"begin": 3387,
"end": 3389,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 3376,
"end": 3385,
"name": "DUP4",
"source": 1
},
{
"begin": 3372,
"end": 3390,
"name": "ADD",
"source": 1
},
{
"begin": 3365,
"end": 3413,
"name": "MSTORE",
"source": 1
},
{
"begin": 3430,
"end": 3508,
"name": "PUSH [tag]",
"source": 1,
"value": "102"
},
{
"begin": 3503,
"end": 3507,
"name": "DUP2",
"source": 1
},
{
"begin": 3494,
"end": 3500,
"name": "DUP5",
"source": 1
},
{
"begin": 3430,
"end": 3508,
"name": "PUSH [tag]",
"source": 1,
"value": "89"
},
{
"begin": 3430,
"end": 3508,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3430,
"end": 3508,
"name": "tag",
"source": 1,
"value": "102"
},
{
"begin": 3430,
"end": 3508,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3422,
"end": 3508,
"name": "SWAP1",
"source": 1
},
{
"begin": 3422,
"end": 3508,
"name": "POP",
"source": 1
},
{
"begin": 2800,
"end": 3515,
"name": "SWAP5",
"source": 1
},
{
"begin": 2800,
"end": 3515,
"name": "SWAP4",
"source": 1
},
{
"begin": 2800,
"end": 3515,
"name": "POP",
"source": 1
},
{
"begin": 2800,
"end": 3515,
"name": "POP",
"source": 1
},
{
"begin": 2800,
"end": 3515,
"name": "POP",
"source": 1
},
{
"begin": 2800,
"end": 3515,
"name": "POP",
"source": 1
},
{
"begin": 2800,
"end": 3515,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3521,
"end": 3650,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 3521,
"end": 3650,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3555,
"end": 3561,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3582,
"end": 3602,
"name": "PUSH [tag]",
"source": 1,
"value": "104"
},
{
"begin": 3582,
"end": 3602,
"name": "PUSH [tag]",
"source": 1,
"value": "105"
},
{
"begin": 3582,
"end": 3602,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3582,
"end": 3602,
"name": "tag",
"source": 1,
"value": "104"
},
{
"begin": 3582,
"end": 3602,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3572,
"end": 3602,
"name": "SWAP1",
"source": 1
},
{
"begin": 3572,
"end": 3602,
"name": "POP",
"source": 1
},
{
"begin": 3611,
"end": 3644,
"name": "PUSH [tag]",
"source": 1,
"value": "106"
},
{
"begin": 3639,
"end": 3643,
"name": "DUP3",
"source": 1
},
{
"begin": 3631,
"end": 3637,
"name": "DUP3",
"source": 1
},
{
"begin": 3611,
"end": 3644,
"name": "PUSH [tag]",
"source": 1,
"value": "107"
},
{
"begin": 3611,
"end": 3644,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3611,
"end": 3644,
"name": "tag",
"source": 1,
"value": "106"
},
{
"begin": 3611,
"end": 3644,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3521,
"end": 3650,
"name": "SWAP2",
"source": 1
},
{
"begin": 3521,
"end": 3650,
"name": "SWAP1",
"source": 1
},
{
"begin": 3521,
"end": 3650,
"name": "POP",
"source": 1
},
{
"begin": 3521,
"end": 3650,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3656,
"end": 3731,
"name": "tag",
"source": 1,
"value": "105"
},
{
"begin": 3656,
"end": 3731,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3689,
"end": 3695,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3722,
"end": 3724,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 3716,
"end": 3725,
"name": "MLOAD",
"source": 1
},
{
"begin": 3706,
"end": 3725,
"name": "SWAP1",
"source": 1
},
{
"begin": 3706,
"end": 3725,
"name": "POP",
"source": 1
},
{
"begin": 3656,
"end": 3731,
"name": "SWAP1",
"source": 1
},
{
"begin": 3656,
"end": 3731,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3737,
"end": 4045,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 3737,
"end": 4045,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3799,
"end": 3803,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3889,
"end": 3907,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3881,
"end": 3887,
"name": "DUP3",
"source": 1
},
{
"begin": 3878,
"end": 3908,
"name": "GT",
"source": 1
},
{
"begin": 3875,
"end": 3931,
"name": "ISZERO",
"source": 1
},
{
"begin": 3875,
"end": 3931,
"name": "PUSH [tag]",
"source": 1,
"value": "110"
},
{
"begin": 3875,
"end": 3931,
"name": "JUMPI",
"source": 1
},
{
"begin": 3911,
"end": 3929,
"name": "PUSH [tag]",
"source": 1,
"value": "111"
},
{
"begin": 3911,
"end": 3929,
"name": "PUSH [tag]",
"source": 1,
"value": "112"
},
{
"begin": 3911,
"end": 3929,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3911,
"end": 3929,
"name": "tag",
"source": 1,
"value": "111"
},
{
"begin": 3911,
"end": 3929,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3875,
"end": 3931,
"name": "tag",
"source": 1,
"value": "110"
},
{
"begin": 3875,
"end": 3931,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3949,
"end": 3978,
"name": "PUSH [tag]",
"source": 1,
"value": "113"
},
{
"begin": 3971,
"end": 3977,
"name": "DUP3",
"source": 1
},
{
"begin": 3949,
"end": 3978,
"name": "PUSH [tag]",
"source": 1,
"value": "98"
},
{
"begin": 3949,
"end": 3978,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3949,
"end": 3978,
"name": "tag",
"source": 1,
"value": "113"
},
{
"begin": 3949,
"end": 3978,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3941,
"end": 3978,
"name": "SWAP1",
"source": 1
},
{
"begin": 3941,
"end": 3978,
"name": "POP",
"source": 1
},
{
"begin": 4033,
"end": 4037,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4027,
"end": 4031,
"name": "DUP2",
"source": 1
},
{
"begin": 4023,
"end": 4038,
"name": "ADD",
"source": 1
},
{
"begin": 4015,
"end": 4038,
"name": "SWAP1",
"source": 1
},
{
"begin": 4015,
"end": 4038,
"name": "POP",
"source": 1
},
{
"begin": 3737,
"end": 4045,
"name": "SWAP2",
"source": 1
},
{
"begin": 3737,
"end": 4045,
"name": "SWAP1",
"source": 1
},
{
"begin": 3737,
"end": 4045,
"name": "POP",
"source": 1
},
{
"begin": 3737,
"end": 4045,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4051,
"end": 4150,
"name": "tag",
"source": 1,
"value": "92"
},
{
"begin": 4051,
"end": 4150,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4103,
"end": 4109,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4137,
"end": 4142,
"name": "DUP2",
"source": 1
},
{
"begin": 4131,
"end": 4143,
"name": "MLOAD",
"source": 1
},
{
"begin": 4121,
"end": 4143,
"name": "SWAP1",
"source": 1
},
{
"begin": 4121,
"end": 4143,
"name": "POP",
"source": 1
},
{
"begin": 4051,
"end": 4150,
"name": "SWAP2",
"source": 1
},
{
"begin": 4051,
"end": 4150,
"name": "SWAP1",
"source": 1
},
{
"begin": 4051,
"end": 4150,
"name": "POP",
"source": 1
},
{
"begin": 4051,
"end": 4150,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4156,
"end": 4325,
"name": "tag",
"source": 1,
"value": "94"
},
{
"begin": 4156,
"end": 4325,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4240,
"end": 4251,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4274,
"end": 4280,
"name": "DUP3",
"source": 1
},
{
"begin": 4269,
"end": 4272,
"name": "DUP3",
"source": 1
},
{
"begin": 4262,
"end": 4281,
"name": "MSTORE",
"source": 1
},
{
"begin": 4314,
"end": 4318,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4309,
"end": 4312,
"name": "DUP3",
"source": 1
},
{
"begin": 4305,
"end": 4319,
"name": "ADD",
"source": 1
},
{
"begin": 4290,
"end": 4319,
"name": "SWAP1",
"source": 1
},
{
"begin": 4290,
"end": 4319,
"name": "POP",
"source": 1
},
{
"begin": 4156,
"end": 4325,
"name": "SWAP3",
"source": 1
},
{
"begin": 4156,
"end": 4325,
"name": "SWAP2",
"source": 1
},
{
"begin": 4156,
"end": 4325,
"name": "POP",
"source": 1
},
{
"begin": 4156,
"end": 4325,
"name": "POP",
"source": 1
},
{
"begin": 4156,
"end": 4325,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4331,
"end": 4408,
"name": "tag",
"source": 1,
"value": "116"
},
{
"begin": 4331,
"end": 4408,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4368,
"end": 4375,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4397,
"end": 4402,
"name": "DUP2",
"source": 1
},
{
"begin": 4386,
"end": 4402,
"name": "SWAP1",
"source": 1
},
{
"begin": 4386,
"end": 4402,
"name": "POP",
"source": 1
},
{
"begin": 4331,
"end": 4408,
"name": "SWAP2",
"source": 1
},
{
"begin": 4331,
"end": 4408,
"name": "SWAP1",
"source": 1
},
{
"begin": 4331,
"end": 4408,
"name": "POP",
"source": 1
},
{
"begin": 4331,
"end": 4408,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4414,
"end": 4568,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 4414,
"end": 4568,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4498,
"end": 4504,
"name": "DUP3",
"source": 1
},
{
"begin": 4493,
"end": 4496,
"name": "DUP2",
"source": 1
},
{
"begin": 4488,
"end": 4491,
"name": "DUP4",
"source": 1
},
{
"begin": 4475,
"end": 4505,
"name": "CALLDATACOPY",
"source": 1
},
{
"begin": 4560,
"end": 4561,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4551,
"end": 4557,
"name": "DUP4",
"source": 1
},
{
"begin": 4546,
"end": 4549,
"name": "DUP4",
"source": 1
},
{
"begin": 4542,
"end": 4558,
"name": "ADD",
"source": 1
},
{
"begin": 4535,
"end": 4562,
"name": "MSTORE",
"source": 1
},
{
"begin": 4414,
"end": 4568,
"name": "POP",
"source": 1
},
{
"begin": 4414,
"end": 4568,
"name": "POP",
"source": 1
},
{
"begin": 4414,
"end": 4568,
"name": "POP",
"source": 1
},
{
"begin": 4414,
"end": 4568,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4574,
"end": 4881,
"name": "tag",
"source": 1,
"value": "96"
},
{
"begin": 4574,
"end": 4881,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4642,
"end": 4643,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4652,
"end": 4765,
"name": "tag",
"source": 1,
"value": "120"
},
{
"begin": 4652,
"end": 4765,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4666,
"end": 4672,
"name": "DUP4",
"source": 1
},
{
"begin": 4663,
"end": 4664,
"name": "DUP2",
"source": 1
},
{
"begin": 4660,
"end": 4673,
"name": "LT",
"source": 1
},
{
"begin": 4652,
"end": 4765,
"name": "ISZERO",
"source": 1
},
{
"begin": 4652,
"end": 4765,
"name": "PUSH [tag]",
"source": 1,
"value": "122"
},
{
"begin": 4652,
"end": 4765,
"name": "JUMPI",
"source": 1
},
{
"begin": 4751,
"end": 4752,
"name": "DUP1",
"source": 1
},
{
"begin": 4746,
"end": 4749,
"name": "DUP3",
"source": 1
},
{
"begin": 4742,
"end": 4753,
"name": "ADD",
"source": 1
},
{
"begin": 4736,
"end": 4754,
"name": "MLOAD",
"source": 1
},
{
"begin": 4732,
"end": 4733,
"name": "DUP2",
"source": 1
},
{
"begin": 4727,
"end": 4730,
"name": "DUP5",
"source": 1
},
{
"begin": 4723,
"end": 4734,
"name": "ADD",
"source": 1
},
{
"begin": 4716,
"end": 4755,
"name": "MSTORE",
"source": 1
},
{
"begin": 4688,
"end": 4690,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4685,
"end": 4686,
"name": "DUP2",
"source": 1
},
{
"begin": 4681,
"end": 4691,
"name": "ADD",
"source": 1
},
{
"begin": 4676,
"end": 4691,
"name": "SWAP1",
"source": 1
},
{
"begin": 4676,
"end": 4691,
"name": "POP",
"source": 1
},
{
"begin": 4652,
"end": 4765,
"name": "PUSH [tag]",
"source": 1,
"value": "120"
},
{
"begin": 4652,
"end": 4765,
"name": "JUMP",
"source": 1
},
{
"begin": 4652,
"end": 4765,
"name": "tag",
"source": 1,
"value": "122"
},
{
"begin": 4652,
"end": 4765,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4783,
"end": 4789,
"name": "DUP4",
"source": 1
},
{
"begin": 4780,
"end": 4781,
"name": "DUP2",
"source": 1
},
{
"begin": 4777,
"end": 4790,
"name": "GT",
"source": 1
},
{
"begin": 4774,
"end": 4875,
"name": "ISZERO",
"source": 1
},
{
"begin": 4774,
"end": 4875,
"name": "PUSH [tag]",
"source": 1,
"value": "123"
},
{
"begin": 4774,
"end": 4875,
"name": "JUMPI",
"source": 1
},
{
"begin": 4863,
"end": 4864,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4854,
"end": 4860,
"name": "DUP5",
"source": 1
},
{
"begin": 4849,
"end": 4852,
"name": "DUP5",
"source": 1
},
{
"begin": 4845,
"end": 4861,
"name": "ADD",
"source": 1
},
{
"begin": 4838,
"end": 4865,
"name": "MSTORE",
"source": 1
},
{
"begin": 4774,
"end": 4875,
"name": "tag",
"source": 1,
"value": "123"
},
{
"begin": 4774,
"end": 4875,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4623,
"end": 4881,
"name": "POP",
"source": 1
},
{
"begin": 4574,
"end": 4881,
"name": "POP",
"source": 1
},
{
"begin": 4574,
"end": 4881,
"name": "POP",
"source": 1
},
{
"begin": 4574,
"end": 4881,
"name": "POP",
"source": 1
},
{
"begin": 4574,
"end": 4881,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4887,
"end": 5207,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 4887,
"end": 5207,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4931,
"end": 4937,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4968,
"end": 4969,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 4962,
"end": 4966,
"name": "DUP3",
"source": 1
},
{
"begin": 4958,
"end": 4970,
"name": "DIV",
"source": 1
},
{
"begin": 4948,
"end": 4970,
"name": "SWAP1",
"source": 1
},
{
"begin": 4948,
"end": 4970,
"name": "POP",
"source": 1
},
{
"begin": 5015,
"end": 5016,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 5009,
"end": 5013,
"name": "DUP3",
"source": 1
},
{
"begin": 5005,
"end": 5017,
"name": "AND",
"source": 1
},
{
"begin": 5036,
"end": 5054,
"name": "DUP1",
"source": 1
},
{
"begin": 5026,
"end": 5107,
"name": "PUSH [tag]",
"source": 1,
"value": "125"
},
{
"begin": 5026,
"end": 5107,
"name": "JUMPI",
"source": 1
},
{
"begin": 5092,
"end": 5096,
"name": "PUSH",
"source": 1,
"value": "7F"
},
{
"begin": 5084,
"end": 5090,
"name": "DUP3",
"source": 1
},
{
"begin": 5080,
"end": 5097,
"name": "AND",
"source": 1
},
{
"begin": 5070,
"end": 5097,
"name": "SWAP2",
"source": 1
},
{
"begin": 5070,
"end": 5097,
"name": "POP",
"source": 1
},
{
"begin": 5026,
"end": 5107,
"name": "tag",
"source": 1,
"value": "125"
},
{
"begin": 5026,
"end": 5107,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5154,
"end": 5156,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 5146,
"end": 5152,
"name": "DUP3",
"source": 1
},
{
"begin": 5143,
"end": 5157,
"name": "LT",
"source": 1
},
{
"begin": 5123,
"end": 5141,
"name": "DUP2",
"source": 1
},
{
"begin": 5120,
"end": 5158,
"name": "EQ",
"source": 1
},
{
"begin": 5117,
"end": 5201,
"name": "ISZERO",
"source": 1
},
{
"begin": 5117,
"end": 5201,
"name": "PUSH [tag]",
"source": 1,
"value": "126"
},
{
"begin": 5117,
"end": 5201,
"name": "JUMPI",
"source": 1
},
{
"begin": 5173,
"end": 5191,
"name": "PUSH [tag]",
"source": 1,
"value": "127"
},
{
"begin": 5173,
"end": 5191,
"name": "PUSH [tag]",
"source": 1,
"value": "128"
},
{
"begin": 5173,
"end": 5191,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 5173,
"end": 5191,
"name": "tag",
"source": 1,
"value": "127"
},
{
"begin": 5173,
"end": 5191,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5117,
"end": 5201,
"name": "tag",
"source": 1,
"value": "126"
},
{
"begin": 5117,
"end": 5201,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4938,
"end": 5207,
"name": "POP",
"source": 1
},
{
"begin": 4887,
"end": 5207,
"name": "SWAP2",
"source": 1
},
{
"begin": 4887,
"end": 5207,
"name": "SWAP1",
"source": 1
},
{
"begin": 4887,
"end": 5207,
"name": "POP",
"source": 1
},
{
"begin": 4887,
"end": 5207,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 5213,
"end": 5494,
"name": "tag",
"source": 1,
"value": "107"
},
{
"begin": 5213,
"end": 5494,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5296,
"end": 5323,
"name": "PUSH [tag]",
"source": 1,
"value": "130"
},
{
"begin": 5318,
"end": 5322,
"name": "DUP3",
"source": 1
},
{
"begin": 5296,
"end": 5323,
"name": "PUSH [tag]",
"source": 1,
"value": "98"
},
{
"begin": 5296,
"end": 5323,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 5296,
"end": 5323,
"name": "tag",
"source": 1,
"value": "130"
},
{
"begin": 5296,
"end": 5323,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5288,
"end": 5294,
"name": "DUP2",
"source": 1
},
{
"begin": 5284,
"end": 5324,
"name": "ADD",
"source": 1
},
{
"begin": 5426,
"end": 5432,
"name": "DUP2",
"source": 1
},
{
"begin": 5414,
"end": 5424,
"name": "DUP2",
"source": 1
},
{
"begin": 5411,
"end": 5433,
"name": "LT",
"source": 1
},
{
"begin": 5390,
"end": 5408,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 5378,
"end": 5388,
"name": "DUP3",
"source": 1
},
{
"begin": 5375,
"end": 5409,
"name": "GT",
"source": 1
},
{
"begin": 5372,
"end": 5434,
"name": "OR",
"source": 1
},
{
"begin": 5369,
"end": 5457,
"name": "ISZERO",
"source": 1
},
{
"begin": 5369,
"end": 5457,
"name": "PUSH [tag]",
"source": 1,
"value": "131"
},
{
"begin": 5369,
"end": 5457,
"name": "JUMPI",
"source": 1
},
{
"begin": 5437,
"end": 5455,
"name": "PUSH [tag]",
"source": 1,
"value": "132"
},
{
"begin": 5437,
"end": 5455,
"name": "PUSH [tag]",
"source": 1,
"value": "112"
},
{
"begin": 5437,
"end": 5455,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 5437,
"end": 5455,
"name": "tag",
"source": 1,
"value": "132"
},
{
"begin": 5437,
"end": 5455,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5369,
"end": 5457,
"name": "tag",
"source": 1,
"value": "131"
},
{
"begin": 5369,
"end": 5457,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5477,
"end": 5487,
"name": "DUP1",
"source": 1
},
{
"begin": 5473,
"end": 5475,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 5466,
"end": 5488,
"name": "MSTORE",
"source": 1
},
{
"begin": 5256,
"end": 5494,
"name": "POP",
"source": 1
},
{
"begin": 5213,
"end": 5494,
"name": "POP",
"source": 1
},
{
"begin": 5213,
"end": 5494,
"name": "POP",
"source": 1
},
{
"begin": 5213,
"end": 5494,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 5500,
"end": 5680,
"name": "tag",
"source": 1,
"value": "128"
},
{
"begin": 5500,
"end": 5680,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5548,
"end": 5625,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 5545,
"end": 5546,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5538,
"end": 5626,
"name": "MSTORE",
"source": 1
},
{
"begin": 5645,
"end": 5649,
"name": "PUSH",
"source": 1,
"value": "22"
},
{
"begin": 5642,
"end": 5643,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 5635,
"end": 5650,
"name": "MSTORE",
"source": 1
},
{
"begin": 5669,
"end": 5673,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 5666,
"end": 5667,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5659,
"end": 5674,
"name": "REVERT",
"source": 1
},
{
"begin": 5686,
"end": 5866,
"name": "tag",
"source": 1,
"value": "112"
},
{
"begin": 5686,
"end": 5866,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5734,
"end": 5811,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 5731,
"end": 5732,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5724,
"end": 5812,
"name": "MSTORE",
"source": 1
},
{
"begin": 5831,
"end": 5835,
"name": "PUSH",
"source": 1,
"value": "41"
},
{
"begin": 5828,
"end": 5829,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 5821,
"end": 5836,
"name": "MSTORE",
"source": 1
},
{
"begin": 5855,
"end": 5859,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 5852,
"end": 5853,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5845,
"end": 5860,
"name": "REVERT",
"source": 1
},
{
"begin": 5872,
"end": 5989,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 5872,
"end": 5989,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5981,
"end": 5982,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5978,
"end": 5979,
"name": "DUP1",
"source": 1
},
{
"begin": 5971,
"end": 5983,
"name": "REVERT",
"source": 1
},
{
"begin": 5995,
"end": 6112,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 5995,
"end": 6112,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6104,
"end": 6105,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6101,
"end": 6102,
"name": "DUP1",
"source": 1
},
{
"begin": 6094,
"end": 6106,
"name": "REVERT",
"source": 1
},
{
"begin": 6118,
"end": 6235,
"name": "tag",
"source": 1,
"value": "77"
},
{
"begin": 6118,
"end": 6235,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6227,
"end": 6228,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6224,
"end": 6225,
"name": "DUP1",
"source": 1
},
{
"begin": 6217,
"end": 6229,
"name": "REVERT",
"source": 1
},
{
"begin": 6241,
"end": 6358,
"name": "tag",
"source": 1,
"value": "74"
},
{
"begin": 6241,
"end": 6358,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6350,
"end": 6351,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6347,
"end": 6348,
"name": "DUP1",
"source": 1
},
{
"begin": 6340,
"end": 6352,
"name": "REVERT",
"source": 1
},
{
"begin": 6364,
"end": 6466,
"name": "tag",
"source": 1,
"value": "98"
},
{
"begin": 6364,
"end": 6466,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6405,
"end": 6411,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6456,
"end": 6458,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 6452,
"end": 6459,
"name": "NOT",
"source": 1
},
{
"begin": 6447,
"end": 6449,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 6440,
"end": 6445,
"name": "DUP4",
"source": 1
},
{
"begin": 6436,
"end": 6450,
"name": "ADD",
"source": 1
},
{
"begin": 6432,
"end": 6460,
"name": "AND",
"source": 1
},
{
"begin": 6422,
"end": 6460,
"name": "SWAP1",
"source": 1
},
{
"begin": 6422,
"end": 6460,
"name": "POP",
"source": 1
},
{
"begin": 6364,
"end": 6466,
"name": "SWAP2",
"source": 1
},
{
"begin": 6364,
"end": 6466,
"name": "SWAP1",
"source": 1
},
{
"begin": 6364,
"end": 6466,
"name": "POP",
"source": 1
},
{
"begin": 6364,
"end": 6466,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 6472,
"end": 6594,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 6472,
"end": 6594,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6545,
"end": 6569,
"name": "PUSH [tag]",
"source": 1,
"value": "141"
},
{
"begin": 6563,
"end": 6568,
"name": "DUP2",
"source": 1
},
{
"begin": 6545,
"end": 6569,
"name": "PUSH [tag]",
"source": 1,
"value": "116"
},
{
"begin": 6545,
"end": 6569,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 6545,
"end": 6569,
"name": "tag",
"source": 1,
"value": "141"
},
{
"begin": 6545,
"end": 6569,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6538,
"end": 6543,
"name": "DUP2",
"source": 1
},
{
"begin": 6535,
"end": 6570,
"name": "EQ",
"source": 1
},
{
"begin": 6525,
"end": 6588,
"name": "PUSH [tag]",
"source": 1,
"value": "142"
},
{
"begin": 6525,
"end": 6588,
"name": "JUMPI",
"source": 1
},
{
"begin": 6584,
"end": 6585,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6581,
"end": 6582,
"name": "DUP1",
"source": 1
},
{
"begin": 6574,
"end": 6586,
"name": "REVERT",
"source": 1
},
{
"begin": 6525,
"end": 6588,
"name": "tag",
"source": 1,
"value": "142"
},
{
"begin": 6525,
"end": 6588,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6472,
"end": 6594,
"name": "POP",
"source": 1
},
{
"begin": 6472,
"end": 6594,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"addJob(string,string,string)": "28f76943",
"jobs(uint256)": "180aedf3"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_jobOwner\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_contractName\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_description\",\"type\":\"string\"}],\"name\":\"addJob\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"jobs\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"_jobOwner\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_contractName\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_description\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/4_NewJob.sol\":\"NewJob\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/4_NewJob.sol\":{\"keccak256\":\"0xd7e673c3a08c42754bde2f91f8b7ab0584cfabb6916fc4cc5a9ee909022ed205\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://1f8d546969361c1ee728fd919fbdbedde28c345f34121329b7b046b4d3c022f6\",\"dweb:/ipfs/QmdVEz9FDkqSo8GJqwmuDi2ty4HdR1toPVv7aPwVPHsFpt\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/4_NewJob.sol": {
"ast": {
"absolutePath": "contracts/4_NewJob.sol",
"exportedSymbols": {
"NewJob": [
33
]
},
"id": 34,
"license": "GPL-3.0",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
">=",
"0.7",
".0",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "37:31:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 33,
"linearizedBaseContracts": [
33
],
"name": "NewJob",
"nameLocation": "79:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "180aedf3",
"id": 5,
"mutability": "mutable",
"name": "jobs",
"nameLocation": "106:4:0",
"nodeType": "VariableDeclaration",
"scope": 33,
"src": "93:17:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_struct$_Job_$12_storage_$dyn_storage",
"typeString": "struct NewJob.Job[]"
},
"typeName": {
"baseType": {
"id": 3,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 2,
"name": "Job",
"nodeType": "IdentifierPath",
"referencedDeclaration": 12,
"src": "93:3:0"
},
"referencedDeclaration": 12,
"src": "93:3:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Job_$12_storage_ptr",
"typeString": "struct NewJob.Job"
}
},
"id": 4,
"nodeType": "ArrayTypeName",
"src": "93:5:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_struct$_Job_$12_storage_$dyn_storage_ptr",
"typeString": "struct NewJob.Job[]"
}
},
"visibility": "public"
},
{
"canonicalName": "NewJob.Job",
"id": 12,
"members": [
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "_jobOwner",
"nameLocation": "145:9:0",
"nodeType": "VariableDeclaration",
"scope": 12,
"src": "138:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
},
"typeName": {
"id": 6,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "138:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "_contractName",
"nameLocation": "171:13:0",
"nodeType": "VariableDeclaration",
"scope": 12,
"src": "164:20:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
},
"typeName": {
"id": 8,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "164:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"mutability": "mutable",
"name": "_description",
"nameLocation": "201:12:0",
"nodeType": "VariableDeclaration",
"scope": 12,
"src": "194:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
},
"typeName": {
"id": 10,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "194:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
}
],
"name": "Job",
"nameLocation": "124:3:0",
"nodeType": "StructDefinition",
"scope": 33,
"src": "117:127:0",
"visibility": "public"
},
{
"body": {
"id": 31,
"nodeType": "Block",
"src": "355:76:0",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"id": 25,
"name": "_jobOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 14,
"src": "383:9:0",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
},
{
"id": 26,
"name": "_contractName",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 16,
"src": "394:13:0",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
},
{
"id": 27,
"name": "_description",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 18,
"src": "409:12:0",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
],
"id": 24,
"name": "Job",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 12,
"src": "379:3:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_struct$_Job_$12_storage_ptr_$",
"typeString": "type(struct NewJob.Job storage pointer)"
}
},
"id": 28,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "structConstructorCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "379:44:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_struct$_Job_$12_memory_ptr",
"typeString": "struct NewJob.Job memory"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_struct$_Job_$12_memory_ptr",
"typeString": "struct NewJob.Job memory"
}
],
"expression": {
"id": 21,
"name": "jobs",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "369:4:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_struct$_Job_$12_storage_$dyn_storage",
"typeString": "struct NewJob.Job storage ref[] storage ref"
}
},
"id": 23,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "push",
"nodeType": "MemberAccess",
"src": "369:9:0",
"typeDescriptions": {
"typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_struct$_Job_$12_storage_$dyn_storage_ptr_$_t_struct$_Job_$12_storage_$returns$__$bound_to$_t_array$_t_struct$_Job_$12_storage_$dyn_storage_ptr_$",
"typeString": "function (struct NewJob.Job storage ref[] storage pointer,struct NewJob.Job storage ref)"
}
},
"id": 29,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "369:55:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 30,
"nodeType": "ExpressionStatement",
"src": "369:55:0"
}
]
},
"functionSelector": "28f76943",
"id": 32,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "addJob",
"nameLocation": "259:6:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 19,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"mutability": "mutable",
"name": "_jobOwner",
"nameLocation": "280:9:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "266:23:0",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 13,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "266:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 16,
"mutability": "mutable",
"name": "_contractName",
"nameLocation": "305:13:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "291:27:0",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 15,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "291:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 18,
"mutability": "mutable",
"name": "_description",
"nameLocation": "334:12:0",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "320:26:0",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 17,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "320:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
}
],
"src": "265:82:0"
},
"returnParameters": {
"id": 20,
"nodeType": "ParameterList",
"parameters": [],
"src": "355:0:0"
},
"scope": 33,
"src": "250:181:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
}
],
"scope": 34,
"src": "70:363:0",
"usedErrors": []
}
],
"src": "37:396: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": "608060405234801561001057600080fd5b50610868806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063180aedf31461004657806328f76943146100785780634c5d8a0f14610094575b600080fd5b610060600480360381019061005b9190610516565b6100b2565b60405161006f9392919061058b565b60405180910390f35b610092600480360381019061008d919061046f565b610284565b005b61009c610341565b6040516100a991906105d7565b60405180910390f35b600081815481106100c257600080fd5b90600052602060002090600302016000915090508060000180546100e590610706565b80601f016020809104026020016040519081016040528092919081815260200182805461011190610706565b801561015e5780601f106101335761010080835404028352916020019161015e565b820191906000526020600020905b81548152906001019060200180831161014157829003601f168201915b50505050509080600101805461017390610706565b80601f016020809104026020016040519081016040528092919081815260200182805461019f90610706565b80156101ec5780601f106101c1576101008083540402835291602001916101ec565b820191906000526020600020905b8154815290600101906020018083116101cf57829003601f168201915b50505050509080600201805461020190610706565b80601f016020809104026020016040519081016040528092919081815260200182805461022d90610706565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905083565b6000604051806060016040528085815260200184815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906102e6929190610347565b506020820151816001019080519060200190610303929190610347565b506040820151816002019080519060200190610320929190610347565b50505060018060008282546103359190610664565b92505081905550505050565b60015481565b82805461035390610706565b90600052602060002090601f01602090048101928261037557600085556103bc565b82601f1061038e57805160ff19168380011785556103bc565b828001600101855582156103bc579182015b828111156103bb5782518255916020019190600101906103a0565b5b5090506103c991906103cd565b5090565b5b808211156103e65760008160009055506001016103ce565b5090565b60006103fd6103f884610617565b6105f2565b905082815260208101848484011115610419576104186107fb565b5b6104248482856106c4565b509392505050565b600082601f830112610441576104406107f6565b5b81356104518482602086016103ea565b91505092915050565b6000813590506104698161081b565b92915050565b60008060006060848603121561048857610487610805565b5b600084013567ffffffffffffffff8111156104a6576104a5610800565b5b6104b28682870161042c565b935050602084013567ffffffffffffffff8111156104d3576104d2610800565b5b6104df8682870161042c565b925050604084013567ffffffffffffffff811115610500576104ff610800565b5b61050c8682870161042c565b9150509250925092565b60006020828403121561052c5761052b610805565b5b600061053a8482850161045a565b91505092915050565b600061054e82610648565b6105588185610653565b93506105688185602086016106d3565b6105718161080a565b840191505092915050565b610585816106ba565b82525050565b600060608201905081810360008301526105a58186610543565b905081810360208301526105b98185610543565b905081810360408301526105cd8184610543565b9050949350505050565b60006020820190506105ec600083018461057c565b92915050565b60006105fc61060d565b90506106088282610738565b919050565b6000604051905090565b600067ffffffffffffffff821115610632576106316107c7565b5b61063b8261080a565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061066f826106ba565b915061067a836106ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156106af576106ae610769565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b838110156106f15780820151818401526020810190506106d6565b83811115610700576000848401525b50505050565b6000600282049050600182168061071e57607f821691505b6020821081141561073257610731610798565b5b50919050565b6107418261080a565b810181811067ffffffffffffffff821117156107605761075f6107c7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610824816106ba565b811461082f57600080fd5b5056fea2646970667358221220f8e9ebe030bf56d95d400eeb61c3a67b126f9d4e3f7dc8e3cceef0b6146a835d64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x868 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 0x180AEDF3 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x28F76943 EQ PUSH2 0x78 JUMPI DUP1 PUSH4 0x4C5D8A0F EQ PUSH2 0x94 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x516 JUMP JUMPDEST PUSH2 0xB2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x92 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8D SWAP2 SWAP1 PUSH2 0x46F JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x9C PUSH2 0x341 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0xE5 SWAP1 PUSH2 0x706 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 0x111 SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x133 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15E 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 0x141 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x173 SWAP1 PUSH2 0x706 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 0x19F SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1EC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1EC 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 0x1CF JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x706 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 0x22D SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A 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 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2E6 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x303 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x320 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP POP POP PUSH1 0x1 DUP1 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x664 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x353 SWAP1 PUSH2 0x706 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x375 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x38E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x3BC JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3BB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3A0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3C9 SWAP2 SWAP1 PUSH2 0x3CD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3E6 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3CE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3FD PUSH2 0x3F8 DUP5 PUSH2 0x617 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x419 JUMPI PUSH2 0x418 PUSH2 0x7FB JUMP JUMPDEST JUMPDEST PUSH2 0x424 DUP5 DUP3 DUP6 PUSH2 0x6C4 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x7F6 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x469 DUP2 PUSH2 0x81B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x488 JUMPI PUSH2 0x487 PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4A6 JUMPI PUSH2 0x4A5 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4B2 DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D3 JUMPI PUSH2 0x4D2 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4DF DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x500 JUMPI PUSH2 0x4FF PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x50C DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x52C JUMPI PUSH2 0x52B PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x53A DUP5 DUP3 DUP6 ADD PUSH2 0x45A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x54E DUP3 PUSH2 0x648 JUMP JUMPDEST PUSH2 0x558 DUP2 DUP6 PUSH2 0x653 JUMP JUMPDEST SWAP4 POP PUSH2 0x568 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0x571 DUP2 PUSH2 0x80A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x585 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5A5 DUP2 DUP7 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x5B9 DUP2 DUP6 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x5CD DUP2 DUP5 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x5EC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x57C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5FC PUSH2 0x60D JUMP JUMPDEST SWAP1 POP PUSH2 0x608 DUP3 DUP3 PUSH2 0x738 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x632 JUMPI PUSH2 0x631 PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST PUSH2 0x63B DUP3 PUSH2 0x80A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP 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 PUSH2 0x66F DUP3 PUSH2 0x6BA JUMP JUMPDEST SWAP2 POP PUSH2 0x67A DUP4 PUSH2 0x6BA JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x6AF JUMPI PUSH2 0x6AE PUSH2 0x769 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x6F1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x6D6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x700 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x71E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x732 JUMPI PUSH2 0x731 PUSH2 0x798 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x741 DUP3 PUSH2 0x80A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x760 JUMPI PUSH2 0x75F PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x824 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP2 EQ PUSH2 0x82F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF8 0xE9 0xEB 0xE0 ADDRESS 0xBF JUMP 0xD9 0x5D BLOCKHASH 0xE 0xEB PUSH2 0xC3A6 PUSH28 0x126F9D4E3F7DC8E3CCEEF0B6146A835D64736F6C6343000807003300 ",
"sourceMap": "70:420:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addJob_38": {
"entryPoint": 644,
"id": 38,
"parameterSlots": 3,
"returnSlots": 0
},
"@jobCount_7": {
"entryPoint": 833,
"id": 7,
"parameterSlots": 0,
"returnSlots": 0
},
"@jobs_5": {
"entryPoint": 178,
"id": 5,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1002,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1068,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 1135,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1302,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1347,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1404,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1419,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1495,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1549,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1559,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1608,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1619,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1636,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1722,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1732,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1747,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1798,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1848,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1897,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1944,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1991,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2038,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2043,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2048,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2053,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2058,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 2075,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7446:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:1"
},
"nodeType": "YulFunctionCall",
"src": "552:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "525:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "521:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "514:35:1"
},
"nodeType": "YulIf",
"src": "511:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:1"
},
"nodeType": "YulFunctionCall",
"src": "656:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "742:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:1"
},
"nodeType": "YulFunctionCall",
"src": "694:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:1",
"type": ""
}
],
"src": "439:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:1"
},
"nodeType": "YulFunctionCall",
"src": "856:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:1"
},
"nodeType": "YulFunctionCall",
"src": "885:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:1",
"type": ""
}
],
"src": "785:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1060:1029:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1106:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1108:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1108:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1108:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1090:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1077:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1077:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1102:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1073:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1073:32:1"
},
"nodeType": "YulIf",
"src": "1070:119:1"
},
{
"nodeType": "YulBlock",
"src": "1199:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1214:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1245:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1256:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1241:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1241:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1228:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1228:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1218:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1306:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1308:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1308:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1308:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1278:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1275:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1275:30:1"
},
"nodeType": "YulIf",
"src": "1272:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1403:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1448:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1459:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1444:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1444:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1468:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1413:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1413:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1403:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1496:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1511:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1542:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1553:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1525:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1525:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1515:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1604:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1606:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1606:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1606:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1576:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1584:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1573:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1573:30:1"
},
"nodeType": "YulIf",
"src": "1570:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1701:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1746:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1757:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1742:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1766:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1711:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1711:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1701:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1794:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1809:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1840:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1851:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1836:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1836:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1823:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1823:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1813:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1902:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1904:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1904:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1904:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1874:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1882:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1871:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1871:30:1"
},
"nodeType": "YulIf",
"src": "1868:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1999:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2044:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2055:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2040:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2040:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2064:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2009:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2009:63:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1999:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1014:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1025:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1037:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1045:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1053:6:1",
"type": ""
}
],
"src": "930:1159:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2161:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2209:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2182:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2191:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2178:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2178:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2174:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2174:32:1"
},
"nodeType": "YulIf",
"src": "2171:119:1"
},
{
"nodeType": "YulBlock",
"src": "2300:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2315:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2329:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2319:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2344:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2379:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2390:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2375:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2375:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2399:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2354:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2354:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2344:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2131:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2142:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2154:6:1",
"type": ""
}
],
"src": "2095:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2522:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2532:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2579:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2546:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2546:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2536:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2594:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2660:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2665:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2601:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2601:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2594:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2707:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2714:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2703:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2703:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2721:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2726:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2681:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2681:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2681:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2742:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2753:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2780:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2758:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2758:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2749:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2742:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2503:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2510:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2518:3:1",
"type": ""
}
],
"src": "2430:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2865:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2882:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2905:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2887:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2887:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2875:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2875:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "2875:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2853:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2860:3:1",
"type": ""
}
],
"src": "2800:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3138:501:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3148:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3160:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3171:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3156:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3156:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3148:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3195:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3206:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3191:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3191:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3214:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3220:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3210:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3210:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3184:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3184:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3240:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3312:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3321:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3248:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3248:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3240:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3347:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3358:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3343:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3343:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3367:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3373:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3363:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3363:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3336:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3336:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3336:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3393:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3465:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3474:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3401:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3401:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3393:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3500:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3511:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3496:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3496:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3520:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3526:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3516:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3516:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3489:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3489:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3489:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3546:86:1",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3618:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3627:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3554:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3554:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3546:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3094:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3106:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3114:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3122:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3133:4:1",
"type": ""
}
],
"src": "2924:715:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3743:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3753:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3765:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3776:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3761:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3761:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3753:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3833:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3846:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3857:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3842:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3842:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3789:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3789:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3789:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3715:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3727:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3738:4:1",
"type": ""
}
],
"src": "3645:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3914:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3924:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3934:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3934:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3924:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3983:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3991:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3963:19:1"
},
"nodeType": "YulFunctionCall",
"src": "3963:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3963:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3898:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3907:6:1",
"type": ""
}
],
"src": "3873:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4048:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4058:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4074:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4068:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4068:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4058:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4041:6:1",
"type": ""
}
],
"src": "4008:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4156:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4261:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4263:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4263:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4263:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4233:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4241:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4230:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4230:30:1"
},
"nodeType": "YulIf",
"src": "4227:56:1"
},
{
"nodeType": "YulAssignment",
"src": "4293:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4323:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4301:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4301:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4293:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4367:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4379:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4385:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4375:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4375:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4367:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4140:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4151:4:1",
"type": ""
}
],
"src": "4089:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4462:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4473:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4489:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4483:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4483:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4473:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4445:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4455:6:1",
"type": ""
}
],
"src": "4403:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4604:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4621:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4626:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4614:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4614:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4614:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4642:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4661:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4666:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4657:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4657:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4642:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4576:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4581:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4592:11:1",
"type": ""
}
],
"src": "4508:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4727:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4737:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4760:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4742:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4742:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4737:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4771:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4794:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4776:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4776:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4771:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4934:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4936:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4936:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4936:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4855:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4862:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4930:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4858:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4858:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4852:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4852:81:1"
},
"nodeType": "YulIf",
"src": "4849:107:1"
},
{
"nodeType": "YulAssignment",
"src": "4966:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4977:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4980:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4973:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4973:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4966:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4714:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4717:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4723:3:1",
"type": ""
}
],
"src": "4683:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5039:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5049:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5060:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5049:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5021:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5031:7:1",
"type": ""
}
],
"src": "4994:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5128:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5151:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5156:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5161:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5138:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5138:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "5138:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5209:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5214:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5205:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5205:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5223:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5198:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5198:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5198:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5110:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5115:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5120:6:1",
"type": ""
}
],
"src": "5077:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5286:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5296:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5305:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5300:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5365:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5390:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5395:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5386:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5409:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5414:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5405:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5405:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5399:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5399:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5379:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5379:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "5379:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5326:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5329:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5323:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5323:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5337:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5339:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5348:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5351:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5344:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5344:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5339:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5319:3:1",
"statements": []
},
"src": "5315:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5462:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5512:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5517:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5508:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5508:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5526:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5501:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5501:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5501:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5443:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5446:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5440:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5440:13:1"
},
"nodeType": "YulIf",
"src": "5437:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5268:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5273:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5278:6:1",
"type": ""
}
],
"src": "5237:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5601:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5611:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5625:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5631:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5621:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5621:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5611:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5642:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5672:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5678:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5668:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5646:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5719:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5733:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5747:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5755:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5743:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5743:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5733:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5699:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5692:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5692:26:1"
},
"nodeType": "YulIf",
"src": "5689:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5822:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5836:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5836:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5836:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5786:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5809:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5817:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5806:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5806:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5783:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5783:38:1"
},
"nodeType": "YulIf",
"src": "5780:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5585:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5594:6:1",
"type": ""
}
],
"src": "5550:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5919:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5929:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5951:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "5981:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5959:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5959:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5947:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5947:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "5933:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6098:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "6100:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6100:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6100:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6041:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6053:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6038:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6038:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6077:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6089:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6074:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6074:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6035:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6035:62:1"
},
"nodeType": "YulIf",
"src": "6032:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6136:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6140:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6129:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6129:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "6129:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5905:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "5913:4:1",
"type": ""
}
],
"src": "5876:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6191:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6208:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6211:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6201:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6201:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6201:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6305:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6308:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6298:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6298:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6298:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6329:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6332:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6322:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6322:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6322:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6163:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6377:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6394:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6397:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6387:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6387:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6387:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6491:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6494:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6484:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6484:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6484:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6515:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6518:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6508:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6508:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6508:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6349:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6563:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6580:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6583:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6573:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6573:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6573:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6677:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6680:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6670:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6670:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6670:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6701:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6704:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6694:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6694:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6694:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "6535:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6810:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6827:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6830:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6820:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6820:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6820:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6721:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6933:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6950:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6953:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6943:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6943:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6943:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "6844:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7056:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7073:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7076:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7066:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7066:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7066:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "6967:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7179:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7196:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7199:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7189:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7189:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7189:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "7090:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7261:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7271:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7289:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7296:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7285:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7285:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7305:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7301:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7301:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7281:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7281:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7271:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7244:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7254:6:1",
"type": ""
}
],
"src": "7213:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7364:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7421:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7430:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7433:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7423:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7423:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7423:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7387:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7412:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7394:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7394:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7384:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7384:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7377:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7377:43:1"
},
"nodeType": "YulIf",
"src": "7374:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7357:5:1",
"type": ""
}
],
"src": "7321:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\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 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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c8063180aedf31461004657806328f76943146100785780634c5d8a0f14610094575b600080fd5b610060600480360381019061005b9190610516565b6100b2565b60405161006f9392919061058b565b60405180910390f35b610092600480360381019061008d919061046f565b610284565b005b61009c610341565b6040516100a991906105d7565b60405180910390f35b600081815481106100c257600080fd5b90600052602060002090600302016000915090508060000180546100e590610706565b80601f016020809104026020016040519081016040528092919081815260200182805461011190610706565b801561015e5780601f106101335761010080835404028352916020019161015e565b820191906000526020600020905b81548152906001019060200180831161014157829003601f168201915b50505050509080600101805461017390610706565b80601f016020809104026020016040519081016040528092919081815260200182805461019f90610706565b80156101ec5780601f106101c1576101008083540402835291602001916101ec565b820191906000526020600020905b8154815290600101906020018083116101cf57829003601f168201915b50505050509080600201805461020190610706565b80601f016020809104026020016040519081016040528092919081815260200182805461022d90610706565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905083565b6000604051806060016040528085815260200184815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906102e6929190610347565b506020820151816001019080519060200190610303929190610347565b506040820151816002019080519060200190610320929190610347565b50505060018060008282546103359190610664565b92505081905550505050565b60015481565b82805461035390610706565b90600052602060002090601f01602090048101928261037557600085556103bc565b82601f1061038e57805160ff19168380011785556103bc565b828001600101855582156103bc579182015b828111156103bb5782518255916020019190600101906103a0565b5b5090506103c991906103cd565b5090565b5b808211156103e65760008160009055506001016103ce565b5090565b60006103fd6103f884610617565b6105f2565b905082815260208101848484011115610419576104186107fb565b5b6104248482856106c4565b509392505050565b600082601f830112610441576104406107f6565b5b81356104518482602086016103ea565b91505092915050565b6000813590506104698161081b565b92915050565b60008060006060848603121561048857610487610805565b5b600084013567ffffffffffffffff8111156104a6576104a5610800565b5b6104b28682870161042c565b935050602084013567ffffffffffffffff8111156104d3576104d2610800565b5b6104df8682870161042c565b925050604084013567ffffffffffffffff811115610500576104ff610800565b5b61050c8682870161042c565b9150509250925092565b60006020828403121561052c5761052b610805565b5b600061053a8482850161045a565b91505092915050565b600061054e82610648565b6105588185610653565b93506105688185602086016106d3565b6105718161080a565b840191505092915050565b610585816106ba565b82525050565b600060608201905081810360008301526105a58186610543565b905081810360208301526105b98185610543565b905081810360408301526105cd8184610543565b9050949350505050565b60006020820190506105ec600083018461057c565b92915050565b60006105fc61060d565b90506106088282610738565b919050565b6000604051905090565b600067ffffffffffffffff821115610632576106316107c7565b5b61063b8261080a565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061066f826106ba565b915061067a836106ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156106af576106ae610769565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b838110156106f15780820151818401526020810190506106d6565b83811115610700576000848401525b50505050565b6000600282049050600182168061071e57607f821691505b6020821081141561073257610731610798565b5b50919050565b6107418261080a565b810181811067ffffffffffffffff821117156107605761075f6107c7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610824816106ba565b811461082f57600080fd5b5056fea2646970667358221220f8e9ebe030bf56d95d400eeb61c3a67b126f9d4e3f7dc8e3cceef0b6146a835d64736f6c63430008070033",
"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 0x180AEDF3 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x28F76943 EQ PUSH2 0x78 JUMPI DUP1 PUSH4 0x4C5D8A0F EQ PUSH2 0x94 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x516 JUMP JUMPDEST PUSH2 0xB2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x92 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8D SWAP2 SWAP1 PUSH2 0x46F JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x9C PUSH2 0x341 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0xE5 SWAP1 PUSH2 0x706 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 0x111 SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x133 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15E 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 0x141 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x173 SWAP1 PUSH2 0x706 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 0x19F SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1EC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1EC 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 0x1CF JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x706 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 0x22D SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A 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 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2E6 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x303 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x320 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP POP POP PUSH1 0x1 DUP1 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x664 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x353 SWAP1 PUSH2 0x706 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x375 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x38E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x3BC JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3BB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3A0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3C9 SWAP2 SWAP1 PUSH2 0x3CD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3E6 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3CE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3FD PUSH2 0x3F8 DUP5 PUSH2 0x617 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x419 JUMPI PUSH2 0x418 PUSH2 0x7FB JUMP JUMPDEST JUMPDEST PUSH2 0x424 DUP5 DUP3 DUP6 PUSH2 0x6C4 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x7F6 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x469 DUP2 PUSH2 0x81B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x488 JUMPI PUSH2 0x487 PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4A6 JUMPI PUSH2 0x4A5 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4B2 DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D3 JUMPI PUSH2 0x4D2 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4DF DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x500 JUMPI PUSH2 0x4FF PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x50C DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x52C JUMPI PUSH2 0x52B PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x53A DUP5 DUP3 DUP6 ADD PUSH2 0x45A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x54E DUP3 PUSH2 0x648 JUMP JUMPDEST PUSH2 0x558 DUP2 DUP6 PUSH2 0x653 JUMP JUMPDEST SWAP4 POP PUSH2 0x568 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0x571 DUP2 PUSH2 0x80A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x585 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5A5 DUP2 DUP7 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x5B9 DUP2 DUP6 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x5CD DUP2 DUP5 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x5EC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x57C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5FC PUSH2 0x60D JUMP JUMPDEST SWAP1 POP PUSH2 0x608 DUP3 DUP3 PUSH2 0x738 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x632 JUMPI PUSH2 0x631 PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST PUSH2 0x63B DUP3 PUSH2 0x80A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP 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 PUSH2 0x66F DUP3 PUSH2 0x6BA JUMP JUMPDEST SWAP2 POP PUSH2 0x67A DUP4 PUSH2 0x6BA JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x6AF JUMPI PUSH2 0x6AE PUSH2 0x769 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x6F1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x6D6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x700 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x71E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x732 JUMPI PUSH2 0x731 PUSH2 0x798 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x741 DUP3 PUSH2 0x80A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x760 JUMPI PUSH2 0x75F PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x824 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP2 EQ PUSH2 0x82F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF8 0xE9 0xEB 0xE0 ADDRESS 0xBF JUMP 0xD9 0x5D BLOCKHASH 0xE 0xEB PUSH2 0xC3A6 PUSH28 0x126F9D4E3F7DC8E3CCEEF0B6146A835D64736F6C6343000807003300 ",
"sourceMap": "70:420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93:17;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;280:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;280:208::-;399:4;409:44;;;;;;;;413:9;409:44;;;;424:13;409:44;;;;439:12;409:44;;;399:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;480:1;468:8;;:13;;;;;;;:::i;:::-;;;;;;;;280:208;;;:::o;117:23::-;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:1:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:1159::-;1037:6;1045;1053;1102:2;1090:9;1081:7;1077:23;1073:32;1070:119;;;1108:79;;:::i;:::-;1070:119;1256:1;1245:9;1241:17;1228:31;1286:18;1278:6;1275:30;1272:117;;;1308:79;;:::i;:::-;1272:117;1413:63;1468:7;1459:6;1448:9;1444:22;1413:63;:::i;:::-;1403:73;;1199:287;1553:2;1542:9;1538:18;1525:32;1584:18;1576:6;1573:30;1570:117;;;1606:79;;:::i;:::-;1570:117;1711:63;1766:7;1757:6;1746:9;1742:22;1711:63;:::i;:::-;1701:73;;1496:288;1851:2;1840:9;1836:18;1823:32;1882:18;1874:6;1871:30;1868:117;;;1904:79;;:::i;:::-;1868:117;2009:63;2064:7;2055:6;2044:9;2040:22;2009:63;:::i;:::-;1999:73;;1794:288;930:1159;;;;;:::o;2095:329::-;2154:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:119;;;2209:79;;:::i;:::-;2171:119;2329:1;2354:53;2399:7;2390:6;2379:9;2375:22;2354:53;:::i;:::-;2344:63;;2300:117;2095:329;;;;:::o;2430:364::-;2518:3;2546:39;2579:5;2546:39;:::i;:::-;2601:71;2665:6;2660:3;2601:71;:::i;:::-;2594:78;;2681:52;2726:6;2721:3;2714:4;2707:5;2703:16;2681:52;:::i;:::-;2758:29;2780:6;2758:29;:::i;:::-;2753:3;2749:39;2742:46;;2522:272;2430:364;;;;:::o;2800:118::-;2887:24;2905:5;2887:24;:::i;:::-;2882:3;2875:37;2800:118;;:::o;2924:715::-;3133:4;3171:2;3160:9;3156:18;3148:26;;3220:9;3214:4;3210:20;3206:1;3195:9;3191:17;3184:47;3248:78;3321:4;3312:6;3248:78;:::i;:::-;3240:86;;3373:9;3367:4;3363:20;3358:2;3347:9;3343:18;3336:48;3401:78;3474:4;3465:6;3401:78;:::i;:::-;3393:86;;3526:9;3520:4;3516:20;3511:2;3500:9;3496:18;3489:48;3554:78;3627:4;3618:6;3554:78;:::i;:::-;3546:86;;2924:715;;;;;;:::o;3645:222::-;3738:4;3776:2;3765:9;3761:18;3753:26;;3789:71;3857:1;3846:9;3842:17;3833:6;3789:71;:::i;:::-;3645:222;;;;:::o;3873:129::-;3907:6;3934:20;;:::i;:::-;3924:30;;3963:33;3991:4;3983:6;3963:33;:::i;:::-;3873:129;;;:::o;4008:75::-;4041:6;4074:2;4068:9;4058:19;;4008:75;:::o;4089:308::-;4151:4;4241:18;4233:6;4230:30;4227:56;;;4263:18;;:::i;:::-;4227:56;4301:29;4323:6;4301:29;:::i;:::-;4293:37;;4385:4;4379;4375:15;4367:23;;4089:308;;;:::o;4403:99::-;4455:6;4489:5;4483:12;4473:22;;4403:99;;;:::o;4508:169::-;4592:11;4626:6;4621:3;4614:19;4666:4;4661:3;4657:14;4642:29;;4508:169;;;;:::o;4683:305::-;4723:3;4742:20;4760:1;4742:20;:::i;:::-;4737:25;;4776:20;4794:1;4776:20;:::i;:::-;4771:25;;4930:1;4862:66;4858:74;4855:1;4852:81;4849:107;;;4936:18;;:::i;:::-;4849:107;4980:1;4977;4973:9;4966:16;;4683:305;;;;:::o;4994:77::-;5031:7;5060:5;5049:16;;4994:77;;;:::o;5077:154::-;5161:6;5156:3;5151;5138:30;5223:1;5214:6;5209:3;5205:16;5198:27;5077:154;;;:::o;5237:307::-;5305:1;5315:113;5329:6;5326:1;5323:13;5315:113;;;5414:1;5409:3;5405:11;5399:18;5395:1;5390:3;5386:11;5379:39;5351:2;5348:1;5344:10;5339:15;;5315:113;;;5446:6;5443:1;5440:13;5437:101;;;5526:1;5517:6;5512:3;5508:16;5501:27;5437:101;5286:258;5237:307;;;:::o;5550:320::-;5594:6;5631:1;5625:4;5621:12;5611:22;;5678:1;5672:4;5668:12;5699:18;5689:81;;5755:4;5747:6;5743:17;5733:27;;5689:81;5817:2;5809:6;5806:14;5786:18;5783:38;5780:84;;;5836:18;;:::i;:::-;5780:84;5601:269;5550:320;;;:::o;5876:281::-;5959:27;5981:4;5959:27;:::i;:::-;5951:6;5947:40;6089:6;6077:10;6074:22;6053:18;6041:10;6038:34;6035:62;6032:88;;;6100:18;;:::i;:::-;6032:88;6140:10;6136:2;6129:22;5919:238;5876:281;;:::o;6163:180::-;6211:77;6208:1;6201:88;6308:4;6305:1;6298:15;6332:4;6329:1;6322:15;6349:180;6397:77;6394:1;6387:88;6494:4;6491:1;6484:15;6518:4;6515:1;6508:15;6535:180;6583:77;6580:1;6573:88;6680:4;6677:1;6670:15;6704:4;6701:1;6694:15;6721:117;6830:1;6827;6820:12;6844:117;6953:1;6950;6943:12;6967:117;7076:1;7073;7066:12;7090:117;7199:1;7196;7189:12;7213:102;7254:6;7305:2;7301:7;7296:2;7289:5;7285:14;7281:28;7271:38;;7213:102;;;:::o;7321:122::-;7394:24;7412:5;7394:24;:::i;:::-;7387:5;7384:35;7374:63;;7433:1;7430;7423:12;7374:63;7321:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "430400",
"executionCost": "468",
"totalCost": "430868"
},
"external": {
"addJob(string,string,string)": "infinite",
"jobCount()": "2451",
"jobs(uint256)": "infinite"
}
},
"methodIdentifiers": {
"addJob(string,string,string)": "28f76943",
"jobCount()": "4c5d8a0f",
"jobs(uint256)": "180aedf3"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"name": "addJob",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "jobCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "jobs",
"outputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"name": "addJob",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "jobCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "jobs",
"outputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/4_NewJob.sol": "NewJob"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/4_NewJob.sol": {
"keccak256": "0xe796853c12d3ebd4b0321ef958835f52a3ba34106a18a9738d1e3b73a23f27ba",
"license": "GPL-3.0",
"urls": [
"bzz-raw://0f76df95946e3fe88ef79b07c458a3d40ab85fb065326ef0037db93fa90fed9f",
"dweb:/ipfs/QmaPA6c4fpAvS3eviatHaa52ra74amwfYCr4UyBnvy1Ctr"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "368a224ce5ee908ff7abfa29fc925dd6",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/4_NewJob.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.7.0 <0.9.0;\n\ncontract NewJob {\n\n Job[] public jobs;\n\n uint256 public jobCount;\n\n struct Job {\n string _jobOwner;\n string _contractName;\n string _description;\n // uint _budget;\n }\n\n function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {\n jobs.push(Job(_jobOwner, _contractName, _description ));\n jobCount += 1;\n }\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/4_NewJob.sol": {
"NewJob": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"name": "addJob",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "jobCount",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "jobs",
"outputs": [
{
"internalType": "string",
"name": "_jobOwner",
"type": "string"
},
{
"internalType": "string",
"name": "_contractName",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/4_NewJob.sol\":70:490 contract NewJob {... */\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/4_NewJob.sol\":70:490 contract NewJob {... */\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 0x180aedf3\n eq\n tag_3\n jumpi\n dup1\n 0x28f76943\n eq\n tag_4\n jumpi\n dup1\n 0x4c5d8a0f\n eq\n tag_5\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/4_NewJob.sol\":93:110 Job[] public jobs */\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 mload(0x40)\n tag_10\n swap4\n swap3\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/4_NewJob.sol\":280:488 function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {... */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"contracts/4_NewJob.sol\":117:140 uint256 public jobCount */\n tag_5:\n tag_16\n tag_17\n jump\t// in\n tag_16:\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/4_NewJob.sol\":93:110 Job[] public jobs */\n tag_9:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_20\n jumpi\n 0x00\n dup1\n revert\n tag_20:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x03\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n dup1\n sload\n tag_22\n swap1\n tag_23\n jump\t// in\n tag_22:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_24\n swap1\n tag_23\n jump\t// in\n tag_24:\n dup1\n iszero\n tag_25\n jumpi\n dup1\n 0x1f\n lt\n tag_26\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_25)\n tag_26:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_27:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_27\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_25:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x01\n add\n dup1\n sload\n tag_28\n swap1\n tag_23\n jump\t// in\n tag_28:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_29\n swap1\n tag_23\n jump\t// in\n tag_29:\n dup1\n iszero\n tag_30\n jumpi\n dup1\n 0x1f\n lt\n tag_31\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_30)\n tag_31:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_32:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_32\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_30:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x02\n add\n dup1\n sload\n tag_33\n swap1\n tag_23\n jump\t// in\n tag_33:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_34\n swap1\n tag_23\n jump\t// in\n tag_34:\n dup1\n iszero\n tag_35\n jumpi\n dup1\n 0x1f\n lt\n tag_36\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_35)\n tag_36:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_37:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_37\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_35:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup4\n jump\t// out\n /* \"contracts/4_NewJob.sol\":280:488 function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {... */\n tag_15:\n /* \"contracts/4_NewJob.sol\":399:403 jobs */\n 0x00\n /* \"contracts/4_NewJob.sol\":409:453 Job(_jobOwner, _contractName, _description ) */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n /* \"contracts/4_NewJob.sol\":413:422 _jobOwner */\n dup6\n /* \"contracts/4_NewJob.sol\":409:453 Job(_jobOwner, _contractName, _description ) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/4_NewJob.sol\":424:437 _contractName */\n dup5\n /* \"contracts/4_NewJob.sol\":409:453 Job(_jobOwner, _contractName, _description ) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/4_NewJob.sol\":439:451 _description */\n dup4\n /* \"contracts/4_NewJob.sol\":409:453 Job(_jobOwner, _contractName, _description ) */\n dup2\n mstore\n pop\n /* \"contracts/4_NewJob.sol\":399:454 jobs.push(Job(_jobOwner, _contractName, _description )) */\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 swap1\n 0x03\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_40\n swap3\n swap2\n swap1\n tag_41\n jump\t// in\n tag_40:\n pop\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_42\n swap3\n swap2\n swap1\n tag_41\n jump\t// in\n tag_42:\n pop\n 0x40\n dup3\n add\n mload\n dup2\n 0x02\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_43\n swap3\n swap2\n swap1\n tag_41\n jump\t// in\n tag_43:\n pop\n pop\n pop\n /* \"contracts/4_NewJob.sol\":480:481 1 */\n 0x01\n /* \"contracts/4_NewJob.sol\":468:476 jobCount */\n dup1\n 0x00\n /* \"contracts/4_NewJob.sol\":468:481 jobCount += 1 */\n dup3\n dup3\n sload\n tag_44\n swap2\n swap1\n tag_45\n jump\t// in\n tag_44:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/4_NewJob.sol\":280:488 function addJob(string memory _jobOwner, string memory _contractName, string memory _description) public {... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/4_NewJob.sol\":117:140 uint256 public jobCount */\n tag_17:\n sload(0x01)\n dup2\n jump\t// out\n tag_41:\n dup3\n dup1\n sload\n tag_46\n swap1\n tag_23\n jump\t// in\n tag_46:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_48\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_47)\n tag_48:\n dup3\n 0x1f\n lt\n tag_49\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_47)\n tag_49:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_47\n jumpi\n swap2\n dup3\n add\n tag_50:\n dup3\n dup2\n gt\n iszero\n tag_51\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_50)\n tag_51:\n tag_47:\n pop\n swap1\n pop\n tag_52\n swap2\n swap1\n tag_53\n jump\t// in\n tag_52:\n pop\n swap1\n jump\t// out\n tag_53:\n tag_54:\n dup1\n dup3\n gt\n iszero\n tag_55\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_54)\n tag_55:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:419 */\n tag_57:\n /* \"#utility.yul\":85:90 */\n 0x00\n /* \"#utility.yul\":110:176 */\n tag_59\n /* \"#utility.yul\":126:175 */\n tag_60\n /* \"#utility.yul\":168:174 */\n dup5\n /* \"#utility.yul\":126:175 */\n tag_61\n jump\t// in\n tag_60:\n /* \"#utility.yul\":110:176 */\n tag_62\n jump\t// in\n tag_59:\n /* \"#utility.yul\":101:176 */\n swap1\n pop\n /* \"#utility.yul\":199:205 */\n dup3\n /* \"#utility.yul\":192:197 */\n dup2\n /* \"#utility.yul\":185:206 */\n mstore\n /* \"#utility.yul\":237:241 */\n 0x20\n /* \"#utility.yul\":230:235 */\n dup2\n /* \"#utility.yul\":226:242 */\n add\n /* \"#utility.yul\":275:278 */\n dup5\n /* \"#utility.yul\":266:272 */\n dup5\n /* \"#utility.yul\":261:264 */\n dup5\n /* \"#utility.yul\":257:273 */\n add\n /* \"#utility.yul\":254:279 */\n gt\n /* \"#utility.yul\":251:363 */\n iszero\n tag_63\n jumpi\n /* \"#utility.yul\":282:361 */\n tag_64\n tag_65\n jump\t// in\n tag_64:\n /* \"#utility.yul\":251:363 */\n tag_63:\n /* \"#utility.yul\":372:413 */\n tag_66\n /* \"#utility.yul\":406:412 */\n dup5\n /* \"#utility.yul\":401:404 */\n dup3\n /* \"#utility.yul\":396:399 */\n dup6\n /* \"#utility.yul\":372:413 */\n tag_67\n jump\t// in\n tag_66:\n /* \"#utility.yul\":91:419 */\n pop\n /* \"#utility.yul\":7:419 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":439:779 */\n tag_68:\n /* \"#utility.yul\":495:500 */\n 0x00\n /* \"#utility.yul\":544:547 */\n dup3\n /* \"#utility.yul\":537:541 */\n 0x1f\n /* \"#utility.yul\":529:535 */\n dup4\n /* \"#utility.yul\":525:542 */\n add\n /* \"#utility.yul\":521:548 */\n slt\n /* \"#utility.yul\":511:633 */\n tag_70\n jumpi\n /* \"#utility.yul\":552:631 */\n tag_71\n tag_72\n jump\t// in\n tag_71:\n /* \"#utility.yul\":511:633 */\n tag_70:\n /* \"#utility.yul\":669:675 */\n dup2\n /* \"#utility.yul\":656:676 */\n calldataload\n /* \"#utility.yul\":694:773 */\n tag_73\n /* \"#utility.yul\":769:772 */\n dup5\n /* \"#utility.yul\":761:767 */\n dup3\n /* \"#utility.yul\":754:758 */\n 0x20\n /* \"#utility.yul\":746:752 */\n dup7\n /* \"#utility.yul\":742:759 */\n add\n /* \"#utility.yul\":694:773 */\n tag_57\n jump\t// in\n tag_73:\n /* \"#utility.yul\":685:773 */\n swap2\n pop\n /* \"#utility.yul\":501:779 */\n pop\n /* \"#utility.yul\":439:779 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":785:924 */\n tag_74:\n /* \"#utility.yul\":831:836 */\n 0x00\n /* \"#utility.yul\":869:875 */\n dup2\n /* \"#utility.yul\":856:876 */\n calldataload\n /* \"#utility.yul\":847:876 */\n swap1\n pop\n /* \"#utility.yul\":885:918 */\n tag_76\n /* \"#utility.yul\":912:917 */\n dup2\n /* \"#utility.yul\":885:918 */\n tag_77\n jump\t// in\n tag_76:\n /* \"#utility.yul\":785:924 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":930:2089 */\n tag_14:\n /* \"#utility.yul\":1037:1043 */\n 0x00\n /* \"#utility.yul\":1045:1051 */\n dup1\n /* \"#utility.yul\":1053:1059 */\n 0x00\n /* \"#utility.yul\":1102:1104 */\n 0x60\n /* \"#utility.yul\":1090:1099 */\n dup5\n /* \"#utility.yul\":1081:1088 */\n dup7\n /* \"#utility.yul\":1077:1100 */\n sub\n /* \"#utility.yul\":1073:1105 */\n slt\n /* \"#utility.yul\":1070:1189 */\n iszero\n tag_79\n jumpi\n /* \"#utility.yul\":1108:1187 */\n tag_80\n tag_81\n jump\t// in\n tag_80:\n /* \"#utility.yul\":1070:1189 */\n tag_79:\n /* \"#utility.yul\":1256:1257 */\n 0x00\n /* \"#utility.yul\":1245:1254 */\n dup5\n /* \"#utility.yul\":1241:1258 */\n add\n /* \"#utility.yul\":1228:1259 */\n calldataload\n /* \"#utility.yul\":1286:1304 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1278:1284 */\n dup2\n /* \"#utility.yul\":1275:1305 */\n gt\n /* \"#utility.yul\":1272:1389 */\n iszero\n tag_82\n jumpi\n /* \"#utility.yul\":1308:1387 */\n tag_83\n tag_84\n jump\t// in\n tag_83:\n /* \"#utility.yul\":1272:1389 */\n tag_82:\n /* \"#utility.yul\":1413:1476 */\n tag_85\n /* \"#utility.yul\":1468:1475 */\n dup7\n /* \"#utility.yul\":1459:1465 */\n dup3\n /* \"#utility.yul\":1448:1457 */\n dup8\n /* \"#utility.yul\":1444:1466 */\n add\n /* \"#utility.yul\":1413:1476 */\n tag_68\n jump\t// in\n tag_85:\n /* \"#utility.yul\":1403:1476 */\n swap4\n pop\n /* \"#utility.yul\":1199:1486 */\n pop\n /* \"#utility.yul\":1553:1555 */\n 0x20\n /* \"#utility.yul\":1542:1551 */\n dup5\n /* \"#utility.yul\":1538:1556 */\n add\n /* \"#utility.yul\":1525:1557 */\n calldataload\n /* \"#utility.yul\":1584:1602 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1576:1582 */\n dup2\n /* \"#utility.yul\":1573:1603 */\n gt\n /* \"#utility.yul\":1570:1687 */\n iszero\n tag_86\n jumpi\n /* \"#utility.yul\":1606:1685 */\n tag_87\n tag_84\n jump\t// in\n tag_87:\n /* \"#utility.yul\":1570:1687 */\n tag_86:\n /* \"#utility.yul\":1711:1774 */\n tag_88\n /* \"#utility.yul\":1766:1773 */\n dup7\n /* \"#utility.yul\":1757:1763 */\n dup3\n /* \"#utility.yul\":1746:1755 */\n dup8\n /* \"#utility.yul\":1742:1764 */\n add\n /* \"#utility.yul\":1711:1774 */\n tag_68\n jump\t// in\n tag_88:\n /* \"#utility.yul\":1701:1774 */\n swap3\n pop\n /* \"#utility.yul\":1496:1784 */\n pop\n /* \"#utility.yul\":1851:1853 */\n 0x40\n /* \"#utility.yul\":1840:1849 */\n dup5\n /* \"#utility.yul\":1836:1854 */\n add\n /* \"#utility.yul\":1823:1855 */\n calldataload\n /* \"#utility.yul\":1882:1900 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1874:1880 */\n dup2\n /* \"#utility.yul\":1871:1901 */\n gt\n /* \"#utility.yul\":1868:1985 */\n iszero\n tag_89\n jumpi\n /* \"#utility.yul\":1904:1983 */\n tag_90\n tag_84\n jump\t// in\n tag_90:\n /* \"#utility.yul\":1868:1985 */\n tag_89:\n /* \"#utility.yul\":2009:2072 */\n tag_91\n /* \"#utility.yul\":2064:2071 */\n dup7\n /* \"#utility.yul\":2055:2061 */\n dup3\n /* \"#utility.yul\":2044:2053 */\n dup8\n /* \"#utility.yul\":2040:2062 */\n add\n /* \"#utility.yul\":2009:2072 */\n tag_68\n jump\t// in\n tag_91:\n /* \"#utility.yul\":1999:2072 */\n swap2\n pop\n /* \"#utility.yul\":1794:2082 */\n pop\n /* \"#utility.yul\":930:2089 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":2095:2424 */\n tag_8:\n /* \"#utility.yul\":2154:2160 */\n 0x00\n /* \"#utility.yul\":2203:2205 */\n 0x20\n /* \"#utility.yul\":2191:2200 */\n dup3\n /* \"#utility.yul\":2182:2189 */\n dup5\n /* \"#utility.yul\":2178:2201 */\n sub\n /* \"#utility.yul\":2174:2206 */\n slt\n /* \"#utility.yul\":2171:2290 */\n iszero\n tag_93\n jumpi\n /* \"#utility.yul\":2209:2288 */\n tag_94\n tag_81\n jump\t// in\n tag_94:\n /* \"#utility.yul\":2171:2290 */\n tag_93:\n /* \"#utility.yul\":2329:2330 */\n 0x00\n /* \"#utility.yul\":2354:2407 */\n tag_95\n /* \"#utility.yul\":2399:2406 */\n dup5\n /* \"#utility.yul\":2390:2396 */\n dup3\n /* \"#utility.yul\":2379:2388 */\n dup6\n /* \"#utility.yul\":2375:2397 */\n add\n /* \"#utility.yul\":2354:2407 */\n tag_74\n jump\t// in\n tag_95:\n /* \"#utility.yul\":2344:2407 */\n swap2\n pop\n /* \"#utility.yul\":2300:2417 */\n pop\n /* \"#utility.yul\":2095:2424 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2430:2794 */\n tag_96:\n /* \"#utility.yul\":2518:2521 */\n 0x00\n /* \"#utility.yul\":2546:2585 */\n tag_98\n /* \"#utility.yul\":2579:2584 */\n dup3\n /* \"#utility.yul\":2546:2585 */\n tag_99\n jump\t// in\n tag_98:\n /* \"#utility.yul\":2601:2672 */\n tag_100\n /* \"#utility.yul\":2665:2671 */\n dup2\n /* \"#utility.yul\":2660:2663 */\n dup6\n /* \"#utility.yul\":2601:2672 */\n tag_101\n jump\t// in\n tag_100:\n /* \"#utility.yul\":2594:2672 */\n swap4\n pop\n /* \"#utility.yul\":2681:2733 */\n tag_102\n /* \"#utility.yul\":2726:2732 */\n dup2\n /* \"#utility.yul\":2721:2724 */\n dup6\n /* \"#utility.yul\":2714:2718 */\n 0x20\n /* \"#utility.yul\":2707:2712 */\n dup7\n /* \"#utility.yul\":2703:2719 */\n add\n /* \"#utility.yul\":2681:2733 */\n tag_103\n jump\t// in\n tag_102:\n /* \"#utility.yul\":2758:2787 */\n tag_104\n /* \"#utility.yul\":2780:2786 */\n dup2\n /* \"#utility.yul\":2758:2787 */\n tag_105\n jump\t// in\n tag_104:\n /* \"#utility.yul\":2753:2756 */\n dup5\n /* \"#utility.yul\":2749:2788 */\n add\n /* \"#utility.yul\":2742:2788 */\n swap2\n pop\n /* \"#utility.yul\":2522:2794 */\n pop\n /* \"#utility.yul\":2430:2794 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2800:2918 */\n tag_106:\n /* \"#utility.yul\":2887:2911 */\n tag_108\n /* \"#utility.yul\":2905:2910 */\n dup2\n /* \"#utility.yul\":2887:2911 */\n tag_109\n jump\t// in\n tag_108:\n /* \"#utility.yul\":2882:2885 */\n dup3\n /* \"#utility.yul\":2875:2912 */\n mstore\n /* \"#utility.yul\":2800:2918 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2924:3639 */\n tag_11:\n /* \"#utility.yul\":3133:3137 */\n 0x00\n /* \"#utility.yul\":3171:3173 */\n 0x60\n /* \"#utility.yul\":3160:3169 */\n dup3\n /* \"#utility.yul\":3156:3174 */\n add\n /* \"#utility.yul\":3148:3174 */\n swap1\n pop\n /* \"#utility.yul\":3220:3229 */\n dup2\n /* \"#utility.yul\":3214:3218 */\n dup2\n /* \"#utility.yul\":3210:3230 */\n sub\n /* \"#utility.yul\":3206:3207 */\n 0x00\n /* \"#utility.yul\":3195:3204 */\n dup4\n /* \"#utility.yul\":3191:3208 */\n add\n /* \"#utility.yul\":3184:3231 */\n mstore\n /* \"#utility.yul\":3248:3326 */\n tag_111\n /* \"#utility.yul\":3321:3325 */\n dup2\n /* \"#utility.yul\":3312:3318 */\n dup7\n /* \"#utility.yul\":3248:3326 */\n tag_96\n jump\t// in\n tag_111:\n /* \"#utility.yul\":3240:3326 */\n swap1\n pop\n /* \"#utility.yul\":3373:3382 */\n dup2\n /* \"#utility.yul\":3367:3371 */\n dup2\n /* \"#utility.yul\":3363:3383 */\n sub\n /* \"#utility.yul\":3358:3360 */\n 0x20\n /* \"#utility.yul\":3347:3356 */\n dup4\n /* \"#utility.yul\":3343:3361 */\n add\n /* \"#utility.yul\":3336:3384 */\n mstore\n /* \"#utility.yul\":3401:3479 */\n tag_112\n /* \"#utility.yul\":3474:3478 */\n dup2\n /* \"#utility.yul\":3465:3471 */\n dup6\n /* \"#utility.yul\":3401:3479 */\n tag_96\n jump\t// in\n tag_112:\n /* \"#utility.yul\":3393:3479 */\n swap1\n pop\n /* \"#utility.yul\":3526:3535 */\n dup2\n /* \"#utility.yul\":3520:3524 */\n dup2\n /* \"#utility.yul\":3516:3536 */\n sub\n /* \"#utility.yul\":3511:3513 */\n 0x40\n /* \"#utility.yul\":3500:3509 */\n dup4\n /* \"#utility.yul\":3496:3514 */\n add\n /* \"#utility.yul\":3489:3537 */\n mstore\n /* \"#utility.yul\":3554:3632 */\n tag_113\n /* \"#utility.yul\":3627:3631 */\n dup2\n /* \"#utility.yul\":3618:3624 */\n dup5\n /* \"#utility.yul\":3554:3632 */\n tag_96\n jump\t// in\n tag_113:\n /* \"#utility.yul\":3546:3632 */\n swap1\n pop\n /* \"#utility.yul\":2924:3639 */\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3645:3867 */\n tag_19:\n /* \"#utility.yul\":3738:3742 */\n 0x00\n /* \"#utility.yul\":3776:3778 */\n 0x20\n /* \"#utility.yul\":3765:3774 */\n dup3\n /* \"#utility.yul\":3761:3779 */\n add\n /* \"#utility.yul\":3753:3779 */\n swap1\n pop\n /* \"#utility.yul\":3789:3860 */\n tag_115\n /* \"#utility.yul\":3857:3858 */\n 0x00\n /* \"#utility.yul\":3846:3855 */\n dup4\n /* \"#utility.yul\":3842:3859 */\n add\n /* \"#utility.yul\":3833:3839 */\n dup5\n /* \"#utility.yul\":3789:3860 */\n tag_106\n jump\t// in\n tag_115:\n /* \"#utility.yul\":3645:3867 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3873:4002 */\n tag_62:\n /* \"#utility.yul\":3907:3913 */\n 0x00\n /* \"#utility.yul\":3934:3954 */\n tag_117\n tag_118\n jump\t// in\n tag_117:\n /* \"#utility.yul\":3924:3954 */\n swap1\n pop\n /* \"#utility.yul\":3963:3996 */\n tag_119\n /* \"#utility.yul\":3991:3995 */\n dup3\n /* \"#utility.yul\":3983:3989 */\n dup3\n /* \"#utility.yul\":3963:3996 */\n tag_120\n jump\t// in\n tag_119:\n /* \"#utility.yul\":3873:4002 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4008:4083 */\n tag_118:\n /* \"#utility.yul\":4041:4047 */\n 0x00\n /* \"#utility.yul\":4074:4076 */\n 0x40\n /* \"#utility.yul\":4068:4077 */\n mload\n /* \"#utility.yul\":4058:4077 */\n swap1\n pop\n /* \"#utility.yul\":4008:4083 */\n swap1\n jump\t// out\n /* \"#utility.yul\":4089:4397 */\n tag_61:\n /* \"#utility.yul\":4151:4155 */\n 0x00\n /* \"#utility.yul\":4241:4259 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4233:4239 */\n dup3\n /* \"#utility.yul\":4230:4260 */\n gt\n /* \"#utility.yul\":4227:4283 */\n iszero\n tag_123\n jumpi\n /* \"#utility.yul\":4263:4281 */\n tag_124\n tag_125\n jump\t// in\n tag_124:\n /* \"#utility.yul\":4227:4283 */\n tag_123:\n /* \"#utility.yul\":4301:4330 */\n tag_126\n /* \"#utility.yul\":4323:4329 */\n dup3\n /* \"#utility.yul\":4301:4330 */\n tag_105\n jump\t// in\n tag_126:\n /* \"#utility.yul\":4293:4330 */\n swap1\n pop\n /* \"#utility.yul\":4385:4389 */\n 0x20\n /* \"#utility.yul\":4379:4383 */\n dup2\n /* \"#utility.yul\":4375:4390 */\n add\n /* \"#utility.yul\":4367:4390 */\n swap1\n pop\n /* \"#utility.yul\":4089:4397 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4403:4502 */\n tag_99:\n /* \"#utility.yul\":4455:4461 */\n 0x00\n /* \"#utility.yul\":4489:4494 */\n dup2\n /* \"#utility.yul\":4483:4495 */\n mload\n /* \"#utility.yul\":4473:4495 */\n swap1\n pop\n /* \"#utility.yul\":4403:4502 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4508:4677 */\n tag_101:\n /* \"#utility.yul\":4592:4603 */\n 0x00\n /* \"#utility.yul\":4626:4632 */\n dup3\n /* \"#utility.yul\":4621:4624 */\n dup3\n /* \"#utility.yul\":4614:4633 */\n mstore\n /* \"#utility.yul\":4666:4670 */\n 0x20\n /* \"#utility.yul\":4661:4664 */\n dup3\n /* \"#utility.yul\":4657:4671 */\n add\n /* \"#utility.yul\":4642:4671 */\n swap1\n pop\n /* \"#utility.yul\":4508:4677 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4683:4988 */\n tag_45:\n /* \"#utility.yul\":4723:4726 */\n 0x00\n /* \"#utility.yul\":4742:4762 */\n tag_130\n /* \"#utility.yul\":4760:4761 */\n dup3\n /* \"#utility.yul\":4742:4762 */\n tag_109\n jump\t// in\n tag_130:\n /* \"#utility.yul\":4737:4762 */\n swap2\n pop\n /* \"#utility.yul\":4776:4796 */\n tag_131\n /* \"#utility.yul\":4794:4795 */\n dup4\n /* \"#utility.yul\":4776:4796 */\n tag_109\n jump\t// in\n tag_131:\n /* \"#utility.yul\":4771:4796 */\n swap3\n pop\n /* \"#utility.yul\":4930:4931 */\n dup3\n /* \"#utility.yul\":4862:4928 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":4858:4932 */\n sub\n /* \"#utility.yul\":4855:4856 */\n dup3\n /* \"#utility.yul\":4852:4933 */\n gt\n /* \"#utility.yul\":4849:4956 */\n iszero\n tag_132\n jumpi\n /* \"#utility.yul\":4936:4954 */\n tag_133\n tag_134\n jump\t// in\n tag_133:\n /* \"#utility.yul\":4849:4956 */\n tag_132:\n /* \"#utility.yul\":4980:4981 */\n dup3\n /* \"#utility.yul\":4977:4978 */\n dup3\n /* \"#utility.yul\":4973:4982 */\n add\n /* \"#utility.yul\":4966:4982 */\n swap1\n pop\n /* \"#utility.yul\":4683:4988 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4994:5071 */\n tag_109:\n /* \"#utility.yul\":5031:5038 */\n 0x00\n /* \"#utility.yul\":5060:5065 */\n dup2\n /* \"#utility.yul\":5049:5065 */\n swap1\n pop\n /* \"#utility.yul\":4994:5071 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5077:5231 */\n tag_67:\n /* \"#utility.yul\":5161:5167 */\n dup3\n /* \"#utility.yul\":5156:5159 */\n dup2\n /* \"#utility.yul\":5151:5154 */\n dup4\n /* \"#utility.yul\":5138:5168 */\n calldatacopy\n /* \"#utility.yul\":5223:5224 */\n 0x00\n /* \"#utility.yul\":5214:5220 */\n dup4\n /* \"#utility.yul\":5209:5212 */\n dup4\n /* \"#utility.yul\":5205:5221 */\n add\n /* \"#utility.yul\":5198:5225 */\n mstore\n /* \"#utility.yul\":5077:5231 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5237:5544 */\n tag_103:\n /* \"#utility.yul\":5305:5306 */\n 0x00\n /* \"#utility.yul\":5315:5428 */\n tag_138:\n /* \"#utility.yul\":5329:5335 */\n dup4\n /* \"#utility.yul\":5326:5327 */\n dup2\n /* \"#utility.yul\":5323:5336 */\n lt\n /* \"#utility.yul\":5315:5428 */\n iszero\n tag_140\n jumpi\n /* \"#utility.yul\":5414:5415 */\n dup1\n /* \"#utility.yul\":5409:5412 */\n dup3\n /* \"#utility.yul\":5405:5416 */\n add\n /* \"#utility.yul\":5399:5417 */\n mload\n /* \"#utility.yul\":5395:5396 */\n dup2\n /* \"#utility.yul\":5390:5393 */\n dup5\n /* \"#utility.yul\":5386:5397 */\n add\n /* \"#utility.yul\":5379:5418 */\n mstore\n /* \"#utility.yul\":5351:5353 */\n 0x20\n /* \"#utility.yul\":5348:5349 */\n dup2\n /* \"#utility.yul\":5344:5354 */\n add\n /* \"#utility.yul\":5339:5354 */\n swap1\n pop\n /* \"#utility.yul\":5315:5428 */\n jump(tag_138)\n tag_140:\n /* \"#utility.yul\":5446:5452 */\n dup4\n /* \"#utility.yul\":5443:5444 */\n dup2\n /* \"#utility.yul\":5440:5453 */\n gt\n /* \"#utility.yul\":5437:5538 */\n iszero\n tag_141\n jumpi\n /* \"#utility.yul\":5526:5527 */\n 0x00\n /* \"#utility.yul\":5517:5523 */\n dup5\n /* \"#utility.yul\":5512:5515 */\n dup5\n /* \"#utility.yul\":5508:5524 */\n add\n /* \"#utility.yul\":5501:5528 */\n mstore\n /* \"#utility.yul\":5437:5538 */\n tag_141:\n /* \"#utility.yul\":5286:5544 */\n pop\n /* \"#utility.yul\":5237:5544 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5550:5870 */\n tag_23:\n /* \"#utility.yul\":5594:5600 */\n 0x00\n /* \"#utility.yul\":5631:5632 */\n 0x02\n /* \"#utility.yul\":5625:5629 */\n dup3\n /* \"#utility.yul\":5621:5633 */\n div\n /* \"#utility.yul\":5611:5633 */\n swap1\n pop\n /* \"#utility.yul\":5678:5679 */\n 0x01\n /* \"#utility.yul\":5672:5676 */\n dup3\n /* \"#utility.yul\":5668:5680 */\n and\n /* \"#utility.yul\":5699:5717 */\n dup1\n /* \"#utility.yul\":5689:5770 */\n tag_143\n jumpi\n /* \"#utility.yul\":5755:5759 */\n 0x7f\n /* \"#utility.yul\":5747:5753 */\n dup3\n /* \"#utility.yul\":5743:5760 */\n and\n /* \"#utility.yul\":5733:5760 */\n swap2\n pop\n /* \"#utility.yul\":5689:5770 */\n tag_143:\n /* \"#utility.yul\":5817:5819 */\n 0x20\n /* \"#utility.yul\":5809:5815 */\n dup3\n /* \"#utility.yul\":5806:5820 */\n lt\n /* \"#utility.yul\":5786:5804 */\n dup2\n /* \"#utility.yul\":5783:5821 */\n eq\n /* \"#utility.yul\":5780:5864 */\n iszero\n tag_144\n jumpi\n /* \"#utility.yul\":5836:5854 */\n tag_145\n tag_146\n jump\t// in\n tag_145:\n /* \"#utility.yul\":5780:5864 */\n tag_144:\n /* \"#utility.yul\":5601:5870 */\n pop\n /* \"#utility.yul\":5550:5870 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5876:6157 */\n tag_120:\n /* \"#utility.yul\":5959:5986 */\n tag_148\n /* \"#utility.yul\":5981:5985 */\n dup3\n /* \"#utility.yul\":5959:5986 */\n tag_105\n jump\t// in\n tag_148:\n /* \"#utility.yul\":5951:5957 */\n dup2\n /* \"#utility.yul\":5947:5987 */\n add\n /* \"#utility.yul\":6089:6095 */\n dup2\n /* \"#utility.yul\":6077:6087 */\n dup2\n /* \"#utility.yul\":6074:6096 */\n lt\n /* \"#utility.yul\":6053:6071 */\n 0xffffffffffffffff\n /* \"#utility.yul\":6041:6051 */\n dup3\n /* \"#utility.yul\":6038:6072 */\n gt\n /* \"#utility.yul\":6035:6097 */\n or\n /* \"#utility.yul\":6032:6120 */\n iszero\n tag_149\n jumpi\n /* \"#utility.yul\":6100:6118 */\n tag_150\n tag_125\n jump\t// in\n tag_150:\n /* \"#utility.yul\":6032:6120 */\n tag_149:\n /* \"#utility.yul\":6140:6150 */\n dup1\n /* \"#utility.yul\":6136:6138 */\n 0x40\n /* \"#utility.yul\":6129:6151 */\n mstore\n /* \"#utility.yul\":5919:6157 */\n pop\n /* \"#utility.yul\":5876:6157 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6163:6343 */\n tag_134:\n /* \"#utility.yul\":6211:6288 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6208:6209 */\n 0x00\n /* \"#utility.yul\":6201:6289 */\n mstore\n /* \"#utility.yul\":6308:6312 */\n 0x11\n /* \"#utility.yul\":6305:6306 */\n 0x04\n /* \"#utility.yul\":6298:6313 */\n mstore\n /* \"#utility.yul\":6332:6336 */\n 0x24\n /* \"#utility.yul\":6329:6330 */\n 0x00\n /* \"#utility.yul\":6322:6337 */\n revert\n /* \"#utility.yul\":6349:6529 */\n tag_146:\n /* \"#utility.yul\":6397:6474 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6394:6395 */\n 0x00\n /* \"#utility.yul\":6387:6475 */\n mstore\n /* \"#utility.yul\":6494:6498 */\n 0x22\n /* \"#utility.yul\":6491:6492 */\n 0x04\n /* \"#utility.yul\":6484:6499 */\n mstore\n /* \"#utility.yul\":6518:6522 */\n 0x24\n /* \"#utility.yul\":6515:6516 */\n 0x00\n /* \"#utility.yul\":6508:6523 */\n revert\n /* \"#utility.yul\":6535:6715 */\n tag_125:\n /* \"#utility.yul\":6583:6660 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6580:6581 */\n 0x00\n /* \"#utility.yul\":6573:6661 */\n mstore\n /* \"#utility.yul\":6680:6684 */\n 0x41\n /* \"#utility.yul\":6677:6678 */\n 0x04\n /* \"#utility.yul\":6670:6685 */\n mstore\n /* \"#utility.yul\":6704:6708 */\n 0x24\n /* \"#utility.yul\":6701:6702 */\n 0x00\n /* \"#utility.yul\":6694:6709 */\n revert\n /* \"#utility.yul\":6721:6838 */\n tag_72:\n /* \"#utility.yul\":6830:6831 */\n 0x00\n /* \"#utility.yul\":6827:6828 */\n dup1\n /* \"#utility.yul\":6820:6832 */\n revert\n /* \"#utility.yul\":6844:6961 */\n tag_65:\n /* \"#utility.yul\":6953:6954 */\n 0x00\n /* \"#utility.yul\":6950:6951 */\n dup1\n /* \"#utility.yul\":6943:6955 */\n revert\n /* \"#utility.yul\":6967:7084 */\n tag_84:\n /* \"#utility.yul\":7076:7077 */\n 0x00\n /* \"#utility.yul\":7073:7074 */\n dup1\n /* \"#utility.yul\":7066:7078 */\n revert\n /* \"#utility.yul\":7090:7207 */\n tag_81:\n /* \"#utility.yul\":7199:7200 */\n 0x00\n /* \"#utility.yul\":7196:7197 */\n dup1\n /* \"#utility.yul\":7189:7201 */\n revert\n /* \"#utility.yul\":7213:7315 */\n tag_105:\n /* \"#utility.yul\":7254:7260 */\n 0x00\n /* \"#utility.yul\":7305:7307 */\n 0x1f\n /* \"#utility.yul\":7301:7308 */\n not\n /* \"#utility.yul\":7296:7298 */\n 0x1f\n /* \"#utility.yul\":7289:7294 */\n dup4\n /* \"#utility.yul\":7285:7299 */\n add\n /* \"#utility.yul\":7281:7309 */\n and\n /* \"#utility.yul\":7271:7309 */\n swap1\n pop\n /* \"#utility.yul\":7213:7315 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7321:7443 */\n tag_77:\n /* \"#utility.yul\":7394:7418 */\n tag_160\n /* \"#utility.yul\":7412:7417 */\n dup2\n /* \"#utility.yul\":7394:7418 */\n tag_109\n jump\t// in\n tag_160:\n /* \"#utility.yul\":7387:7392 */\n dup2\n /* \"#utility.yul\":7384:7419 */\n eq\n /* \"#utility.yul\":7374:7437 */\n tag_161\n jumpi\n /* \"#utility.yul\":7433:7434 */\n 0x00\n /* \"#utility.yul\":7430:7431 */\n dup1\n /* \"#utility.yul\":7423:7435 */\n revert\n /* \"#utility.yul\":7374:7437 */\n tag_161:\n /* \"#utility.yul\":7321:7443 */\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220f8e9ebe030bf56d95d400eeb61c3a67b126f9d4e3f7dc8e3cceef0b6146a835d64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610868806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063180aedf31461004657806328f76943146100785780634c5d8a0f14610094575b600080fd5b610060600480360381019061005b9190610516565b6100b2565b60405161006f9392919061058b565b60405180910390f35b610092600480360381019061008d919061046f565b610284565b005b61009c610341565b6040516100a991906105d7565b60405180910390f35b600081815481106100c257600080fd5b90600052602060002090600302016000915090508060000180546100e590610706565b80601f016020809104026020016040519081016040528092919081815260200182805461011190610706565b801561015e5780601f106101335761010080835404028352916020019161015e565b820191906000526020600020905b81548152906001019060200180831161014157829003601f168201915b50505050509080600101805461017390610706565b80601f016020809104026020016040519081016040528092919081815260200182805461019f90610706565b80156101ec5780601f106101c1576101008083540402835291602001916101ec565b820191906000526020600020905b8154815290600101906020018083116101cf57829003601f168201915b50505050509080600201805461020190610706565b80601f016020809104026020016040519081016040528092919081815260200182805461022d90610706565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905083565b6000604051806060016040528085815260200184815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906102e6929190610347565b506020820151816001019080519060200190610303929190610347565b506040820151816002019080519060200190610320929190610347565b50505060018060008282546103359190610664565b92505081905550505050565b60015481565b82805461035390610706565b90600052602060002090601f01602090048101928261037557600085556103bc565b82601f1061038e57805160ff19168380011785556103bc565b828001600101855582156103bc579182015b828111156103bb5782518255916020019190600101906103a0565b5b5090506103c991906103cd565b5090565b5b808211156103e65760008160009055506001016103ce565b5090565b60006103fd6103f884610617565b6105f2565b905082815260208101848484011115610419576104186107fb565b5b6104248482856106c4565b509392505050565b600082601f830112610441576104406107f6565b5b81356104518482602086016103ea565b91505092915050565b6000813590506104698161081b565b92915050565b60008060006060848603121561048857610487610805565b5b600084013567ffffffffffffffff8111156104a6576104a5610800565b5b6104b28682870161042c565b935050602084013567ffffffffffffffff8111156104d3576104d2610800565b5b6104df8682870161042c565b925050604084013567ffffffffffffffff811115610500576104ff610800565b5b61050c8682870161042c565b9150509250925092565b60006020828403121561052c5761052b610805565b5b600061053a8482850161045a565b91505092915050565b600061054e82610648565b6105588185610653565b93506105688185602086016106d3565b6105718161080a565b840191505092915050565b610585816106ba565b82525050565b600060608201905081810360008301526105a58186610543565b905081810360208301526105b98185610543565b905081810360408301526105cd8184610543565b9050949350505050565b60006020820190506105ec600083018461057c565b92915050565b60006105fc61060d565b90506106088282610738565b919050565b6000604051905090565b600067ffffffffffffffff821115610632576106316107c7565b5b61063b8261080a565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061066f826106ba565b915061067a836106ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156106af576106ae610769565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b838110156106f15780820151818401526020810190506106d6565b83811115610700576000848401525b50505050565b6000600282049050600182168061071e57607f821691505b6020821081141561073257610731610798565b5b50919050565b6107418261080a565b810181811067ffffffffffffffff821117156107605761075f6107c7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610824816106ba565b811461082f57600080fd5b5056fea2646970667358221220f8e9ebe030bf56d95d400eeb61c3a67b126f9d4e3f7dc8e3cceef0b6146a835d64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x868 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 0x180AEDF3 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x28F76943 EQ PUSH2 0x78 JUMPI DUP1 PUSH4 0x4C5D8A0F EQ PUSH2 0x94 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x516 JUMP JUMPDEST PUSH2 0xB2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x92 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8D SWAP2 SWAP1 PUSH2 0x46F JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x9C PUSH2 0x341 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0xE5 SWAP1 PUSH2 0x706 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 0x111 SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x133 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15E 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 0x141 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x173 SWAP1 PUSH2 0x706 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 0x19F SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1EC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1EC 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 0x1CF JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x706 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 0x22D SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A 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 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2E6 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x303 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x320 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP POP POP PUSH1 0x1 DUP1 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x664 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x353 SWAP1 PUSH2 0x706 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x375 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x38E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x3BC JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3BB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3A0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3C9 SWAP2 SWAP1 PUSH2 0x3CD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3E6 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3CE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3FD PUSH2 0x3F8 DUP5 PUSH2 0x617 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x419 JUMPI PUSH2 0x418 PUSH2 0x7FB JUMP JUMPDEST JUMPDEST PUSH2 0x424 DUP5 DUP3 DUP6 PUSH2 0x6C4 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x7F6 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x469 DUP2 PUSH2 0x81B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x488 JUMPI PUSH2 0x487 PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4A6 JUMPI PUSH2 0x4A5 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4B2 DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D3 JUMPI PUSH2 0x4D2 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4DF DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x500 JUMPI PUSH2 0x4FF PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x50C DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x52C JUMPI PUSH2 0x52B PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x53A DUP5 DUP3 DUP6 ADD PUSH2 0x45A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x54E DUP3 PUSH2 0x648 JUMP JUMPDEST PUSH2 0x558 DUP2 DUP6 PUSH2 0x653 JUMP JUMPDEST SWAP4 POP PUSH2 0x568 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0x571 DUP2 PUSH2 0x80A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x585 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5A5 DUP2 DUP7 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x5B9 DUP2 DUP6 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x5CD DUP2 DUP5 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x5EC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x57C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5FC PUSH2 0x60D JUMP JUMPDEST SWAP1 POP PUSH2 0x608 DUP3 DUP3 PUSH2 0x738 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x632 JUMPI PUSH2 0x631 PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST PUSH2 0x63B DUP3 PUSH2 0x80A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP 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 PUSH2 0x66F DUP3 PUSH2 0x6BA JUMP JUMPDEST SWAP2 POP PUSH2 0x67A DUP4 PUSH2 0x6BA JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x6AF JUMPI PUSH2 0x6AE PUSH2 0x769 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x6F1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x6D6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x700 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x71E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x732 JUMPI PUSH2 0x731 PUSH2 0x798 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x741 DUP3 PUSH2 0x80A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x760 JUMPI PUSH2 0x75F PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x824 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP2 EQ PUSH2 0x82F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF8 0xE9 0xEB 0xE0 ADDRESS 0xBF JUMP 0xD9 0x5D BLOCKHASH 0xE 0xEB PUSH2 0xC3A6 PUSH28 0x126F9D4E3F7DC8E3CCEEF0B6146A835D64736F6C6343000807003300 ",
"sourceMap": "70:420:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addJob_38": {
"entryPoint": 644,
"id": 38,
"parameterSlots": 3,
"returnSlots": 0
},
"@jobCount_7": {
"entryPoint": 833,
"id": 7,
"parameterSlots": 0,
"returnSlots": 0
},
"@jobs_5": {
"entryPoint": 178,
"id": 5,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1002,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1068,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1114,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 1135,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1302,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1347,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1404,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1419,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1495,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1549,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1559,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1608,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1619,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1636,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1722,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1732,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1747,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1798,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1848,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1897,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1944,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1991,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2038,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2043,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2048,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2053,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2058,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 2075,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7446:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:1"
},
"nodeType": "YulFunctionCall",
"src": "552:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "525:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "521:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "514:35:1"
},
"nodeType": "YulIf",
"src": "511:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:1"
},
"nodeType": "YulFunctionCall",
"src": "656:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "742:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:1"
},
"nodeType": "YulFunctionCall",
"src": "694:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:1",
"type": ""
}
],
"src": "439:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:1"
},
"nodeType": "YulFunctionCall",
"src": "856:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:1"
},
"nodeType": "YulFunctionCall",
"src": "885:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:1",
"type": ""
}
],
"src": "785:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1060:1029:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1106:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1108:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1108:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1108:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1081:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1090:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1077:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1077:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1102:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1073:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1073:32:1"
},
"nodeType": "YulIf",
"src": "1070:119:1"
},
{
"nodeType": "YulBlock",
"src": "1199:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1214:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1245:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1256:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1241:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1241:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1228:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1228:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1218:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1306:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1308:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1308:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1308:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1278:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1286:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1275:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1275:30:1"
},
"nodeType": "YulIf",
"src": "1272:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1403:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1448:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1459:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1444:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1444:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1468:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1413:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1413:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1403:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1496:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1511:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1542:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1553:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1525:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1525:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1515:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1604:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1606:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1606:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1606:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1576:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1584:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1573:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1573:30:1"
},
"nodeType": "YulIf",
"src": "1570:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1701:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1746:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1757:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1742:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1766:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1711:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1711:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1701:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1794:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1809:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1840:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1851:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1836:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1836:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1823:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1823:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1813:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1902:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1904:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1904:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1904:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1874:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1882:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1871:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1871:30:1"
},
"nodeType": "YulIf",
"src": "1868:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1999:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2044:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2055:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2040:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2040:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2064:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2009:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2009:63:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1999:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1014:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1025:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1037:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1045:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1053:6:1",
"type": ""
}
],
"src": "930:1159:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2161:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2207:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2209:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2209:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2209:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2182:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2191:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2178:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2178:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2174:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2174:32:1"
},
"nodeType": "YulIf",
"src": "2171:119:1"
},
{
"nodeType": "YulBlock",
"src": "2300:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2315:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2329:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2319:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2344:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2379:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2390:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2375:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2375:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2399:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2354:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2354:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2344:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2131:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2142:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2154:6:1",
"type": ""
}
],
"src": "2095:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2522:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2532:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2579:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2546:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2546:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2536:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2594:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2660:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2665:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2601:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2601:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2594:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2707:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2714:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2703:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2703:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2721:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2726:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2681:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2681:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2681:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2742:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2753:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2780:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2758:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2758:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2749:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2749:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2742:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2503:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2510:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2518:3:1",
"type": ""
}
],
"src": "2430:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2865:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2882:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2905:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2887:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2887:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2875:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2875:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "2875:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2853:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2860:3:1",
"type": ""
}
],
"src": "2800:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3138:501:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3148:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3160:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3171:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3156:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3156:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3148:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3195:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3206:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3191:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3191:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3214:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3220:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3210:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3210:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3184:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3184:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3240:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3312:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3321:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3248:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3248:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3240:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3347:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3358:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3343:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3343:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3367:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3373:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3363:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3363:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3336:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3336:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3336:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3393:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3465:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3474:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3401:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3401:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3393:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3500:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3511:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3496:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3496:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3520:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3526:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3516:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3516:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3489:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3489:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3489:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3546:86:1",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3618:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3627:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3554:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3554:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3546:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3094:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3106:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3114:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3122:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3133:4:1",
"type": ""
}
],
"src": "2924:715:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3743:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3753:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3765:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3776:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3761:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3761:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3753:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3833:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3846:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3857:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3842:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3842:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3789:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3789:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3789:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3715:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3727:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3738:4:1",
"type": ""
}
],
"src": "3645:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3914:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3924:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "3934:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3934:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3924:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3983:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3991:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "3963:19:1"
},
"nodeType": "YulFunctionCall",
"src": "3963:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3963:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3898:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3907:6:1",
"type": ""
}
],
"src": "3873:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4048:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4058:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4074:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4068:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4068:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4058:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4041:6:1",
"type": ""
}
],
"src": "4008:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4156:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4261:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4263:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4263:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4263:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4233:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4241:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4230:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4230:30:1"
},
"nodeType": "YulIf",
"src": "4227:56:1"
},
{
"nodeType": "YulAssignment",
"src": "4293:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4323:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4301:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4301:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4293:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4367:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4379:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4385:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4375:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4375:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4367:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4140:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4151:4:1",
"type": ""
}
],
"src": "4089:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4462:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4473:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4489:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4483:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4483:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4473:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4445:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4455:6:1",
"type": ""
}
],
"src": "4403:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4604:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4621:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4626:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4614:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4614:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4614:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4642:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4661:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4666:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4657:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4657:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4642:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4576:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4581:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4592:11:1",
"type": ""
}
],
"src": "4508:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4727:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4737:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4760:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4742:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4742:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4737:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4771:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4794:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4776:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4776:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4771:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4934:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4936:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4936:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4936:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4855:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4862:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4930:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4858:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4858:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4852:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4852:81:1"
},
"nodeType": "YulIf",
"src": "4849:107:1"
},
{
"nodeType": "YulAssignment",
"src": "4966:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4977:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4980:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4973:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4973:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4966:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4714:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4717:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4723:3:1",
"type": ""
}
],
"src": "4683:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5039:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5049:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5060:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5049:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5021:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5031:7:1",
"type": ""
}
],
"src": "4994:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5128:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5151:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5156:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5161:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5138:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5138:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "5138:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5209:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5214:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5205:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5205:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5223:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5198:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5198:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5198:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5110:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5115:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5120:6:1",
"type": ""
}
],
"src": "5077:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5286:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5296:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5305:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5300:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5365:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5390:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5395:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5386:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5409:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5414:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5405:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5405:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5399:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5399:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5379:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5379:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "5379:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5326:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5329:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5323:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5323:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5337:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5339:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5348:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5351:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5344:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5344:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5339:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5319:3:1",
"statements": []
},
"src": "5315:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5462:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5512:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5517:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5508:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5508:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5526:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5501:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5501:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5501:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5443:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5446:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5440:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5440:13:1"
},
"nodeType": "YulIf",
"src": "5437:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5268:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5273:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5278:6:1",
"type": ""
}
],
"src": "5237:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5601:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5611:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5625:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5631:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5621:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5621:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5611:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5642:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5672:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5678:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5668:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5646:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5719:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5733:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5747:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5755:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5743:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5743:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5733:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5699:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5692:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5692:26:1"
},
"nodeType": "YulIf",
"src": "5689:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5822:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5836:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5836:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5836:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5786:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5809:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5817:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5806:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5806:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5783:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5783:38:1"
},
"nodeType": "YulIf",
"src": "5780:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5585:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5594:6:1",
"type": ""
}
],
"src": "5550:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5919:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5929:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5951:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "5981:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5959:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5959:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5947:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5947:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "5933:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6098:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "6100:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6100:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6100:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6041:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6053:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6038:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6038:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6077:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6089:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6074:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6074:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6035:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6035:62:1"
},
"nodeType": "YulIf",
"src": "6032:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6136:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6140:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6129:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6129:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "6129:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5905:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "5913:4:1",
"type": ""
}
],
"src": "5876:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6191:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6208:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6211:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6201:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6201:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6201:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6305:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6308:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6298:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6298:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6298:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6329:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6332:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6322:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6322:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6322:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6163:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6377:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6394:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6397:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6387:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6387:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6387:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6491:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6494:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6484:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6484:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6484:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6515:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6518:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6508:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6508:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6508:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6349:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6563:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6580:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6583:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6573:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6573:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6573:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6677:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6680:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6670:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6670:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6670:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6701:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6704:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6694:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6694:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6694:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "6535:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6810:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6827:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6830:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6820:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6820:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6820:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6721:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6933:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6950:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6953:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6943:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6943:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6943:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "6844:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7056:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7073:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7076:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7066:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7066:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7066:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "6967:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7179:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7196:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7199:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7189:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7189:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7189:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "7090:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7261:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7271:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7289:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7296:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7285:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7285:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7305:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7301:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7301:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7281:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7281:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7271:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7244:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7254:6:1",
"type": ""
}
],
"src": "7213:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7364:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7421:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7430:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7433:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7423:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7423:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7423:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7387:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7412:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7394:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7394:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7384:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7384:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7377:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7377:43:1"
},
"nodeType": "YulIf",
"src": "7374:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7357:5:1",
"type": ""
}
],
"src": "7321:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_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_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\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 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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c8063180aedf31461004657806328f76943146100785780634c5d8a0f14610094575b600080fd5b610060600480360381019061005b9190610516565b6100b2565b60405161006f9392919061058b565b60405180910390f35b610092600480360381019061008d919061046f565b610284565b005b61009c610341565b6040516100a991906105d7565b60405180910390f35b600081815481106100c257600080fd5b90600052602060002090600302016000915090508060000180546100e590610706565b80601f016020809104026020016040519081016040528092919081815260200182805461011190610706565b801561015e5780601f106101335761010080835404028352916020019161015e565b820191906000526020600020905b81548152906001019060200180831161014157829003601f168201915b50505050509080600101805461017390610706565b80601f016020809104026020016040519081016040528092919081815260200182805461019f90610706565b80156101ec5780601f106101c1576101008083540402835291602001916101ec565b820191906000526020600020905b8154815290600101906020018083116101cf57829003601f168201915b50505050509080600201805461020190610706565b80601f016020809104026020016040519081016040528092919081815260200182805461022d90610706565b801561027a5780601f1061024f5761010080835404028352916020019161027a565b820191906000526020600020905b81548152906001019060200180831161025d57829003601f168201915b5050505050905083565b6000604051806060016040528085815260200184815260200183815250908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000190805190602001906102e6929190610347565b506020820151816001019080519060200190610303929190610347565b506040820151816002019080519060200190610320929190610347565b50505060018060008282546103359190610664565b92505081905550505050565b60015481565b82805461035390610706565b90600052602060002090601f01602090048101928261037557600085556103bc565b82601f1061038e57805160ff19168380011785556103bc565b828001600101855582156103bc579182015b828111156103bb5782518255916020019190600101906103a0565b5b5090506103c991906103cd565b5090565b5b808211156103e65760008160009055506001016103ce565b5090565b60006103fd6103f884610617565b6105f2565b905082815260208101848484011115610419576104186107fb565b5b6104248482856106c4565b509392505050565b600082601f830112610441576104406107f6565b5b81356104518482602086016103ea565b91505092915050565b6000813590506104698161081b565b92915050565b60008060006060848603121561048857610487610805565b5b600084013567ffffffffffffffff8111156104a6576104a5610800565b5b6104b28682870161042c565b935050602084013567ffffffffffffffff8111156104d3576104d2610800565b5b6104df8682870161042c565b925050604084013567ffffffffffffffff811115610500576104ff610800565b5b61050c8682870161042c565b9150509250925092565b60006020828403121561052c5761052b610805565b5b600061053a8482850161045a565b91505092915050565b600061054e82610648565b6105588185610653565b93506105688185602086016106d3565b6105718161080a565b840191505092915050565b610585816106ba565b82525050565b600060608201905081810360008301526105a58186610543565b905081810360208301526105b98185610543565b905081810360408301526105cd8184610543565b9050949350505050565b60006020820190506105ec600083018461057c565b92915050565b60006105fc61060d565b90506106088282610738565b919050565b6000604051905090565b600067ffffffffffffffff821115610632576106316107c7565b5b61063b8261080a565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061066f826106ba565b915061067a836106ba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156106af576106ae610769565b5b828201905092915050565b6000819050919050565b82818337600083830152505050565b60005b838110156106f15780820151818401526020810190506106d6565b83811115610700576000848401525b50505050565b6000600282049050600182168061071e57607f821691505b6020821081141561073257610731610798565b5b50919050565b6107418261080a565b810181811067ffffffffffffffff821117156107605761075f6107c7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610824816106ba565b811461082f57600080fd5b5056fea2646970667358221220f8e9ebe030bf56d95d400eeb61c3a67b126f9d4e3f7dc8e3cceef0b6146a835d64736f6c63430008070033",
"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 0x180AEDF3 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x28F76943 EQ PUSH2 0x78 JUMPI DUP1 PUSH4 0x4C5D8A0F EQ PUSH2 0x94 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x516 JUMP JUMPDEST PUSH2 0xB2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6F SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x58B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x92 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8D SWAP2 SWAP1 PUSH2 0x46F JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x9C PUSH2 0x341 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA9 SWAP2 SWAP1 PUSH2 0x5D7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD DUP1 SLOAD PUSH2 0xE5 SWAP1 PUSH2 0x706 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 0x111 SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x15E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x133 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x15E 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 0x141 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x173 SWAP1 PUSH2 0x706 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 0x19F SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1EC JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1C1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1EC 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 0x1CF JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x201 SWAP1 PUSH2 0x706 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 0x22D SWAP1 PUSH2 0x706 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x27A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x24F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x27A 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 0x25D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2E6 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x303 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x320 SWAP3 SWAP2 SWAP1 PUSH2 0x347 JUMP JUMPDEST POP POP POP PUSH1 0x1 DUP1 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x664 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x353 SWAP1 PUSH2 0x706 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x375 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x38E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x3BC JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x3BC JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3BB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x3A0 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x3C9 SWAP2 SWAP1 PUSH2 0x3CD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x3E6 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x3CE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3FD PUSH2 0x3F8 DUP5 PUSH2 0x617 JUMP JUMPDEST PUSH2 0x5F2 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x419 JUMPI PUSH2 0x418 PUSH2 0x7FB JUMP JUMPDEST JUMPDEST PUSH2 0x424 DUP5 DUP3 DUP6 PUSH2 0x6C4 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x441 JUMPI PUSH2 0x440 PUSH2 0x7F6 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x451 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3EA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x469 DUP2 PUSH2 0x81B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x488 JUMPI PUSH2 0x487 PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4A6 JUMPI PUSH2 0x4A5 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4B2 DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D3 JUMPI PUSH2 0x4D2 PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x4DF DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x500 JUMPI PUSH2 0x4FF PUSH2 0x800 JUMP JUMPDEST JUMPDEST PUSH2 0x50C DUP7 DUP3 DUP8 ADD PUSH2 0x42C JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x52C JUMPI PUSH2 0x52B PUSH2 0x805 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x53A DUP5 DUP3 DUP6 ADD PUSH2 0x45A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x54E DUP3 PUSH2 0x648 JUMP JUMPDEST PUSH2 0x558 DUP2 DUP6 PUSH2 0x653 JUMP JUMPDEST SWAP4 POP PUSH2 0x568 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0x571 DUP2 PUSH2 0x80A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x585 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5A5 DUP2 DUP7 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x5B9 DUP2 DUP6 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x5CD DUP2 DUP5 PUSH2 0x543 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x5EC PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x57C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5FC PUSH2 0x60D JUMP JUMPDEST SWAP1 POP PUSH2 0x608 DUP3 DUP3 PUSH2 0x738 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x632 JUMPI PUSH2 0x631 PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST PUSH2 0x63B DUP3 PUSH2 0x80A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP 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 PUSH2 0x66F DUP3 PUSH2 0x6BA JUMP JUMPDEST SWAP2 POP PUSH2 0x67A DUP4 PUSH2 0x6BA JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x6AF JUMPI PUSH2 0x6AE PUSH2 0x769 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x6F1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x6D6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x700 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x71E JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x732 JUMPI PUSH2 0x731 PUSH2 0x798 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x741 DUP3 PUSH2 0x80A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x760 JUMPI PUSH2 0x75F PUSH2 0x7C7 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x824 DUP2 PUSH2 0x6BA JUMP JUMPDEST DUP2 EQ PUSH2 0x82F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF8 0xE9 0xEB 0xE0 ADDRESS 0xBF JUMP 0xD9 0x5D BLOCKHASH 0xE 0xEB PUSH2 0xC3A6 PUSH28 0x126F9D4E3F7DC8E3CCEEF0B6146A835D64736F6C6343000807003300 ",
"sourceMap": "70:420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93:17;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;280:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;117:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;93:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;280:208::-;399:4;409:44;;;;;;;;413:9;409:44;;;;424:13;409:44;;;;439:12;409:44;;;399:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;480:1;468:8;;:13;;;;;;;:::i;:::-;;;;;;;;280:208;;;:::o;117:23::-;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:1:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:1159::-;1037:6;1045;1053;1102:2;1090:9;1081:7;1077:23;1073:32;1070:119;;;1108:79;;:::i;:::-;1070:119;1256:1;1245:9;1241:17;1228:31;1286:18;1278:6;1275:30;1272:117;;;1308:79;;:::i;:::-;1272:117;1413:63;1468:7;1459:6;1448:9;1444:22;1413:63;:::i;:::-;1403:73;;1199:287;1553:2;1542:9;1538:18;1525:32;1584:18;1576:6;1573:30;1570:117;;;1606:79;;:::i;:::-;1570:117;1711:63;1766:7;1757:6;1746:9;1742:22;1711:63;:::i;:::-;1701:73;;1496:288;1851:2;1840:9;1836:18;1823:32;1882:18;1874:6;1871:30;1868:117;;;1904:79;;:::i;:::-;1868:117;2009:63;2064:7;2055:6;2044:9;2040:22;2009:63;:::i;:::-;1999:73;;1794:288;930:1159;;;;;:::o;2095:329::-;2154:6;2203:2;2191:9;2182:7;2178:23;2174:32;2171:119;;;2209:79;;:::i;:::-;2171:119;2329:1;2354:53;2399:7;2390:6;2379:9;2375:22;2354:53;:::i;:::-;2344:63;;2300:117;2095:329;;;;:::o;2430:364::-;2518:3;2546:39;2579:5;2546:39;:::i;:::-;2601:71;2665:6;2660:3;2601:71;:::i;:::-;2594:78;;2681:52;2726:6;2721:3;2714:4;2707:5;2703:16;2681:52;:::i;:::-;2758:29;2780:6;2758:29;:::i;:::-;2753:3;2749:39;2742:46;;2522:272;2430:364;;;;:::o;2800:118::-;2887:24;2905:5;2887:24;:::i;:::-;2882:3;2875:37;2800:118;;:::o;2924:715::-;3133:4;3171:2;3160:9;3156:18;3148:26;;3220:9;3214:4;3210:20;3206:1;3195:9;3191:17;3184:47;3248:78;3321:4;3312:6;3248:78;:::i;:::-;3240:86;;3373:9;3367:4;3363:20;3358:2;3347:9;3343:18;3336:48;3401:78;3474:4;3465:6;3401:78;:::i;:::-;3393:86;;3526:9;3520:4;3516:20;3511:2;3500:9;3496:18;3489:48;3554:78;3627:4;3618:6;3554:78;:::i;:::-;3546:86;;2924:715;;;;;;:::o;3645:222::-;3738:4;3776:2;3765:9;3761:18;3753:26;;3789:71;3857:1;3846:9;3842:17;3833:6;3789:71;:::i;:::-;3645:222;;;;:::o;3873:129::-;3907:6;3934:20;;:::i;:::-;3924:30;;3963:33;3991:4;3983:6;3963:33;:::i;:::-;3873:129;;;:::o;4008:75::-;4041:6;4074:2;4068:9;4058:19;;4008:75;:::o;4089:308::-;4151:4;4241:18;4233:6;4230:30;4227:56;;;4263:18;;:::i;:::-;4227:56;4301:29;4323:6;4301:29;:::i;:::-;4293:37;;4385:4;4379;4375:15;4367:23;;4089:308;;;:::o;4403:99::-;4455:6;4489:5;4483:12;4473:22;;4403:99;;;:::o;4508:169::-;4592:11;4626:6;4621:3;4614:19;4666:4;4661:3;4657:14;4642:29;;4508:169;;;;:::o;4683:305::-;4723:3;4742:20;4760:1;4742:20;:::i;:::-;4737:25;;4776:20;4794:1;4776:20;:::i;:::-;4771:25;;4930:1;4862:66;4858:74;4855:1;4852:81;4849:107;;;4936:18;;:::i;:::-;4849:107;4980:1;4977;4973:9;4966:16;;4683:305;;;;:::o;4994:77::-;5031:7;5060:5;5049:16;;4994:77;;;:::o;5077:154::-;5161:6;5156:3;5151;5138:30;5223:1;5214:6;5209:3;5205:16;5198:27;5077:154;;;:::o;5237:307::-;5305:1;5315:113;5329:6;5326:1;5323:13;5315:113;;;5414:1;5409:3;5405:11;5399:18;5395:1;5390:3;5386:11;5379:39;5351:2;5348:1;5344:10;5339:15;;5315:113;;;5446:6;5443:1;5440:13;5437:101;;;5526:1;5517:6;5512:3;5508:16;5501:27;5437:101;5286:258;5237:307;;;:::o;5550:320::-;5594:6;5631:1;5625:4;5621:12;5611:22;;5678:1;5672:4;5668:12;5699:18;5689:81;;5755:4;5747:6;5743:17;5733:27;;5689:81;5817:2;5809:6;5806:14;5786:18;5783:38;5780:84;;;5836:18;;:::i;:::-;5780:84;5601:269;5550:320;;;:::o;5876:281::-;5959:27;5981:4;5959:27;:::i;:::-;5951:6;5947:40;6089:6;6077:10;6074:22;6053:18;6041:10;6038:34;6035:62;6032:88;;;6100:18;;:::i;:::-;6032:88;6140:10;6136:2;6129:22;5919:238;5876:281;;:::o;6163:180::-;6211:77;6208:1;6201:88;6308:4;6305:1;6298:15;6332:4;6329:1;6322:15;6349:180;6397:77;6394:1;6387:88;6494:4;6491:1;6484:15;6518:4;6515:1;6508:15;6535:180;6583:77;6580:1;6573:88;6680:4;6677:1;6670:15;6704:4;6701:1;6694:15;6721:117;6830:1;6827;6820:12;6844:117;6953:1;6950;6943:12;6967:117;7076:1;7073;7066:12;7090:117;7199:1;7196;7189:12;7213:102;7254:6;7305:2;7301:7;7296:2;7289:5;7285:14;7281:28;7271:38;;7213:102;;;:::o;7321:122::-;7394:24;7412:5;7394:24;:::i;:::-;7387:5;7384:35;7374:63;;7433:1;7430;7423:12;7374:63;7321:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "430400",
"executionCost": "468",
"totalCost": "430868"
},
"external": {
"addJob(string,string,string)": "infinite",
"jobCount()": "2451",
"jobs(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 70,
"end": 490,
"name": "MSTORE",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "ISZERO",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 490,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "REVERT",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 490,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "POP",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 490,
"name": "CODECOPY",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 490,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220f8e9ebe030bf56d95d400eeb61c3a67b126f9d4e3f7dc8e3cceef0b6146a835d64736f6c63430008070033",
".code": [
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 70,
"end": 490,
"name": "MSTORE",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "ISZERO",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 490,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "REVERT",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 70,
"end": 490,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "POP",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 70,
"end": 490,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "LT",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 70,
"end": 490,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 490,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 70,
"end": 490,
"name": "SHR",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "180AEDF3"
},
{
"begin": 70,
"end": 490,
"name": "EQ",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 70,
"end": 490,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "28F76943"
},
{
"begin": 70,
"end": 490,
"name": "EQ",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 70,
"end": 490,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "4C5D8A0F"
},
{
"begin": 70,
"end": 490,
"name": "EQ",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 70,
"end": 490,
"name": "JUMPI",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 70,
"end": 490,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 70,
"end": 490,
"name": "DUP1",
"source": 0
},
{
"begin": 70,
"end": 490,
"name": "REVERT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 93,
"end": 110,
"name": "SWAP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "RETURN",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 280,
"end": 488,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 280,
"end": 488,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 280,
"end": 488,
"name": "DUP1",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "SUB",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "DUP2",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "ADD",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "SWAP1",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 280,
"end": 488,
"name": "SWAP2",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "SWAP1",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 280,
"end": 488,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 280,
"end": 488,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 280,
"end": 488,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 280,
"end": 488,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 280,
"end": 488,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 280,
"end": 488,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "STOP",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 117,
"end": 140,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 117,
"end": 140,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 117,
"end": 140,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 117,
"end": 140,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 117,
"end": 140,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 117,
"end": 140,
"name": "MLOAD",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 117,
"end": 140,
"name": "SWAP2",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "SWAP1",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 117,
"end": 140,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 117,
"end": 140,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 117,
"end": 140,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 117,
"end": 140,
"name": "MLOAD",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "DUP1",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "SWAP2",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "SUB",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "SWAP1",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "RETURN",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "REVERT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ISZERO",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "GT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "AND",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ISZERO",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "GT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "AND",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ISZERO",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "LT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DIV",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MUL",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 93,
"end": 110,
"name": "KECCAK256",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SLOAD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "MSTORE",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "GT",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 93,
"end": 110,
"name": "JUMPI",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SUB",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 93,
"end": 110,
"name": "AND",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP3",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "ADD",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP2",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 93,
"end": 110,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "SWAP1",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "POP",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "DUP4",
"source": 0
},
{
"begin": 93,
"end": 110,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 280,
"end": 488,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 280,
"end": 488,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 399,
"end": 403,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 409,
"end": 453,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 409,
"end": 453,
"name": "MLOAD",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "DUP1",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 409,
"end": 453,
"name": "ADD",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 409,
"end": 453,
"name": "MSTORE",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "DUP1",
"source": 0
},
{
"begin": 413,
"end": 422,
"name": "DUP6",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "DUP2",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "MSTORE",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 409,
"end": 453,
"name": "ADD",
"source": 0
},
{
"begin": 424,
"end": 437,
"name": "DUP5",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "DUP2",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "MSTORE",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 409,
"end": 453,
"name": "ADD",
"source": 0
},
{
"begin": 439,
"end": 451,
"name": "DUP4",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "DUP2",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "MSTORE",
"source": 0
},
{
"begin": 409,
"end": 453,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 399,
"end": 454,
"name": "DUP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SLOAD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP3",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SSTORE",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SUB",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 399,
"end": 454,
"name": "MSTORE",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 399,
"end": 454,
"name": "KECCAK256",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 399,
"end": 454,
"name": "MUL",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 399,
"end": 454,
"name": "DUP3",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "MLOAD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "MLOAD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 399,
"end": 454,
"name": "SWAP3",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 399,
"end": 454,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 399,
"end": 454,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 399,
"end": 454,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 399,
"end": 454,
"name": "DUP3",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "MLOAD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "MLOAD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 399,
"end": 454,
"name": "SWAP3",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 399,
"end": 454,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 399,
"end": 454,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 399,
"end": 454,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 399,
"end": 454,
"name": "DUP3",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "MLOAD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "DUP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "MLOAD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 399,
"end": 454,
"name": "ADD",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 399,
"end": 454,
"name": "SWAP3",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP2",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "SWAP1",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 399,
"end": 454,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 399,
"end": 454,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 399,
"end": 454,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 399,
"end": 454,
"name": "POP",
"source": 0
},
{
"begin": 480,
"end": 481,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 468,
"end": 476,
"name": "DUP1",
"source": 0
},
{
"begin": 468,
"end": 476,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 468,
"end": 481,
"name": "DUP3",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "DUP3",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "SLOAD",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 468,
"end": 481,
"name": "SWAP2",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "SWAP1",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 468,
"end": 481,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 468,
"end": 481,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 468,
"end": 481,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "SWAP3",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "POP",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "POP",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "DUP2",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "SWAP1",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "SSTORE",
"source": 0
},
{
"begin": 468,
"end": 481,
"name": "POP",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "POP",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "POP",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "POP",
"source": 0
},
{
"begin": 280,
"end": 488,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 117,
"end": 140,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 117,
"end": 140,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 117,
"end": 140,
"name": "SLOAD",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "DUP2",
"source": 0
},
{
"begin": 117,
"end": 140,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "41"
},
{
"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": "PUSH [tag]",
"source": -1,
"value": "46"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "23"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "46"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"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": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DIV",
"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": "PUSH [tag]",
"source": -1,
"value": "48"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "47"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "48"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "LT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "49"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "FF"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "AND",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "OR",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "47"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "49"
},
{
"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": "ADD",
"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": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"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": "47"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"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": "50"
},
{
"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": "51"
},
{
"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": "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": "50"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "51"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "47"
},
{
"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": "52"
},
{
"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": "53"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "52"
},
{
"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": "53"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "54"
},
{
"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": "55"
},
{
"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": "54"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "55"
},
{
"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": 7,
"end": 419,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 7,
"end": 419,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 85,
"end": 90,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 1,
"value": "59"
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 168,
"end": 174,
"name": "DUP5",
"source": 1
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 126,
"end": 175,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 126,
"end": 175,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 126,
"end": 175,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 110,
"end": 176,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 110,
"end": 176,
"name": "tag",
"source": 1,
"value": "59"
},
{
"begin": 110,
"end": 176,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 101,
"end": 176,
"name": "SWAP1",
"source": 1
},
{
"begin": 101,
"end": 176,
"name": "POP",
"source": 1
},
{
"begin": 199,
"end": 205,
"name": "DUP3",
"source": 1
},
{
"begin": 192,
"end": 197,
"name": "DUP2",
"source": 1
},
{
"begin": 185,
"end": 206,
"name": "MSTORE",
"source": 1
},
{
"begin": 237,
"end": 241,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 230,
"end": 235,
"name": "DUP2",
"source": 1
},
{
"begin": 226,
"end": 242,
"name": "ADD",
"source": 1
},
{
"begin": 275,
"end": 278,
"name": "DUP5",
"source": 1
},
{
"begin": 266,
"end": 272,
"name": "DUP5",
"source": 1
},
{
"begin": 261,
"end": 264,
"name": "DUP5",
"source": 1
},
{
"begin": 257,
"end": 273,
"name": "ADD",
"source": 1
},
{
"begin": 254,
"end": 279,
"name": "GT",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "ISZERO",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 251,
"end": 363,
"name": "JUMPI",
"source": 1
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 282,
"end": 361,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 282,
"end": 361,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 282,
"end": 361,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 251,
"end": 363,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 1,
"value": "66"
},
{
"begin": 406,
"end": 412,
"name": "DUP5",
"source": 1
},
{
"begin": 401,
"end": 404,
"name": "DUP3",
"source": 1
},
{
"begin": 396,
"end": 399,
"name": "DUP6",
"source": 1
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 372,
"end": 413,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 372,
"end": 413,
"name": "tag",
"source": 1,
"value": "66"
},
{
"begin": 372,
"end": 413,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 91,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "SWAP4",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "SWAP3",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 439,
"end": 779,
"name": "tag",
"source": 1,
"value": "68"
},
{
"begin": 439,
"end": 779,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 495,
"end": 500,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 544,
"end": 547,
"name": "DUP3",
"source": 1
},
{
"begin": 537,
"end": 541,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 529,
"end": 535,
"name": "DUP4",
"source": 1
},
{
"begin": 525,
"end": 542,
"name": "ADD",
"source": 1
},
{
"begin": 521,
"end": 548,
"name": "SLT",
"source": 1
},
{
"begin": 511,
"end": 633,
"name": "PUSH [tag]",
"source": 1,
"value": "70"
},
{
"begin": 511,
"end": 633,
"name": "JUMPI",
"source": 1
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 1,
"value": "72"
},
{
"begin": 552,
"end": 631,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 552,
"end": 631,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 552,
"end": 631,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 511,
"end": 633,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 511,
"end": 633,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 669,
"end": 675,
"name": "DUP2",
"source": 1
},
{
"begin": 656,
"end": 676,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 769,
"end": 772,
"name": "DUP5",
"source": 1
},
{
"begin": 761,
"end": 767,
"name": "DUP3",
"source": 1
},
{
"begin": 754,
"end": 758,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 746,
"end": 752,
"name": "DUP7",
"source": 1
},
{
"begin": 742,
"end": 759,
"name": "ADD",
"source": 1
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 694,
"end": 773,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 694,
"end": 773,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 694,
"end": 773,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 685,
"end": 773,
"name": "SWAP2",
"source": 1
},
{
"begin": 685,
"end": 773,
"name": "POP",
"source": 1
},
{
"begin": 501,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "SWAP3",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "SWAP2",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 785,
"end": 924,
"name": "tag",
"source": 1,
"value": "74"
},
{
"begin": 785,
"end": 924,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 831,
"end": 836,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 869,
"end": 875,
"name": "DUP2",
"source": 1
},
{
"begin": 856,
"end": 876,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 847,
"end": 876,
"name": "SWAP1",
"source": 1
},
{
"begin": 847,
"end": 876,
"name": "POP",
"source": 1
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 1,
"value": "76"
},
{
"begin": 912,
"end": 917,
"name": "DUP2",
"source": 1
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 885,
"end": 918,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 885,
"end": 918,
"name": "tag",
"source": 1,
"value": "76"
},
{
"begin": 885,
"end": 918,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "SWAP3",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "SWAP2",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 930,
"end": 2089,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 930,
"end": 2089,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1037,
"end": 1043,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1045,
"end": 1051,
"name": "DUP1",
"source": 1
},
{
"begin": 1053,
"end": 1059,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1102,
"end": 1104,
"name": "PUSH",
"source": 1,
"value": "60"
},
{
"begin": 1090,
"end": 1099,
"name": "DUP5",
"source": 1
},
{
"begin": 1081,
"end": 1088,
"name": "DUP7",
"source": 1
},
{
"begin": 1077,
"end": 1100,
"name": "SUB",
"source": 1
},
{
"begin": 1073,
"end": 1105,
"name": "SLT",
"source": 1
},
{
"begin": 1070,
"end": 1189,
"name": "ISZERO",
"source": 1
},
{
"begin": 1070,
"end": 1189,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 1070,
"end": 1189,
"name": "JUMPI",
"source": 1
},
{
"begin": 1108,
"end": 1187,
"name": "PUSH [tag]",
"source": 1,
"value": "80"
},
{
"begin": 1108,
"end": 1187,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 1108,
"end": 1187,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1108,
"end": 1187,
"name": "tag",
"source": 1,
"value": "80"
},
{
"begin": 1108,
"end": 1187,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1070,
"end": 1189,
"name": "tag",
"source": 1,
"value": "79"
},
{
"begin": 1070,
"end": 1189,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1256,
"end": 1257,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1245,
"end": 1254,
"name": "DUP5",
"source": 1
},
{
"begin": 1241,
"end": 1258,
"name": "ADD",
"source": 1
},
{
"begin": 1228,
"end": 1259,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1286,
"end": 1304,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1278,
"end": 1284,
"name": "DUP2",
"source": 1
},
{
"begin": 1275,
"end": 1305,
"name": "GT",
"source": 1
},
{
"begin": 1272,
"end": 1389,
"name": "ISZERO",
"source": 1
},
{
"begin": 1272,
"end": 1389,
"name": "PUSH [tag]",
"source": 1,
"value": "82"
},
{
"begin": 1272,
"end": 1389,
"name": "JUMPI",
"source": 1
},
{
"begin": 1308,
"end": 1387,
"name": "PUSH [tag]",
"source": 1,
"value": "83"
},
{
"begin": 1308,
"end": 1387,
"name": "PUSH [tag]",
"source": 1,
"value": "84"
},
{
"begin": 1308,
"end": 1387,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1308,
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