Skip to content

Instantly share code, notes, and snippets.

@oswinkil-git
Created September 11, 2021 00:35
Show Gist options
  • Save oswinkil-git/179c21300181489aee10b4c243cbdf3d to your computer and use it in GitHub Desktop.
Save oswinkil-git/179c21300181489aee10b4c243cbdf3d 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.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: contracts/NerdyCoderClones.sol
// Created by HashLips
// The Nerdy Coder Clones
pragma solidity ^0.8.0;
contract AbstractumNFT is ERC721Enumerable, Ownable {
using Strings for uint256;
string public baseURI;
string public baseExtension = ".json";
uint256 public cost = 0.04 ether;
uint256 public maxSupply = 2048;
uint256 public maxMintAmount = 20;
bool public paused = false;
mapping(address => bool) public whitelisted;
constructor(
string memory _name,
string memory _symbol,
string memory _initBaseURI
) ERC721(_name, _symbol) {
setBaseURI(_initBaseURI);
mint(msg.sender, 3);
}
// internal
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
// public
function mint(address _to, uint256 _mintAmount) public payable {
uint256 supply = totalSupply();
require(!paused);
require(_mintAmount > 0);
require(_mintAmount <= maxMintAmount);
require(supply + _mintAmount <= maxSupply);
if (msg.sender != owner()) {
if(whitelisted[msg.sender] != true) {
require(msg.value >= cost * _mintAmount);
}
}
for (uint256 i = 1; i <= _mintAmount; i++) {
_safeMint(_to, supply + i);
}
}
function walletOfOwner(address _owner)
public
view
returns (uint256[] memory)
{
uint256 ownerTokenCount = balanceOf(_owner);
uint256[] memory tokenIds = new uint256[](ownerTokenCount);
for (uint256 i; i < ownerTokenCount; i++) {
tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
}
return tokenIds;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
: "";
}
//only owner
function setCost(uint256 _newCost) public onlyOwner() {
cost = _newCost;
}
function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
maxMintAmount = _newmaxMintAmount;
}
function setBaseURI(string memory _newBaseURI) public onlyOwner {
baseURI = _newBaseURI;
}
function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
baseExtension = _newBaseExtension;
}
function pause(bool _state) public onlyOwner {
paused = _state;
}
function whitelistUser(address _user) public onlyOwner {
whitelisted[_user] = true;
}
function removeWhitelistUser(address _user) public onlyOwner {
whitelisted[_user] = false;
}
function withdraw() public payable onlyOwner {
require(payable(msg.sender).send(address(this).balance));
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:12584:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:259:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:1"
},
"nodeType": "YulFunctionCall",
"src": "137:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:1"
},
"nodeType": "YulFunctionCall",
"src": "121:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:1"
},
"nodeType": "YulFunctionCall",
"src": "196:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:1"
},
"nodeType": "YulFunctionCall",
"src": "237:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "300:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "303:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "293:6:1"
},
"nodeType": "YulFunctionCall",
"src": "293:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "293:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:1"
},
"nodeType": "YulFunctionCall",
"src": "268:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:1"
},
"nodeType": "YulFunctionCall",
"src": "265:25:1"
},
"nodeType": "YulIf",
"src": "262:2:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "338:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "343:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "348:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "316:21:1"
},
"nodeType": "YulFunctionCall",
"src": "316:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "316:39:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:1",
"type": ""
}
],
"src": "7:354:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "429:79:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "439:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "454:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "448:5:1"
},
"nodeType": "YulFunctionCall",
"src": "448:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "439:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "496:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "470:25:1"
},
"nodeType": "YulFunctionCall",
"src": "470:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "470:32:1"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "407:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "415:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "423:5:1",
"type": ""
}
],
"src": "367:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "601:215:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "650:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "659:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "662:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "652:6:1"
},
"nodeType": "YulFunctionCall",
"src": "652:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "652:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "637:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "625:3:1"
},
"nodeType": "YulFunctionCall",
"src": "625:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "644:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "621:3:1"
},
"nodeType": "YulFunctionCall",
"src": "621:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "614:6:1"
},
"nodeType": "YulFunctionCall",
"src": "614:35:1"
},
"nodeType": "YulIf",
"src": "611:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "675:27:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "695:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "689:5:1"
},
"nodeType": "YulFunctionCall",
"src": "689:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "679:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "711:99:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "783:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "791:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "779:3:1"
},
"nodeType": "YulFunctionCall",
"src": "779:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "798:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "806:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "720:58:1"
},
"nodeType": "YulFunctionCall",
"src": "720:90:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "711:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "579:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "587:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "595:5:1",
"type": ""
}
],
"src": "528:288:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "898:206:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "944:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "953:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "956:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "946:6:1"
},
"nodeType": "YulFunctionCall",
"src": "946:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "946:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "919:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "928:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "915:3:1"
},
"nodeType": "YulFunctionCall",
"src": "915:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "940:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "911:3:1"
},
"nodeType": "YulFunctionCall",
"src": "911:32:1"
},
"nodeType": "YulIf",
"src": "908:2:1"
},
{
"nodeType": "YulBlock",
"src": "970:127:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "985:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "999:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "989:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1014:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1059:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1070:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1055:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1055:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1079:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "1024:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1024:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1014:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "868:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "879:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "891:6:1",
"type": ""
}
],
"src": "822:282:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1251:773:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1297:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1306:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1309:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1299:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1299:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1299:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1272:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1281:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1268:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1268:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1293:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1264:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1264:32:1"
},
"nodeType": "YulIf",
"src": "1261:2:1"
},
{
"nodeType": "YulBlock",
"src": "1323:224:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1338:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1362:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1373:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1358:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1358:17:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1352:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1352:24:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1342:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1423:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1432:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1435:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1425:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1425:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1425:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1395:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1403:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1392:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1392:30:1"
},
"nodeType": "YulIf",
"src": "1389:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1453:84:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1509:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1520:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1505:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1505:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1529:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1463:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1463:74:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1453:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1557:225:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1572:39:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1596:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1607:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1592:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1592:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1586:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1586:25:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1576:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1658:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1667:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1670:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1660:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1660:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1660:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1630:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1638:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1627:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1627:30:1"
},
"nodeType": "YulIf",
"src": "1624:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1688:84:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1744:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1755:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1740:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1740:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1764:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1698:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1698:74:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1688:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1792:225:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1807:39:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1831:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1842:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1827:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1827:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1821:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1821:25:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1811:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1893:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1902:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1905:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1895:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1895:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1895:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1865:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1873:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1862:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1862:30:1"
},
"nodeType": "YulIf",
"src": "1859:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1923:84:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1979:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1990:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1975:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1975:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1999:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1933:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1933:74:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1923:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1205:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1216:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1228:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1236:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1244:6:1",
"type": ""
}
],
"src": "1110:914:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2095:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2112:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2135:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "2117:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2117:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2105:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2105:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "2105:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2083:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2090:3:1",
"type": ""
}
],
"src": "2030:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2244:270:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2254:52:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2300:5:1"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2268:31:1"
},
"nodeType": "YulFunctionCall",
"src": "2268:38:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2258:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2315:77:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2380:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2385:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2322:57:1"
},
"nodeType": "YulFunctionCall",
"src": "2322:70:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2315:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2427:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2434:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2423:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2423:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2441:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2446:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2401:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2401:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2401:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2462:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2473:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2500:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2478:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2478:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2469:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2469:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2462:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2225:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2232:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2240:3:1",
"type": ""
}
],
"src": "2154:360:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2666:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2676:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2742:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2747:2:1",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2683:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2683:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2676:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2848:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "2759:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2759:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2759:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2861:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2872:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2877:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2868:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2868:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2861:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2654:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2662:3:1",
"type": ""
}
],
"src": "2520:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3038:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3048:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3114:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3119:2:1",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3055:58:1"
},
"nodeType": "YulFunctionCall",
"src": "3055:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3048:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3220:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "3131:88:1"
},
"nodeType": "YulFunctionCall",
"src": "3131:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "3131:93:1"
},
{
"nodeType": "YulAssignment",
"src": "3233:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3244:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3249:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3240:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3240:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3233:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3026:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3034:3:1",
"type": ""
}
],
"src": "2892:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3420:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3486:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3491:2:1",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3427:58:1"
},
"nodeType": "YulFunctionCall",
"src": "3427:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3420:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3592:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "3503:88:1"
},
"nodeType": "YulFunctionCall",
"src": "3503:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "3503:93:1"
},
{
"nodeType": "YulAssignment",
"src": "3605:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3616:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3621:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3612:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3612:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3605:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3398:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3406:3:1",
"type": ""
}
],
"src": "3264:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3782:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3792:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3858:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3863:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3799:58:1"
},
"nodeType": "YulFunctionCall",
"src": "3799:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3792:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3964:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "3875:88:1"
},
"nodeType": "YulFunctionCall",
"src": "3875:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "3875:93:1"
},
{
"nodeType": "YulAssignment",
"src": "3977:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3988:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3993:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3984:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3984:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3977:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3770:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3778:3:1",
"type": ""
}
],
"src": "3636:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4154:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4164:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4230:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4235:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4171:58:1"
},
"nodeType": "YulFunctionCall",
"src": "4171:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4164:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4336:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "4247:88:1"
},
"nodeType": "YulFunctionCall",
"src": "4247:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "4247:93:1"
},
{
"nodeType": "YulAssignment",
"src": "4349:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4360:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4365:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4356:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4356:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4349:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4142:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4150:3:1",
"type": ""
}
],
"src": "4008:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4445:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4462:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4485:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4467:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4467:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4455:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4455:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "4455:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4433:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4440:3:1",
"type": ""
}
],
"src": "4380:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4704:440:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4714:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4726:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4737:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4722:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4722:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4714:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4795:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4808:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4819:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4804:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4804:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4751:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4751:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "4751:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4876:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4889:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4900:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4885:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4885:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4832:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4832:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "4832:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4958:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4971:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4982:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4967:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4914:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4914:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "4914:72:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5007:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5018:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5003:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5003:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5027:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5033:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5023:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5023:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4996:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4996:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "4996:48:1"
},
{
"nodeType": "YulAssignment",
"src": "5053:84:1",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5123:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5132:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5061:61:1"
},
"nodeType": "YulFunctionCall",
"src": "5061:76:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5053:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4652:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4664:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4672:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4680:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4688:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4699:4:1",
"type": ""
}
],
"src": "4504:640:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5321:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5331:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5343:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5354:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5339:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5339:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5331:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5378:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5389:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5374:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5374:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5397:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5403:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5393:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5393:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5367:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5367:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "5367:47:1"
},
{
"nodeType": "YulAssignment",
"src": "5423:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5557:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5431:124:1"
},
"nodeType": "YulFunctionCall",
"src": "5431:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5423:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5301:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5316:4:1",
"type": ""
}
],
"src": "5150:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5746:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5756:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5768:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5779:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5764:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5764:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5756:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5803:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5814:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5799:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5799:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5822:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5828:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5818:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5818:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5792:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5792:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "5792:47:1"
},
{
"nodeType": "YulAssignment",
"src": "5848:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5982:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5856:124:1"
},
"nodeType": "YulFunctionCall",
"src": "5856:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5848:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5726:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5741:4:1",
"type": ""
}
],
"src": "5575:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6171:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6181:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6193:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6204:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6189:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6189:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6181:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6228:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6239:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6224:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6224:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6247:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6253:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6243:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6243:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6217:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6217:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "6217:47:1"
},
{
"nodeType": "YulAssignment",
"src": "6273:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6407:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6281:124:1"
},
"nodeType": "YulFunctionCall",
"src": "6281:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6273:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6151:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6166:4:1",
"type": ""
}
],
"src": "6000:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6596:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6606:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6618:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6629:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6614:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6614:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6606:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6653:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6664:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6649:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6649:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6672:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6678:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6668:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6642:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6642:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "6642:47:1"
},
{
"nodeType": "YulAssignment",
"src": "6698:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6832:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6706:124:1"
},
"nodeType": "YulFunctionCall",
"src": "6706:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6698:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6576:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6591:4:1",
"type": ""
}
],
"src": "6425:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7021:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7031:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7043:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7054:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7039:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7031:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7078:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7089:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7074:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7074:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7097:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7103:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7093:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7093:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7067:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7067:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "7067:47:1"
},
{
"nodeType": "YulAssignment",
"src": "7123:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7257:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7131:124:1"
},
"nodeType": "YulFunctionCall",
"src": "7131:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7123:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7001:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7016:4:1",
"type": ""
}
],
"src": "6850:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7316:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7326:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7336:18:1"
},
"nodeType": "YulFunctionCall",
"src": "7336:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7326:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7385:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7393:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7365:19:1"
},
"nodeType": "YulFunctionCall",
"src": "7365:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "7365:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7300:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7309:6:1",
"type": ""
}
],
"src": "7275:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7450:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7460:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7476:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7470:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7470:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7460:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7443:6:1",
"type": ""
}
],
"src": "7410:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7558:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7663:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7665:16:1"
},
"nodeType": "YulFunctionCall",
"src": "7665:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "7665:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7635:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7643:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7632:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7632:30:1"
},
"nodeType": "YulIf",
"src": "7629:2:1"
},
{
"nodeType": "YulAssignment",
"src": "7695:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7725:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7703:21:1"
},
"nodeType": "YulFunctionCall",
"src": "7703:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7695:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7769:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7781:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7787:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7777:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7777:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7769:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7542:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7553:4:1",
"type": ""
}
],
"src": "7491:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7863:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7874:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7890:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7884:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7884:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7874:6:1"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7846:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7856:6:1",
"type": ""
}
],
"src": "7805:98:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8004:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8021:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8026:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8014:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8014:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "8014:19:1"
},
{
"nodeType": "YulAssignment",
"src": "8042:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8061:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8066:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8057:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8057:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "8042:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7976:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7981:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "7992:11:1",
"type": ""
}
],
"src": "7909:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8179:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8196:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8201:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8189:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8189:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "8189:19:1"
},
{
"nodeType": "YulAssignment",
"src": "8217:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8236:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8241:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8232:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8232:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "8217:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8151:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8156:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "8167:11:1",
"type": ""
}
],
"src": "8083:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8302:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8312:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8335:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8317:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8317:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8312:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8346:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8369:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8351:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8351:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8346:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8509:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8511:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8511:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8511:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8430:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8437:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8505:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8433:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8433:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8427:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8427:81:1"
},
"nodeType": "YulIf",
"src": "8424:2:1"
},
{
"nodeType": "YulAssignment",
"src": "8541:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8552:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8555:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8548:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8548:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "8541:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8289:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8292:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "8298:3:1",
"type": ""
}
],
"src": "8258:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8617:300:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8627:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8650:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8632:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8632:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8627:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8661:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8684:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8666:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8666:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8661:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8859:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8861:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8861:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8861:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8771:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8764:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8764:9:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8757:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8757:17:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8779:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8786:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8854:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8782:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8782:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8776:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8776:81:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8753:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8753:105:1"
},
"nodeType": "YulIf",
"src": "8750:2:1"
},
{
"nodeType": "YulAssignment",
"src": "8891:20:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8906:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8909:1:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8902:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8902:9:1"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "8891:7:1"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8600:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8603:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "8609:7:1",
"type": ""
}
],
"src": "8569:348:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8968:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8978:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9001:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8983:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8983:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8978:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9012:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9035:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "9017:17:1"
},
"nodeType": "YulFunctionCall",
"src": "9017:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9012:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9059:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "9061:16:1"
},
"nodeType": "YulFunctionCall",
"src": "9061:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "9061:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9053:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9056:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9050:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9050:8:1"
},
"nodeType": "YulIf",
"src": "9047:2:1"
},
{
"nodeType": "YulAssignment",
"src": "9091:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "9103:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "9106:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9099:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9099:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "9091:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8954:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8957:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "8963:4:1",
"type": ""
}
],
"src": "8923:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9165:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9175:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9204:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "9186:17:1"
},
"nodeType": "YulFunctionCall",
"src": "9186:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9175:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9147:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9157:7:1",
"type": ""
}
],
"src": "9120:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9266:105:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9276:89:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9291:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9298:66:1",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9287:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9287:78:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9276:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9248:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9258:7:1",
"type": ""
}
],
"src": "9222:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9422:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9432:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9447:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9454:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9443:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9443:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9432:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9404:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9414:7:1",
"type": ""
}
],
"src": "9377:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9554:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9564:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "9575:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "9564:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9536:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "9546:7:1",
"type": ""
}
],
"src": "9509:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9641:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9651:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9660:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "9655:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9720:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "9745:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9750:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9741:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9741:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9764:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9769:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9760:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9760:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9754:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9754:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9734:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9734:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "9734:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9681:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9684:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9678:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9678:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "9692:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9694:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9703:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9706:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9699:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9699:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9694:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "9674:3:1",
"statements": []
},
"src": "9670:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9817:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "9867:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9872:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9863:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9863:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9856:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9856:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "9856:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9798:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9801:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9795:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9795:13:1"
},
"nodeType": "YulIf",
"src": "9792:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "9623:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "9628:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9633:6:1",
"type": ""
}
],
"src": "9592:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9956:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9966:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9980:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9986:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "9976:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9976:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9966:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "9997:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10027:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10033:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10023:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10023:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10001:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10074:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10088:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10102:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10110:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10098:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10098:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10088:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10054:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10047:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10047:26:1"
},
"nodeType": "YulIf",
"src": "10044:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10177:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10191:16:1"
},
"nodeType": "YulFunctionCall",
"src": "10191:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "10191:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10141:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10164:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10172:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10161:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10161:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10138:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10138:38:1"
},
"nodeType": "YulIf",
"src": "10135:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9940:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9949:6:1",
"type": ""
}
],
"src": "9905:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10274:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10284:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10306:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "10336:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "10314:21:1"
},
"nodeType": "YulFunctionCall",
"src": "10314:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10302:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10302:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "10288:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10453:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "10455:16:1"
},
"nodeType": "YulFunctionCall",
"src": "10455:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "10455:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "10396:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10408:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10393:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10393:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "10432:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10444:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10429:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10429:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "10390:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10390:62:1"
},
"nodeType": "YulIf",
"src": "10387:2:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10491:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "10495:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10484:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10484:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "10484:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10260:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "10268:4:1",
"type": ""
}
],
"src": "10231:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10561:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10571:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10598:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "10580:17:1"
},
"nodeType": "YulFunctionCall",
"src": "10580:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10571:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10694:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10696:16:1"
},
"nodeType": "YulFunctionCall",
"src": "10696:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "10696:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10619:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10626:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10616:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10616:77:1"
},
"nodeType": "YulIf",
"src": "10613:2:1"
},
{
"nodeType": "YulAssignment",
"src": "10725:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10736:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10743:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10732:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10732:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "10725:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10547:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "10557:3:1",
"type": ""
}
],
"src": "10518:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10785:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10802:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10805:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10795:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10795:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "10795:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10899:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10902:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10892:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10892:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "10892:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10923:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10926:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10916:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10916:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "10916:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "10757:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10971:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10988:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10991:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10981:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10981:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "10981:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11085:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11088:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11078:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11078:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11078:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11109:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11112:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11102:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11102:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11102:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "10943:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11157:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11174:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11177:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11167:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11167:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "11167:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11271:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11274:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11264:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11264:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11264:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11295:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11298:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11288:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11288:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11288:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "11129:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11363:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11373:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11391:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11398:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11387:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11387:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11407:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11403:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11403:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11383:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11383:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "11373:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11346:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "11356:6:1",
"type": ""
}
],
"src": "11315:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11529:131:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11551:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11559:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11547:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11547:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11563:34:1",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11540:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11540:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "11540:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11619:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11627:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11615:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11615:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11632:20:1",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11608:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11608:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "11608:45:1"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11521:6:1",
"type": ""
}
],
"src": "11423:237:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11772:72:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11794:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11802:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11790:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11790:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11806:30:1",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11783:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11783:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "11783:54:1"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11764:6:1",
"type": ""
}
],
"src": "11666:178:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11956:123:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11978:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11986:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11974:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11974:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11990:34:1",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11967:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11967:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "11967:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12046:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12054:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12042:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12042:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12059:12:1",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12035:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12035:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "12035:37:1"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11948:6:1",
"type": ""
}
],
"src": "11850:229:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12191:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12213:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12221:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12209:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12209:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12225:34:1",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12202:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12202:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "12202:58:1"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12183:6:1",
"type": ""
}
],
"src": "12085:182:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12379:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12401:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12409:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12397:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12397:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12413:34:1",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12390:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12390:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "12390:58:1"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12371:6:1",
"type": ""
}
],
"src": "12273:182:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12503:78:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12559:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12568:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12571:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12561:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12561:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "12561:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12526:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12550:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "12533:16:1"
},
"nodeType": "YulFunctionCall",
"src": "12533:23:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12523:2:1"
},
"nodeType": "YulFunctionCall",
"src": "12523:34:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12516:6:1"
},
"nodeType": "YulFunctionCall",
"src": "12516:42:1"
},
"nodeType": "YulIf",
"src": "12513:2:1"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12496:5:1",
"type": ""
}
],
"src": "12461:120:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(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(0, 0) }\n copy_memory_to_memory(src, dst, length)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // string\n function abi_decode_t_string_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := mload(offset)\n array := abi_decode_available_length_t_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value1 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value2 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_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_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( 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_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function 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 increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000eac565b50668e1bc9bf040000600d55610800600e556014600f556000601060006101000a81548160ff0219169083151502179055503480156200009057600080fd5b5060405162005bd038038062005bd08339818101604052810190620000b6919062001011565b82828160009080519060200190620000d092919062000eac565b508060019080519060200190620000e992919062000eac565b5050506200010c620001006200013960201b60201c565b6200014160201b60201c565b6200011d816200020760201b60201c565b62000130336003620002b260201b60201c565b50505062001786565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002176200013960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023d6200042160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d90620012b4565b60405180910390fd5b80600b9080519060200190620002ae92919062000eac565b5050565b6000620002c46200044b60201b60201c565b9050601060009054906101000a900460ff1615620002e157600080fd5b60008211620002ef57600080fd5b600f54821115620002ff57600080fd5b600e54828262000310919062001362565b11156200031c57600080fd5b6200032c6200042160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003d75760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003d65781600d54620003c89190620013bf565b341015620003d557600080fd5b5b5b6000600190505b8281116200041b5762000405848284620003f9919062001362565b6200045860201b60201c565b8080620004129062001567565b915050620003de565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600880549050905090565b6200047a8282604051806020016040528060008152506200047e60201b60201c565b5050565b620004908383620004ec60201b60201c565b620004a56000848484620006d260201b60201c565b620004e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004de906200122c565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200055f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005569062001292565b60405180910390fd5b62000570816200088c60201b60201c565b15620005b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005aa906200124e565b60405180910390fd5b620005c760008383620008f860201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000619919062001362565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620007008473ffffffffffffffffffffffffffffffffffffffff1662000a3f60201b62001c8b1760201c565b156200087f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007326200013960201b60201c565b8786866040518563ffffffff1660e01b8152600401620007569493929190620011d8565b602060405180830381600087803b1580156200077157600080fd5b505af1925050508015620007a557506040513d601f19601f82011682018060405250810190620007a2919062000fe5565b60015b6200082e573d8060008114620007d8576040519150601f19603f3d011682016040523d82523d6000602084013e620007dd565b606091505b5060008151141562000826576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200081d906200122c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000884565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6200091083838362000a5260201b62001c9e1760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200095d57620009578162000a5760201b60201c565b620009a5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620009a457620009a3838262000aa060201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f257620009ec8162000c1d60201b60201c565b62000a3a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000a395762000a38828262000d6560201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000aba8462000df160201b620014a61760201c565b62000ac6919062001420565b905060006007600084815260200190815260200160002054905081811462000bac576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000c33919062001420565b905060006009600084815260200190815260200160002054905060006008838154811062000c8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811062000cd3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d49577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600062000d7d8362000df160201b620014a61760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000e65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e5c9062001270565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000eba90620014fb565b90600052602060002090601f01602090048101928262000ede576000855562000f2a565b82601f1062000ef957805160ff191683800117855562000f2a565b8280016001018555821562000f2a579182015b8281111562000f2957825182559160200191906001019062000f0c565b5b50905062000f39919062000f3d565b5090565b5b8082111562000f5857600081600090555060010162000f3e565b5090565b600062000f7362000f6d84620012ff565b620012d6565b90508281526020810184848401111562000f8c57600080fd5b62000f99848285620014c5565b509392505050565b60008151905062000fb2816200176c565b92915050565b600082601f83011262000fca57600080fd5b815162000fdc84826020860162000f5c565b91505092915050565b60006020828403121562000ff857600080fd5b6000620010088482850162000fa1565b91505092915050565b6000806000606084860312156200102757600080fd5b600084015167ffffffffffffffff8111156200104257600080fd5b620010508682870162000fb8565b935050602084015167ffffffffffffffff8111156200106e57600080fd5b6200107c8682870162000fb8565b925050604084015167ffffffffffffffff8111156200109a57600080fd5b620010a88682870162000fb8565b9150509250925092565b620010bd816200145b565b82525050565b6000620010d08262001335565b620010dc818562001340565b9350620010ee818560208601620014c5565b620010f98162001642565b840191505092915050565b60006200111360328362001351565b9150620011208262001653565b604082019050919050565b60006200113a601c8362001351565b91506200114782620016a2565b602082019050919050565b600062001161602a8362001351565b91506200116e82620016cb565b604082019050919050565b60006200118860208362001351565b915062001195826200171a565b602082019050919050565b6000620011af60208362001351565b9150620011bc8262001743565b602082019050919050565b620011d281620014bb565b82525050565b6000608082019050620011ef6000830187620010b2565b620011fe6020830186620010b2565b6200120d6040830185620011c7565b8181036060830152620012218184620010c3565b905095945050505050565b60006020820190508181036000830152620012478162001104565b9050919050565b6000602082019050818103600083015262001269816200112b565b9050919050565b600060208201905081810360008301526200128b8162001152565b9050919050565b60006020820190508181036000830152620012ad8162001179565b9050919050565b60006020820190508181036000830152620012cf81620011a0565b9050919050565b6000620012e2620012f5565b9050620012f0828262001531565b919050565b6000604051905090565b600067ffffffffffffffff8211156200131d576200131c62001613565b5b620013288262001642565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200136f82620014bb565b91506200137c83620014bb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620013b457620013b3620015b5565b5b828201905092915050565b6000620013cc82620014bb565b9150620013d983620014bb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620014155762001414620015b5565b5b828202905092915050565b60006200142d82620014bb565b91506200143a83620014bb565b92508282101562001450576200144f620015b5565b5b828203905092915050565b600062001468826200149b565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620014e5578082015181840152602081019050620014c8565b83811115620014f5576000848401525b50505050565b600060028204905060018216806200151457607f821691505b602082108114156200152b576200152a620015e4565b5b50919050565b6200153c8262001642565b810181811067ffffffffffffffff821117156200155e576200155d62001613565b5b80604052505050565b60006200157482620014bb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620015aa57620015a9620015b5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62001777816200146f565b81146200178357600080fd5b50565b61443a80620017966000396000f3fe60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131cd565b610876565b604051610248919061378d565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906131a4565b6108f0565b005b34801561028657600080fd5b5061028f610989565b60405161029c91906137a8565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613260565b610a1b565b6040516102d99190613704565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613168565b610aa0565b005b34801561031757600080fd5b50610320610bb8565b60405161032d9190613a0a565b60405180910390f35b34801561034257600080fd5b5061034b610bbe565b6040516103589190613a0a565b60405180910390f35b34801561036d57600080fd5b50610376610bcb565b6040516103839190613a0a565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613062565b610bd1565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613168565b610c31565b6040516103e99190613a0a565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612ffd565b610cd6565b005b610423610dad565b005b61043f600480360381019061043a9190613168565b610e69565b005b34801561044d57600080fd5b5061046860048036038101906104639190613062565b610faf565b005b34801561047657600080fd5b50610491600480360381019061048c9190612ffd565b610fcf565b60405161049e919061376b565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613260565b6110c9565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612ffd565b61114f565b005b34801561050557600080fd5b50610520600480360381019061051b9190613260565b611226565b60405161052d9190613a0a565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061321f565b6112bd565b005b34801561056b57600080fd5b50610574611353565b604051610581919061378d565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613260565b611366565b6040516105be9190613704565b60405180910390f35b3480156105d357600080fd5b506105dc611418565b6040516105e991906137a8565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612ffd565b6114a6565b6040516106269190613a0a565b60405180910390f35b34801561063b57600080fd5b5061064461155e565b005b34801561065257600080fd5b5061066d60048036038101906106689190613260565b6115e6565b005b34801561067b57600080fd5b5061068461166c565b6040516106919190613704565b60405180910390f35b3480156106a657600080fd5b506106af611696565b6040516106bc91906137a8565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e7919061312c565b611728565b005b3480156106fa57600080fd5b50610715600480360381019061071091906130b1565b6118a9565b005b34801561072357600080fd5b5061072c61190b565b60405161073991906137a8565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613260565b611999565b60405161077691906137a8565b60405180910390f35b34801561078b57600080fd5b50610794611a43565b6040516107a19190613a0a565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612ffd565b611a49565b6040516107de919061378d565b60405180910390f35b3480156107f357600080fd5b5061080e6004803603810190610809919061321f565b611a69565b005b34801561081c57600080fd5b5061083760048036038101906108329190613026565b611aff565b604051610844919061378d565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612ffd565b611b93565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e882611ca3565b5b9050919050565b6108f8611d85565b73ffffffffffffffffffffffffffffffffffffffff1661091661166c565b73ffffffffffffffffffffffffffffffffffffffff161461096c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109639061394a565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b60606000805461099890613d08565b80601f01602080910402602001604051908101604052809291908181526020018280546109c490613d08565b8015610a115780601f106109e657610100808354040283529160200191610a11565b820191906000526020600020905b8154815290600101906020018083116109f457829003601f168201915b5050505050905090565b6000610a2682611d8d565b610a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5c9061392a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aab82611366565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b13906139aa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b3b611d85565b73ffffffffffffffffffffffffffffffffffffffff161480610b6a5750610b6981610b64611d85565b611aff565b5b610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba0906138aa565b60405180910390fd5b610bb38383611df9565b505050565b600d5481565b6000600880549050905090565b600f5481565b610be2610bdc611d85565b82611eb2565b610c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c18906139ca565b60405180910390fd5b610c2c838383611f90565b505050565b6000610c3c836114a6565b8210610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c74906137ca565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cde611d85565b73ffffffffffffffffffffffffffffffffffffffff16610cfc61166c565b73ffffffffffffffffffffffffffffffffffffffff1614610d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d499061394a565b60405180910390fd5b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610db5611d85565b73ffffffffffffffffffffffffffffffffffffffff16610dd361166c565b73ffffffffffffffffffffffffffffffffffffffff1614610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e209061394a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610e6757600080fd5b565b6000610e73610bbe565b9050601060009054906101000a900460ff1615610e8f57600080fd5b60008211610e9c57600080fd5b600f54821115610eab57600080fd5b600e548282610eba9190613b3d565b1115610ec557600080fd5b610ecd61166c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f735760011515601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f725781600d54610f659190613bc4565b341015610f7157600080fd5b5b5b6000600190505b828111610fa957610f96848284610f919190613b3d565b6121ec565b8080610fa190613d6b565b915050610f7a565b50505050565b610fca838383604051806020016040528060008152506118a9565b505050565b60606000610fdc836114a6565b905060008167ffffffffffffffff811115611020577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561104e5781602001602082028036833780820191505090505b50905060005b828110156110be576110668582610c31565b82828151811061109f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806110b690613d6b565b915050611054565b508092505050919050565b6110d1611d85565b73ffffffffffffffffffffffffffffffffffffffff166110ef61166c565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c9061394a565b60405180910390fd5b80600d8190555050565b611157611d85565b73ffffffffffffffffffffffffffffffffffffffff1661117561166c565b73ffffffffffffffffffffffffffffffffffffffff16146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c29061394a565b60405180910390fd5b6001601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611230610bbe565b8210611271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611268906139ea565b60405180910390fd5b600882815481106112ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6112c5611d85565b73ffffffffffffffffffffffffffffffffffffffff166112e361166c565b73ffffffffffffffffffffffffffffffffffffffff1614611339576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113309061394a565b60405180910390fd5b80600b908051906020019061134f929190612e21565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561140f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611406906138ea565b60405180910390fd5b80915050919050565b600b805461142590613d08565b80601f016020809104026020016040519081016040528092919081815260200182805461145190613d08565b801561149e5780601f106114735761010080835404028352916020019161149e565b820191906000526020600020905b81548152906001019060200180831161148157829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150e906138ca565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611566611d85565b73ffffffffffffffffffffffffffffffffffffffff1661158461166c565b73ffffffffffffffffffffffffffffffffffffffff16146115da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d19061394a565b60405180910390fd5b6115e4600061220a565b565b6115ee611d85565b73ffffffffffffffffffffffffffffffffffffffff1661160c61166c565b73ffffffffffffffffffffffffffffffffffffffff1614611662576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116599061394a565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546116a590613d08565b80601f01602080910402602001604051908101604052809291908181526020018280546116d190613d08565b801561171e5780601f106116f35761010080835404028352916020019161171e565b820191906000526020600020905b81548152906001019060200180831161170157829003601f168201915b5050505050905090565b611730611d85565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117959061386a565b60405180910390fd5b80600560006117ab611d85565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611858611d85565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161189d919061378d565b60405180910390a35050565b6118ba6118b4611d85565b83611eb2565b6118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906139ca565b60405180910390fd5b611905848484846122d0565b50505050565b600c805461191890613d08565b80601f016020809104026020016040519081016040528092919081815260200182805461194490613d08565b80156119915780601f1061196657610100808354040283529160200191611991565b820191906000526020600020905b81548152906001019060200180831161197457829003601f168201915b505050505081565b60606119a482611d8d565b6119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da9061398a565b60405180910390fd5b60006119ed61232c565b90506000815111611a0d5760405180602001604052806000815250611a3b565b80611a17846123be565b600c604051602001611a2b939291906136d3565b6040516020818303038152906040525b915050919050565b600e5481565b60116020528060005260406000206000915054906101000a900460ff1681565b611a71611d85565b73ffffffffffffffffffffffffffffffffffffffff16611a8f61166c565b73ffffffffffffffffffffffffffffffffffffffff1614611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc9061394a565b60405180910390fd5b80600c9080519060200190611afb929190612e21565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b9b611d85565b73ffffffffffffffffffffffffffffffffffffffff16611bb961166c565b73ffffffffffffffffffffffffffffffffffffffff1614611c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c069061394a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c769061380a565b60405180910390fd5b611c888161220a565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611d6e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611d7e5750611d7d8261256b565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e6c83611366565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611ebd82611d8d565b611efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef39061388a565b60405180910390fd5b6000611f0783611366565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f7657508373ffffffffffffffffffffffffffffffffffffffff16611f5e84610a1b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f875750611f868185611aff565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611fb082611366565b73ffffffffffffffffffffffffffffffffffffffff1614612006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffd9061396a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d9061384a565b60405180910390fd5b6120818383836125d5565b61208c600082611df9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120dc9190613c1e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121339190613b3d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6122068282604051806020016040528060008152506126e9565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122db848484611f90565b6122e784848484612744565b612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231d906137ea565b60405180910390fd5b50505050565b6060600b805461233b90613d08565b80601f016020809104026020016040519081016040528092919081815260200182805461236790613d08565b80156123b45780601f10612389576101008083540402835291602001916123b4565b820191906000526020600020905b81548152906001019060200180831161239757829003601f168201915b5050505050905090565b60606000821415612406576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612566565b600082905060005b6000821461243857808061242190613d6b565b915050600a826124319190613b93565b915061240e565b60008167ffffffffffffffff81111561247a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124ac5781602001600182028036833780820191505090505b5090505b6000851461255f576001826124c59190613c1e565b9150600a856124d49190613db4565b60306124e09190613b3d565b60f81b81838151811061251c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125589190613b93565b94506124b0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6125e0838383611c9e565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126235761261e816128db565b612662565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612661576126608382612924565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126a5576126a081612a91565b6126e4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146126e3576126e28282612bd4565b5b5b505050565b6126f38383612c53565b6127006000848484612744565b61273f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612736906137ea565b60405180910390fd5b505050565b60006127658473ffffffffffffffffffffffffffffffffffffffff16611c8b565b156128ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261278e611d85565b8786866040518563ffffffff1660e01b81526004016127b0949392919061371f565b602060405180830381600087803b1580156127ca57600080fd5b505af19250505080156127fb57506040513d601f19601f820116820180604052508101906127f891906131f6565b60015b61287e573d806000811461282b576040519150601f19603f3d011682016040523d82523d6000602084013e612830565b606091505b50600081511415612876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286d906137ea565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128d3565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612931846114a6565b61293b9190613c1e565b9050600060076000848152602001908152602001600020549050818114612a20576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612aa59190613c1e565b9050600060096000848152602001908152602001600020549050600060088381548110612afb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612b43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612bb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612bdf836114a6565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cba9061390a565b60405180910390fd5b612ccc81611d8d565b15612d0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d039061382a565b60405180910390fd5b612d18600083836125d5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d689190613b3d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e2d90613d08565b90600052602060002090601f016020900481019282612e4f5760008555612e96565b82601f10612e6857805160ff1916838001178555612e96565b82800160010185558215612e96579182015b82811115612e95578251825591602001919060010190612e7a565b5b509050612ea39190612ea7565b5090565b5b80821115612ec0576000816000905550600101612ea8565b5090565b6000612ed7612ed284613a4a565b613a25565b905082815260208101848484011115612eef57600080fd5b612efa848285613cc6565b509392505050565b6000612f15612f1084613a7b565b613a25565b905082815260208101848484011115612f2d57600080fd5b612f38848285613cc6565b509392505050565b600081359050612f4f816143a8565b92915050565b600081359050612f64816143bf565b92915050565b600081359050612f79816143d6565b92915050565b600081519050612f8e816143d6565b92915050565b600082601f830112612fa557600080fd5b8135612fb5848260208601612ec4565b91505092915050565b600082601f830112612fcf57600080fd5b8135612fdf848260208601612f02565b91505092915050565b600081359050612ff7816143ed565b92915050565b60006020828403121561300f57600080fd5b600061301d84828501612f40565b91505092915050565b6000806040838503121561303957600080fd5b600061304785828601612f40565b925050602061305885828601612f40565b9150509250929050565b60008060006060848603121561307757600080fd5b600061308586828701612f40565b935050602061309686828701612f40565b92505060406130a786828701612fe8565b9150509250925092565b600080600080608085870312156130c757600080fd5b60006130d587828801612f40565b94505060206130e687828801612f40565b93505060406130f787828801612fe8565b925050606085013567ffffffffffffffff81111561311457600080fd5b61312087828801612f94565b91505092959194509250565b6000806040838503121561313f57600080fd5b600061314d85828601612f40565b925050602061315e85828601612f55565b9150509250929050565b6000806040838503121561317b57600080fd5b600061318985828601612f40565b925050602061319a85828601612fe8565b9150509250929050565b6000602082840312156131b657600080fd5b60006131c484828501612f55565b91505092915050565b6000602082840312156131df57600080fd5b60006131ed84828501612f6a565b91505092915050565b60006020828403121561320857600080fd5b600061321684828501612f7f565b91505092915050565b60006020828403121561323157600080fd5b600082013567ffffffffffffffff81111561324b57600080fd5b61325784828501612fbe565b91505092915050565b60006020828403121561327257600080fd5b600061328084828501612fe8565b91505092915050565b600061329583836136b5565b60208301905092915050565b6132aa81613c52565b82525050565b60006132bb82613ad1565b6132c58185613aff565b93506132d083613aac565b8060005b838110156133015781516132e88882613289565b97506132f383613af2565b9250506001810190506132d4565b5085935050505092915050565b61331781613c64565b82525050565b600061332882613adc565b6133328185613b10565b9350613342818560208601613cd5565b61334b81613ea1565b840191505092915050565b600061336182613ae7565b61336b8185613b21565b935061337b818560208601613cd5565b61338481613ea1565b840191505092915050565b600061339a82613ae7565b6133a48185613b32565b93506133b4818560208601613cd5565b80840191505092915050565b600081546133cd81613d08565b6133d78186613b32565b945060018216600081146133f2576001811461340357613436565b60ff19831686528186019350613436565b61340c85613abc565b60005b8381101561342e5781548189015260018201915060208101905061340f565b838801955050505b50505092915050565b600061344c602b83613b21565b915061345782613eb2565b604082019050919050565b600061346f603283613b21565b915061347a82613f01565b604082019050919050565b6000613492602683613b21565b915061349d82613f50565b604082019050919050565b60006134b5601c83613b21565b91506134c082613f9f565b602082019050919050565b60006134d8602483613b21565b91506134e382613fc8565b604082019050919050565b60006134fb601983613b21565b915061350682614017565b602082019050919050565b600061351e602c83613b21565b915061352982614040565b604082019050919050565b6000613541603883613b21565b915061354c8261408f565b604082019050919050565b6000613564602a83613b21565b915061356f826140de565b604082019050919050565b6000613587602983613b21565b91506135928261412d565b604082019050919050565b60006135aa602083613b21565b91506135b58261417c565b602082019050919050565b60006135cd602c83613b21565b91506135d8826141a5565b604082019050919050565b60006135f0602083613b21565b91506135fb826141f4565b602082019050919050565b6000613613602983613b21565b915061361e8261421d565b604082019050919050565b6000613636602f83613b21565b91506136418261426c565b604082019050919050565b6000613659602183613b21565b9150613664826142bb565b604082019050919050565b600061367c603183613b21565b91506136878261430a565b604082019050919050565b600061369f602c83613b21565b91506136aa82614359565b604082019050919050565b6136be81613cbc565b82525050565b6136cd81613cbc565b82525050565b60006136df828661338f565b91506136eb828561338f565b91506136f782846133c0565b9150819050949350505050565b600060208201905061371960008301846132a1565b92915050565b600060808201905061373460008301876132a1565b61374160208301866132a1565b61374e60408301856136c4565b8181036060830152613760818461331d565b905095945050505050565b6000602082019050818103600083015261378581846132b0565b905092915050565b60006020820190506137a2600083018461330e565b92915050565b600060208201905081810360008301526137c28184613356565b905092915050565b600060208201905081810360008301526137e38161343f565b9050919050565b6000602082019050818103600083015261380381613462565b9050919050565b6000602082019050818103600083015261382381613485565b9050919050565b60006020820190508181036000830152613843816134a8565b9050919050565b60006020820190508181036000830152613863816134cb565b9050919050565b60006020820190508181036000830152613883816134ee565b9050919050565b600060208201905081810360008301526138a381613511565b9050919050565b600060208201905081810360008301526138c381613534565b9050919050565b600060208201905081810360008301526138e381613557565b9050919050565b600060208201905081810360008301526139038161357a565b9050919050565b600060208201905081810360008301526139238161359d565b9050919050565b60006020820190508181036000830152613943816135c0565b9050919050565b60006020820190508181036000830152613963816135e3565b9050919050565b6000602082019050818103600083015261398381613606565b9050919050565b600060208201905081810360008301526139a381613629565b9050919050565b600060208201905081810360008301526139c38161364c565b9050919050565b600060208201905081810360008301526139e38161366f565b9050919050565b60006020820190508181036000830152613a0381613692565b9050919050565b6000602082019050613a1f60008301846136c4565b92915050565b6000613a2f613a40565b9050613a3b8282613d3a565b919050565b6000604051905090565b600067ffffffffffffffff821115613a6557613a64613e72565b5b613a6e82613ea1565b9050602081019050919050565b600067ffffffffffffffff821115613a9657613a95613e72565b5b613a9f82613ea1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4882613cbc565b9150613b5383613cbc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8857613b87613de5565b5b828201905092915050565b6000613b9e82613cbc565b9150613ba983613cbc565b925082613bb957613bb8613e14565b5b828204905092915050565b6000613bcf82613cbc565b9150613bda83613cbc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c1357613c12613de5565b5b828202905092915050565b6000613c2982613cbc565b9150613c3483613cbc565b925082821015613c4757613c46613de5565b5b828203905092915050565b6000613c5d82613c9c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cf3578082015181840152602081019050613cd8565b83811115613d02576000848401525b50505050565b60006002820490506001821680613d2057607f821691505b60208210811415613d3457613d33613e43565b5b50919050565b613d4382613ea1565b810181811067ffffffffffffffff82111715613d6257613d61613e72565b5b80604052505050565b6000613d7682613cbc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613da957613da8613de5565b5b600182019050919050565b6000613dbf82613cbc565b9150613dca83613cbc565b925082613dda57613dd9613e14565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6143b181613c52565b81146143bc57600080fd5b50565b6143c881613c64565b81146143d357600080fd5b50565b6143df81613c70565b81146143ea57600080fd5b50565b6143f681613cbc565b811461440157600080fd5b5056fea264697066735822122086fbca0230f39911f4b98e16a38fcbee266f24df56b34e0fb52f96b3cf36db2964736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x2E6A736F6E000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0xC SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x51 SWAP3 SWAP2 SWAP1 PUSH3 0xEAC JUMP JUMPDEST POP PUSH7 0x8E1BC9BF040000 PUSH1 0xD SSTORE PUSH2 0x800 PUSH1 0xE SSTORE PUSH1 0x14 PUSH1 0xF SSTORE PUSH1 0x0 PUSH1 0x10 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x90 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x5BD0 CODESIZE SUB DUP1 PUSH3 0x5BD0 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0xB6 SWAP2 SWAP1 PUSH3 0x1011 JUMP JUMPDEST DUP3 DUP3 DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xD0 SWAP3 SWAP2 SWAP1 PUSH3 0xEAC JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xE9 SWAP3 SWAP2 SWAP1 PUSH3 0xEAC JUMP JUMPDEST POP POP POP PUSH3 0x10C PUSH3 0x100 PUSH3 0x139 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x141 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x11D DUP2 PUSH3 0x207 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x130 CALLER PUSH1 0x3 PUSH3 0x2B2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP POP PUSH3 0x1786 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH3 0x217 PUSH3 0x139 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x23D PUSH3 0x421 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0x296 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x28D SWAP1 PUSH3 0x12B4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xB SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x2AE SWAP3 SWAP2 SWAP1 PUSH3 0xEAC JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2C4 PUSH3 0x44B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH3 0x2E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH3 0x2EF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD DUP3 GT ISZERO PUSH3 0x2FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xE SLOAD DUP3 DUP3 PUSH3 0x310 SWAP2 SWAP1 PUSH3 0x1362 JUMP JUMPDEST GT ISZERO PUSH3 0x31C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x32C PUSH3 0x421 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0x3D7 JUMPI PUSH1 0x1 ISZERO ISZERO PUSH1 0x11 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH3 0x3D6 JUMPI DUP2 PUSH1 0xD SLOAD PUSH3 0x3C8 SWAP2 SWAP1 PUSH3 0x13BF JUMP JUMPDEST CALLVALUE LT ISZERO PUSH3 0x3D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 POP JUMPDEST DUP3 DUP2 GT PUSH3 0x41B JUMPI PUSH3 0x405 DUP5 DUP3 DUP5 PUSH3 0x3F9 SWAP2 SWAP1 PUSH3 0x1362 JUMP JUMPDEST PUSH3 0x458 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 DUP1 PUSH3 0x412 SWAP1 PUSH3 0x1567 JUMP JUMPDEST SWAP2 POP POP PUSH3 0x3DE JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH3 0x47A DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0x47E PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x490 DUP4 DUP4 PUSH3 0x4EC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x4A5 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH3 0x6D2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x4E7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x4DE SWAP1 PUSH3 0x122C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x55F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x556 SWAP1 PUSH3 0x1292 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x570 DUP2 PUSH3 0x88C PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x5B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x5AA SWAP1 PUSH3 0x124E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x5C7 PUSH1 0x0 DUP4 DUP4 PUSH3 0x8F8 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x619 SWAP2 SWAP1 PUSH3 0x1362 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x700 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xA3F PUSH1 0x20 SHL PUSH3 0x1C8B OR PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x87F JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH3 0x732 PUSH3 0x139 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x756 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x11D8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x771 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH3 0x7A5 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH3 0x7A2 SWAP2 SWAP1 PUSH3 0xFE5 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH3 0x82E JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x7D8 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH3 0x7DD JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH3 0x826 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x81D SWAP1 PUSH3 0x122C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH3 0x884 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x910 DUP4 DUP4 DUP4 PUSH3 0xA52 PUSH1 0x20 SHL PUSH3 0x1C9E OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x95D JUMPI PUSH3 0x957 DUP2 PUSH3 0xA57 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x9A5 JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0x9A4 JUMPI PUSH3 0x9A3 DUP4 DUP3 PUSH3 0xAA0 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x9F2 JUMPI PUSH3 0x9EC DUP2 PUSH3 0xC1D PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xA3A JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0xA39 JUMPI PUSH3 0xA38 DUP3 DUP3 PUSH3 0xD65 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH3 0xABA DUP5 PUSH3 0xDF1 PUSH1 0x20 SHL PUSH3 0x14A6 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xAC6 SWAP2 SWAP1 PUSH3 0x1420 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH3 0xBAC JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH3 0xC33 SWAP2 SWAP1 PUSH3 0x1420 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH3 0xC8A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH3 0xCD3 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH3 0xD49 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xD7D DUP4 PUSH3 0xDF1 PUSH1 0x20 SHL PUSH3 0x14A6 OR PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0xE65 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xE5C SWAP1 PUSH3 0x1270 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xEBA SWAP1 PUSH3 0x14FB JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xEDE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xF2A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xEF9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xF2A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xF2A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xF29 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xF0C JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0xF39 SWAP2 SWAP1 PUSH3 0xF3D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF58 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0xF3E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0xF73 PUSH3 0xF6D DUP5 PUSH3 0x12FF JUMP JUMPDEST PUSH3 0x12D6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0xF8C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0xF99 DUP5 DUP3 DUP6 PUSH3 0x14C5 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0xFB2 DUP2 PUSH3 0x176C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0xFCA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH3 0xFDC DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0xF5C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0xFF8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0x1008 DUP5 DUP3 DUP6 ADD PUSH3 0xFA1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1027 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP5 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1042 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x1050 DUP7 DUP3 DUP8 ADD PUSH3 0xFB8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x106E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x107C DUP7 DUP3 DUP8 ADD PUSH3 0xFB8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 DUP5 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x109A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x10A8 DUP7 DUP3 DUP8 ADD PUSH3 0xFB8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH3 0x10BD DUP2 PUSH3 0x145B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x10D0 DUP3 PUSH3 0x1335 JUMP JUMPDEST PUSH3 0x10DC DUP2 DUP6 PUSH3 0x1340 JUMP JUMPDEST SWAP4 POP PUSH3 0x10EE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x14C5 JUMP JUMPDEST PUSH3 0x10F9 DUP2 PUSH3 0x1642 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1113 PUSH1 0x32 DUP4 PUSH3 0x1351 JUMP JUMPDEST SWAP2 POP PUSH3 0x1120 DUP3 PUSH3 0x1653 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x113A PUSH1 0x1C DUP4 PUSH3 0x1351 JUMP JUMPDEST SWAP2 POP PUSH3 0x1147 DUP3 PUSH3 0x16A2 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1161 PUSH1 0x2A DUP4 PUSH3 0x1351 JUMP JUMPDEST SWAP2 POP PUSH3 0x116E DUP3 PUSH3 0x16CB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1188 PUSH1 0x20 DUP4 PUSH3 0x1351 JUMP JUMPDEST SWAP2 POP PUSH3 0x1195 DUP3 PUSH3 0x171A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x11AF PUSH1 0x20 DUP4 PUSH3 0x1351 JUMP JUMPDEST SWAP2 POP PUSH3 0x11BC DUP3 PUSH3 0x1743 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x11D2 DUP2 PUSH3 0x14BB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH3 0x11EF PUSH1 0x0 DUP4 ADD DUP8 PUSH3 0x10B2 JUMP JUMPDEST PUSH3 0x11FE PUSH1 0x20 DUP4 ADD DUP7 PUSH3 0x10B2 JUMP JUMPDEST PUSH3 0x120D PUSH1 0x40 DUP4 ADD DUP6 PUSH3 0x11C7 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH3 0x1221 DUP2 DUP5 PUSH3 0x10C3 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1247 DUP2 PUSH3 0x1104 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1269 DUP2 PUSH3 0x112B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x128B DUP2 PUSH3 0x1152 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x12AD DUP2 PUSH3 0x1179 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x12CF DUP2 PUSH3 0x11A0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x12E2 PUSH3 0x12F5 JUMP JUMPDEST SWAP1 POP PUSH3 0x12F0 DUP3 DUP3 PUSH3 0x1531 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x131D JUMPI PUSH3 0x131C PUSH3 0x1613 JUMP JUMPDEST JUMPDEST PUSH3 0x1328 DUP3 PUSH3 0x1642 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 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x136F DUP3 PUSH3 0x14BB JUMP JUMPDEST SWAP2 POP PUSH3 0x137C DUP4 PUSH3 0x14BB JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x13B4 JUMPI PUSH3 0x13B3 PUSH3 0x15B5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x13CC DUP3 PUSH3 0x14BB JUMP JUMPDEST SWAP2 POP PUSH3 0x13D9 DUP4 PUSH3 0x14BB JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x1415 JUMPI PUSH3 0x1414 PUSH3 0x15B5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x142D DUP3 PUSH3 0x14BB JUMP JUMPDEST SWAP2 POP PUSH3 0x143A DUP4 PUSH3 0x14BB JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH3 0x1450 JUMPI PUSH3 0x144F PUSH3 0x15B5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1468 DUP3 PUSH3 0x149B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x14E5 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x14C8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x14F5 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 PUSH3 0x1514 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x152B JUMPI PUSH3 0x152A PUSH3 0x15E4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x153C DUP3 PUSH3 0x1642 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x155E JUMPI PUSH3 0x155D PUSH3 0x1613 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1574 DUP3 PUSH3 0x14BB JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH3 0x15AA JUMPI PUSH3 0x15A9 PUSH3 0x15B5 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH3 0x1777 DUP2 PUSH3 0x146F JUMP JUMPDEST DUP2 EQ PUSH3 0x1783 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x443A DUP1 PUSH3 0x1796 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x20F JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x55F804B3 GT PUSH2 0x118 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xD5ABEB01 GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xD5ABEB01 EQ PUSH2 0x77F JUMPI DUP1 PUSH4 0xD936547E EQ PUSH2 0x7AA JUMPI DUP1 PUSH4 0xDA3EF23F EQ PUSH2 0x7E7 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x810 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x84D JUMPI PUSH2 0x20F JUMP JUMPDEST DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x6C5 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x6EE JUMPI DUP1 PUSH4 0xC6682862 EQ PUSH2 0x717 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x742 JUMPI PUSH2 0x20F JUMP JUMPDEST DUP1 PUSH4 0x70A08231 GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x5F2 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x62F JUMPI DUP1 PUSH4 0x7F00C7A6 EQ PUSH2 0x646 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x66F JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x69A JUMPI PUSH2 0x20F JUMP JUMPDEST DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x536 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x55F JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x58A JUMPI DUP1 PUSH4 0x6C0360EB EQ PUSH2 0x5C7 JUMPI PUSH2 0x20F JUMP JUMPDEST DUP1 PUSH4 0x2F745C59 GT PUSH2 0x19B JUMPI DUP1 PUSH4 0x42842E0E GT PUSH2 0x16A JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x441 JUMPI DUP1 PUSH4 0x438B6300 EQ PUSH2 0x46A JUMPI DUP1 PUSH4 0x44A0D68A EQ PUSH2 0x4A7 JUMPI DUP1 PUSH4 0x4A4C560D EQ PUSH2 0x4D0 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x4F9 JUMPI PUSH2 0x20F JUMP JUMPDEST DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x3B5 JUMPI DUP1 PUSH4 0x30CC7AE0 EQ PUSH2 0x3F2 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x41B JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x425 JUMPI PUSH2 0x20F JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2E2 JUMPI DUP1 PUSH4 0x13FAEDE6 EQ PUSH2 0x30B JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x336 JUMPI DUP1 PUSH4 0x239C70AE EQ PUSH2 0x361 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x38C JUMPI PUSH2 0x20F JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x214 JUMPI DUP1 PUSH4 0x2329A29 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x27A JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x2A5 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x220 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x31CD JUMP JUMPDEST PUSH2 0x876 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x248 SWAP2 SWAP1 PUSH2 0x378D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x278 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x273 SWAP2 SWAP1 PUSH2 0x31A4 JUMP JUMPDEST PUSH2 0x8F0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x286 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x28F PUSH2 0x989 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x29C SWAP2 SWAP1 PUSH2 0x37A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C7 SWAP2 SWAP1 PUSH2 0x3260 JUMP JUMPDEST PUSH2 0xA1B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D9 SWAP2 SWAP1 PUSH2 0x3704 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x309 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x304 SWAP2 SWAP1 PUSH2 0x3168 JUMP JUMPDEST PUSH2 0xAA0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x317 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x320 PUSH2 0xBB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x32D SWAP2 SWAP1 PUSH2 0x3A0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x342 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x34B PUSH2 0xBBE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x358 SWAP2 SWAP1 PUSH2 0x3A0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x36D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x376 PUSH2 0xBCB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x383 SWAP2 SWAP1 PUSH2 0x3A0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x398 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3B3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3AE SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH2 0xBD1 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3DC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3D7 SWAP2 SWAP1 PUSH2 0x3168 JUMP JUMPDEST PUSH2 0xC31 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3E9 SWAP2 SWAP1 PUSH2 0x3A0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x419 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x414 SWAP2 SWAP1 PUSH2 0x2FFD JUMP JUMPDEST PUSH2 0xCD6 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x423 PUSH2 0xDAD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x43F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x43A SWAP2 SWAP1 PUSH2 0x3168 JUMP JUMPDEST PUSH2 0xE69 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x44D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x468 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x463 SWAP2 SWAP1 PUSH2 0x3062 JUMP JUMPDEST PUSH2 0xFAF JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x476 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x491 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x48C SWAP2 SWAP1 PUSH2 0x2FFD JUMP JUMPDEST PUSH2 0xFCF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x49E SWAP2 SWAP1 PUSH2 0x376B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4CE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4C9 SWAP2 SWAP1 PUSH2 0x3260 JUMP JUMPDEST PUSH2 0x10C9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4F7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x4F2 SWAP2 SWAP1 PUSH2 0x2FFD JUMP JUMPDEST PUSH2 0x114F JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x505 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x520 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x51B SWAP2 SWAP1 PUSH2 0x3260 JUMP JUMPDEST PUSH2 0x1226 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x52D SWAP2 SWAP1 PUSH2 0x3A0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x542 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x55D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x558 SWAP2 SWAP1 PUSH2 0x321F JUMP JUMPDEST PUSH2 0x12BD JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x56B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x574 PUSH2 0x1353 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x581 SWAP2 SWAP1 PUSH2 0x378D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x596 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5B1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5AC SWAP2 SWAP1 PUSH2 0x3260 JUMP JUMPDEST PUSH2 0x1366 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5BE SWAP2 SWAP1 PUSH2 0x3704 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5DC PUSH2 0x1418 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5E9 SWAP2 SWAP1 PUSH2 0x37A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x619 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x614 SWAP2 SWAP1 PUSH2 0x2FFD JUMP JUMPDEST PUSH2 0x14A6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x626 SWAP2 SWAP1 PUSH2 0x3A0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x63B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x644 PUSH2 0x155E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x652 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x66D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x668 SWAP2 SWAP1 PUSH2 0x3260 JUMP JUMPDEST PUSH2 0x15E6 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x67B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x684 PUSH2 0x166C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x691 SWAP2 SWAP1 PUSH2 0x3704 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6A6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6AF PUSH2 0x1696 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6BC SWAP2 SWAP1 PUSH2 0x37A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6D1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6EC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E7 SWAP2 SWAP1 PUSH2 0x312C JUMP JUMPDEST PUSH2 0x1728 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6FA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x715 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x710 SWAP2 SWAP1 PUSH2 0x30B1 JUMP JUMPDEST PUSH2 0x18A9 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x723 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x72C PUSH2 0x190B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x739 SWAP2 SWAP1 PUSH2 0x37A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x74E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x769 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x764 SWAP2 SWAP1 PUSH2 0x3260 JUMP JUMPDEST PUSH2 0x1999 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x776 SWAP2 SWAP1 PUSH2 0x37A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x78B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x794 PUSH2 0x1A43 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7A1 SWAP2 SWAP1 PUSH2 0x3A0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7D1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7CC SWAP2 SWAP1 PUSH2 0x2FFD JUMP JUMPDEST PUSH2 0x1A49 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7DE SWAP2 SWAP1 PUSH2 0x378D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x80E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x809 SWAP2 SWAP1 PUSH2 0x321F JUMP JUMPDEST PUSH2 0x1A69 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x81C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x837 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x832 SWAP2 SWAP1 PUSH2 0x3026 JUMP JUMPDEST PUSH2 0x1AFF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x844 SWAP2 SWAP1 PUSH2 0x378D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x859 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x874 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x86F SWAP2 SWAP1 PUSH2 0x2FFD JUMP JUMPDEST PUSH2 0x1B93 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x8E9 JUMPI POP PUSH2 0x8E8 DUP3 PUSH2 0x1CA3 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8F8 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x916 PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x96C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x963 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x10 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x998 SWAP1 PUSH2 0x3D08 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 0x9C4 SWAP1 PUSH2 0x3D08 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA11 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x9E6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xA11 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 0x9F4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA26 DUP3 PUSH2 0x1D8D JUMP JUMPDEST PUSH2 0xA65 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA5C SWAP1 PUSH2 0x392A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAAB DUP3 PUSH2 0x1366 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB1C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB13 SWAP1 PUSH2 0x39AA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB3B PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xB6A JUMPI POP PUSH2 0xB69 DUP2 PUSH2 0xB64 PUSH2 0x1D85 JUMP JUMPDEST PUSH2 0x1AFF JUMP JUMPDEST JUMPDEST PUSH2 0xBA9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBA0 SWAP1 PUSH2 0x38AA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBB3 DUP4 DUP4 PUSH2 0x1DF9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0xD SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0xF SLOAD DUP2 JUMP JUMPDEST PUSH2 0xBE2 PUSH2 0xBDC PUSH2 0x1D85 JUMP JUMPDEST DUP3 PUSH2 0x1EB2 JUMP JUMPDEST PUSH2 0xC21 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC18 SWAP1 PUSH2 0x39CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC2C DUP4 DUP4 DUP4 PUSH2 0x1F90 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC3C DUP4 PUSH2 0x14A6 JUMP JUMPDEST DUP3 LT PUSH2 0xC7D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC74 SWAP1 PUSH2 0x37CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xCDE PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCFC PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD52 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD49 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x11 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0xDB5 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDD3 PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE29 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE20 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC SELFBALANCE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP PUSH2 0xE67 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE73 PUSH2 0xBBE JUMP JUMPDEST SWAP1 POP PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xE8F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xE9C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xF SLOAD DUP3 GT ISZERO PUSH2 0xEAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0xE SLOAD DUP3 DUP3 PUSH2 0xEBA SWAP2 SWAP1 PUSH2 0x3B3D JUMP JUMPDEST GT ISZERO PUSH2 0xEC5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xECD PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF73 JUMPI PUSH1 0x1 ISZERO ISZERO PUSH1 0x11 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0xF72 JUMPI DUP2 PUSH1 0xD SLOAD PUSH2 0xF65 SWAP2 SWAP1 PUSH2 0x3BC4 JUMP JUMPDEST CALLVALUE LT ISZERO PUSH2 0xF71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH1 0x1 SWAP1 POP JUMPDEST DUP3 DUP2 GT PUSH2 0xFA9 JUMPI PUSH2 0xF96 DUP5 DUP3 DUP5 PUSH2 0xF91 SWAP2 SWAP1 PUSH2 0x3B3D JUMP JUMPDEST PUSH2 0x21EC JUMP JUMPDEST DUP1 DUP1 PUSH2 0xFA1 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP2 POP POP PUSH2 0xF7A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0xFCA DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x18A9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0xFDC DUP4 PUSH2 0x14A6 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1020 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x104E JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x10BE JUMPI PUSH2 0x1066 DUP6 DUP3 PUSH2 0xC31 JUMP JUMPDEST DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x109F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP1 PUSH2 0x10B6 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1054 JUMP JUMPDEST POP DUP1 SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10D1 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x10EF PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1145 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x113C SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1157 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1175 PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x11CB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11C2 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x11 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1230 PUSH2 0xBBE JUMP JUMPDEST DUP3 LT PUSH2 0x1271 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1268 SWAP1 PUSH2 0x39EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x12AB JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12C5 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x12E3 PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1339 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1330 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xB SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x134F SWAP3 SWAP2 SWAP1 PUSH2 0x2E21 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x10 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x140F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1406 SWAP1 PUSH2 0x38EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH2 0x1425 SWAP1 PUSH2 0x3D08 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 0x1451 SWAP1 PUSH2 0x3D08 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x149E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1473 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x149E 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 0x1481 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1517 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x150E SWAP1 PUSH2 0x38CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1566 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1584 PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x15DA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15D1 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x15E4 PUSH1 0x0 PUSH2 0x220A JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x15EE PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x160C PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1662 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1659 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xF DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x16A5 SWAP1 PUSH2 0x3D08 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 0x16D1 SWAP1 PUSH2 0x3D08 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x171E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x16F3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x171E 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 0x1701 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x1730 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x179E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1795 SWAP1 PUSH2 0x386A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 PUSH2 0x17AB PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1858 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x189D SWAP2 SWAP1 PUSH2 0x378D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x18BA PUSH2 0x18B4 PUSH2 0x1D85 JUMP JUMPDEST DUP4 PUSH2 0x1EB2 JUMP JUMPDEST PUSH2 0x18F9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18F0 SWAP1 PUSH2 0x39CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1905 DUP5 DUP5 DUP5 DUP5 PUSH2 0x22D0 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0xC DUP1 SLOAD PUSH2 0x1918 SWAP1 PUSH2 0x3D08 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 0x1944 SWAP1 PUSH2 0x3D08 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1991 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1966 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1991 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 0x1974 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x19A4 DUP3 PUSH2 0x1D8D JUMP JUMPDEST PUSH2 0x19E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19DA SWAP1 PUSH2 0x398A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x19ED PUSH2 0x232C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1A0D JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1A3B JUMP JUMPDEST DUP1 PUSH2 0x1A17 DUP5 PUSH2 0x23BE JUMP JUMPDEST PUSH1 0xC PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1A2B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x36D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xE SLOAD DUP2 JUMP JUMPDEST PUSH1 0x11 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1A71 PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A8F PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1AE5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1ADC SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xC SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1AFB SWAP3 SWAP2 SWAP1 PUSH2 0x2E21 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1B9B PUSH2 0x1D85 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1BB9 PUSH2 0x166C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1C0F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C06 SWAP1 PUSH2 0x394A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1C7F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C76 SWAP1 PUSH2 0x380A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C88 DUP2 PUSH2 0x220A JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1D6E JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x1D7E JUMPI POP PUSH2 0x1D7D DUP3 PUSH2 0x256B JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1E6C DUP4 PUSH2 0x1366 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EBD DUP3 PUSH2 0x1D8D JUMP JUMPDEST PUSH2 0x1EFC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1EF3 SWAP1 PUSH2 0x388A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1F07 DUP4 PUSH2 0x1366 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1F76 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1F5E DUP5 PUSH2 0xA1B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x1F87 JUMPI POP PUSH2 0x1F86 DUP2 DUP6 PUSH2 0x1AFF JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1FB0 DUP3 PUSH2 0x1366 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2006 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1FFD SWAP1 PUSH2 0x396A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2076 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x206D SWAP1 PUSH2 0x384A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2081 DUP4 DUP4 DUP4 PUSH2 0x25D5 JUMP JUMPDEST PUSH2 0x208C PUSH1 0x0 DUP3 PUSH2 0x1DF9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x20DC SWAP2 SWAP1 PUSH2 0x3C1E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2133 SWAP2 SWAP1 PUSH2 0x3B3D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH2 0x2206 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x26E9 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x22DB DUP5 DUP5 DUP5 PUSH2 0x1F90 JUMP JUMPDEST PUSH2 0x22E7 DUP5 DUP5 DUP5 DUP5 PUSH2 0x2744 JUMP JUMPDEST PUSH2 0x2326 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x231D SWAP1 PUSH2 0x37EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xB DUP1 SLOAD PUSH2 0x233B SWAP1 PUSH2 0x3D08 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 0x2367 SWAP1 PUSH2 0x3D08 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x23B4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2389 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x23B4 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 0x2397 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x2406 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x2566 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x2438 JUMPI DUP1 DUP1 PUSH2 0x2421 SWAP1 PUSH2 0x3D6B JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x2431 SWAP2 SWAP1 PUSH2 0x3B93 JUMP JUMPDEST SWAP2 POP PUSH2 0x240E JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x247A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x24AC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x255F JUMPI PUSH1 0x1 DUP3 PUSH2 0x24C5 SWAP2 SWAP1 PUSH2 0x3C1E JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x24D4 SWAP2 SWAP1 PUSH2 0x3DB4 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x24E0 SWAP2 SWAP1 PUSH2 0x3B3D JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x251C JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x2558 SWAP2 SWAP1 PUSH2 0x3B93 JUMP JUMPDEST SWAP5 POP PUSH2 0x24B0 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x25E0 DUP4 DUP4 DUP4 PUSH2 0x1C9E JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2623 JUMPI PUSH2 0x261E DUP2 PUSH2 0x28DB JUMP JUMPDEST PUSH2 0x2662 JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2661 JUMPI PUSH2 0x2660 DUP4 DUP3 PUSH2 0x2924 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x26A5 JUMPI PUSH2 0x26A0 DUP2 PUSH2 0x2A91 JUMP JUMPDEST PUSH2 0x26E4 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x26E3 JUMPI PUSH2 0x26E2 DUP3 DUP3 PUSH2 0x2BD4 JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x26F3 DUP4 DUP4 PUSH2 0x2C53 JUMP JUMPDEST PUSH2 0x2700 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x2744 JUMP JUMPDEST PUSH2 0x273F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2736 SWAP1 PUSH2 0x37EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2765 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C8B JUMP JUMPDEST ISZERO PUSH2 0x28CE JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x278E PUSH2 0x1D85 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x27B0 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x371F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x27CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x27FB JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x27F8 SWAP2 SWAP1 PUSH2 0x31F6 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x287E JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x282B JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2830 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x2876 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x286D SWAP1 PUSH2 0x37EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x28D3 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x2931 DUP5 PUSH2 0x14A6 JUMP JUMPDEST PUSH2 0x293B SWAP2 SWAP1 PUSH2 0x3C1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x2A20 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH2 0x2AA5 SWAP2 SWAP1 PUSH2 0x3C1E JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2AFB JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2B43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x2BB8 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BDF DUP4 PUSH2 0x14A6 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2CC3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2CBA SWAP1 PUSH2 0x390A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2CCC DUP2 PUSH2 0x1D8D JUMP JUMPDEST ISZERO PUSH2 0x2D0C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2D03 SWAP1 PUSH2 0x382A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2D18 PUSH1 0x0 DUP4 DUP4 PUSH2 0x25D5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2D68 SWAP2 SWAP1 PUSH2 0x3B3D JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2E2D SWAP1 PUSH2 0x3D08 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2E4F JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2E96 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E68 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2E96 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2E96 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2E95 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2E7A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2EA3 SWAP2 SWAP1 PUSH2 0x2EA7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2EC0 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x2EA8 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2ED7 PUSH2 0x2ED2 DUP5 PUSH2 0x3A4A JUMP JUMPDEST PUSH2 0x3A25 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2EEF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2EFA DUP5 DUP3 DUP6 PUSH2 0x3CC6 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F15 PUSH2 0x2F10 DUP5 PUSH2 0x3A7B JUMP JUMPDEST PUSH2 0x3A25 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2F2D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x2F38 DUP5 DUP3 DUP6 PUSH2 0x3CC6 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F4F DUP2 PUSH2 0x43A8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F64 DUP2 PUSH2 0x43BF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2F79 DUP2 PUSH2 0x43D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2F8E DUP2 PUSH2 0x43D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2FA5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2FB5 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2EC4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2FCF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2FDF DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2F02 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2FF7 DUP2 PUSH2 0x43ED JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x300F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x301D DUP5 DUP3 DUP6 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3039 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3047 DUP6 DUP3 DUP7 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3058 DUP6 DUP3 DUP7 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3077 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3085 DUP7 DUP3 DUP8 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x3096 DUP7 DUP3 DUP8 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x30A7 DUP7 DUP3 DUP8 ADD PUSH2 0x2FE8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x30C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x30D5 DUP8 DUP3 DUP9 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x30E6 DUP8 DUP3 DUP9 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x30F7 DUP8 DUP3 DUP9 ADD PUSH2 0x2FE8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3114 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3120 DUP8 DUP3 DUP9 ADD PUSH2 0x2F94 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x313F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x314D DUP6 DUP3 DUP7 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x315E DUP6 DUP3 DUP7 ADD PUSH2 0x2F55 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x317B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3189 DUP6 DUP3 DUP7 ADD PUSH2 0x2F40 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x319A DUP6 DUP3 DUP7 ADD PUSH2 0x2FE8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31B6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x31C4 DUP5 DUP3 DUP6 ADD PUSH2 0x2F55 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x31DF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x31ED DUP5 DUP3 DUP6 ADD PUSH2 0x2F6A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3208 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3216 DUP5 DUP3 DUP6 ADD PUSH2 0x2F7F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x324B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3257 DUP5 DUP3 DUP6 ADD PUSH2 0x2FBE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3272 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3280 DUP5 DUP3 DUP6 ADD PUSH2 0x2FE8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3295 DUP4 DUP4 PUSH2 0x36B5 JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x32AA DUP2 PUSH2 0x3C52 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x32BB DUP3 PUSH2 0x3AD1 JUMP JUMPDEST PUSH2 0x32C5 DUP2 DUP6 PUSH2 0x3AFF JUMP JUMPDEST SWAP4 POP PUSH2 0x32D0 DUP4 PUSH2 0x3AAC JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3301 JUMPI DUP2 MLOAD PUSH2 0x32E8 DUP9 DUP3 PUSH2 0x3289 JUMP JUMPDEST SWAP8 POP PUSH2 0x32F3 DUP4 PUSH2 0x3AF2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x32D4 JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3317 DUP2 PUSH2 0x3C64 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3328 DUP3 PUSH2 0x3ADC JUMP JUMPDEST PUSH2 0x3332 DUP2 DUP6 PUSH2 0x3B10 JUMP JUMPDEST SWAP4 POP PUSH2 0x3342 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3CD5 JUMP JUMPDEST PUSH2 0x334B DUP2 PUSH2 0x3EA1 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3361 DUP3 PUSH2 0x3AE7 JUMP JUMPDEST PUSH2 0x336B DUP2 DUP6 PUSH2 0x3B21 JUMP JUMPDEST SWAP4 POP PUSH2 0x337B DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3CD5 JUMP JUMPDEST PUSH2 0x3384 DUP2 PUSH2 0x3EA1 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x339A DUP3 PUSH2 0x3AE7 JUMP JUMPDEST PUSH2 0x33A4 DUP2 DUP6 PUSH2 0x3B32 JUMP JUMPDEST SWAP4 POP PUSH2 0x33B4 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x3CD5 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH2 0x33CD DUP2 PUSH2 0x3D08 JUMP JUMPDEST PUSH2 0x33D7 DUP2 DUP7 PUSH2 0x3B32 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH2 0x33F2 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x3403 JUMPI PUSH2 0x3436 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 DUP7 ADD SWAP4 POP PUSH2 0x3436 JUMP JUMPDEST PUSH2 0x340C DUP6 PUSH2 0x3ABC JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x342E JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x340F JUMP JUMPDEST DUP4 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x344C PUSH1 0x2B DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x3457 DUP3 PUSH2 0x3EB2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x346F PUSH1 0x32 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x347A DUP3 PUSH2 0x3F01 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3492 PUSH1 0x26 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x349D DUP3 PUSH2 0x3F50 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34B5 PUSH1 0x1C DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x34C0 DUP3 PUSH2 0x3F9F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34D8 PUSH1 0x24 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x34E3 DUP3 PUSH2 0x3FC8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34FB PUSH1 0x19 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x3506 DUP3 PUSH2 0x4017 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x351E PUSH1 0x2C DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x3529 DUP3 PUSH2 0x4040 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3541 PUSH1 0x38 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x354C DUP3 PUSH2 0x408F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3564 PUSH1 0x2A DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x356F DUP3 PUSH2 0x40DE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3587 PUSH1 0x29 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x3592 DUP3 PUSH2 0x412D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35AA PUSH1 0x20 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x35B5 DUP3 PUSH2 0x417C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35CD PUSH1 0x2C DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x35D8 DUP3 PUSH2 0x41A5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35F0 PUSH1 0x20 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x35FB DUP3 PUSH2 0x41F4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3613 PUSH1 0x29 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x361E DUP3 PUSH2 0x421D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3636 PUSH1 0x2F DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x3641 DUP3 PUSH2 0x426C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3659 PUSH1 0x21 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x3664 DUP3 PUSH2 0x42BB JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x367C PUSH1 0x31 DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x3687 DUP3 PUSH2 0x430A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x369F PUSH1 0x2C DUP4 PUSH2 0x3B21 JUMP JUMPDEST SWAP2 POP PUSH2 0x36AA DUP3 PUSH2 0x4359 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x36BE DUP2 PUSH2 0x3CBC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x36CD DUP2 PUSH2 0x3CBC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36DF DUP3 DUP7 PUSH2 0x338F JUMP JUMPDEST SWAP2 POP PUSH2 0x36EB DUP3 DUP6 PUSH2 0x338F JUMP JUMPDEST SWAP2 POP PUSH2 0x36F7 DUP3 DUP5 PUSH2 0x33C0 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3719 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x32A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3734 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x32A1 JUMP JUMPDEST PUSH2 0x3741 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x32A1 JUMP JUMPDEST PUSH2 0x374E PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x36C4 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3760 DUP2 DUP5 PUSH2 0x331D JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3785 DUP2 DUP5 PUSH2 0x32B0 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37A2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x330E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37C2 DUP2 DUP5 PUSH2 0x3356 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x37E3 DUP2 PUSH2 0x343F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3803 DUP2 PUSH2 0x3462 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3823 DUP2 PUSH2 0x3485 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3843 DUP2 PUSH2 0x34A8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3863 DUP2 PUSH2 0x34CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3883 DUP2 PUSH2 0x34EE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38A3 DUP2 PUSH2 0x3511 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38C3 DUP2 PUSH2 0x3534 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x38E3 DUP2 PUSH2 0x3557 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3903 DUP2 PUSH2 0x357A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3923 DUP2 PUSH2 0x359D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3943 DUP2 PUSH2 0x35C0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3963 DUP2 PUSH2 0x35E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3983 DUP2 PUSH2 0x3606 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39A3 DUP2 PUSH2 0x3629 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39C3 DUP2 PUSH2 0x364C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x39E3 DUP2 PUSH2 0x366F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3A03 DUP2 PUSH2 0x3692 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3A1F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x36C4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A2F PUSH2 0x3A40 JUMP JUMPDEST SWAP1 POP PUSH2 0x3A3B DUP3 DUP3 PUSH2 0x3D3A 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 0x3A65 JUMPI PUSH2 0x3A64 PUSH2 0x3E72 JUMP JUMPDEST JUMPDEST PUSH2 0x3A6E DUP3 PUSH2 0x3EA1 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x3A96 JUMPI PUSH2 0x3A95 PUSH2 0x3E72 JUMP JUMPDEST JUMPDEST PUSH2 0x3A9F DUP3 PUSH2 0x3EA1 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B48 DUP3 PUSH2 0x3CBC JUMP JUMPDEST SWAP2 POP PUSH2 0x3B53 DUP4 PUSH2 0x3CBC JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x3B88 JUMPI PUSH2 0x3B87 PUSH2 0x3DE5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B9E DUP3 PUSH2 0x3CBC JUMP JUMPDEST SWAP2 POP PUSH2 0x3BA9 DUP4 PUSH2 0x3CBC JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3BB9 JUMPI PUSH2 0x3BB8 PUSH2 0x3E14 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BCF DUP3 PUSH2 0x3CBC JUMP JUMPDEST SWAP2 POP PUSH2 0x3BDA DUP4 PUSH2 0x3CBC JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x3C13 JUMPI PUSH2 0x3C12 PUSH2 0x3DE5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C29 DUP3 PUSH2 0x3CBC JUMP JUMPDEST SWAP2 POP PUSH2 0x3C34 DUP4 PUSH2 0x3CBC JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x3C47 JUMPI PUSH2 0x3C46 PUSH2 0x3DE5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C5D DUP3 PUSH2 0x3C9C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3CF3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3CD8 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x3D02 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 0x3D20 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3D34 JUMPI PUSH2 0x3D33 PUSH2 0x3E43 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3D43 DUP3 PUSH2 0x3EA1 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3D62 JUMPI PUSH2 0x3D61 PUSH2 0x3E72 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D76 DUP3 PUSH2 0x3CBC JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x3DA9 JUMPI PUSH2 0x3DA8 PUSH2 0x3DE5 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DBF DUP3 PUSH2 0x3CBC JUMP JUMPDEST SWAP2 POP PUSH2 0x3DCA DUP4 PUSH2 0x3CBC JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x3DDA JUMPI PUSH2 0x3DD9 PUSH2 0x3E14 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 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 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x43B1 DUP2 PUSH2 0x3C52 JUMP JUMPDEST DUP2 EQ PUSH2 0x43BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x43C8 DUP2 PUSH2 0x3C64 JUMP JUMPDEST DUP2 EQ PUSH2 0x43D3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x43DF DUP2 PUSH2 0x3C70 JUMP JUMPDEST DUP2 EQ PUSH2 0x43EA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x43F6 DUP2 PUSH2 0x3CBC JUMP JUMPDEST DUP2 EQ PUSH2 0x4401 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP7 0xFB 0xCA MUL ADDRESS RETURN SWAP10 GT DELEGATECALL 0xB9 DUP15 AND LOG3 DUP16 0xCB 0xEE 0x26 PUSH16 0x24DF56B34E0FB52F96B3CF36DB296473 PUSH16 0x6C634300080400330000000000000000 ",
"sourceMap": "43215:2833:0:-:0;;;43330:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;43394:10;43372:32;;43436:4;43409:31;;43476:2;43445:33;;43504:5;43483:26;;;;;;;;;;;;;;;;;;;;43564:190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43675:5;43682:7;21500:5;21492;:13;;;;;;;;;;;;:::i;:::-;;21526:7;21516;:17;;;;;;;;;;;;:::i;:::-;;21425:116;;41692:23;41702:12;:10;;;:12;;:::i;:::-;41692:9;;;:23;;:::i;:::-;43698:24:::1;43709:12;43698:10;;;:24;;:::i;:::-;43729:19;43734:10;43746:1;43729:4;;;:19;;:::i;:::-;43564:190:::0;;;43215:2833;;20087:98;20140:7;20167:10;20160:17;;20087:98;:::o;42904:173::-;42960:16;42979:6;;;;;;;;;;;42960:25;;43005:8;42996:6;;:17;;;;;;;;;;;;;;;;;;43060:8;43029:40;;43050:8;43029:40;;;;;;;;;;;;42904:173;;:::o;45414:98::-;42035:12;:10;;;:12;;:::i;:::-;42024:23;;:7;:5;;;:7;;:::i;:::-;:23;;;42016:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45495:11:::1;45485:7;:21;;;;;;;;;;;;:::i;:::-;;45414:98:::0;:::o;43896:501::-;43966:14;43983:13;:11;;;:13;;:::i;:::-;43966:30;;44012:6;;;;;;;;;;;44011:7;44003:16;;;;;;44048:1;44034:11;:15;44026:24;;;;;;44080:13;;44065:11;:28;;44057:37;;;;;;44133:9;;44118:11;44109:6;:20;;;;:::i;:::-;:33;;44101:42;;;;;;44170:7;:5;;;:7;;:::i;:::-;44156:21;;:10;:21;;;44152:146;;44220:4;44193:31;;:11;:23;44205:10;44193:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;44190:101;;44267:11;44260:4;;:18;;;;:::i;:::-;44247:9;:31;;44239:40;;;;;;44190:101;44152:146;44311:9;44323:1;44311:13;;44306:86;44331:11;44326:1;:16;44306:86;;44358:26;44368:3;44382:1;44373:6;:10;;;;:::i;:::-;44358:9;;;:26;;:::i;:::-;44344:3;;;;;:::i;:::-;;;;44306:86;;;;43896:501;;;:::o;41804:87::-;41850:7;41877:6;;;;;;;;;;;41870:13;;41804:87;:::o;35306:113::-;35367:7;35394:10;:17;;;;35387:24;;35306:113;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;;;:26;;:::i;:::-;28495:110;;:::o;28832:321::-;28962:18;28968:2;28972:7;28962:5;;;:18;;:::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;;;:54;;:::i;:::-;28991:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28832:321;;;:::o;29489:382::-;29583:1;29569:16;;:2;:16;;;;29561:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29642:16;29650:7;29642;;;:16;;:::i;:::-;29641:17;29633:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29704:45;29733:1;29737:2;29741:7;29704:20;;;:45;;:::i;:::-;29779:1;29762:9;:13;29772:2;29762:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29810:2;29791:7;:16;29799:7;29791:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29855:7;29851:2;29830:33;;29847:1;29830:33;;;;;;;;;;;;29489:382;;:::o;32232:799::-;32387:4;32408:15;:2;:13;;;;;;;:15;;:::i;:::-;32404:620;;;32460:2;32444:36;;;32481:12;:10;;;:12;;:::i;:::-;32495:4;32501:7;32510:5;32444:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32703:1;32686:6;:13;:18;32682:272;;;32729:60;;;;;;;;;;:::i;:::-;;;;;;;;32682:272;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;32577:41;;;32567:51;;;:6;:51;;;;32560:58;;;;;32404:620;33008:4;33001:11;;32232:799;;;;;;;:::o;27511:127::-;27576:4;27628:1;27600:30;;:7;:16;27608:7;27600:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27593:37;;27511:127;;;:::o;36342:589::-;36486:45;36513:4;36519:2;36523:7;36486:26;;;;;:45;;:::i;:::-;36564:1;36548:18;;:4;:18;;;36544:187;;;36583:40;36615:7;36583:31;;;:40;;:::i;:::-;36544:187;;;36653:2;36645:10;;:4;:10;;;36641:90;;36672:47;36705:4;36711:7;36672:32;;;:47;;:::i;:::-;36641:90;36544:187;36759:1;36745:16;;:2;:16;;;36741:183;;;36778:45;36815:7;36778:36;;;:45;;:::i;:::-;36741:183;;;36851:4;36845:10;;:2;:10;;;36841:83;;36872:40;36900:2;36904:7;36872:27;;;:40;;:::i;:::-;36841:83;36741:183;36342:589;;;:::o;10444:387::-;10504:4;10712:12;10779:7;10767:20;10759:28;;10822:1;10815:4;:8;10808:15;;;10444:387;;;:::o;33603:126::-;;;;:::o;37654:164::-;37758:10;:17;;;;37731:15;:24;37747:7;37731:24;;;;;;;;;;;:44;;;;37786:10;37802:7;37786:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37654:164;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;;;;;:22;;:::i;:::-;:26;;;;:::i;:::-;38711:51;;38773:18;38794:17;:26;38812:7;38794:26;;;;;;;;;;;;38773:47;;38941:14;38927:10;:28;38923:328;;38972:19;38994:12;:18;39007:4;38994:18;;;;;;;;;;;;;;;:34;39013:14;38994:34;;;;;;;;;;;;38972:56;;39078:11;39045:12;:18;39058:4;39045:18;;;;;;;;;;;;;;;:30;39064:10;39045:30;;;;;;;;;;;:44;;;;39195:10;39162:17;:30;39180:11;39162:30;;;;;;;;;;;:43;;;;38923:328;;39347:17;:26;39365:7;39347:26;;;;;;;;;;;39340:33;;;39391:12;:18;39404:4;39391:18;;;;;;;;;;;;;;;:34;39410:14;39391:34;;;;;;;;;;;39384:41;;;38445:988;;;;:::o;39728:1079::-;39981:22;40026:1;40006:10;:17;;;;:21;;;;:::i;:::-;39981:46;;40038:18;40059:15;:24;40075:7;40059:24;;;;;;;;;;;;40038:45;;40410:19;40432:10;40443:14;40432:26;;;;;;;;;;;;;;;;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40607:10;40576:15;:28;40592:11;40576:28;;;;;;;;;;;:41;;;;40748:15;:24;40764:7;40748:24;;;;;;;;;;;40741:31;;;40783:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39728:1079;;;;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;;;;;:20;;:::i;:::-;37317:37;;37392:7;37365:12;:16;37378:2;37365:16;;;;;;;;;;;;;;;:24;37382:6;37365:24;;;;;;;;;;;:34;;;;37439:6;37410:17;:26;37428:7;37410:26;;;;;;;;;;;:35;;;;37232:221;;;:::o;21982:208::-;22054:7;22099:1;22082:19;;:5;:19;;;;22074:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22166:9;:16;22176:5;22166:16;;;;;;;;;;;;;;;;22159:23;;21982:208;;;:::o;43215:2833::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:354:1:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:2;;;303:1;300;293:12;262:2;316:39;348:6;343:3;338;316:39;:::i;:::-;102:259;;;;;;:::o;367:141::-;423:5;454:6;448:13;439:22;;470:32;496:5;470:32;:::i;:::-;429:79;;;;:::o;528:288::-;595:5;644:3;637:4;629:6;625:17;621:27;611:2;;662:1;659;652:12;611:2;695:6;689:13;720:90;806:3;798:6;791:4;783:6;779:17;720:90;:::i;:::-;711:99;;601:215;;;;;:::o;822:282::-;891:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;999:1;1024:63;1079:7;1070:6;1059:9;1055:22;1024:63;:::i;:::-;1014:73;;970:127;898:206;;;;:::o;1110:914::-;1228:6;1236;1244;1293:2;1281:9;1272:7;1268:23;1264:32;1261:2;;;1309:1;1306;1299:12;1261:2;1373:1;1362:9;1358:17;1352:24;1403:18;1395:6;1392:30;1389:2;;;1435:1;1432;1425:12;1389:2;1463:74;1529:7;1520:6;1509:9;1505:22;1463:74;:::i;:::-;1453:84;;1323:224;1607:2;1596:9;1592:18;1586:25;1638:18;1630:6;1627:30;1624:2;;;1670:1;1667;1660:12;1624:2;1698:74;1764:7;1755:6;1744:9;1740:22;1698:74;:::i;:::-;1688:84;;1557:225;1842:2;1831:9;1827:18;1821:25;1873:18;1865:6;1862:30;1859:2;;;1905:1;1902;1895:12;1859:2;1933:74;1999:7;1990:6;1979:9;1975:22;1933:74;:::i;:::-;1923:84;;1792:225;1251:773;;;;;:::o;2030:118::-;2117:24;2135:5;2117:24;:::i;:::-;2112:3;2105:37;2095:53;;:::o;2154:360::-;2240:3;2268:38;2300:5;2268:38;:::i;:::-;2322:70;2385:6;2380:3;2322:70;:::i;:::-;2315:77;;2401:52;2446:6;2441:3;2434:4;2427:5;2423:16;2401:52;:::i;:::-;2478:29;2500:6;2478:29;:::i;:::-;2473:3;2469:39;2462:46;;2244:270;;;;;:::o;2520:366::-;2662:3;2683:67;2747:2;2742:3;2683:67;:::i;:::-;2676:74;;2759:93;2848:3;2759:93;:::i;:::-;2877:2;2872:3;2868:12;2861:19;;2666:220;;;:::o;2892:366::-;3034:3;3055:67;3119:2;3114:3;3055:67;:::i;:::-;3048:74;;3131:93;3220:3;3131:93;:::i;:::-;3249:2;3244:3;3240:12;3233:19;;3038:220;;;:::o;3264:366::-;3406:3;3427:67;3491:2;3486:3;3427:67;:::i;:::-;3420:74;;3503:93;3592:3;3503:93;:::i;:::-;3621:2;3616:3;3612:12;3605:19;;3410:220;;;:::o;3636:366::-;3778:3;3799:67;3863:2;3858:3;3799:67;:::i;:::-;3792:74;;3875:93;3964:3;3875:93;:::i;:::-;3993:2;3988:3;3984:12;3977:19;;3782:220;;;:::o;4008:366::-;4150:3;4171:67;4235:2;4230:3;4171:67;:::i;:::-;4164:74;;4247:93;4336:3;4247:93;:::i;:::-;4365:2;4360:3;4356:12;4349:19;;4154:220;;;:::o;4380:118::-;4467:24;4485:5;4467:24;:::i;:::-;4462:3;4455:37;4445:53;;:::o;4504:640::-;4699:4;4737:3;4726:9;4722:19;4714:27;;4751:71;4819:1;4808:9;4804:17;4795:6;4751:71;:::i;:::-;4832:72;4900:2;4889:9;4885:18;4876:6;4832:72;:::i;:::-;4914;4982:2;4971:9;4967:18;4958:6;4914:72;:::i;:::-;5033:9;5027:4;5023:20;5018:2;5007:9;5003:18;4996:48;5061:76;5132:4;5123:6;5061:76;:::i;:::-;5053:84;;4704:440;;;;;;;:::o;5150:419::-;5316:4;5354:2;5343:9;5339:18;5331:26;;5403:9;5397:4;5393:20;5389:1;5378:9;5374:17;5367:47;5431:131;5557:4;5431:131;:::i;:::-;5423:139;;5321:248;;;:::o;5575:419::-;5741:4;5779:2;5768:9;5764:18;5756:26;;5828:9;5822:4;5818:20;5814:1;5803:9;5799:17;5792:47;5856:131;5982:4;5856:131;:::i;:::-;5848:139;;5746:248;;;:::o;6000:419::-;6166:4;6204:2;6193:9;6189:18;6181:26;;6253:9;6247:4;6243:20;6239:1;6228:9;6224:17;6217:47;6281:131;6407:4;6281:131;:::i;:::-;6273:139;;6171:248;;;:::o;6425:419::-;6591:4;6629:2;6618:9;6614:18;6606:26;;6678:9;6672:4;6668:20;6664:1;6653:9;6649:17;6642:47;6706:131;6832:4;6706:131;:::i;:::-;6698:139;;6596:248;;;:::o;6850:419::-;7016:4;7054:2;7043:9;7039:18;7031:26;;7103:9;7097:4;7093:20;7089:1;7078:9;7074:17;7067:47;7131:131;7257:4;7131:131;:::i;:::-;7123:139;;7021:248;;;:::o;7275:129::-;7309:6;7336:20;;:::i;:::-;7326:30;;7365:33;7393:4;7385:6;7365:33;:::i;:::-;7316:88;;;:::o;7410:75::-;7443:6;7476:2;7470:9;7460:19;;7450:35;:::o;7491:308::-;7553:4;7643:18;7635:6;7632:30;7629:2;;;7665:18;;:::i;:::-;7629:2;7703:29;7725:6;7703:29;:::i;:::-;7695:37;;7787:4;7781;7777:15;7769:23;;7558:241;;;:::o;7805:98::-;7856:6;7890:5;7884:12;7874:22;;7863:40;;;:::o;7909:168::-;7992:11;8026:6;8021:3;8014:19;8066:4;8061:3;8057:14;8042:29;;8004:73;;;;:::o;8083:169::-;8167:11;8201:6;8196:3;8189:19;8241:4;8236:3;8232:14;8217:29;;8179:73;;;;:::o;8258:305::-;8298:3;8317:20;8335:1;8317:20;:::i;:::-;8312:25;;8351:20;8369:1;8351:20;:::i;:::-;8346:25;;8505:1;8437:66;8433:74;8430:1;8427:81;8424:2;;;8511:18;;:::i;:::-;8424:2;8555:1;8552;8548:9;8541:16;;8302:261;;;;:::o;8569:348::-;8609:7;8632:20;8650:1;8632:20;:::i;:::-;8627:25;;8666:20;8684:1;8666:20;:::i;:::-;8661:25;;8854:1;8786:66;8782:74;8779:1;8776:81;8771:1;8764:9;8757:17;8753:105;8750:2;;;8861:18;;:::i;:::-;8750:2;8909:1;8906;8902:9;8891:20;;8617:300;;;;:::o;8923:191::-;8963:4;8983:20;9001:1;8983:20;:::i;:::-;8978:25;;9017:20;9035:1;9017:20;:::i;:::-;9012:25;;9056:1;9053;9050:8;9047:2;;;9061:18;;:::i;:::-;9047:2;9106:1;9103;9099:9;9091:17;;8968:146;;;;:::o;9120:96::-;9157:7;9186:24;9204:5;9186:24;:::i;:::-;9175:35;;9165:51;;;:::o;9222:149::-;9258:7;9298:66;9291:5;9287:78;9276:89;;9266:105;;;:::o;9377:126::-;9414:7;9454:42;9447:5;9443:54;9432:65;;9422:81;;;:::o;9509:77::-;9546:7;9575:5;9564:16;;9554:32;;;:::o;9592:307::-;9660:1;9670:113;9684:6;9681:1;9678:13;9670:113;;;9769:1;9764:3;9760:11;9754:18;9750:1;9745:3;9741:11;9734:39;9706:2;9703:1;9699:10;9694:15;;9670:113;;;9801:6;9798:1;9795:13;9792:2;;;9881:1;9872:6;9867:3;9863:16;9856:27;9792:2;9641:258;;;;:::o;9905:320::-;9949:6;9986:1;9980:4;9976:12;9966:22;;10033:1;10027:4;10023:12;10054:18;10044:2;;10110:4;10102:6;10098:17;10088:27;;10044:2;10172;10164:6;10161:14;10141:18;10138:38;10135:2;;;10191:18;;:::i;:::-;10135:2;9956:269;;;;:::o;10231:281::-;10314:27;10336:4;10314:27;:::i;:::-;10306:6;10302:40;10444:6;10432:10;10429:22;10408:18;10396:10;10393:34;10390:62;10387:2;;;10455:18;;:::i;:::-;10387:2;10495:10;10491:2;10484:22;10274:238;;;:::o;10518:233::-;10557:3;10580:24;10598:5;10580:24;:::i;:::-;10571:33;;10626:66;10619:5;10616:77;10613:2;;;10696:18;;:::i;:::-;10613:2;10743:1;10736:5;10732:13;10725:20;;10561:190;;;:::o;10757:180::-;10805:77;10802:1;10795:88;10902:4;10899:1;10892:15;10926:4;10923:1;10916:15;10943:180;10991:77;10988:1;10981:88;11088:4;11085:1;11078:15;11112:4;11109:1;11102:15;11129:180;11177:77;11174:1;11167:88;11274:4;11271:1;11264:15;11298:4;11295:1;11288:15;11315:102;11356:6;11407:2;11403:7;11398:2;11391:5;11387:14;11383:28;11373:38;;11363:54;;;:::o;11423:237::-;11563:34;11559:1;11551:6;11547:14;11540:58;11632:20;11627:2;11619:6;11615:15;11608:45;11529:131;:::o;11666:178::-;11806:30;11802:1;11794:6;11790:14;11783:54;11772:72;:::o;11850:229::-;11990:34;11986:1;11978:6;11974:14;11967:58;12059:12;12054:2;12046:6;12042:15;12035:37;11956:123;:::o;12085:182::-;12225:34;12221:1;12213:6;12209:14;12202:58;12191:76;:::o;12273:182::-;12413:34;12409:1;12401:6;12397:14;12390:58;12379:76;:::o;12461:120::-;12533:23;12550:5;12533:23;:::i;:::-;12526:5;12523:34;12513:2;;12571:1;12568;12561:12;12513:2;12503:78;:::o;43215:2833:0:-;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:37530:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:260:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:1"
},
"nodeType": "YulFunctionCall",
"src": "125:48:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:1"
},
"nodeType": "YulFunctionCall",
"src": "109:65:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:1"
},
"nodeType": "YulFunctionCall",
"src": "183:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:1"
},
"nodeType": "YulFunctionCall",
"src": "224:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "287:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "290:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "280:6:1"
},
"nodeType": "YulFunctionCall",
"src": "280:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "280:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:1"
},
"nodeType": "YulFunctionCall",
"src": "255:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:1"
},
"nodeType": "YulFunctionCall",
"src": "252:25:1"
},
"nodeType": "YulIf",
"src": "249:2:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "327:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "332:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "337:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "303:23:1"
},
"nodeType": "YulFunctionCall",
"src": "303:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "303:41:1"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:1",
"type": ""
}
],
"src": "7:343:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "440:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "450:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "517:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "475:41:1"
},
"nodeType": "YulFunctionCall",
"src": "475:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "459:15:1"
},
"nodeType": "YulFunctionCall",
"src": "459:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "450:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "541:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "548:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "534:6:1"
},
"nodeType": "YulFunctionCall",
"src": "534:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "534:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "564:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "579:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "586:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "575:3:1"
},
"nodeType": "YulFunctionCall",
"src": "575:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "568:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "629:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "638:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "641:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "631:6:1"
},
"nodeType": "YulFunctionCall",
"src": "631:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "631:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "610:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "615:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "606:3:1"
},
"nodeType": "YulFunctionCall",
"src": "606:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "624:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "603:2:1"
},
"nodeType": "YulFunctionCall",
"src": "603:25:1"
},
"nodeType": "YulIf",
"src": "600:2:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "678:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "683:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "688:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "654:23:1"
},
"nodeType": "YulFunctionCall",
"src": "654:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "654:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "413:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "418:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "426:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "434:5:1",
"type": ""
}
],
"src": "356:345:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "759:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "769:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "791:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "778:12:1"
},
"nodeType": "YulFunctionCall",
"src": "778:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "769:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "834:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "807:26:1"
},
"nodeType": "YulFunctionCall",
"src": "807:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "807:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "737:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "745:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "753:5:1",
"type": ""
}
],
"src": "707:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "901:84:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "911:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "933:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "920:12:1"
},
"nodeType": "YulFunctionCall",
"src": "920:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "911:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "973:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "949:23:1"
},
"nodeType": "YulFunctionCall",
"src": "949:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "949:30:1"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "879:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "887:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "895:5:1",
"type": ""
}
],
"src": "852:133:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1042:86:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1052:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1074:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1061:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1061:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1052:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1116:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1090:25:1"
},
"nodeType": "YulFunctionCall",
"src": "1090:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "1090:32:1"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1020:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1028:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1036:5:1",
"type": ""
}
],
"src": "991:137:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1196:79:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1206:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1221:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1215:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1215:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1206:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1263:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1237:25:1"
},
"nodeType": "YulFunctionCall",
"src": "1237:32:1"
},
"nodeType": "YulExpressionStatement",
"src": "1237:32:1"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1174:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1182:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1190:5:1",
"type": ""
}
],
"src": "1134:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1355:210:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1404:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1413:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1416:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1406:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1406:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1406:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1383:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1391:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1379:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1379:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1398:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1375:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1375:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1368:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1368:35:1"
},
"nodeType": "YulIf",
"src": "1365:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1429:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1456:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1443:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1443:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1433:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1472:87:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1532:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1540:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1528:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1528:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1547:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1555:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1481:46:1"
},
"nodeType": "YulFunctionCall",
"src": "1481:78:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1472:5:1"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1333:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1341:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1349:5:1",
"type": ""
}
],
"src": "1294:271:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1647:211:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1696:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1705:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1708:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1698:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1698:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1698:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1675:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1683:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1671:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1671:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1690:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1667:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1667:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1660:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1660:35:1"
},
"nodeType": "YulIf",
"src": "1657:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1721:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1748:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1735:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1735:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1725:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1764:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1825:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1833:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1821:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1821:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1840:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1848:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1773:47:1"
},
"nodeType": "YulFunctionCall",
"src": "1773:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1764:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1625:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1633:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1641:5:1",
"type": ""
}
],
"src": "1585:273:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1916:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1926:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1948:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1935:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1935:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1926:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1991:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1964:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1964:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1964:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1894:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1902:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1910:5:1",
"type": ""
}
],
"src": "1864:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2075:196:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2121:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2130:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2133:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2123:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2123:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2123:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2096:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2105:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2092:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2092:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2117:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2088:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2088:32:1"
},
"nodeType": "YulIf",
"src": "2085:2:1"
},
{
"nodeType": "YulBlock",
"src": "2147:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2162:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2176:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2166:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2191:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2226:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2237:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2222:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2222:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2246:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2201:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2201:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2191:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2045:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2056:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2068:6:1",
"type": ""
}
],
"src": "2009:262:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2360:324:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2406:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2415:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2418:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2408:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2408:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2408:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2381:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2390:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2377:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2377:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2402:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2373:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2373:32:1"
},
"nodeType": "YulIf",
"src": "2370:2:1"
},
{
"nodeType": "YulBlock",
"src": "2432:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2447:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2461:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2451:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2476:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2511:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2522:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2507:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2507:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2531:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2486:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2486:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2476:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2559:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2574:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2588:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2578:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2604:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2639:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2650:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2635:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2635:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2659:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2614:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2614:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2604:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2322:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2333:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2345:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2353:6:1",
"type": ""
}
],
"src": "2277:407:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2790:452:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2836:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2845:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2848:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2838:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2838:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "2838:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2811:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2820:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2807:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2807:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2832:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2803:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2803:32:1"
},
"nodeType": "YulIf",
"src": "2800:2:1"
},
{
"nodeType": "YulBlock",
"src": "2862:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2877:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2891:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2881:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2906:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2941:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2952:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2937:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2937:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2961:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2916:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2916:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2906:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2989:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3004:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3018:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3008:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3034:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3069:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3080:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3065:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3065:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3089:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3044:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3044:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3034:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3117:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3132:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3146:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3136:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3162:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3197:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3208:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3193:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3193:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3217:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3172:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3172:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3162:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2744:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2755:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2767:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2775:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2783:6:1",
"type": ""
}
],
"src": "2690:552:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3374:683:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3421:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3430:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3433:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3423:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3423:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3423:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3395:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3404:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3391:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3391:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3416:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3387:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3387:33:1"
},
"nodeType": "YulIf",
"src": "3384:2:1"
},
{
"nodeType": "YulBlock",
"src": "3447:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3462:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3476:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3466:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3491:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3526:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3537:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3522:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3522:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3546:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3501:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3501:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3491:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3574:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3589:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3603:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3593:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3619:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3654:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3665:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3650:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3650:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3674:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3629:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3629:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3619:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3702:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3717:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3731:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3721:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3747:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3782:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3793:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3778:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3778:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3802:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3757:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3757:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3747:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3830:220:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3845:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3876:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3887:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3872:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3872:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3859:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3859:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3849:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3938:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3947:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3950:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3940:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3940:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3940:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3910:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3918:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3907:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3907:30:1"
},
"nodeType": "YulIf",
"src": "3904:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3968:72:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4012:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4023:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4008:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4008:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4032:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3978:29:1"
},
"nodeType": "YulFunctionCall",
"src": "3978:62:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3968:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3320:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3331:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3343:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3351:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3359:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3367:6:1",
"type": ""
}
],
"src": "3248:809:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4143:321:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4189:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4198:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4201:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4191:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4191:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4191:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4164:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4173:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4160:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4160:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4185:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4156:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4156:32:1"
},
"nodeType": "YulIf",
"src": "4153:2:1"
},
{
"nodeType": "YulBlock",
"src": "4215:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4230:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4244:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4234:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4259:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4294:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4305:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4290:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4290:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4314:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4269:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4269:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4259:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4342:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4357:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4371:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4361:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4387:60:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4419:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4430:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4415:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4415:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4439:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "4397:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4397:50:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4387:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4105:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4116:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4128:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4136:6:1",
"type": ""
}
],
"src": "4063:401:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4553:324:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4599:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4608:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4611:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4601:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4601:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4601:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4574:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4583:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4570:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4570:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4595:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4566:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4566:32:1"
},
"nodeType": "YulIf",
"src": "4563:2:1"
},
{
"nodeType": "YulBlock",
"src": "4625:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4640:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4654:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4644:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4669:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4704:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4715:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4700:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4724:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4679:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4679:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4669:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4752:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4767:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4781:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4771:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4797:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4832:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4843:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4828:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4828:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4852:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4807:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4807:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4797:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4515:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4526:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4538:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4546:6:1",
"type": ""
}
],
"src": "4470:407:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4946:193:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4992:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5001:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5004:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4994:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4994:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "4994:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4967:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4976:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4963:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4988:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4959:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4959:32:1"
},
"nodeType": "YulIf",
"src": "4956:2:1"
},
{
"nodeType": "YulBlock",
"src": "5018:114:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5033:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5047:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5037:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5062:60:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5094:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5105:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5090:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5090:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5114:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5072:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5072:50:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5062:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4916:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4927:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4939:6:1",
"type": ""
}
],
"src": "4883:256:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5210:195:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5256:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5265:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5268:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5258:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5258:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5258:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5231:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5240:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5227:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5227:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5252:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5223:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5223:32:1"
},
"nodeType": "YulIf",
"src": "5220:2:1"
},
{
"nodeType": "YulBlock",
"src": "5282:116:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5297:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5311:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5301:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5326:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5360:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5371:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5356:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5356:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5380:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "5336:19:1"
},
"nodeType": "YulFunctionCall",
"src": "5336:52:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5326:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5180:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5191:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5203:6:1",
"type": ""
}
],
"src": "5145:260:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5487:206:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5533:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5542:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5545:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5535:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5535:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5535:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5508:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5517:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5504:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5504:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5529:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5500:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5500:32:1"
},
"nodeType": "YulIf",
"src": "5497:2:1"
},
{
"nodeType": "YulBlock",
"src": "5559:127:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5574:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5588:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5578:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5603:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5648:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5659:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5644:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5644:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5668:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "5613:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5613:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5603:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5457:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5468:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5480:6:1",
"type": ""
}
],
"src": "5411:282:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5775:299:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5821:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5830:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5833:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5823:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5823:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5796:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5805:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5792:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5792:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5817:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5788:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5788:32:1"
},
"nodeType": "YulIf",
"src": "5785:2:1"
},
{
"nodeType": "YulBlock",
"src": "5847:220:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5862:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5893:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5904:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5889:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5889:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5876:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5876:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5866:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5954:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5963:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5966:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5956:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5956:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "5956:12:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5926:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5934:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5923:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5923:30:1"
},
"nodeType": "YulIf",
"src": "5920:2:1"
},
{
"nodeType": "YulAssignment",
"src": "5984:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6029:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6040:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6025:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6025:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6049:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5994:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5994:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5984:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5745:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5756:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5768:6:1",
"type": ""
}
],
"src": "5699:375:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6146:196:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6192:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6201:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6204:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6194:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6194:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "6194:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6167:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6176:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6163:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6163:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6188:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6159:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6159:32:1"
},
"nodeType": "YulIf",
"src": "6156:2:1"
},
{
"nodeType": "YulBlock",
"src": "6218:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6233:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6247:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6237:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6262:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6297:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6308:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6293:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6293:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6317:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6272:20:1"
},
"nodeType": "YulFunctionCall",
"src": "6272:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6262:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6116:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6127:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6139:6:1",
"type": ""
}
],
"src": "6080:262:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6428:99:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6472:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6480:3:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6438:33:1"
},
"nodeType": "YulFunctionCall",
"src": "6438:46:1"
},
"nodeType": "YulExpressionStatement",
"src": "6438:46:1"
},
{
"nodeType": "YulAssignment",
"src": "6493:28:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6511:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6516:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6507:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6507:14:1"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "6493:10:1"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6401:6:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6409:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "6417:10:1",
"type": ""
}
],
"src": "6348:179:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6598:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6615:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6638:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "6620:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6620:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6608:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6608:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "6608:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6586:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6593:3:1",
"type": ""
}
],
"src": "6533:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6811:608:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6821:68:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6883:5:1"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6835:47:1"
},
"nodeType": "YulFunctionCall",
"src": "6835:54:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6825:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6898:93:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6979:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6984:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6905:73:1"
},
"nodeType": "YulFunctionCall",
"src": "6905:86:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6898:3:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7000:71:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7065:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7015:49:1"
},
"nodeType": "YulFunctionCall",
"src": "7015:56:1"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "7004:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7080:21:1",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "7094:7:1"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "7084:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7170:224:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7184:34:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7211:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "7205:5:1"
},
"nodeType": "YulFunctionCall",
"src": "7205:13:1"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "7188:13:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7231:70:1",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "7282:13:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7297:3:1"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7238:43:1"
},
"nodeType": "YulFunctionCall",
"src": "7238:63:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7231:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7314:70:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7377:6:1"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7324:52:1"
},
"nodeType": "YulFunctionCall",
"src": "7324:60:1"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "7314:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7132:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7135:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7129:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7129:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "7143:18:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7145:14:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7154:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7157:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7150:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7150:9:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "7145:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "7114:14:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7116:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7125:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "7120:1:1",
"type": ""
}
]
}
]
},
"src": "7110:284:1"
},
{
"nodeType": "YulAssignment",
"src": "7403:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7410:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7403:3:1"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6790:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6797:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6806:3:1",
"type": ""
}
],
"src": "6687:732:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7484:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7501:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7521:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "7506:14:1"
},
"nodeType": "YulFunctionCall",
"src": "7506:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7494:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7494:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "7494:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7472:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7479:3:1",
"type": ""
}
],
"src": "7425:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7630:270:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7640:52:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7686:5:1"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7654:31:1"
},
"nodeType": "YulFunctionCall",
"src": "7654:38:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7644:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7701:77:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7766:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7771:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7708:57:1"
},
"nodeType": "YulFunctionCall",
"src": "7708:70:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7701:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7813:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7820:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7809:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7809:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7827:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7832:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7787:21:1"
},
"nodeType": "YulFunctionCall",
"src": "7787:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "7787:52:1"
},
{
"nodeType": "YulAssignment",
"src": "7848:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7859:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7886:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7864:21:1"
},
"nodeType": "YulFunctionCall",
"src": "7864:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7855:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7855:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7848:3:1"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7611:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7618:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7626:3:1",
"type": ""
}
],
"src": "7540:360:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7998:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8008:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8055:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8022:32:1"
},
"nodeType": "YulFunctionCall",
"src": "8022:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8012:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8070:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8136:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8141:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8077:58:1"
},
"nodeType": "YulFunctionCall",
"src": "8077:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8070:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8183:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8190:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8179:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8179:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8197:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8202:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8157:21:1"
},
"nodeType": "YulFunctionCall",
"src": "8157:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "8157:52:1"
},
{
"nodeType": "YulAssignment",
"src": "8218:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8229:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8256:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8234:21:1"
},
"nodeType": "YulFunctionCall",
"src": "8234:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8225:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8218:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7979:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7986:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7994:3:1",
"type": ""
}
],
"src": "7906:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8386:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8396:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8443:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8410:32:1"
},
"nodeType": "YulFunctionCall",
"src": "8410:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8400:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8458:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8542:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8547:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8465:76:1"
},
"nodeType": "YulFunctionCall",
"src": "8465:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8458:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8589:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8596:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8585:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8585:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8603:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8608:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8563:21:1"
},
"nodeType": "YulFunctionCall",
"src": "8563:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "8563:52:1"
},
{
"nodeType": "YulAssignment",
"src": "8624:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8635:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8640:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8631:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8631:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8624:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8367:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8374:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8382:3:1",
"type": ""
}
],
"src": "8276:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8790:738:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8800:29:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8823:5:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "8817:5:1"
},
"nodeType": "YulFunctionCall",
"src": "8817:12:1"
},
"variables": [
{
"name": "slotValue",
"nodeType": "YulTypedName",
"src": "8804:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8838:50:1",
"value": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "8878:9:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "8852:25:1"
},
"nodeType": "YulFunctionCall",
"src": "8852:36:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8842:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8897:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8981:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8986:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8904:76:1"
},
"nodeType": "YulFunctionCall",
"src": "8904:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8897:3:1"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "9042:130:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9095:3:1"
},
{
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "9104:9:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9119:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9115:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9115:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9100:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9100:25:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9088:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9088:38:1"
},
"nodeType": "YulExpressionStatement",
"src": "9088:38:1"
},
{
"nodeType": "YulAssignment",
"src": "9139:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9150:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9155:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9146:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9146:16:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "9139:3:1"
}
]
}
]
},
"nodeType": "YulCase",
"src": "9035:137:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9040:1:1",
"type": "",
"value": "0"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "9188:334:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9233:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9280:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "9248:31:1"
},
"nodeType": "YulFunctionCall",
"src": "9248:38:1"
},
"variables": [
{
"name": "dataPos",
"nodeType": "YulTypedName",
"src": "9237:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "9299:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9308:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "9303:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9366:110:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9395:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9400:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9391:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9391:11:1"
},
{
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "9410:7:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "9404:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9404:14:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9384:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9384:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "9384:35:1"
},
{
"nodeType": "YulAssignment",
"src": "9436:26:1",
"value": {
"arguments": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "9451:7:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9460:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9447:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9447:15:1"
},
"variableNames": [
{
"name": "dataPos",
"nodeType": "YulIdentifier",
"src": "9436:7:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9333:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9336:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "9330:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9330:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "9344:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9346:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9355:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9358:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9351:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9351:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "9346:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "9326:3:1",
"statements": []
},
"src": "9322:154:1"
},
{
"nodeType": "YulAssignment",
"src": "9489:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9500:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9505:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9496:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9496:16:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "9489:3:1"
}
]
}
]
},
"nodeType": "YulCase",
"src": "9181:341:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9186:1:1",
"type": "",
"value": "1"
}
}
],
"expression": {
"arguments": [
{
"name": "slotValue",
"nodeType": "YulIdentifier",
"src": "9013:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9024:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9009:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9009:17:1"
},
"nodeType": "YulSwitch",
"src": "9002:520:1"
}
]
},
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8771:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8778:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "8786:3:1",
"type": ""
}
],
"src": "8683:845:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9680:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9690:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9756:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9761:2:1",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9697:58:1"
},
"nodeType": "YulFunctionCall",
"src": "9697:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9690:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9862:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulIdentifier",
"src": "9773:88:1"
},
"nodeType": "YulFunctionCall",
"src": "9773:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "9773:93:1"
},
{
"nodeType": "YulAssignment",
"src": "9875:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9886:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9891:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9882:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9882:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9875:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9668:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9676:3:1",
"type": ""
}
],
"src": "9534:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10052:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10062:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10128:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10133:2:1",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10069:58:1"
},
"nodeType": "YulFunctionCall",
"src": "10069:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10062:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10234:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "10145:88:1"
},
"nodeType": "YulFunctionCall",
"src": "10145:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "10145:93:1"
},
{
"nodeType": "YulAssignment",
"src": "10247:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10258:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10263:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10254:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10254:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10247:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10040:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10048:3:1",
"type": ""
}
],
"src": "9906:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10424:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10434:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10500:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10505:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10441:58:1"
},
"nodeType": "YulFunctionCall",
"src": "10441:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10434:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10606:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "10517:88:1"
},
"nodeType": "YulFunctionCall",
"src": "10517:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "10517:93:1"
},
{
"nodeType": "YulAssignment",
"src": "10619:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10630:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10635:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10626:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10626:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10619:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10412:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10420:3:1",
"type": ""
}
],
"src": "10278:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10796:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10806:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10872:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10877:2:1",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10813:58:1"
},
"nodeType": "YulFunctionCall",
"src": "10813:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10806:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10978:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "10889:88:1"
},
"nodeType": "YulFunctionCall",
"src": "10889:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "10889:93:1"
},
{
"nodeType": "YulAssignment",
"src": "10991:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11002:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11007:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10998:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10998:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10991:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10784:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10792:3:1",
"type": ""
}
],
"src": "10650:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11168:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11178:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11244:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11249:2:1",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11185:58:1"
},
"nodeType": "YulFunctionCall",
"src": "11185:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11178:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11350:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "11261:88:1"
},
"nodeType": "YulFunctionCall",
"src": "11261:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "11261:93:1"
},
{
"nodeType": "YulAssignment",
"src": "11363:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11374:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11379:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11370:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11370:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11363:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11156:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11164:3:1",
"type": ""
}
],
"src": "11022:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11540:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11550:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11616:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11621:2:1",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11557:58:1"
},
"nodeType": "YulFunctionCall",
"src": "11557:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11550:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11722:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "11633:88:1"
},
"nodeType": "YulFunctionCall",
"src": "11633:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "11633:93:1"
},
{
"nodeType": "YulAssignment",
"src": "11735:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11746:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11751:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11742:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11735:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11528:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11536:3:1",
"type": ""
}
],
"src": "11394:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11912:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11922:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11988:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11993:2:1",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11929:58:1"
},
"nodeType": "YulFunctionCall",
"src": "11929:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11922:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12094:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "12005:88:1"
},
"nodeType": "YulFunctionCall",
"src": "12005:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "12005:93:1"
},
{
"nodeType": "YulAssignment",
"src": "12107:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12118:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12123:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12114:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12114:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12107:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11900:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11908:3:1",
"type": ""
}
],
"src": "11766:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12284:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12294:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12360:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12365:2:1",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12301:58:1"
},
"nodeType": "YulFunctionCall",
"src": "12301:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12294:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12466:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "12377:88:1"
},
"nodeType": "YulFunctionCall",
"src": "12377:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "12377:93:1"
},
{
"nodeType": "YulAssignment",
"src": "12479:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12490:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12495:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12486:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12486:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12479:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12272:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12280:3:1",
"type": ""
}
],
"src": "12138:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12656:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12666:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12732:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12737:2:1",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12673:58:1"
},
"nodeType": "YulFunctionCall",
"src": "12673:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12666:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12838:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "12749:88:1"
},
"nodeType": "YulFunctionCall",
"src": "12749:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "12749:93:1"
},
{
"nodeType": "YulAssignment",
"src": "12851:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12862:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12867:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12858:3:1"
},
"nodeType": "YulFunctionCall",
"src": "12858:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12851:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12644:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12652:3:1",
"type": ""
}
],
"src": "12510:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13028:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13038:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13104:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13109:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13045:58:1"
},
"nodeType": "YulFunctionCall",
"src": "13045:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13038:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13210:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "13121:88:1"
},
"nodeType": "YulFunctionCall",
"src": "13121:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "13121:93:1"
},
{
"nodeType": "YulAssignment",
"src": "13223:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13234:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13239:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13230:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13230:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13223:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13016:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13024:3:1",
"type": ""
}
],
"src": "12882:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13400:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13410:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13476:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13481:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13417:58:1"
},
"nodeType": "YulFunctionCall",
"src": "13417:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13410:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13582:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "13493:88:1"
},
"nodeType": "YulFunctionCall",
"src": "13493:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "13493:93:1"
},
{
"nodeType": "YulAssignment",
"src": "13595:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13606:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13611:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13602:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13602:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13595:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13388:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13396:3:1",
"type": ""
}
],
"src": "13254:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13772:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13782:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13848:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13853:2:1",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13789:58:1"
},
"nodeType": "YulFunctionCall",
"src": "13789:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13782:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13954:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "13865:88:1"
},
"nodeType": "YulFunctionCall",
"src": "13865:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "13865:93:1"
},
{
"nodeType": "YulAssignment",
"src": "13967:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13978:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13983:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13974:3:1"
},
"nodeType": "YulFunctionCall",
"src": "13974:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13967:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13760:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13768:3:1",
"type": ""
}
],
"src": "13626:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14144:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14154:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14220:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14225:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14161:58:1"
},
"nodeType": "YulFunctionCall",
"src": "14161:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14154:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14326:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "14237:88:1"
},
"nodeType": "YulFunctionCall",
"src": "14237:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "14237:93:1"
},
{
"nodeType": "YulAssignment",
"src": "14339:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14350:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14355:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14346:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14339:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14132:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14140:3:1",
"type": ""
}
],
"src": "13998:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14516:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14526:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14592:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14597:2:1",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14533:58:1"
},
"nodeType": "YulFunctionCall",
"src": "14533:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14526:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14698:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulIdentifier",
"src": "14609:88:1"
},
"nodeType": "YulFunctionCall",
"src": "14609:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "14609:93:1"
},
{
"nodeType": "YulAssignment",
"src": "14711:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14722:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14727:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14718:3:1"
},
"nodeType": "YulFunctionCall",
"src": "14718:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14711:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14504:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14512:3:1",
"type": ""
}
],
"src": "14370:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14888:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14898:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14964:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14969:2:1",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14905:58:1"
},
"nodeType": "YulFunctionCall",
"src": "14905:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14898:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15070:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "14981:88:1"
},
"nodeType": "YulFunctionCall",
"src": "14981:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "14981:93:1"
},
{
"nodeType": "YulAssignment",
"src": "15083:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15094:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15099:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15090:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15090:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15083:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14876:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14884:3:1",
"type": ""
}
],
"src": "14742:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15260:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15270:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15336:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15341:2:1",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15277:58:1"
},
"nodeType": "YulFunctionCall",
"src": "15277:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15270:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15442:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "15353:88:1"
},
"nodeType": "YulFunctionCall",
"src": "15353:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "15353:93:1"
},
{
"nodeType": "YulAssignment",
"src": "15455:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15466:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15471:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15462:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15462:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15455:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15248:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15256:3:1",
"type": ""
}
],
"src": "15114:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15632:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15642:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15708:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15713:2:1",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15649:58:1"
},
"nodeType": "YulFunctionCall",
"src": "15649:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15642:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15814:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "15725:88:1"
},
"nodeType": "YulFunctionCall",
"src": "15725:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "15725:93:1"
},
{
"nodeType": "YulAssignment",
"src": "15827:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15838:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15843:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15834:3:1"
},
"nodeType": "YulFunctionCall",
"src": "15834:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15827:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15620:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15628:3:1",
"type": ""
}
],
"src": "15486:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16004:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16014:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16080:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16085:2:1",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16021:58:1"
},
"nodeType": "YulFunctionCall",
"src": "16021:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16014:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16186:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulIdentifier",
"src": "16097:88:1"
},
"nodeType": "YulFunctionCall",
"src": "16097:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "16097:93:1"
},
{
"nodeType": "YulAssignment",
"src": "16199:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16210:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16215:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16206:3:1"
},
"nodeType": "YulFunctionCall",
"src": "16206:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16199:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15992:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16000:3:1",
"type": ""
}
],
"src": "15858:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16285:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16302:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16325:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16307:17:1"
},
"nodeType": "YulFunctionCall",
"src": "16307:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16295:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16295:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "16295:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16273:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16280:3:1",
"type": ""
}
],
"src": "16230:108:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16409:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16426:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16449:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16431:17:1"
},
"nodeType": "YulFunctionCall",
"src": "16431:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16419:6:1"
},
"nodeType": "YulFunctionCall",
"src": "16419:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "16419:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16397:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16404:3:1",
"type": ""
}
],
"src": "16344:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16697:360:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16708:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16797:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16806:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16715:81:1"
},
"nodeType": "YulFunctionCall",
"src": "16715:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16708:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16820:102:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16909:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16918:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16827:81:1"
},
"nodeType": "YulFunctionCall",
"src": "16827:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16820:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16932:99:1",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "17018:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17027:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16939:78:1"
},
"nodeType": "YulFunctionCall",
"src": "16939:92:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16932:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "17041:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17048:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17041:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16660:3:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "16666:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "16674:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16682:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16693:3:1",
"type": ""
}
],
"src": "16468:589:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17161:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17171:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17183:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17194:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17179:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17179:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17171:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17251:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17264:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17275:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17260:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17260:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "17207:43:1"
},
"nodeType": "YulFunctionCall",
"src": "17207:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "17207:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17133:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17145:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17156:4:1",
"type": ""
}
],
"src": "17063:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17491:440:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17501:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17513:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17524:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17509:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17509:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17501:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17582:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17595:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17606:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17591:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17591:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "17538:43:1"
},
"nodeType": "YulFunctionCall",
"src": "17538:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "17538:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "17663:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17676:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17687:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17672:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17672:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "17619:43:1"
},
"nodeType": "YulFunctionCall",
"src": "17619:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "17619:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "17745:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17758:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17769:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17754:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17754:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "17701:43:1"
},
"nodeType": "YulFunctionCall",
"src": "17701:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "17701:72:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17794:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17805:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17790:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17790:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17814:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17820:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17810:3:1"
},
"nodeType": "YulFunctionCall",
"src": "17810:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17783:6:1"
},
"nodeType": "YulFunctionCall",
"src": "17783:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "17783:48:1"
},
{
"nodeType": "YulAssignment",
"src": "17840:84:1",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "17910:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17919:4:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17848:61:1"
},
"nodeType": "YulFunctionCall",
"src": "17848:76:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17840:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17439:9:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "17451:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "17459:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "17467:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17475:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17486:4:1",
"type": ""
}
],
"src": "17291:640:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18085:225:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18095:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18107:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18118:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18103:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18103:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18095:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18142:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18153:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18138:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18138:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18161:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18167:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18157:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18157:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18131:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18131:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "18131:47:1"
},
{
"nodeType": "YulAssignment",
"src": "18187:116:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18289:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18298:4:1"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18195:93:1"
},
"nodeType": "YulFunctionCall",
"src": "18195:108:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18187:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18057:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18069:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18080:4:1",
"type": ""
}
],
"src": "17937:373:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18408:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18418:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18430:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18441:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18426:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18426:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18418:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18492:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18505:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18516:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18501:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18501:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "18454:37:1"
},
"nodeType": "YulFunctionCall",
"src": "18454:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "18454:65:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18380:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18392:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18403:4:1",
"type": ""
}
],
"src": "18316:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18650:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18660:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18672:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18683:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18668:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18660:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18707:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18718:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18703:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18703:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18726:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18732:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18722:3:1"
},
"nodeType": "YulFunctionCall",
"src": "18722:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18696:6:1"
},
"nodeType": "YulFunctionCall",
"src": "18696:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "18696:47:1"
},
{
"nodeType": "YulAssignment",
"src": "18752:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18824:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18833:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18760:63:1"
},
"nodeType": "YulFunctionCall",
"src": "18760:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18752:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18622:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18634:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18645:4:1",
"type": ""
}
],
"src": "18532:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19022:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19032:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19044:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19055:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19040:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19040:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19032:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19079:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19090:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19075:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19075:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19098:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19104:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19094:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19094:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19068:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19068:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "19068:47:1"
},
{
"nodeType": "YulAssignment",
"src": "19124:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19258:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19132:124:1"
},
"nodeType": "YulFunctionCall",
"src": "19132:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19124:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19002:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19017:4:1",
"type": ""
}
],
"src": "18851:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19447:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19457:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19469:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19480:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19465:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19465:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19457:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19504:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19515:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19500:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19500:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19523:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19529:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19519:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19519:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19493:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19493:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "19493:47:1"
},
{
"nodeType": "YulAssignment",
"src": "19549:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19683:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19557:124:1"
},
"nodeType": "YulFunctionCall",
"src": "19557:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19549:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19427:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19442:4:1",
"type": ""
}
],
"src": "19276:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19872:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19882:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19894:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19905:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19890:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19890:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19882:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19929:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19940:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19925:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19925:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19948:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19954:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19944:3:1"
},
"nodeType": "YulFunctionCall",
"src": "19944:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19918:6:1"
},
"nodeType": "YulFunctionCall",
"src": "19918:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "19918:47:1"
},
{
"nodeType": "YulAssignment",
"src": "19974:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20108:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19982:124:1"
},
"nodeType": "YulFunctionCall",
"src": "19982:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19974:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19852:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19867:4:1",
"type": ""
}
],
"src": "19701:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20297:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20307:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20319:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20330:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20315:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20315:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20307:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20354:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20365:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20350:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20350:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20373:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20379:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20369:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20369:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20343:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20343:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "20343:47:1"
},
{
"nodeType": "YulAssignment",
"src": "20399:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20533:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20407:124:1"
},
"nodeType": "YulFunctionCall",
"src": "20407:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20399:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20277:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20292:4:1",
"type": ""
}
],
"src": "20126:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20722:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20732:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20744:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20755:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20740:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20740:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20732:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20779:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20790:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20775:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20775:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20798:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20804:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20794:3:1"
},
"nodeType": "YulFunctionCall",
"src": "20794:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20768:6:1"
},
"nodeType": "YulFunctionCall",
"src": "20768:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "20768:47:1"
},
{
"nodeType": "YulAssignment",
"src": "20824:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20958:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20832:124:1"
},
"nodeType": "YulFunctionCall",
"src": "20832:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20824:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20702:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20717:4:1",
"type": ""
}
],
"src": "20551:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21147:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21157:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21169:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21180:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21165:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21165:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21157:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21204:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21215:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21200:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21200:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21223:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21229:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21219:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21219:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21193:6:1"
},
"nodeType": "YulFunctionCall",
"src": "21193:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "21193:47:1"
},
{
"nodeType": "YulAssignment",
"src": "21249:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21383:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21257:124:1"
},
"nodeType": "YulFunctionCall",
"src": "21257:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21249:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21127:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21142:4:1",
"type": ""
}
],
"src": "20976:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21572:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21582:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21594:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21605:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21590:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21590:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21582:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21629:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21640:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21625:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21625:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21648:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21654:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21644:3:1"
},
"nodeType": "YulFunctionCall",
"src": "21644:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21618:6:1"
},
"nodeType": "YulFunctionCall",
"src": "21618:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "21618:47:1"
},
{
"nodeType": "YulAssignment",
"src": "21674:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21808:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21682:124:1"
},
"nodeType": "YulFunctionCall",
"src": "21682:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21674:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21552:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21567:4:1",
"type": ""
}
],
"src": "21401:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21997:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22007:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22019:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22030:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22015:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22015:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22007:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22054:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22065:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22050:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22073:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22079:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22069:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22069:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22043:6:1"
},
"nodeType": "YulFunctionCall",
"src": "22043:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "22043:47:1"
},
{
"nodeType": "YulAssignment",
"src": "22099:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22233:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22107:124:1"
},
"nodeType": "YulFunctionCall",
"src": "22107:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22099:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21977:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21992:4:1",
"type": ""
}
],
"src": "21826:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22422:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22432:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22444:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22455:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22440:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22440:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22432:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22479:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22490:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22475:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22475:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22498:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22504:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22494:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22494:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22468:6:1"
},
"nodeType": "YulFunctionCall",
"src": "22468:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "22468:47:1"
},
{
"nodeType": "YulAssignment",
"src": "22524:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22658:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22532:124:1"
},
"nodeType": "YulFunctionCall",
"src": "22532:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22524:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22402:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22417:4:1",
"type": ""
}
],
"src": "22251:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22847:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22857:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22869:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22880:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22865:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22865:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22857:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22904:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22915:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22900:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22900:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22923:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22929:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22919:3:1"
},
"nodeType": "YulFunctionCall",
"src": "22919:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22893:6:1"
},
"nodeType": "YulFunctionCall",
"src": "22893:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "22893:47:1"
},
{
"nodeType": "YulAssignment",
"src": "22949:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23083:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22957:124:1"
},
"nodeType": "YulFunctionCall",
"src": "22957:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22949:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22827:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22842:4:1",
"type": ""
}
],
"src": "22676:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23272:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23282:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23294:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23305:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23290:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23290:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23282:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23329:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23340:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23325:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23325:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23348:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23354:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23344:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23344:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23318:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23318:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "23318:47:1"
},
{
"nodeType": "YulAssignment",
"src": "23374:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23508:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23382:124:1"
},
"nodeType": "YulFunctionCall",
"src": "23382:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23374:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23252:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23267:4:1",
"type": ""
}
],
"src": "23101:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23697:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23707:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23719:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23730:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23715:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23715:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23707:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23754:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23765:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23750:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23750:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23773:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23779:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "23769:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "23743:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "23743:47:1"
},
{
"nodeType": "YulAssignment",
"src": "23799:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23933:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23807:124:1"
},
"nodeType": "YulFunctionCall",
"src": "23807:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23799:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23677:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23692:4:1",
"type": ""
}
],
"src": "23526:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24122:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24132:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24144:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24155:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24140:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24140:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24132:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24179:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24190:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24175:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24175:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24198:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24204:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24194:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24194:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24168:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24168:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "24168:47:1"
},
{
"nodeType": "YulAssignment",
"src": "24224:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24358:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24232:124:1"
},
"nodeType": "YulFunctionCall",
"src": "24232:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24224:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24102:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24117:4:1",
"type": ""
}
],
"src": "23951:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24547:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24557:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24569:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24580:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24565:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24565:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24557:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24604:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24615:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24600:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24600:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24623:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24629:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24619:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24619:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24593:6:1"
},
"nodeType": "YulFunctionCall",
"src": "24593:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "24593:47:1"
},
{
"nodeType": "YulAssignment",
"src": "24649:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24783:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24657:124:1"
},
"nodeType": "YulFunctionCall",
"src": "24657:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24649:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24527:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24542:4:1",
"type": ""
}
],
"src": "24376:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24972:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24982:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24994:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25005:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24990:3:1"
},
"nodeType": "YulFunctionCall",
"src": "24990:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24982:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25029:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25040:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25025:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25025:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25048:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25054:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25044:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25044:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25018:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25018:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "25018:47:1"
},
{
"nodeType": "YulAssignment",
"src": "25074:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25208:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25082:124:1"
},
"nodeType": "YulFunctionCall",
"src": "25082:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25074:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24952:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24967:4:1",
"type": ""
}
],
"src": "24801:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25397:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25407:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25419:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25430:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25415:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25415:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25407:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25454:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25465:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25450:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25450:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25473:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25479:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25469:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25469:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25443:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25443:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "25443:47:1"
},
{
"nodeType": "YulAssignment",
"src": "25499:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25633:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25507:124:1"
},
"nodeType": "YulFunctionCall",
"src": "25507:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25499:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25377:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25392:4:1",
"type": ""
}
],
"src": "25226:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25822:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25832:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25844:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25855:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25840:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25840:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25832:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25879:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25890:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25875:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25875:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25898:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25904:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25894:3:1"
},
"nodeType": "YulFunctionCall",
"src": "25894:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25868:6:1"
},
"nodeType": "YulFunctionCall",
"src": "25868:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "25868:47:1"
},
{
"nodeType": "YulAssignment",
"src": "25924:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26058:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25932:124:1"
},
"nodeType": "YulFunctionCall",
"src": "25932:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25924:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25802:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25817:4:1",
"type": ""
}
],
"src": "25651:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26247:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26269:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26265:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26265:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26304:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26315:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26300:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26300:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26323:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26329:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26319:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26319:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26293:6:1"
},
"nodeType": "YulFunctionCall",
"src": "26293:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "26293:47:1"
},
{
"nodeType": "YulAssignment",
"src": "26349:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26483:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26357:124:1"
},
"nodeType": "YulFunctionCall",
"src": "26357:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26349:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26227:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26242:4:1",
"type": ""
}
],
"src": "26076:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26599:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26609:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26621:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26632:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26617:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26617:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26609:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "26689:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26702:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26713:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26698:3:1"
},
"nodeType": "YulFunctionCall",
"src": "26698:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "26645:43:1"
},
"nodeType": "YulFunctionCall",
"src": "26645:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "26645:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "26571:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "26583:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "26594:4:1",
"type": ""
}
],
"src": "26501:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26770:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26780:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "26790:18:1"
},
"nodeType": "YulFunctionCall",
"src": "26790:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26780:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26839:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "26847:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "26819:19:1"
},
"nodeType": "YulFunctionCall",
"src": "26819:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "26819:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "26754:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26763:6:1",
"type": ""
}
],
"src": "26729:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26904:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26914:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26930:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "26924:5:1"
},
"nodeType": "YulFunctionCall",
"src": "26924:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26914:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26897:6:1",
"type": ""
}
],
"src": "26864:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27011:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27116:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "27118:16:1"
},
"nodeType": "YulFunctionCall",
"src": "27118:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "27118:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27088:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27096:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27085:2:1"
},
"nodeType": "YulFunctionCall",
"src": "27085:30:1"
},
"nodeType": "YulIf",
"src": "27082:2:1"
},
{
"nodeType": "YulAssignment",
"src": "27148:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27178:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "27156:21:1"
},
"nodeType": "YulFunctionCall",
"src": "27156:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27148:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27222:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27234:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27240:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27230:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27230:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27222:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26995:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "27006:4:1",
"type": ""
}
],
"src": "26945:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27325:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27430:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "27432:16:1"
},
"nodeType": "YulFunctionCall",
"src": "27432:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "27432:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27402:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27410:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27399:2:1"
},
"nodeType": "YulFunctionCall",
"src": "27399:30:1"
},
"nodeType": "YulIf",
"src": "27396:2:1"
},
{
"nodeType": "YulAssignment",
"src": "27462:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27492:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "27470:21:1"
},
"nodeType": "YulFunctionCall",
"src": "27470:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27462:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27536:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27548:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27554:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27544:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27544:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27536:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27309:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "27320:4:1",
"type": ""
}
],
"src": "27258:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27644:60:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27654:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "27662:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27654:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27675:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "27687:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27692:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27683:3:1"
},
"nodeType": "YulFunctionCall",
"src": "27683:14:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27675:4:1"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "27631:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "27639:4:1",
"type": ""
}
],
"src": "27572:132:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27764:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27774:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "27782:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27774:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27802:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "27805:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27795:6:1"
},
"nodeType": "YulFunctionCall",
"src": "27795:14:1"
},
"nodeType": "YulExpressionStatement",
"src": "27795:14:1"
},
{
"nodeType": "YulAssignment",
"src": "27818:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27836:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27839:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "27826:9:1"
},
"nodeType": "YulFunctionCall",
"src": "27826:18:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27818:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "27751:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "27759:4:1",
"type": ""
}
],
"src": "27710:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27931:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27942:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27958:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "27952:5:1"
},
"nodeType": "YulFunctionCall",
"src": "27952:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27942:6:1"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27914:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27924:6:1",
"type": ""
}
],
"src": "27857:114:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28035:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28046:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28062:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "28056:5:1"
},
"nodeType": "YulFunctionCall",
"src": "28056:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28046:6:1"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28018:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28028:6:1",
"type": ""
}
],
"src": "27977:98:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28140:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28151:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28167:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "28161:5:1"
},
"nodeType": "YulFunctionCall",
"src": "28161:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28151:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28123:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28133:6:1",
"type": ""
}
],
"src": "28081:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28261:38:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28271:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "28283:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28288:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28279:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28279:14:1"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "28271:4:1"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "28248:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "28256:4:1",
"type": ""
}
],
"src": "28186:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28416:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28433:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28438:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28426:6:1"
},
"nodeType": "YulFunctionCall",
"src": "28426:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "28426:19:1"
},
{
"nodeType": "YulAssignment",
"src": "28454:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28473:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28478:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28469:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28469:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "28454:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28388:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28393:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "28404:11:1",
"type": ""
}
],
"src": "28305:184:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28590:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28607:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28612:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28600:6:1"
},
"nodeType": "YulFunctionCall",
"src": "28600:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "28600:19:1"
},
{
"nodeType": "YulAssignment",
"src": "28628:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28647:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28652:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28643:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28643:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "28628:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28562:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28567:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "28578:11:1",
"type": ""
}
],
"src": "28495:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28765:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28782:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "28787:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28775:6:1"
},
"nodeType": "YulFunctionCall",
"src": "28775:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "28775:19:1"
},
{
"nodeType": "YulAssignment",
"src": "28803:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28822:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28827:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28818:3:1"
},
"nodeType": "YulFunctionCall",
"src": "28818:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "28803:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28737:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28742:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "28753:11:1",
"type": ""
}
],
"src": "28669:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28958:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28968:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "28983:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "28968:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "28930:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "28935:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "28946:11:1",
"type": ""
}
],
"src": "28844:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29042:261:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29052:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29075:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29057:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29057:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29052:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "29086:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29109:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29091:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29091:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29086:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "29249:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "29251:16:1"
},
"nodeType": "YulFunctionCall",
"src": "29251:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "29251:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29170:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29177:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29245:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "29173:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29173:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "29167:2:1"
},
"nodeType": "YulFunctionCall",
"src": "29167:81:1"
},
"nodeType": "YulIf",
"src": "29164:2:1"
},
{
"nodeType": "YulAssignment",
"src": "29281:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29292:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29295:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29288:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29288:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "29281:3:1"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "29029:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "29032:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "29038:3:1",
"type": ""
}
],
"src": "28998:305:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29351:143:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29361:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29384:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29366:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29366:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29361:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "29395:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29418:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29400:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29400:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29395:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "29442:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "29444:16:1"
},
"nodeType": "YulFunctionCall",
"src": "29444:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "29444:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29439:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29432:6:1"
},
"nodeType": "YulFunctionCall",
"src": "29432:9:1"
},
"nodeType": "YulIf",
"src": "29429:2:1"
},
{
"nodeType": "YulAssignment",
"src": "29474:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29483:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29486:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "29479:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29479:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "29474:1:1"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "29340:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "29343:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "29349:1:1",
"type": ""
}
],
"src": "29309:185:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29548:300:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29558:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29581:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29563:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29563:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29558:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "29592:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29615:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29597:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29597:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29592:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "29790:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "29792:16:1"
},
"nodeType": "YulFunctionCall",
"src": "29792:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "29792:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29702:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29695:6:1"
},
"nodeType": "YulFunctionCall",
"src": "29695:9:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29688:6:1"
},
"nodeType": "YulFunctionCall",
"src": "29688:17:1"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29710:1:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29717:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29785:1:1"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "29713:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29713:74:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "29707:2:1"
},
"nodeType": "YulFunctionCall",
"src": "29707:81:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "29684:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29684:105:1"
},
"nodeType": "YulIf",
"src": "29681:2:1"
},
{
"nodeType": "YulAssignment",
"src": "29822:20:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29837:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29840:1:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "29833:3:1"
},
"nodeType": "YulFunctionCall",
"src": "29833:9:1"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "29822:7:1"
}
]
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "29531:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "29534:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "29540:7:1",
"type": ""
}
],
"src": "29500:348:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29899:146:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29909:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29932:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29914:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29914:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29909:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "29943:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29966:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29948:17:1"
},
"nodeType": "YulFunctionCall",
"src": "29948:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29943:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "29990:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "29992:16:1"
},
"nodeType": "YulFunctionCall",
"src": "29992:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "29992:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "29984:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "29987:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "29981:2:1"
},
"nodeType": "YulFunctionCall",
"src": "29981:8:1"
},
"nodeType": "YulIf",
"src": "29978:2:1"
},
{
"nodeType": "YulAssignment",
"src": "30022:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "30034:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "30037:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "30030:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30030:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "30022:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "29885:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "29888:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "29894:4:1",
"type": ""
}
],
"src": "29854:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30096:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30106:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30135:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "30117:17:1"
},
"nodeType": "YulFunctionCall",
"src": "30117:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "30106:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30078:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "30088:7:1",
"type": ""
}
],
"src": "30051:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30195:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30205:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30230:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "30223:6:1"
},
"nodeType": "YulFunctionCall",
"src": "30223:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "30216:6:1"
},
"nodeType": "YulFunctionCall",
"src": "30216:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "30205:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30177:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "30187:7:1",
"type": ""
}
],
"src": "30153:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30293:105:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30303:89:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30318:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30325:66:1",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "30314:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30314:78:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "30303:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30275:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "30285:7:1",
"type": ""
}
],
"src": "30249:149:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30449:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30459:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30474:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30481:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "30470:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30470:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "30459:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30431:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "30441:7:1",
"type": ""
}
],
"src": "30404:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30581:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30591:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "30602:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "30591:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30563:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "30573:7:1",
"type": ""
}
],
"src": "30536:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30670:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "30693:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "30698:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30703:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "30680:12:1"
},
"nodeType": "YulFunctionCall",
"src": "30680:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "30680:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "30751:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30756:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30747:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30747:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30765:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30740:6:1"
},
"nodeType": "YulFunctionCall",
"src": "30740:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "30740:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "30652:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "30657:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "30662:6:1",
"type": ""
}
],
"src": "30619:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30828:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "30838:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "30847:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "30842:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "30907:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "30932:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "30937:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30928:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30928:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "30951:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "30956:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30947:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30947:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "30941:5:1"
},
"nodeType": "YulFunctionCall",
"src": "30941:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30921:6:1"
},
"nodeType": "YulFunctionCall",
"src": "30921:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "30921:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "30868:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30871:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "30865:2:1"
},
"nodeType": "YulFunctionCall",
"src": "30865:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "30879:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30881:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "30890:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30893:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30886:3:1"
},
"nodeType": "YulFunctionCall",
"src": "30886:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "30881:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "30861:3:1",
"statements": []
},
"src": "30857:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31004:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "31054:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31059:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31050:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31068:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31043:6:1"
},
"nodeType": "YulFunctionCall",
"src": "31043:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "31043:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "30985:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "30988:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "30982:2:1"
},
"nodeType": "YulFunctionCall",
"src": "30982:13:1"
},
"nodeType": "YulIf",
"src": "30979:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "30810:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "30815:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "30820:6:1",
"type": ""
}
],
"src": "30779:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31143:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31153:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31167:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31173:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "31163:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31163:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31153:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "31184:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31214:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31220:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "31210:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31210:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "31188:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31261:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31275:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31289:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31297:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "31285:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31285:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31275:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "31241:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "31234:6:1"
},
"nodeType": "YulFunctionCall",
"src": "31234:26:1"
},
"nodeType": "YulIf",
"src": "31231:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31364:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "31378:16:1"
},
"nodeType": "YulFunctionCall",
"src": "31378:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "31378:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "31328:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "31351:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31359:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "31348:2:1"
},
"nodeType": "YulFunctionCall",
"src": "31348:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "31325:2:1"
},
"nodeType": "YulFunctionCall",
"src": "31325:38:1"
},
"nodeType": "YulIf",
"src": "31322:2:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "31127:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "31136:6:1",
"type": ""
}
],
"src": "31092:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31461:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "31471:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31493:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "31523:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "31501:21:1"
},
"nodeType": "YulFunctionCall",
"src": "31501:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31489:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31489:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "31475:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31640:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "31642:16:1"
},
"nodeType": "YulFunctionCall",
"src": "31642:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "31642:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "31583:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31595:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31580:2:1"
},
"nodeType": "YulFunctionCall",
"src": "31580:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "31619:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31631:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "31616:2:1"
},
"nodeType": "YulFunctionCall",
"src": "31616:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "31577:2:1"
},
"nodeType": "YulFunctionCall",
"src": "31577:62:1"
},
"nodeType": "YulIf",
"src": "31574:2:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31678:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "31682:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31671:6:1"
},
"nodeType": "YulFunctionCall",
"src": "31671:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "31671:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31447:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "31455:4:1",
"type": ""
}
],
"src": "31418:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31748:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31758:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31785:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31767:17:1"
},
"nodeType": "YulFunctionCall",
"src": "31767:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31758:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31881:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "31883:16:1"
},
"nodeType": "YulFunctionCall",
"src": "31883:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "31883:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31806:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31813:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "31803:2:1"
},
"nodeType": "YulFunctionCall",
"src": "31803:77:1"
},
"nodeType": "YulIf",
"src": "31800:2:1"
},
{
"nodeType": "YulAssignment",
"src": "31912:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31923:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31930:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31919:3:1"
},
"nodeType": "YulFunctionCall",
"src": "31919:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "31912:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "31734:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "31744:3:1",
"type": ""
}
],
"src": "31705:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31978:142:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31988:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32011:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "31993:17:1"
},
"nodeType": "YulFunctionCall",
"src": "31993:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "31988:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32022:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32045:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32027:17:1"
},
"nodeType": "YulFunctionCall",
"src": "32027:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32022:1:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32069:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "32071:16:1"
},
"nodeType": "YulFunctionCall",
"src": "32071:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "32071:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32066:1:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32059:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32059:9:1"
},
"nodeType": "YulIf",
"src": "32056:2:1"
},
{
"nodeType": "YulAssignment",
"src": "32100:14:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "32109:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "32112:1:1"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "32105:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32105:9:1"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "32100:1:1"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "31967:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "31970:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "31976:1:1",
"type": ""
}
],
"src": "31944:176:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32154:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32171:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32174:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32164:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32164:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "32164:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32268:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32271:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32261:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32261:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32261:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32292:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32295:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32285:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32285:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32285:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "32126:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32340:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32357:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32360:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32350:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32350:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "32350:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32454:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32457:4:1",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32447:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32447:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32447:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32478:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32481:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32471:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32471:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32471:15:1"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "32312:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32526:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32543:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32546:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32536:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32536:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "32536:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32640:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32643:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32633:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32633:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32633:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32664:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32667:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32657:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32657:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32657:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "32498:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32712:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32729:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32732:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32722:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32722:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "32722:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32826:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32829:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32819:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32819:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32819:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32850:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32853:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32843:6:1"
},
"nodeType": "YulFunctionCall",
"src": "32843:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "32843:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "32684:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32918:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32928:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32946:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32953:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32942:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32942:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32962:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "32958:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32958:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "32938:3:1"
},
"nodeType": "YulFunctionCall",
"src": "32938:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "32928:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32901:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "32911:6:1",
"type": ""
}
],
"src": "32870:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33084:124:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33106:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33114:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33102:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33102:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "33118:34:1",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33095:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33095:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "33095:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33174:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33182:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33170:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33170:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "33187:13:1",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33163:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33163:38:1"
},
"nodeType": "YulExpressionStatement",
"src": "33163:38:1"
}
]
},
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33076:6:1",
"type": ""
}
],
"src": "32978:230:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33320:131:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33342:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33350:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33338:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33338:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "33354:34:1",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33331:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33331:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "33331:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33410:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33418:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33406:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33406:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "33423:20:1",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33399:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33399:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "33399:45:1"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33312:6:1",
"type": ""
}
],
"src": "33214:237:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33563:119:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33585:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33593:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33581:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33581:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "33597:34:1",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33574:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33574:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "33574:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33653:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33661:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33649:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33649:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "33666:8:1",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33642:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33642:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "33642:33:1"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33555:6:1",
"type": ""
}
],
"src": "33457:225:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33794:72:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33816:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33824:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33812:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33812:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "33828:30:1",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33805:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33805:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "33805:54:1"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33786:6:1",
"type": ""
}
],
"src": "33688:178:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33978:117:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34000:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34008:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33996:3:1"
},
"nodeType": "YulFunctionCall",
"src": "33996:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34012:34:1",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33989:6:1"
},
"nodeType": "YulFunctionCall",
"src": "33989:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "33989:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34068:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34076:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34064:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34064:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34081:6:1",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34057:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34057:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "34057:31:1"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33970:6:1",
"type": ""
}
],
"src": "33872:223:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34207:69:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34229:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34237:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34225:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34241:27:1",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34218:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34218:51:1"
},
"nodeType": "YulExpressionStatement",
"src": "34218:51:1"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34199:6:1",
"type": ""
}
],
"src": "34101:175:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34388:125:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34410:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34418:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34406:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34406:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34422:34:1",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34399:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34399:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "34399:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34478:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34486:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34474:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34474:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34491:14:1",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34467:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34467:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "34467:39:1"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34380:6:1",
"type": ""
}
],
"src": "34282:231:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34625:137:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34647:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34655:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34643:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34643:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34659:34:1",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34636:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34636:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "34636:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34715:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34723:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34711:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34711:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34728:26:1",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34704:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34704:51:1"
},
"nodeType": "YulExpressionStatement",
"src": "34704:51:1"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34617:6:1",
"type": ""
}
],
"src": "34519:243:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34874:123:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34896:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34904:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34892:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34892:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34908:34:1",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34885:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34885:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "34885:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34964:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34972:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34960:3:1"
},
"nodeType": "YulFunctionCall",
"src": "34960:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "34977:12:1",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34953:6:1"
},
"nodeType": "YulFunctionCall",
"src": "34953:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "34953:37:1"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34866:6:1",
"type": ""
}
],
"src": "34768:229:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35109:122:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35131:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35139:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35127:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35127:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "35143:34:1",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35120:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35120:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "35120:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35199:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35207:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35195:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "35212:11:1",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35188:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35188:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "35188:36:1"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35101:6:1",
"type": ""
}
],
"src": "35003:228:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35343:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35365:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35373:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35361:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35361:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "35377:34:1",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35354:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35354:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "35354:58:1"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35335:6:1",
"type": ""
}
],
"src": "35237:182:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35531:125:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35553:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35561:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35549:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35549:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "35565:34:1",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35542:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35542:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "35542:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35621:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35629:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35617:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35617:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "35634:14:1",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35610:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35610:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "35610:39:1"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35523:6:1",
"type": ""
}
],
"src": "35425:231:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35768:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35790:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35798:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35786:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35786:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "35802:34:1",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35779:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35779:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "35779:58:1"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35760:6:1",
"type": ""
}
],
"src": "35662:182:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35956:122:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35978:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35986:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35974:3:1"
},
"nodeType": "YulFunctionCall",
"src": "35974:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "35990:34:1",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35967:6:1"
},
"nodeType": "YulFunctionCall",
"src": "35967:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "35967:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36046:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36054:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36042:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36042:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36059:11:1",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36035:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36035:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "36035:36:1"
}
]
},
"name": "store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35948:6:1",
"type": ""
}
],
"src": "35850:228:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36190:128:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36212:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36220:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36208:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36208:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36224:34:1",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36201:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36201:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "36201:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36280:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36288:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36276:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36276:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36293:17:1",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36269:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36269:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "36269:42:1"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36182:6:1",
"type": ""
}
],
"src": "36084:234:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36430:114:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36452:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36460:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36448:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36448:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36464:34:1",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36441:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36441:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "36441:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36520:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36528:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36516:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36516:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36533:3:1",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36509:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36509:28:1"
},
"nodeType": "YulExpressionStatement",
"src": "36509:28:1"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36422:6:1",
"type": ""
}
],
"src": "36324:220:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36656:130:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36678:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36686:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36674:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36674:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36690:34:1",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36667:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36667:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "36667:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36754:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36742:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36759:19:1",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36735:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36735:44:1"
},
"nodeType": "YulExpressionStatement",
"src": "36735:44:1"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36648:6:1",
"type": ""
}
],
"src": "36550:236:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36898:125:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36920:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36928:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36916:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36916:14:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "36932:34:1",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36909:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36909:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "36909:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36988:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36996:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36984:3:1"
},
"nodeType": "YulFunctionCall",
"src": "36984:15:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "37001:14:1",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36977:6:1"
},
"nodeType": "YulFunctionCall",
"src": "36977:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "36977:39:1"
}
]
},
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36890:6:1",
"type": ""
}
],
"src": "36792:231:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37072:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "37129:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37138:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37141:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "37131:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37131:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "37131:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37095:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37120:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "37102:17:1"
},
"nodeType": "YulFunctionCall",
"src": "37102:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "37092:2:1"
},
"nodeType": "YulFunctionCall",
"src": "37092:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37085:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37085:43:1"
},
"nodeType": "YulIf",
"src": "37082:2:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37065:5:1",
"type": ""
}
],
"src": "37029:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37197:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "37251:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37260:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37263:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "37253:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37253:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "37253:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37220:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37242:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "37227:14:1"
},
"nodeType": "YulFunctionCall",
"src": "37227:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "37217:2:1"
},
"nodeType": "YulFunctionCall",
"src": "37217:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37210:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37210:40:1"
},
"nodeType": "YulIf",
"src": "37207:2:1"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37190:5:1",
"type": ""
}
],
"src": "37157:116:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37321:78:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "37377:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37386:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37389:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "37379:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37379:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "37379:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37344:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37368:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "37351:16:1"
},
"nodeType": "YulFunctionCall",
"src": "37351:23:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "37341:2:1"
},
"nodeType": "YulFunctionCall",
"src": "37341:34:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37334:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37334:42:1"
},
"nodeType": "YulIf",
"src": "37331:2:1"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37314:5:1",
"type": ""
}
],
"src": "37279:120:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37448:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "37505:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37514:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37517:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "37507:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37507:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "37507:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37471:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "37496:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37478:17:1"
},
"nodeType": "YulFunctionCall",
"src": "37478:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "37468:2:1"
},
"nodeType": "YulFunctionCall",
"src": "37468:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "37461:6:1"
},
"nodeType": "YulFunctionCall",
"src": "37461:43:1"
},
"nodeType": "YulIf",
"src": "37458:2:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "37441:5:1",
"type": ""
}
],
"src": "37405:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n 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(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bool(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encodeUpdatedPos_t_uint256_to_t_uint256(value0, pos) -> updatedPos {\n abi_encode_t_uint256_to_t_uint256(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n // string -> string\n function abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> ret {\n let slotValue := sload(value)\n let length := extract_byte_array_length(slotValue)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n switch and(slotValue, 1)\n case 0 {\n // short byte array\n mstore(pos, and(slotValue, not(0xff)))\n ret := add(pos, length)\n }\n case 1 {\n // long byte array\n let dataPos := array_dataslot_t_string_storage(value)\n let i := 0\n for { } lt(i, length) { i := add(i, 0x20) } {\n mstore(add(pos, i), sload(dataPos))\n dataPos := add(dataPos, 1)\n }\n ret := add(pos, length)\n }\n }\n\n function abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value2, value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n pos := abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value2, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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_bytes_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_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_dataslot_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function 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 increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: owner index ou\")\n\n mstore(add(memPtr, 32), \"t of bounds\")\n\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function store_literal_in_memory_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer of token that i\")\n\n mstore(add(memPtr, 32), \"s not own\")\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner nor approved\")\n\n }\n\n function store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: global index o\")\n\n mstore(add(memPtr, 32), \"ut of bounds\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040526004361061020f5760003560e01c806355f804b311610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461077f578063d936547e146107aa578063da3ef23f146107e7578063e985e9c514610810578063f2fde38b1461084d5761020f565b8063a22cb465146106c5578063b88d4fde146106ee578063c668286214610717578063c87b56dd146107425761020f565b806370a08231116100e757806370a08231146105f2578063715018a61461062f5780637f00c7a6146106465780638da5cb5b1461066f57806395d89b411461069a5761020f565b806355f804b3146105365780635c975abb1461055f5780636352211e1461058a5780636c0360eb146105c75761020f565b80632f745c591161019b57806342842e0e1161016a57806342842e0e14610441578063438b63001461046a57806344a0d68a146104a75780634a4c560d146104d05780634f6ccce7146104f95761020f565b80632f745c59146103b557806330cc7ae0146103f25780633ccfd60b1461041b57806340c10f19146104255761020f565b8063095ea7b3116101e2578063095ea7b3146102e257806313faede61461030b57806318160ddd14610336578063239c70ae1461036157806323b872dd1461038c5761020f565b806301ffc9a71461021457806302329a291461025157806306fdde031461027a578063081812fc146102a5575b600080fd5b34801561022057600080fd5b5061023b600480360381019061023691906131cd565b610876565b604051610248919061378d565b60405180910390f35b34801561025d57600080fd5b50610278600480360381019061027391906131a4565b6108f0565b005b34801561028657600080fd5b5061028f610989565b60405161029c91906137a8565b60405180910390f35b3480156102b157600080fd5b506102cc60048036038101906102c79190613260565b610a1b565b6040516102d99190613704565b60405180910390f35b3480156102ee57600080fd5b5061030960048036038101906103049190613168565b610aa0565b005b34801561031757600080fd5b50610320610bb8565b60405161032d9190613a0a565b60405180910390f35b34801561034257600080fd5b5061034b610bbe565b6040516103589190613a0a565b60405180910390f35b34801561036d57600080fd5b50610376610bcb565b6040516103839190613a0a565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae9190613062565b610bd1565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613168565b610c31565b6040516103e99190613a0a565b60405180910390f35b3480156103fe57600080fd5b5061041960048036038101906104149190612ffd565b610cd6565b005b610423610dad565b005b61043f600480360381019061043a9190613168565b610e69565b005b34801561044d57600080fd5b5061046860048036038101906104639190613062565b610faf565b005b34801561047657600080fd5b50610491600480360381019061048c9190612ffd565b610fcf565b60405161049e919061376b565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613260565b6110c9565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612ffd565b61114f565b005b34801561050557600080fd5b50610520600480360381019061051b9190613260565b611226565b60405161052d9190613a0a565b60405180910390f35b34801561054257600080fd5b5061055d6004803603810190610558919061321f565b6112bd565b005b34801561056b57600080fd5b50610574611353565b604051610581919061378d565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613260565b611366565b6040516105be9190613704565b60405180910390f35b3480156105d357600080fd5b506105dc611418565b6040516105e991906137a8565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612ffd565b6114a6565b6040516106269190613a0a565b60405180910390f35b34801561063b57600080fd5b5061064461155e565b005b34801561065257600080fd5b5061066d60048036038101906106689190613260565b6115e6565b005b34801561067b57600080fd5b5061068461166c565b6040516106919190613704565b60405180910390f35b3480156106a657600080fd5b506106af611696565b6040516106bc91906137a8565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e7919061312c565b611728565b005b3480156106fa57600080fd5b50610715600480360381019061071091906130b1565b6118a9565b005b34801561072357600080fd5b5061072c61190b565b60405161073991906137a8565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190613260565b611999565b60405161077691906137a8565b60405180910390f35b34801561078b57600080fd5b50610794611a43565b6040516107a19190613a0a565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190612ffd565b611a49565b6040516107de919061378d565b60405180910390f35b3480156107f357600080fd5b5061080e6004803603810190610809919061321f565b611a69565b005b34801561081c57600080fd5b5061083760048036038101906108329190613026565b611aff565b604051610844919061378d565b60405180910390f35b34801561085957600080fd5b50610874600480360381019061086f9190612ffd565b611b93565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108e957506108e882611ca3565b5b9050919050565b6108f8611d85565b73ffffffffffffffffffffffffffffffffffffffff1661091661166c565b73fffffffffffffffffffffffffff
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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