Created
September 25, 2022 08:18
-
-
Save ankitzm/aab36f91fb12ce3c094b4b3a41a5e553 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) | |
pragma solidity ^0.8.0; | |
import "./IERC721.sol"; | |
import "./IERC721Receiver.sol"; | |
import "./extensions/IERC721Metadata.sol"; | |
import "../../utils/Address.sol"; | |
import "../../utils/Context.sol"; | |
import "../../utils/Strings.sol"; | |
import "../../utils/introspection/ERC165.sol"; | |
/** | |
* @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: address zero is not a valid owner"); | |
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: invalid token ID"); | |
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) { | |
_requireMinted(tokenId); | |
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 overridden 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 token owner nor approved for all" | |
); | |
_approve(to, tokenId); | |
} | |
/** | |
* @dev See {IERC721-getApproved}. | |
*/ | |
function getApproved(uint256 tokenId) public view virtual override returns (address) { | |
_requireMinted(tokenId); | |
return _tokenApprovals[tokenId]; | |
} | |
/** | |
* @dev See {IERC721-setApprovalForAll}. | |
*/ | |
function setApprovalForAll(address operator, bool approved) public virtual override { | |
_setApprovalForAll(_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: caller is not token 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: caller is not token 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) { | |
address owner = ERC721.ownerOf(tokenId); | |
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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); | |
_afterTokenTransfer(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); | |
_afterTokenTransfer(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 from incorrect owner"); | |
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); | |
_afterTokenTransfer(from, to, tokenId); | |
} | |
/** | |
* @dev Approve `to` to operate on `tokenId` | |
* | |
* Emits an {Approval} event. | |
*/ | |
function _approve(address to, uint256 tokenId) internal virtual { | |
_tokenApprovals[tokenId] = to; | |
emit Approval(ERC721.ownerOf(tokenId), to, tokenId); | |
} | |
/** | |
* @dev Approve `operator` to operate on all of `owner` tokens | |
* | |
* Emits an {ApprovalForAll} event. | |
*/ | |
function _setApprovalForAll( | |
address owner, | |
address operator, | |
bool approved | |
) internal virtual { | |
require(owner != operator, "ERC721: approve to caller"); | |
_operatorApprovals[owner][operator] = approved; | |
emit ApprovalForAll(owner, operator, approved); | |
} | |
/** | |
* @dev Reverts if the `tokenId` has not been minted yet. | |
*/ | |
function _requireMinted(uint256 tokenId) internal view virtual { | |
require(_exists(tokenId), "ERC721: invalid token ID"); | |
} | |
/** | |
* @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 { | |
/// @solidity memory-safe-assembly | |
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 {} | |
/** | |
* @dev Hook that is called after any transfer of tokens. This includes | |
* minting and burning. | |
* | |
* Calling conditions: | |
* | |
* - when `from` and `to` are both non-zero. | |
* - `from` and `to` are never both zero. | |
* | |
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. | |
*/ | |
function _afterTokenTransfer( | |
address from, | |
address to, | |
uint256 tokenId | |
) internal virtual {} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol) | |
pragma solidity ^0.8.0; | |
import "../ERC721.sol"; | |
/** | |
* @dev ERC721 token with storage based token URI management. | |
*/ | |
abstract contract ERC721URIStorage is ERC721 { | |
using Strings for uint256; | |
// Optional mapping for token URIs | |
mapping(uint256 => string) private _tokenURIs; | |
/** | |
* @dev See {IERC721Metadata-tokenURI}. | |
*/ | |
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { | |
_requireMinted(tokenId); | |
string memory _tokenURI = _tokenURIs[tokenId]; | |
string memory base = _baseURI(); | |
// If there is no base URI, return the token URI. | |
if (bytes(base).length == 0) { | |
return _tokenURI; | |
} | |
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). | |
if (bytes(_tokenURI).length > 0) { | |
return string(abi.encodePacked(base, _tokenURI)); | |
} | |
return super.tokenURI(tokenId); | |
} | |
/** | |
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`. | |
* | |
* Requirements: | |
* | |
* - `tokenId` must exist. | |
*/ | |
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { | |
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); | |
_tokenURIs[tokenId] = _tokenURI; | |
} | |
/** | |
* @dev See {ERC721-_burn}. This override additionally checks to see if a | |
* token-specific URI was set for the token, and if so, it deletes the token URI from | |
* the storage mapping. | |
*/ | |
function _burn(uint256 tokenId) internal virtual override { | |
super._burn(tokenId); | |
if (bytes(_tokenURIs[tokenId]).length != 0) { | |
delete _tokenURIs[tokenId]; | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) | |
pragma solidity ^0.8.0; | |
import "../IERC721.sol"; | |
/** | |
* @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); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) | |
pragma solidity ^0.8.0; | |
import "../../utils/introspection/IERC165.sol"; | |
/** | |
* @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`. | |
* | |
* 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; | |
/** | |
* @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 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 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 the account approved for `tokenId` token. | |
* | |
* Requirements: | |
* | |
* - `tokenId` must exist. | |
*/ | |
function getApproved(uint256 tokenId) external view returns (address operator); | |
/** | |
* @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); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`. | |
*/ | |
function onERC721Received( | |
address operator, | |
address from, | |
uint256 tokenId, | |
bytes calldata data | |
) external returns (bytes4); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) | |
pragma solidity ^0.8.1; | |
/** | |
* @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 | |
* ==== | |
* | |
* [IMPORTANT] | |
* ==== | |
* You shouldn't rely on `isContract` to protect against flash loan attacks! | |
* | |
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets | |
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract | |
* constructor. | |
* ==== | |
*/ | |
function isContract(address account) internal view returns (bool) { | |
// This method relies on extcodesize/address.code.length, which returns 0 | |
// for contracts in construction, since the code is only stored at the end | |
// of the constructor execution. | |
return account.code.length > 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 | |
/// @solidity memory-safe-assembly | |
assembly { | |
let returndata_size := mload(returndata) | |
revert(add(32, returndata), returndata_size) | |
} | |
} else { | |
revert(errorMessage); | |
} | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (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; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @title Counters | |
* @author Matt Condon (@shrugs) | |
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number | |
* of elements in a mapping, issuing ERC721 ids, or counting request ids. | |
* | |
* Include with `using Counters for Counters.Counter;` | |
*/ | |
library Counters { | |
struct Counter { | |
// This variable should never be directly accessed by users of the library: interactions must be restricted to | |
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add | |
// this feature: see https://github.com/ethereum/solidity/issues/4637 | |
uint256 _value; // default: 0 | |
} | |
function current(Counter storage counter) internal view returns (uint256) { | |
return counter._value; | |
} | |
function increment(Counter storage counter) internal { | |
unchecked { | |
counter._value += 1; | |
} | |
} | |
function decrement(Counter storage counter) internal { | |
uint256 value = counter._value; | |
require(value > 0, "Counter: decrement overflow"); | |
unchecked { | |
counter._value = value - 1; | |
} | |
} | |
function reset(Counter storage counter) internal { | |
counter._value = 0; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) | |
pragma solidity ^0.8.0; | |
import "./IERC165.sol"; | |
/** | |
* @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; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts v4.4.1 (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); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) | |
pragma solidity ^0.8.0; | |
/** | |
* @dev String operations. | |
*/ | |
library Strings { | |
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; | |
uint8 private constant _ADDRESS_LENGTH = 20; | |
/** | |
* @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); | |
} | |
/** | |
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. | |
*/ | |
function toHexString(address addr) internal pure returns (string memory) { | |
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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 | |
}, | |
"goerli:5": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"Custom": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
} | |
}, | |
"data": { | |
"bytecode": { | |
"functionDebugData": { | |
"@_1828": { | |
"entryPoint": null, | |
"id": 1828, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"@_62": { | |
"entryPoint": null, | |
"id": 62, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@encode_1955": { | |
"entryPoint": 320, | |
"id": 1955, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 925, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 1064, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 1103, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 1142, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 1181, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_packed_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_t_stringliteral_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
"entryPoint": 1220, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_packed_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
"entryPoint": 1269, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_dataslot_t_string_storage": { | |
"entryPoint": 1307, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 1328, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_add_t_uint256": { | |
"entryPoint": 1339, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_div_t_uint256": { | |
"entryPoint": 1432, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_mul_t_uint256": { | |
"entryPoint": 1488, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 1585, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"extract_byte_array_length": { | |
"entryPoint": 1595, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"panic_error_0x11": { | |
"entryPoint": 1649, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x12": { | |
"entryPoint": 1696, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x22": { | |
"entryPoint": 1743, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x41": { | |
"entryPoint": 1790, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703": { | |
"entryPoint": 1837, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc": { | |
"entryPoint": 2068, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50": { | |
"entryPoint": 2109, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa": { | |
"entryPoint": 2150, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:7531:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "138:738:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "148:29:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "171:5:13" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nodeType": "YulIdentifier", | |
"src": "165:5:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "165:12:13" | |
}, | |
"variables": [ | |
{ | |
"name": "slotValue", | |
"nodeType": "YulTypedName", | |
"src": "152:9:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "186:50:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "slotValue", | |
"nodeType": "YulIdentifier", | |
"src": "226:9:13" | |
} | |
], | |
"functionName": { | |
"name": "extract_byte_array_length", | |
"nodeType": "YulIdentifier", | |
"src": "200:25:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "200:36:13" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "190:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "245:96:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "329:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "334:6:13" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "252:76:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "252:89:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "245:3:13" | |
} | |
] | |
}, | |
{ | |
"cases": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "390:130:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "443:3:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "slotValue", | |
"nodeType": "YulIdentifier", | |
"src": "452:9:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "467:4:13", | |
"type": "", | |
"value": "0xff" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nodeType": "YulIdentifier", | |
"src": "463:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "463:9:13" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "448:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "448:25:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "436:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "436:38:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "436:38:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "487:23:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "498:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "503:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "494:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "494:16:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulIdentifier", | |
"src": "487:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"nodeType": "YulCase", | |
"src": "383:137:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "388:1:13", | |
"type": "", | |
"value": "0" | |
} | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "536:334:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "581:53:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "628:5:13" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_string_storage", | |
"nodeType": "YulIdentifier", | |
"src": "596:31:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "596:38:13" | |
}, | |
"variables": [ | |
{ | |
"name": "dataPos", | |
"nodeType": "YulTypedName", | |
"src": "585:7:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "647:10:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "656:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "651:1:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "714:110:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "743:3:13" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "748:1:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "739:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "739:11:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "dataPos", | |
"nodeType": "YulIdentifier", | |
"src": "758:7:13" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nodeType": "YulIdentifier", | |
"src": "752:5:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "752:14:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "732:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "732:35:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "732:35:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "784:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "dataPos", | |
"nodeType": "YulIdentifier", | |
"src": "799:7:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "808:1:13", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "795:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "795:15:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "dataPos", | |
"nodeType": "YulIdentifier", | |
"src": "784:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "681:1:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "684:6:13" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "678:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "678:13:13" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "692:21:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "694:17:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "703:1:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "706:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "699:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "699:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "694:1:13" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "674:3:13", | |
"statements": [] | |
}, | |
"src": "670:154:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "837:23:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "848:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "853:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "844:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "844:16:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulIdentifier", | |
"src": "837:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"nodeType": "YulCase", | |
"src": "529:341:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "534:1:13", | |
"type": "", | |
"value": "1" | |
} | |
} | |
], | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slotValue", | |
"nodeType": "YulIdentifier", | |
"src": "361:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "372:1:13", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "357:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "357:17:13" | |
}, | |
"nodeType": "YulSwitch", | |
"src": "350:520:13" | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "119:5:13", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "126:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulTypedName", | |
"src": "134:3:13", | |
"type": "" | |
} | |
], | |
"src": "31:845:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1046:240:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1056:93:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1140:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1145:3:13", | |
"type": "", | |
"value": "186" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "1063:76:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1063:86:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1056:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1247:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703", | |
"nodeType": "YulIdentifier", | |
"src": "1158:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1158:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1158:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1260:20:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1271:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1276:3:13", | |
"type": "", | |
"value": "186" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1267:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1267:13:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "1260:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "1034:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1042:3:13", | |
"type": "" | |
} | |
], | |
"src": "882:404:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1456:238:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1466:92:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1550:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1555:2:13", | |
"type": "", | |
"value": "10" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "1473:76:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1473:85:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1466:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1656:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc", | |
"nodeType": "YulIdentifier", | |
"src": "1567:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1567:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1567:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1669:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1680:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1685:2:13", | |
"type": "", | |
"value": "10" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1676:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1676:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "1669:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "1444:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1452:3:13", | |
"type": "" | |
} | |
], | |
"src": "1292:402:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1864:238:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1874:92:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1958:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1963:2:13", | |
"type": "", | |
"value": "24" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "1881:76:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1881:85:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "1874:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2064:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50", | |
"nodeType": "YulIdentifier", | |
"src": "1975:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1975:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1975:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2077:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2088:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2093:2:13", | |
"type": "", | |
"value": "24" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2084:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2084:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2077:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "1852:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1860:3:13", | |
"type": "" | |
} | |
], | |
"src": "1700:402:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2272:238:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2282:92:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2366:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2371:2:13", | |
"type": "", | |
"value": "29" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "2289:76:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2289:85:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2282:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2472:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa", | |
"nodeType": "YulIdentifier", | |
"src": "2383:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2383:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2383:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2485:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2496:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2501:2:13", | |
"type": "", | |
"value": "29" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2492:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2492:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2485:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "2260:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2268:3:13", | |
"type": "" | |
} | |
], | |
"src": "2108:402:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2907:522:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2918:155:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3069:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "2925:142:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2925:148:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "2918:3:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3083:155:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3234:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "3090:142:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3090:148:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3083:3:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3248:155:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3399:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "3255:142:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3255:148:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3248:3:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3413:10:13", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3420:3:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3413:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_t_stringliteral_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703__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": "2894:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2903:3:13", | |
"type": "" | |
} | |
], | |
"src": "2516:913:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3669:301:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3680:155:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3831:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "3687:142:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3687:148:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3680:3:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3845:99:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "3931:6:13" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3940:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "3852:78:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3852:92:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3845:3:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3954:10:13", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3961:3:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "3954:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "3648:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "3654:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "3665:3:13", | |
"type": "" | |
} | |
], | |
"src": "3435:535:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4030:87:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4040:11:13", | |
"value": { | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "4048:3:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "4040:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4068:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "4071:3:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4061:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4061:14:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4061:14:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4084:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4102:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4105:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "keccak256", | |
"nodeType": "YulIdentifier", | |
"src": "4092:9:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4092:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "4084:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_dataslot_t_string_storage", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulTypedName", | |
"src": "4017:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "4025:4:13", | |
"type": "" | |
} | |
], | |
"src": "3976:141:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4237:34:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4247:18:13", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4262:3:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "4247:11:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "4209:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "4214:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "4225:11:13", | |
"type": "" | |
} | |
], | |
"src": "4123:148:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4321:261:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4331:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4354:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4336:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4336:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4331:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4365:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4388:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4370:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4370:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4365:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4528:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "4530:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4530:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4530:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4449:1:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4456:66:13", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4524:1:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "4452:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4452:74:13" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "4446:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4446:81:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "4443:107:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4560:16:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4571:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4574:1:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4567:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4567:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "4560:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "4308:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "4311:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "4317:3:13", | |
"type": "" | |
} | |
], | |
"src": "4277:305:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4630:143:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4640:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4663:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4645:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4645:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4640:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4674:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4697:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4679:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4679:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4674:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4721:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x12", | |
"nodeType": "YulIdentifier", | |
"src": "4723:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4723:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4723:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4718:1:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4711:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4711:9:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "4708:35:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4753:14:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4762:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4765:1:13" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "4758:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4758:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "r", | |
"nodeType": "YulIdentifier", | |
"src": "4753:1:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_div_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "4619:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "4622:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "r", | |
"nodeType": "YulTypedName", | |
"src": "4628:1:13", | |
"type": "" | |
} | |
], | |
"src": "4588:185:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4827:300:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4837:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4860:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4842:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4842:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4837:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4871:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4894:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4876:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4876:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4871:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5069:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "5071:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5071:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5071:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "4981:1:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4974:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4974:9:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4967:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4967:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "4989:1:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4996:66:13", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "5064:1:13" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "4992:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4992:74:13" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "4986:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4986:81:13" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "4963:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4963:105:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "4960:131:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5101:20:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "5116:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "5119:1:13" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "5112:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5112:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "product", | |
"nodeType": "YulIdentifier", | |
"src": "5101:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_mul_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "4810:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "4813:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "product", | |
"nodeType": "YulTypedName", | |
"src": "4819:7:13", | |
"type": "" | |
} | |
], | |
"src": "4779:348:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5178:32:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5188:16:13", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5199:5:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "5188:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "5160:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "5170:7:13", | |
"type": "" | |
} | |
], | |
"src": "5133:77:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5267:269:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5277:22:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "5291:4:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5297:1:13", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "5287:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5287:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "5277:6:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5308:38:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "5338:4:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5344:1:13", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "5334:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5334:12:13" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulTypedName", | |
"src": "5312:18:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5385:51:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5399:27:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "5413:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5421:4:13", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "5409:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5409:17:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "5399:6:13" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "5365:18:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "5358:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5358:26:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "5355:81:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5488:42:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nodeType": "YulIdentifier", | |
"src": "5502:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5502:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5502:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "5452:18:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "5475:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5483:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "5472:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5472:14:13" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "5449:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5449:38:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "5446:84:13" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "5251:4:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "5260:6:13", | |
"type": "" | |
} | |
], | |
"src": "5216:320:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5570:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5587:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5590:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5580:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5580:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5580:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5684:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5687:4:13", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5677:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5677:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5677:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5708:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5711:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "5701:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5701:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5701:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "5542:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5756:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5773:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5776:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5766:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5766:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5766:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5870:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5873:4:13", | |
"type": "", | |
"value": "0x12" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5863:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5863:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5863:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5894:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5897:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "5887:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5887:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5887:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x12", | |
"nodeType": "YulFunctionDefinition", | |
"src": "5728:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5942:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5959:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5962:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5952:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5952:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5952:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6056:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6059:4:13", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6049:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6049:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6049:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6080:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6083:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "6073:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6073:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6073:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nodeType": "YulFunctionDefinition", | |
"src": "5914:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6128:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6145:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6148:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6138:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6138:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6138:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6242:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6245:4:13", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6235:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6235:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6235:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6266:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6269:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "6259:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6259:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6259:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nodeType": "YulFunctionDefinition", | |
"src": "6100:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6392:551:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "6414:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6422:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6410:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6410:14:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6426:66:13", | |
"type": "", | |
"value": "0x222c20226465736372697074696f6e223a2022546869732069732050726f6f66" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6403:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6403:90:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6403:90:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "6514:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6522:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6510:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6510:15:13" | |
}, | |
{ | |
"hexValue": "2d4f662d4275696c64696e67204e465420666f7220456e67696e656572204861", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "6527:34:13", | |
"type": "", | |
"value": "-Of-Building NFT for Engineer Ha" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6503:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6503:59:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6503:59:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "6583:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6591:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6579:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6579:15:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6596:66:13", | |
"type": "", | |
"value": "0x636b6174686f6e2e204b656570204275696c64696e67202121222c22696d6167" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6572:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6572:91:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6572:91:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "6684:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6692:2:13", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6680:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6680:15:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6697:66:13", | |
"type": "", | |
"value": "0x65223a202268747470733a2f2f6261666b726569627367686d6d647069707068" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6673:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6673:91:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6673:91:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "6785:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6793:3:13", | |
"type": "", | |
"value": "128" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6781:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6781:16:13" | |
}, | |
{ | |
"hexValue": "7a61337932646f7867637937336c6d6b7876677578617636376b676572747161", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "6799:34:13", | |
"type": "", | |
"value": "za3y2doxgcy73lmkxvguxav67kgertqa" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6774:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6774:60:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6774:60:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "6855:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6863:3:13", | |
"type": "", | |
"value": "160" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6851:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6851:16:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6869:66:13", | |
"type": "", | |
"value": "0x34327137703263752e697066732e647765622e6c696e6b2f227d000000000000" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6844:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6844:92:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6844:92:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "6384:6:13", | |
"type": "" | |
} | |
], | |
"src": "6286:657:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7055:108:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "7077:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7085:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7073:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7073:14:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7089:66:13", | |
"type": "", | |
"value": "0x7b226e616d65223a202200000000000000000000000000000000000000000000" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7066:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7066:90:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7066:90:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "7047:6:13", | |
"type": "" | |
} | |
], | |
"src": "6949:214:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7275:68:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "7297:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7305:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7293:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7293:14:13" | |
}, | |
{ | |
"hexValue": "456e67696e656572204861636b73204861636b6174686f6e", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "7309:26:13", | |
"type": "", | |
"value": "Engineer Hacks Hackathon" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7286:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7286:50:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7286:50:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "7267:6:13", | |
"type": "" | |
} | |
], | |
"src": "7169:174:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7455:73:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "7477:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7485:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7473:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7473:14:13" | |
}, | |
{ | |
"hexValue": "646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "7489:31:13", | |
"type": "", | |
"value": "data:application/json;base64," | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7466:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7466:55:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7466:55:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "7447:6:13", | |
"type": "" | |
} | |
], | |
"src": "7349:179:13" | |
} | |
] | |
}, | |
"contents": "{\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_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 186)\n store_literal_in_memory_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703(pos)\n end := add(pos, 186)\n }\n\n function abi_encode_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 10)\n store_literal_in_memory_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc(pos)\n end := add(pos, 10)\n }\n\n function abi_encode_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 24)\n store_literal_in_memory_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50(pos)\n end := add(pos, 24)\n }\n\n function abi_encode_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_to_t_string_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, 29)\n store_literal_in_memory_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa(pos)\n end := add(pos, 29)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_t_stringliteral_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703__to_t_string_memory_ptr_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_stringliteral_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_stringliteral_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function abi_encode_tuple_packed_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_t_string_storage__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_stringliteral_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa_to_t_string_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n pos := abi_encode_t_string_storage_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\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_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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\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 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 store_literal_in_memory_369455ac0ccea9fdce57b497a3b81bb1465a1f72778b06705d385381fbb5b703(memPtr) {\n\n mstore(add(memPtr, 0), 0x222c20226465736372697074696f6e223a2022546869732069732050726f6f66)\n\n mstore(add(memPtr, 32), \"-Of-Building NFT for Engineer Ha\")\n\n mstore(add(memPtr, 64), 0x636b6174686f6e2e204b656570204275696c64696e67202121222c22696d6167)\n\n mstore(add(memPtr, 96), 0x65223a202268747470733a2f2f6261666b726569627367686d6d647069707068)\n\n mstore(add(memPtr, 128), \"za3y2doxgcy73lmkxvguxav67kgertqa\")\n\n mstore(add(memPtr, 160), 0x34327137703263752e697066732e647765622e6c696e6b2f227d000000000000)\n\n }\n\n function store_literal_in_memory_a773e20fe2bdb77cb0a7501a4c05f8a017bb76d7a29840c69b1dbdd75ee042cc(memPtr) {\n\n mstore(add(memPtr, 0), 0x7b226e616d65223a202200000000000000000000000000000000000000000000)\n\n }\n\n function store_literal_in_memory_bac8e993ca966bd2334e521625e509d8fb2916bbfa1af9a5a67771370076ab50(memPtr) {\n\n mstore(add(memPtr, 0), \"Engineer Hacks Hackathon\")\n\n }\n\n function store_literal_in_memory_bccab2d885f86fda81bfd84dd4248d31f8073b473d187111d36536db073076fa(memPtr) {\n\n mstore(add(memPtr, 0), \"data:application/json;base64,\")\n\n }\n\n}\n", | |
"id": 13, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"linkReferences": {}, | |
"object": "6080604052620000396040516020016200001990620004c4565b6040516020818303038152906040526200014060201b62000bb71760201c565b6008908051906020019062000050929190620002ed565b506008604051602001620000659190620004f5565b604051602081830303815290604052600990805190602001906200008b929190620002ed565b503480156200009957600080fd5b506040518060400160405280601181526020017f70726f6f662d6f662d6275696c64696e670000000000000000000000000000008152506040518060400160405280601281526020017f656e67696e6565722d6861636b6174686f6e000000000000000000000000000081525081600090805190602001906200011e929190620002ed565b50806001908051906020019062000137929190620002ed565b5050506200088f565b606060008251905060008114156200016b5760405180602001604052806000815250915050620002e8565b600060036002836200017e91906200053b565b6200018a919062000598565b6004620001989190620005d0565b90506000602082620001ab91906200053b565b67ffffffffffffffff811115620001c757620001c6620006fe565b5b6040519080825280601f01601f191660200182016040528015620001fa5781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016200346c604091399050600181016020830160005b86811015620002a15760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b9050808452600484019350505062000226565b506003860660018114620002be5760028114620002cf57620002da565b613d3d60f01b6002830352620002da565b603d60f81b60018303525b508484525050819450505050505b919050565b828054620002fb906200063b565b90600052602060002090601f0160209004810192826200031f57600085556200036b565b82601f106200033a57805160ff19168380011785556200036b565b828001600101855582156200036b579182015b828111156200036a5782518255916020019190600101906200034d565b5b5090506200037a91906200037e565b5090565b5b80821115620003995760008160009055506001016200037f565b5090565b60008154620003ac816200063b565b620003b8818662000530565b94506001821660008114620003d65760018114620003e8576200041f565b60ff198316865281860193506200041f565b620003f3856200051b565b60005b838110156200041757815481890152600182019150602081019050620003f6565b838801955050505b50505092915050565b60006200043760ba8362000530565b915062000444826200072d565b60ba82019050919050565b60006200045e600a8362000530565b91506200046b8262000814565b600a82019050919050565b60006200048560188362000530565b915062000492826200083d565b601882019050919050565b6000620004ac601d8362000530565b9150620004b98262000866565b601d82019050919050565b6000620004d1826200044f565b9150620004de8262000476565b9150620004eb8262000428565b9150819050919050565b600062000502826200049d565b91506200051082846200039d565b915081905092915050565b60008190508160005260206000209050919050565b600081905092915050565b6000620005488262000631565b9150620005558362000631565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200058d576200058c62000671565b5b828201905092915050565b6000620005a58262000631565b9150620005b28362000631565b925082620005c557620005c4620006a0565b5b828204905092915050565b6000620005dd8262000631565b9150620005ea8362000631565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000626576200062562000671565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200065457607f821691505b602082108114156200066b576200066a620006cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f222c20226465736372697074696f6e223a2022546869732069732050726f6f6660008201527f2d4f662d4275696c64696e67204e465420666f7220456e67696e65657220486160208201527f636b6174686f6e2e204b656570204275696c64696e67202121222c22696d616760408201527f65223a202268747470733a2f2f6261666b726569627367686d6d64706970706860608201527f7a61337932646f7867637937336c6d6b7876677578617636376b67657274716160808201527f34327137703263752e697066732e647765622e6c696e6b2f227d00000000000060a082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f456e67696e656572204861636b73204861636b6174686f6e0000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b612bcd806200089f6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461026f578063b88d4fde1461028b578063c87b56dd146102a7578063e985e9c5146102d7576100ea565b80636352211e146101f157806370a082311461022157806395d89b4114610251576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a557806354ba0f27146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611dc4565b610307565b604051610116919061216d565b60405180910390f35b6101276103e9565b6040516101349190612188565b60405180910390f35b61015760048036038101906101529190611e1e565b61047b565b6040516101649190612106565b60405180910390f35b61018760048036038101906101829190611d84565b6104c1565b005b6101a3600480360381019061019e9190611c6e565b6105d9565b005b6101bf60048036038101906101ba9190611c6e565b610639565b005b6101db60048036038101906101d69190611c01565b610659565b6040516101e8919061234a565b60405180910390f35b61020b60048036038101906102069190611e1e565b61079c565b6040516102189190612106565b60405180910390f35b61023b60048036038101906102369190611c01565b61084e565b604051610248919061234a565b60405180910390f35b610259610906565b6040516102669190612188565b60405180910390f35b61028960048036038101906102849190611d44565b610998565b005b6102a560048036038101906102a09190611cc1565b6109ae565b005b6102c160048036038101906102bc9190611e1e565b610a10565b6040516102ce9190612188565b60405180910390f35b6102f160048036038101906102ec9190611c2e565b610b23565b6040516102fe919061216d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103e257506103e182610d4f565b5b9050919050565b6060600080546103f8906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610424906125c9565b80156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b5050505050905090565b600061048682610db9565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104cc8261079c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906122ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661055c610e04565b73ffffffffffffffffffffffffffffffffffffffff16148061058b575061058a81610585610e04565b610b23565b5b6105ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c19061228a565b60405180910390fd5b6105d48383610e0c565b505050565b6105ea6105e4610e04565b82610ec5565b610629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106209061230a565b60405180910390fd5b610634838383610f5a565b505050565b610654838383604051806020016040528060008152506109ae565b505050565b600073b8b79891abf6957641ab350ed74842878cc06ff573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d49061232a565b60405180910390fd5b60006106e960076111c1565b90506106f583826111cf565b6107898160098054610706906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610732906125c9565b801561077f5780601f106107545761010080835404028352916020019161077f565b820191906000526020600020905b81548152906001019060200180831161076257829003601f168201915b50505050506111ed565b6107936007611261565b80915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c906122ca565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b69061224a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610915906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906125c9565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b6109aa6109a3610e04565b8383611277565b5050565b6109bf6109b9610e04565b83610ec5565b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f59061230a565b60405180910390fd5b610a0a848484846113e4565b50505050565b6060610a1b82610db9565b6000600660008481526020019081526020016000208054610a3b906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a67906125c9565b8015610ab45780601f10610a8957610100808354040283529160200191610ab4565b820191906000526020600020905b815481529060010190602001808311610a9757829003601f168201915b505050505090506000610ac5611440565b9050600081511415610adb578192505050610b1e565b600082511115610b10578082604051602001610af89291906120e2565b60405160208183030381529060405292505050610b1e565b610b1984611457565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000825190506000811415610be05760405180602001604052806000815250915050610d4a565b60006003600283610bf191906123fe565b610bfb9190612454565b6004610c079190612485565b90506000602082610c1891906123fe565b67ffffffffffffffff811115610c3157610c30612762565b5b6040519080825280601f01601f191660200182016040528015610c635781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001612b58604091399050600181016020830160005b86811015610d075760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050610c8e565b506003860660018114610d215760028114610d3157610d3c565b613d3d60f01b6002830352610d3c565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610dc2816114bf565b610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df8906122ca565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e7f8361079c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ed18361079c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f135750610f128185610b23565b5b80610f5157508373ffffffffffffffffffffffffffffffffffffffff16610f398461047b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f7a8261079c565b73ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906121ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110379061220a565b60405180910390fd5b61104b83838361152b565b611056600082610e0c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a691906124df565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110fd91906123fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111bc838383611530565b505050565b600081600001549050919050565b6111e9828260405180602001604052806000815250611535565b5050565b6111f6826114bf565b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c9061226a565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061125c929190611a85565b505050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061222a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d7919061216d565b60405180910390a3505050565b6113ef848484610f5a565b6113fb84848484611590565b61143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906121aa565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061146282610db9565b600061146c611440565b9050600081511161148c57604051806020016040528060008152506114b7565b8061149684611727565b6040516020016114a79291906120e2565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61153f8383611888565b61154c6000848484611590565b61158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611582906121aa565b60405180910390fd5b505050565b60006115b18473ffffffffffffffffffffffffffffffffffffffff16611a62565b1561171a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115da610e04565b8786866040518563ffffffff1660e01b81526004016115fc9493929190612121565b602060405180830381600087803b15801561161657600080fd5b505af192505050801561164757506040513d601f19601f820116820180604052508101906116449190611df1565b60015b6116ca573d8060008114611677576040519150601f19603f3d011682016040523d82523d6000602084013e61167c565b606091505b506000815114156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906121aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061171f565b600190505b949350505050565b6060600082141561176f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611883565b600082905060005b600082146117a157808061178a9061262c565b915050600a8261179a9190612454565b9150611777565b60008167ffffffffffffffff8111156117bd576117bc612762565b5b6040519080825280601f01601f1916602001820160405280156117ef5781602001600182028036833780820191505090505b5090505b6000851461187c5760018261180891906124df565b9150600a856118179190612675565b603061182391906123fe565b60f81b81838151811061183957611838612733565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118759190612454565b94506117f3565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906122aa565b60405180910390fd5b611901816114bf565b15611941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611938906121ea565b60405180910390fd5b61194d6000838361152b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199d91906123fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a5e60008383611530565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611a91906125c9565b90600052602060002090601f016020900481019282611ab35760008555611afa565b82601f10611acc57805160ff1916838001178555611afa565b82800160010185558215611afa579182015b82811115611af9578251825591602001919060010190611ade565b5b509050611b079190611b0b565b5090565b5b80821115611b24576000816000905550600101611b0c565b5090565b6000611b3b611b368461238a565b612365565b905082815260208101848484011115611b5757611b56612796565b5b611b62848285612587565b509392505050565b600081359050611b7981612afb565b92915050565b600081359050611b8e81612b12565b92915050565b600081359050611ba381612b29565b92915050565b600081519050611bb881612b29565b92915050565b600082601f830112611bd357611bd2612791565b5b8135611be3848260208601611b28565b91505092915050565b600081359050611bfb81612b40565b92915050565b600060208284031215611c1757611c166127a0565b5b6000611c2584828501611b6a565b91505092915050565b60008060408385031215611c4557611c446127a0565b5b6000611c5385828601611b6a565b9250506020611c6485828601611b6a565b9150509250929050565b600080600060608486031215611c8757611c866127a0565b5b6000611c9586828701611b6a565b9350506020611ca686828701611b6a565b9250506040611cb786828701611bec565b9150509250925092565b60008060008060808587031215611cdb57611cda6127a0565b5b6000611ce987828801611b6a565b9450506020611cfa87828801611b6a565b9350506040611d0b87828801611bec565b925050606085013567ffffffffffffffff811115611d2c57611d2b61279b565b5b611d3887828801611bbe565b91505092959194509250565b60008060408385031215611d5b57611d5a6127a0565b5b6000611d6985828601611b6a565b9250506020611d7a85828601611b7f565b9150509250929050565b60008060408385031215611d9b57611d9a6127a0565b5b6000611da985828601611b6a565b9250506020611dba85828601611bec565b9150509250929050565b600060208284031215611dda57611dd96127a0565b5b6000611de884828501611b94565b91505092915050565b600060208284031215611e0757611e066127a0565b5b6000611e1584828501611ba9565b91505092915050565b600060208284031215611e3457611e336127a0565b5b6000611e4284828501611bec565b91505092915050565b611e5481612513565b82525050565b611e6381612525565b82525050565b6000611e74826123bb565b611e7e81856123d1565b9350611e8e818560208601612596565b611e97816127a5565b840191505092915050565b6000611ead826123c6565b611eb781856123e2565b9350611ec7818560208601612596565b611ed0816127a5565b840191505092915050565b6000611ee6826123c6565b611ef081856123f3565b9350611f00818560208601612596565b80840191505092915050565b6000611f196032836123e2565b9150611f24826127b6565b604082019050919050565b6000611f3c6025836123e2565b9150611f4782612805565b604082019050919050565b6000611f5f601c836123e2565b9150611f6a82612854565b602082019050919050565b6000611f826024836123e2565b9150611f8d8261287d565b604082019050919050565b6000611fa56019836123e2565b9150611fb0826128cc565b602082019050919050565b6000611fc86029836123e2565b9150611fd3826128f5565b604082019050919050565b6000611feb602e836123e2565b9150611ff682612944565b604082019050919050565b600061200e603e836123e2565b915061201982612993565b604082019050919050565b60006120316020836123e2565b915061203c826129e2565b602082019050919050565b60006120546018836123e2565b915061205f82612a0b565b602082019050919050565b60006120776021836123e2565b915061208282612a34565b604082019050919050565b600061209a602e836123e2565b91506120a582612a83565b604082019050919050565b60006120bd600e836123e2565b91506120c882612ad2565b602082019050919050565b6120dc8161257d565b82525050565b60006120ee8285611edb565b91506120fa8284611edb565b91508190509392505050565b600060208201905061211b6000830184611e4b565b92915050565b60006080820190506121366000830187611e4b565b6121436020830186611e4b565b61215060408301856120d3565b81810360608301526121628184611e69565b905095945050505050565b60006020820190506121826000830184611e5a565b92915050565b600060208201905081810360008301526121a28184611ea2565b905092915050565b600060208201905081810360008301526121c381611f0c565b9050919050565b600060208201905081810360008301526121e381611f2f565b9050919050565b6000602082019050818103600083015261220381611f52565b9050919050565b6000602082019050818103600083015261222381611f75565b9050919050565b6000602082019050818103600083015261224381611f98565b9050919050565b6000602082019050818103600083015261226381611fbb565b9050919050565b6000602082019050818103600083015261228381611fde565b9050919050565b600060208201905081810360008301526122a381612001565b9050919050565b600060208201905081810360008301526122c381612024565b9050919050565b600060208201905081810360008301526122e381612047565b9050919050565b600060208201905081810360008301526123038161206a565b9050919050565b600060208201905081810360008301526123238161208d565b9050919050565b60006020820190508181036000830152612343816120b0565b9050919050565b600060208201905061235f60008301846120d3565b92915050565b600061236f612380565b905061237b82826125fb565b919050565b6000604051905090565b600067ffffffffffffffff8211156123a5576123a4612762565b5b6123ae826127a5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124098261257d565b91506124148361257d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612449576124486126a6565b5b828201905092915050565b600061245f8261257d565b915061246a8361257d565b92508261247a576124796126d5565b5b828204905092915050565b60006124908261257d565b915061249b8361257d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124d4576124d36126a6565b5b828202905092915050565b60006124ea8261257d565b91506124f58361257d565b925082821015612508576125076126a6565b5b828203905092915050565b600061251e8261255d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125b4578082015181840152602081019050612599565b838111156125c3576000848401525b50505050565b600060028204905060018216806125e157607f821691505b602082108114156125f5576125f4612704565b5b50919050565b612604826127a5565b810181811067ffffffffffffffff8211171561262357612622612762565b5b80604052505050565b60006126378261257d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561266a576126696126a6565b5b600182019050919050565b60006126808261257d565b915061268b8361257d565b92508261269b5761269a6126d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b612b0481612513565b8114612b0f57600080fd5b50565b612b1b81612525565b8114612b2657600080fd5b50565b612b3281612531565b8114612b3d57600080fd5b50565b612b498161257d565b8114612b5457600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220fc751f2106dda19664774f40e8086640d45b4d24c598937865a7422e98a9d1a564736f6c634300080700334142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH3 0x39 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x19 SWAP1 PUSH3 0x4C4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH3 0x140 PUSH1 0x20 SHL PUSH3 0xBB7 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x8 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x50 SWAP3 SWAP2 SWAP1 PUSH3 0x2ED JUMP JUMPDEST POP PUSH1 0x8 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x65 SWAP2 SWAP1 PUSH3 0x4F5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x9 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x8B SWAP3 SWAP2 SWAP1 PUSH3 0x2ED JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH3 0x99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x11 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x70726F6F662D6F662D6275696C64696E67000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x656E67696E6565722D6861636B6174686F6E0000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x11E SWAP3 SWAP2 SWAP1 PUSH3 0x2ED JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x137 SWAP3 SWAP2 SWAP1 PUSH3 0x2ED JUMP JUMPDEST POP POP POP PUSH3 0x88F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 MLOAD SWAP1 POP PUSH1 0x0 DUP2 EQ ISZERO PUSH3 0x16B JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP2 POP POP PUSH3 0x2E8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x2 DUP4 PUSH3 0x17E SWAP2 SWAP1 PUSH3 0x53B JUMP JUMPDEST PUSH3 0x18A SWAP2 SWAP1 PUSH3 0x598 JUMP JUMPDEST PUSH1 0x4 PUSH3 0x198 SWAP2 SWAP1 PUSH3 0x5D0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x20 DUP3 PUSH3 0x1AB SWAP2 SWAP1 PUSH3 0x53B JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1C7 JUMPI PUSH3 0x1C6 PUSH3 0x6FE JUMP JUMPDEST 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 PUSH3 0x1FA JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x346C PUSH1 0x40 SWAP2 CODECOPY SWAP1 POP PUSH1 0x1 DUP2 ADD PUSH1 0x20 DUP4 ADD PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH3 0x2A1 JUMPI PUSH1 0x3 DUP2 ADD SWAP1 POP PUSH3 0xFFFFFF DUP2 DUP11 ADD MLOAD AND PUSH1 0x3F DUP2 PUSH1 0x12 SHR AND DUP5 ADD MLOAD DUP1 PUSH1 0x8 SHL SWAP1 POP PUSH1 0xFF PUSH1 0x3F DUP4 PUSH1 0xC SHR AND DUP7 ADD MLOAD AND DUP2 ADD SWAP1 POP DUP1 PUSH1 0x8 SHL SWAP1 POP PUSH1 0xFF PUSH1 0x3F DUP4 PUSH1 0x6 SHR AND DUP7 ADD MLOAD AND DUP2 ADD SWAP1 POP DUP1 PUSH1 0x8 SHL SWAP1 POP PUSH1 0xFF PUSH1 0x3F DUP4 AND DUP7 ADD MLOAD AND DUP2 ADD SWAP1 POP DUP1 PUSH1 0xE0 SHL SWAP1 POP DUP1 DUP5 MSTORE PUSH1 0x4 DUP5 ADD SWAP4 POP POP POP PUSH3 0x226 JUMP JUMPDEST POP PUSH1 0x3 DUP7 MOD PUSH1 0x1 DUP2 EQ PUSH3 0x2BE JUMPI PUSH1 0x2 DUP2 EQ PUSH3 0x2CF JUMPI PUSH3 0x2DA JUMP JUMPDEST PUSH2 0x3D3D PUSH1 0xF0 SHL PUSH1 0x2 DUP4 SUB MSTORE PUSH3 0x2DA JUMP JUMPDEST PUSH1 0x3D PUSH1 0xF8 SHL PUSH1 0x1 DUP4 SUB MSTORE JUMPDEST POP DUP5 DUP5 MSTORE POP POP DUP2 SWAP5 POP POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2FB SWAP1 PUSH3 0x63B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x31F JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x36B JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x33A JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x36B JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x36B JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x36A JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x34D JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x37A SWAP2 SWAP1 PUSH3 0x37E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x399 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x37F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SLOAD PUSH3 0x3AC DUP2 PUSH3 0x63B JUMP JUMPDEST PUSH3 0x3B8 DUP2 DUP7 PUSH3 0x530 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH1 0x0 DUP2 EQ PUSH3 0x3D6 JUMPI PUSH1 0x1 DUP2 EQ PUSH3 0x3E8 JUMPI PUSH3 0x41F JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 DUP7 ADD SWAP4 POP PUSH3 0x41F JUMP JUMPDEST PUSH3 0x3F3 DUP6 PUSH3 0x51B JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x417 JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x3F6 JUMP JUMPDEST DUP4 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x437 PUSH1 0xBA DUP4 PUSH3 0x530 JUMP JUMPDEST SWAP2 POP PUSH3 0x444 DUP3 PUSH3 0x72D JUMP JUMPDEST PUSH1 0xBA DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x45E PUSH1 0xA DUP4 PUSH3 0x530 JUMP JUMPDEST SWAP2 POP PUSH3 0x46B DUP3 PUSH3 0x814 JUMP JUMPDEST PUSH1 0xA DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x485 PUSH1 0x18 DUP4 PUSH3 0x530 JUMP JUMPDEST SWAP2 POP PUSH3 0x492 DUP3 PUSH3 0x83D JUMP JUMPDEST PUSH1 0x18 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4AC PUSH1 0x1D DUP4 PUSH3 0x530 JUMP JUMPDEST SWAP2 POP PUSH3 0x4B9 DUP3 PUSH3 0x866 JUMP JUMPDEST PUSH1 0x1D DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4D1 DUP3 PUSH3 0x44F JUMP JUMPDEST SWAP2 POP PUSH3 0x4DE DUP3 PUSH3 0x476 JUMP JUMPDEST SWAP2 POP PUSH3 0x4EB DUP3 PUSH3 0x428 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x502 DUP3 PUSH3 0x49D JUMP JUMPDEST SWAP2 POP PUSH3 0x510 DUP3 DUP5 PUSH3 0x39D JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP 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 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x548 DUP3 PUSH3 0x631 JUMP JUMPDEST SWAP2 POP PUSH3 0x555 DUP4 PUSH3 0x631 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x58D JUMPI PUSH3 0x58C PUSH3 0x671 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5A5 DUP3 PUSH3 0x631 JUMP JUMPDEST SWAP2 POP PUSH3 0x5B2 DUP4 PUSH3 0x631 JUMP JUMPDEST SWAP3 POP DUP3 PUSH3 0x5C5 JUMPI PUSH3 0x5C4 PUSH3 0x6A0 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5DD DUP3 PUSH3 0x631 JUMP JUMPDEST SWAP2 POP PUSH3 0x5EA DUP4 PUSH3 0x631 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH3 0x626 JUMPI PUSH3 0x625 PUSH3 0x671 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x654 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x66B JUMPI PUSH3 0x66A PUSH3 0x6CF JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST 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 PUSH32 0x222C20226465736372697074696F6E223A2022546869732069732050726F6F66 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x2D4F662D4275696C64696E67204E465420666F7220456E67696E656572204861 PUSH1 0x20 DUP3 ADD MSTORE PUSH32 0x636B6174686F6E2E204B656570204275696C64696E67202121222C22696D6167 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x65223A202268747470733A2F2F6261666B726569627367686D6D647069707068 PUSH1 0x60 DUP3 ADD MSTORE PUSH32 0x7A61337932646F7867637937336C6D6B7876677578617636376B676572747161 PUSH1 0x80 DUP3 ADD MSTORE PUSH32 0x34327137703263752E697066732E647765622E6C696E6B2F227D000000000000 PUSH1 0xA0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x7B226E616D65223A202200000000000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x456E67696E656572204861636B73204861636B6174686F6E0000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x646174613A6170706C69636174696F6E2F6A736F6E3B6261736536342C000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2BCD DUP1 PUSH3 0x89F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x26F JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x28B JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x2A7 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x2D7 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1F1 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x221 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x251 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1A5 JUMPI DUP1 PUSH4 0x54BA0F27 EQ PUSH2 0x1C1 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x1DC4 JUMP JUMPDEST PUSH2 0x307 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x216D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x3E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x2188 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x2106 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x1D84 JUMP JUMPDEST PUSH2 0x4C1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19E SWAP2 SWAP1 PUSH2 0x1C6E JUMP JUMPDEST PUSH2 0x5D9 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1BF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1C6E JUMP JUMPDEST PUSH2 0x639 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1DB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1D6 SWAP2 SWAP1 PUSH2 0x1C01 JUMP JUMPDEST PUSH2 0x659 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E8 SWAP2 SWAP1 PUSH2 0x234A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x206 SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0x79C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x218 SWAP2 SWAP1 PUSH2 0x2106 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x236 SWAP2 SWAP1 PUSH2 0x1C01 JUMP JUMPDEST PUSH2 0x84E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x248 SWAP2 SWAP1 PUSH2 0x234A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x259 PUSH2 0x906 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x266 SWAP2 SWAP1 PUSH2 0x2188 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x289 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x284 SWAP2 SWAP1 PUSH2 0x1D44 JUMP JUMPDEST PUSH2 0x998 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2A5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A0 SWAP2 SWAP1 PUSH2 0x1CC1 JUMP JUMPDEST PUSH2 0x9AE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2C1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BC SWAP2 SWAP1 PUSH2 0x1E1E JUMP JUMPDEST PUSH2 0xA10 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2CE SWAP2 SWAP1 PUSH2 0x2188 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2F1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2EC SWAP2 SWAP1 PUSH2 0x1C2E JUMP JUMPDEST PUSH2 0xB23 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2FE SWAP2 SWAP1 PUSH2 0x216D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x3D2 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x3E2 JUMPI POP PUSH2 0x3E1 DUP3 PUSH2 0xD4F JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3F8 SWAP1 PUSH2 0x25C9 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 0x424 SWAP1 PUSH2 0x25C9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x471 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x446 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x471 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 0x454 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x486 DUP3 PUSH2 0xDB9 JUMP 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 0x4CC DUP3 PUSH2 0x79C JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x53D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x534 SWAP1 PUSH2 0x22EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x55C PUSH2 0xE04 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x58B JUMPI POP PUSH2 0x58A DUP2 PUSH2 0x585 PUSH2 0xE04 JUMP JUMPDEST PUSH2 0xB23 JUMP JUMPDEST JUMPDEST PUSH2 0x5CA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5C1 SWAP1 PUSH2 0x228A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5D4 DUP4 DUP4 PUSH2 0xE0C JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5EA PUSH2 0x5E4 PUSH2 0xE04 JUMP JUMPDEST DUP3 PUSH2 0xEC5 JUMP JUMPDEST PUSH2 0x629 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x620 SWAP1 PUSH2 0x230A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x634 DUP4 DUP4 DUP4 PUSH2 0xF5A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x654 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9AE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xB8B79891ABF6957641AB350ED74842878CC06FF5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6D4 SWAP1 PUSH2 0x232A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x6E9 PUSH1 0x7 PUSH2 0x11C1 JUMP JUMPDEST SWAP1 POP PUSH2 0x6F5 DUP4 DUP3 PUSH2 0x11CF JUMP JUMPDEST PUSH2 0x789 DUP2 PUSH1 0x9 DUP1 SLOAD PUSH2 0x706 SWAP1 PUSH2 0x25C9 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 0x732 SWAP1 PUSH2 0x25C9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x77F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x754 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x77F 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 0x762 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP PUSH2 0x11ED JUMP JUMPDEST PUSH2 0x793 PUSH1 0x7 PUSH2 0x1261 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP 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 0x845 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83C SWAP1 PUSH2 0x22CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x8BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8B6 SWAP1 PUSH2 0x224A 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 PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x915 SWAP1 PUSH2 0x25C9 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 0x941 SWAP1 PUSH2 0x25C9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x98E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x963 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x98E 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 0x971 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9AA PUSH2 0x9A3 PUSH2 0xE04 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1277 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x9BF PUSH2 0x9B9 PUSH2 0xE04 JUMP JUMPDEST DUP4 PUSH2 0xEC5 JUMP JUMPDEST PUSH2 0x9FE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9F5 SWAP1 PUSH2 0x230A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA0A DUP5 DUP5 DUP5 DUP5 PUSH2 0x13E4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA1B DUP3 PUSH2 0xDB9 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0xA3B SWAP1 PUSH2 0x25C9 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 0xA67 SWAP1 PUSH2 0x25C9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xAB4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xA89 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xAB4 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 0xA97 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0xAC5 PUSH2 0x1440 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0xADB JUMPI DUP2 SWAP3 POP POP POP PUSH2 0xB1E JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0xB10 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xAF8 SWAP3 SWAP2 SWAP1 PUSH2 0x20E2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP PUSH2 0xB1E JUMP JUMPDEST PUSH2 0xB19 DUP5 PUSH2 0x1457 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 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 PUSH1 0x60 PUSH1 0x0 DUP3 MLOAD SWAP1 POP PUSH1 0x0 DUP2 EQ ISZERO PUSH2 0xBE0 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP2 POP POP PUSH2 0xD4A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x3 PUSH1 0x2 DUP4 PUSH2 0xBF1 SWAP2 SWAP1 PUSH2 0x23FE JUMP JUMPDEST PUSH2 0xBFB SWAP2 SWAP1 PUSH2 0x2454 JUMP JUMPDEST PUSH1 0x4 PUSH2 0xC07 SWAP2 SWAP1 PUSH2 0x2485 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x20 DUP3 PUSH2 0xC18 SWAP2 SWAP1 PUSH2 0x23FE JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xC31 JUMPI PUSH2 0xC30 PUSH2 0x2762 JUMP JUMPDEST 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 0xC63 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x2B58 PUSH1 0x40 SWAP2 CODECOPY SWAP1 POP PUSH1 0x1 DUP2 ADD PUSH1 0x20 DUP4 ADD PUSH1 0x0 JUMPDEST DUP7 DUP2 LT ISZERO PUSH2 0xD07 JUMPI PUSH1 0x3 DUP2 ADD SWAP1 POP PUSH3 0xFFFFFF DUP2 DUP11 ADD MLOAD AND PUSH1 0x3F DUP2 PUSH1 0x12 SHR AND DUP5 ADD MLOAD DUP1 PUSH1 0x8 SHL SWAP1 POP PUSH1 0xFF PUSH1 0x3F DUP4 PUSH1 0xC SHR AND DUP7 ADD MLOAD AND DUP2 ADD SWAP1 POP DUP1 PUSH1 0x8 SHL SWAP1 POP PUSH1 0xFF PUSH1 0x3F DUP4 PUSH1 0x6 SHR AND DUP7 ADD MLOAD AND DUP2 ADD SWAP1 POP DUP1 PUSH1 0x8 SHL SWAP1 POP PUSH1 0xFF PUSH1 0x3F DUP4 AND DUP7 ADD MLOAD AND DUP2 ADD SWAP1 POP DUP1 PUSH1 0xE0 SHL SWAP1 POP DUP1 DUP5 MSTORE PUSH1 0x4 DUP5 ADD SWAP4 POP POP POP PUSH2 0xC8E JUMP JUMPDEST POP PUSH1 0x3 DUP7 MOD PUSH1 0x1 DUP2 EQ PUSH2 0xD21 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0xD31 JUMPI PUSH2 0xD3C JUMP JUMPDEST PUSH2 0x3D3D PUSH1 0xF0 SHL PUSH1 0x2 DUP4 SUB MSTORE PUSH2 0xD3C JUMP JUMPDEST PUSH1 0x3D PUSH1 0xF8 SHL PUSH1 0x1 DUP4 SUB MSTORE JUMPDEST POP DUP5 DUP5 MSTORE POP POP DUP2 SWAP5 POP 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 0xDC2 DUP2 PUSH2 0x14BF JUMP JUMPDEST PUSH2 0xE01 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDF8 SWAP1 PUSH2 0x22CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 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 0xE7F DUP4 PUSH2 0x79C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xED1 DUP4 PUSH2 0x79C JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xF13 JUMPI POP PUSH2 0xF12 DUP2 DUP6 PUSH2 0xB23 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xF51 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xF39 DUP5 PUSH2 0x47B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xF7A DUP3 PUSH2 0x79C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFC7 SWAP1 PUSH2 0x21CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1040 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1037 SWAP1 PUSH2 0x220A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x104B DUP4 DUP4 DUP4 PUSH2 0x152B JUMP JUMPDEST PUSH2 0x1056 PUSH1 0x0 DUP3 PUSH2 0xE0C 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 0x10A6 SWAP2 SWAP1 PUSH2 0x24DF 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 0x10FD SWAP2 SWAP1 PUSH2 0x23FE 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 PUSH2 0x11BC DUP4 DUP4 DUP4 PUSH2 0x1530 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x11E9 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1535 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x11F6 DUP3 PUSH2 0x14BF JUMP JUMPDEST PUSH2 0x1235 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x122C SWAP1 PUSH2 0x226A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x6 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x125C SWAP3 SWAP2 SWAP1 PUSH2 0x1A85 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x12E6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12DD SWAP1 PUSH2 0x222A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 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 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 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x13D7 SWAP2 SWAP1 PUSH2 0x216D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x13EF DUP5 DUP5 DUP5 PUSH2 0xF5A JUMP JUMPDEST PUSH2 0x13FB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1590 JUMP JUMPDEST PUSH2 0x143A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1431 SWAP1 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1462 DUP3 PUSH2 0xDB9 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x146C PUSH2 0x1440 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x148C JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x14B7 JUMP JUMPDEST DUP1 PUSH2 0x1496 DUP5 PUSH2 0x1727 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x14A7 SWAP3 SWAP2 SWAP1 PUSH2 0x20E2 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 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 POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x153F DUP4 DUP4 PUSH2 0x1888 JUMP JUMPDEST PUSH2 0x154C PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x1590 JUMP JUMPDEST PUSH2 0x158B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1582 SWAP1 PUSH2 0x21AA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x15B1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A62 JUMP JUMPDEST ISZERO PUSH2 0x171A JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x15DA PUSH2 0xE04 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15FC SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2121 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1616 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1647 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 0x1644 SWAP2 SWAP1 PUSH2 0x1DF1 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x16CA JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1677 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 0x167C JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x16C2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16B9 SWAP1 PUSH2 0x21AA 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 0x171F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x176F 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 0x1883 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x17A1 JUMPI DUP1 DUP1 PUSH2 0x178A SWAP1 PUSH2 0x262C JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x179A SWAP2 SWAP1 PUSH2 0x2454 JUMP JUMPDEST SWAP2 POP PUSH2 0x1777 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x17BD JUMPI PUSH2 0x17BC PUSH2 0x2762 JUMP JUMPDEST 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 0x17EF 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 0x187C JUMPI PUSH1 0x1 DUP3 PUSH2 0x1808 SWAP2 SWAP1 PUSH2 0x24DF JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1817 SWAP2 SWAP1 PUSH2 0x2675 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1823 SWAP2 SWAP1 PUSH2 0x23FE JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1839 JUMPI PUSH2 0x1838 PUSH2 0x2733 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1875 SWAP2 SWAP1 PUSH2 0x2454 JUMP JUMPDEST SWAP5 POP PUSH2 0x17F3 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x18F8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18EF SWAP1 PUSH2 0x22AA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1901 DUP2 PUSH2 0x14BF JUMP JUMPDEST ISZERO PUSH2 0x1941 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1938 SWAP1 PUSH2 0x21EA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x194D PUSH1 0x0 DUP4 DUP4 PUSH2 0x152B 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 0x199D SWAP2 SWAP1 PUSH2 0x23FE 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 PUSH2 0x1A5E PUSH1 0x0 DUP4 DUP4 PUSH2 0x1530 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1A91 SWAP1 PUSH2 0x25C9 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1AB3 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1AFA JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1ACC JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1AFA JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1AFA JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1AF9 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1ADE JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x1B07 SWAP2 SWAP1 PUSH2 0x1B0B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1B24 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x1B0C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B3B PUSH2 0x1B36 DUP5 PUSH2 0x238A JUMP JUMPDEST PUSH2 0x2365 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1B57 JUMPI PUSH2 0x1B56 PUSH2 0x2796 JUMP JUMPDEST JUMPDEST PUSH2 0x1B62 DUP5 DUP3 DUP6 PUSH2 0x2587 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1B79 DUP2 PUSH2 0x2AFB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1B8E DUP2 PUSH2 0x2B12 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BA3 DUP2 PUSH2 0x2B29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1BB8 DUP2 PUSH2 0x2B29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1BD3 JUMPI PUSH2 0x1BD2 PUSH2 0x2791 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1BE3 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1B28 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BFB DUP2 PUSH2 0x2B40 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C17 JUMPI PUSH2 0x1C16 PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C25 DUP5 DUP3 DUP6 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1C45 JUMPI PUSH2 0x1C44 PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C53 DUP6 DUP3 DUP7 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1C64 DUP6 DUP3 DUP7 ADD PUSH2 0x1B6A 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 0x1C87 JUMPI PUSH2 0x1C86 PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C95 DUP7 DUP3 DUP8 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1CA6 DUP7 DUP3 DUP8 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1CB7 DUP7 DUP3 DUP8 ADD PUSH2 0x1BEC 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 0x1CDB JUMPI PUSH2 0x1CDA PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1CE9 DUP8 DUP3 DUP9 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1CFA DUP8 DUP3 DUP9 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1D0B DUP8 DUP3 DUP9 ADD PUSH2 0x1BEC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1D2C JUMPI PUSH2 0x1D2B PUSH2 0x279B JUMP JUMPDEST JUMPDEST PUSH2 0x1D38 DUP8 DUP3 DUP9 ADD PUSH2 0x1BBE 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 0x1D5B JUMPI PUSH2 0x1D5A PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D69 DUP6 DUP3 DUP7 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1D7A DUP6 DUP3 DUP7 ADD PUSH2 0x1B7F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1D9B JUMPI PUSH2 0x1D9A PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1DA9 DUP6 DUP3 DUP7 ADD PUSH2 0x1B6A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1DBA DUP6 DUP3 DUP7 ADD PUSH2 0x1BEC JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DDA JUMPI PUSH2 0x1DD9 PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1DE8 DUP5 DUP3 DUP6 ADD PUSH2 0x1B94 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E07 JUMPI PUSH2 0x1E06 PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E15 DUP5 DUP3 DUP6 ADD PUSH2 0x1BA9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E34 JUMPI PUSH2 0x1E33 PUSH2 0x27A0 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1E42 DUP5 DUP3 DUP6 ADD PUSH2 0x1BEC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1E54 DUP2 PUSH2 0x2513 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1E63 DUP2 PUSH2 0x2525 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E74 DUP3 PUSH2 0x23BB JUMP JUMPDEST PUSH2 0x1E7E DUP2 DUP6 PUSH2 0x23D1 JUMP JUMPDEST SWAP4 POP PUSH2 0x1E8E DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2596 JUMP JUMPDEST PUSH2 0x1E97 DUP2 PUSH2 0x27A5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EAD DUP3 PUSH2 0x23C6 JUMP JUMPDEST PUSH2 0x1EB7 DUP2 DUP6 PUSH2 0x23E2 JUMP JUMPDEST SWAP4 POP PUSH2 0x1EC7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2596 JUMP JUMPDEST PUSH2 0x1ED0 DUP2 PUSH2 0x27A5 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EE6 DUP3 PUSH2 0x23C6 JUMP JUMPDEST PUSH2 0x1EF0 DUP2 DUP6 PUSH2 0x23F3 JUMP JUMPDEST SWAP4 POP PUSH2 0x1F00 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2596 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F19 PUSH1 0x32 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F24 DUP3 PUSH2 0x27B6 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F3C PUSH1 0x25 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F47 DUP3 PUSH2 0x2805 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F5F PUSH1 0x1C DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F6A DUP3 PUSH2 0x2854 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F82 PUSH1 0x24 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1F8D DUP3 PUSH2 0x287D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FA5 PUSH1 0x19 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1FB0 DUP3 PUSH2 0x28CC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FC8 PUSH1 0x29 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1FD3 DUP3 PUSH2 0x28F5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FEB PUSH1 0x2E DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x1FF6 DUP3 PUSH2 0x2944 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x200E PUSH1 0x3E DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x2019 DUP3 PUSH2 0x2993 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2031 PUSH1 0x20 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x203C DUP3 PUSH2 0x29E2 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2054 PUSH1 0x18 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x205F DUP3 PUSH2 0x2A0B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2077 PUSH1 0x21 DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x2082 DUP3 PUSH2 0x2A34 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x209A PUSH1 0x2E DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x20A5 DUP3 PUSH2 0x2A83 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20BD PUSH1 0xE DUP4 PUSH2 0x23E2 JUMP JUMPDEST SWAP2 POP PUSH2 0x20C8 DUP3 PUSH2 0x2AD2 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x20DC DUP2 PUSH2 0x257D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20EE DUP3 DUP6 PUSH2 0x1EDB JUMP JUMPDEST SWAP2 POP PUSH2 0x20FA DUP3 DUP5 PUSH2 0x1EDB JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x211B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1E4B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x2136 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1E4B JUMP JUMPDEST PUSH2 0x2143 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1E4B JUMP JUMPDEST PUSH2 0x2150 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x20D3 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x2162 DUP2 DUP5 PUSH2 0x1E69 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2182 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1E5A 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 0x21A2 DUP2 DUP5 PUSH2 0x1EA2 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 0x21C3 DUP2 PUSH2 0x1F0C 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 0x21E3 DUP2 PUSH2 0x1F2F 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 0x2203 DUP2 PUSH2 0x1F52 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 0x2223 DUP2 PUSH2 0x1F75 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 0x2243 DUP2 PUSH2 0x1F98 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 0x2263 DUP2 PUSH2 0x1FBB 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 0x2283 DUP2 PUSH2 0x1FDE 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 0x22A3 DUP2 PUSH2 0x2001 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 0x22C3 DUP2 PUSH2 0x2024 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 0x22E3 DUP2 PUSH2 0x2047 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 0x2303 DUP2 PUSH2 0x206A 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 0x2323 DUP2 PUSH2 0x208D 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 0x2343 DUP2 PUSH2 0x20B0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x235F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x20D3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x236F PUSH2 0x2380 JUMP JUMPDEST SWAP1 POP PUSH2 0x237B DUP3 DUP3 PUSH2 0x25FB 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 0x23A5 JUMPI PUSH2 0x23A4 PUSH2 0x2762 JUMP JUMPDEST JUMPDEST PUSH2 0x23AE DUP3 PUSH2 0x27A5 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 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 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2409 DUP3 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP PUSH2 0x2414 DUP4 PUSH2 0x257D JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2449 JUMPI PUSH2 0x2448 PUSH2 0x26A6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245F DUP3 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP PUSH2 0x246A DUP4 PUSH2 0x257D JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x247A JUMPI PUSH2 0x2479 PUSH2 0x26D5 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2490 DUP3 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP PUSH2 0x249B DUP4 PUSH2 0x257D JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x24D4 JUMPI PUSH2 0x24D3 PUSH2 0x26A6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24EA DUP3 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP PUSH2 0x24F5 DUP4 PUSH2 0x257D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2508 JUMPI PUSH2 0x2507 PUSH2 0x26A6 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x251E DUP3 PUSH2 0x255D 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 0x25B4 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2599 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x25C3 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 0x25E1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x25F5 JUMPI PUSH2 0x25F4 PUSH2 0x2704 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2604 DUP3 PUSH2 0x27A5 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2623 JUMPI PUSH2 0x2622 PUSH2 0x2762 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2637 DUP3 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x266A JUMPI PUSH2 0x2669 PUSH2 0x26A6 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2680 DUP3 PUSH2 0x257D JUMP JUMPDEST SWAP2 POP PUSH2 0x268B DUP4 PUSH2 0x257D JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x269B JUMPI PUSH2 0x269A PUSH2 0x26D5 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 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 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 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6578697374656E7420746F6B656E000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206E6F7220617070726F76656420666F7220616C6C0000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206E6F7220617070726F766564000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4E6F7420617574686F72697A6564000000000000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x2B04 DUP2 PUSH2 0x2513 JUMP JUMPDEST DUP2 EQ PUSH2 0x2B0F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2B1B DUP2 PUSH2 0x2525 JUMP JUMPDEST DUP2 EQ PUSH2 0x2B26 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2B32 DUP2 PUSH2 0x2531 JUMP JUMPDEST DUP2 EQ PUSH2 0x2B3D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2B49 DUP2 PUSH2 0x257D JUMP JUMPDEST DUP2 EQ PUSH2 0x2B54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID COINBASE TIMESTAMP NUMBER DIFFICULTY GASLIMIT CHAINID SELFBALANCE BASEFEE 0x49 0x4A 0x4B 0x4C 0x4D 0x4E 0x4F POP MLOAD MSTORE MSTORE8 SLOAD SSTORE JUMP JUMPI PC MSIZE GAS PUSH2 0x6263 PUSH5 0x6566676869 PUSH11 0x6B6C6D6E6F707172737475 PUSH23 0x7778797A303132333435363738392B2FA2646970667358 0x22 SLT KECCAK256 0xFC PUSH22 0x1F2106DDA19664774F40E8086640D45B4D24C5989378 PUSH6 0xA7422E98A9D1 0xA5 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER COINBASE TIMESTAMP NUMBER DIFFICULTY GASLIMIT CHAINID SELFBALANCE BASEFEE 0x49 0x4A 0x4B 0x4C 0x4D 0x4E 0x4F POP MLOAD MSTORE MSTORE8 SLOAD SSTORE JUMP JUMPI PC MSIZE GAS PUSH2 0x6263 PUSH5 0x6566676869 PUSH11 0x6B6C6D6E6F707172737475 PUSH23 0x7778797A303132333435363738392B2F00000000000000 ", | |
"sourceMap": "279:1162:11:-:0;;;712:371;743:326;;;;;;;:::i;:::-;;;;;;;;;;;;;712:13;;;;;:371;;:::i;:::-;698:385;;;;;;;;;;;;;:::i;:::-;;1184:4;1135:54;;;;;;;;:::i;:::-;;;;;;;;;;;;;1094:105;;;;;;;;;;;;;:::i;:::-;;412:66;;;;;;;;;;1390:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;279:1162:11;;405:1731:12;463:13;488:11;502:4;:11;488:25;;534:1;527:3;:8;523:23;;;537:9;;;;;;;;;;;;;;;;;523:23;595:18;633:1;628;622:3;:7;;;;:::i;:::-;621:13;;;;:::i;:::-;616:1;:19;;;;:::i;:::-;595:40;;690:19;735:2;722:10;:15;;;;:::i;:::-;712:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;690:48;;749:18;770:5;;;;;;;;;;;;;;;;;749:26;;836:1;829:5;825:13;880:2;872:6;868:15;928:1;897:931;950:3;947:1;944:10;897:931;;;1002:1;999;995:9;990:14;;1059:8;1054:1;1048:4;1044:12;1038:19;1034:34;1137:4;1129:5;1125:2;1121:14;1117:25;1107:8;1103:40;1097:47;1175:3;1172:1;1168:11;1161:18;;1306:4;1297;1289:5;1285:2;1281:14;1277:25;1267:8;1263:40;1257:47;1253:58;1228:3;1203:126;1196:133;;1360:3;1357:1;1353:11;1346:18;;1490:4;1481;1473:5;1470:1;1466:13;1462:24;1452:8;1448:39;1442:46;1438:57;1413:3;1388:125;1381:132;;1544:3;1541:1;1537:11;1530:18;;1666:4;1657;1650:5;1646:16;1636:8;1632:31;1626:38;1622:49;1597:3;1572:117;1565:124;;1722:3;1717;1713:13;1706:20;;1762:3;1751:9;1744:22;1812:1;1801:9;1797:17;1784:30;;972:856;;897:931;;;901:42;1858:1;1853:3;1849:11;1878:1;1873:82;;;;1973:1;1968:80;;;;1842:206;;1873:82;1933:6;1928:3;1924:16;1920:1;1909:9;1905:17;1898:43;1873:82;;1968:80;2028:4;2023:3;2019:14;2015:1;2004:9;2000:17;1993:41;1842:206;;2077:10;2069:6;2062:26;795:1303;;2122:6;2108:21;;;;;;405:1731;;;;:::o;279:1162:11:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;31:845:13:-;134:3;171:5;165:12;200:36;226:9;200:36;:::i;:::-;252:89;334:6;329:3;252:89;:::i;:::-;245:96;;372:1;361:9;357:17;388:1;383:137;;;;534:1;529:341;;;;350:520;;383:137;467:4;463:9;452;448:25;443:3;436:38;503:6;498:3;494:16;487:23;;383:137;;529:341;596:38;628:5;596:38;:::i;:::-;656:1;670:154;684:6;681:1;678:13;670:154;;;758:7;752:14;748:1;743:3;739:11;732:35;808:1;799:7;795:15;784:26;;706:4;703:1;699:12;694:17;;670:154;;;853:6;848:3;844:16;837:23;;536:334;;350:520;;138:738;;31:845;;;;:::o;882:404::-;1042:3;1063:86;1145:3;1140;1063:86;:::i;:::-;1056:93;;1158;1247:3;1158:93;:::i;:::-;1276:3;1271;1267:13;1260:20;;882:404;;;:::o;1292:402::-;1452:3;1473:85;1555:2;1550:3;1473:85;:::i;:::-;1466:92;;1567:93;1656:3;1567:93;:::i;:::-;1685:2;1680:3;1676:12;1669:19;;1292:402;;;:::o;1700:::-;1860:3;1881:85;1963:2;1958:3;1881:85;:::i;:::-;1874:92;;1975:93;2064:3;1975:93;:::i;:::-;2093:2;2088:3;2084:12;2077:19;;1700:402;;;:::o;2108:::-;2268:3;2289:85;2371:2;2366:3;2289:85;:::i;:::-;2282:92;;2383:93;2472:3;2383:93;:::i;:::-;2501:2;2496:3;2492:12;2485:19;;2108:402;;;:::o;2516:913::-;2903:3;2925:148;3069:3;2925:148;:::i;:::-;2918:155;;3090:148;3234:3;3090:148;:::i;:::-;3083:155;;3255:148;3399:3;3255:148;:::i;:::-;3248:155;;3420:3;3413:10;;2516:913;;;:::o;3435:535::-;3665:3;3687:148;3831:3;3687:148;:::i;:::-;3680:155;;3852:92;3940:3;3931:6;3852:92;:::i;:::-;3845:99;;3961:3;3954:10;;3435:535;;;;:::o;3976:141::-;4025:4;4048:3;4040:11;;4071:3;4068:1;4061:14;4105:4;4102:1;4092:18;4084:26;;3976:141;;;:::o;4123:148::-;4225:11;4262:3;4247:18;;4123:148;;;;:::o;4277:305::-;4317:3;4336:20;4354:1;4336:20;:::i;:::-;4331:25;;4370:20;4388:1;4370:20;:::i;:::-;4365:25;;4524:1;4456:66;4452:74;4449:1;4446:81;4443:107;;;4530:18;;:::i;:::-;4443:107;4574:1;4571;4567:9;4560:16;;4277:305;;;;:::o;4588:185::-;4628:1;4645:20;4663:1;4645:20;:::i;:::-;4640:25;;4679:20;4697:1;4679:20;:::i;:::-;4674:25;;4718:1;4708:35;;4723:18;;:::i;:::-;4708:35;4765:1;4762;4758:9;4753:14;;4588:185;;;;:::o;4779:348::-;4819:7;4842:20;4860:1;4842:20;:::i;:::-;4837:25;;4876:20;4894:1;4876:20;:::i;:::-;4871:25;;5064:1;4996:66;4992:74;4989:1;4986:81;4981:1;4974:9;4967:17;4963:105;4960:131;;;5071:18;;:::i;:::-;4960:131;5119:1;5116;5112:9;5101:20;;4779:348;;;;:::o;5133:77::-;5170:7;5199:5;5188:16;;5133:77;;;:::o;5216:320::-;5260:6;5297:1;5291:4;5287:12;5277:22;;5344:1;5338:4;5334:12;5365:18;5355:81;;5421:4;5413:6;5409:17;5399:27;;5355:81;5483:2;5475:6;5472:14;5452:18;5449:38;5446:84;;;5502:18;;:::i;:::-;5446:84;5267:269;5216:320;;;:::o;5542:180::-;5590:77;5587:1;5580:88;5687:4;5684:1;5677:15;5711:4;5708:1;5701:15;5728:180;5776:77;5773:1;5766:88;5873:4;5870:1;5863:15;5897:4;5894:1;5887:15;5914:180;5962:77;5959:1;5952:88;6059:4;6056:1;6049:15;6083:4;6080:1;6073:15;6100:180;6148:77;6145:1;6138:88;6245:4;6242:1;6235:15;6269:4;6266:1;6259:15;6286:657;6426:66;6422:1;6414:6;6410:14;6403:90;6527:34;6522:2;6514:6;6510:15;6503:59;6596:66;6591:2;6583:6;6579:15;6572:91;6697:66;6692:2;6684:6;6680:15;6673:91;6799:34;6793:3;6785:6;6781:16;6774:60;6869:66;6863:3;6855:6;6851:16;6844:92;6286:657;:::o;6949:214::-;7089:66;7085:1;7077:6;7073:14;7066:90;6949:214;:::o;7169:174::-;7309:26;7305:1;7297:6;7293:14;7286:50;7169:174;:::o;7349:179::-;7489:31;7485:1;7477:6;7473:14;7466:55;7349:179;:::o;279:1162:11:-;;;;;;;" | |
}, | |
"deployedBytecode": { | |
"functionDebugData": { | |
"@_afterTokenTransfer_865": { | |
"entryPoint": 5424, | |
"id": 865, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"@_approve_735": { | |
"entryPoint": 3596, | |
"id": 735, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@_baseURI_213": { | |
"entryPoint": 5184, | |
"id": 213, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"@_beforeTokenTransfer_854": { | |
"entryPoint": 5419, | |
"id": 854, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"@_checkOnERC721Received_843": { | |
"entryPoint": 5520, | |
"id": 843, | |
"parameterSlots": 4, | |
"returnSlots": 1 | |
}, | |
"@_exists_432": { | |
"entryPoint": 5311, | |
"id": 432, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@_isApprovedOrOwner_466": { | |
"entryPoint": 3781, | |
"id": 466, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"@_mint_576": { | |
"entryPoint": 6280, | |
"id": 576, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@_msgSender_1459": { | |
"entryPoint": 3588, | |
"id": 1459, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"@_requireMinted_781": { | |
"entryPoint": 3513, | |
"id": 781, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"@_safeMint_481": { | |
"entryPoint": 4559, | |
"id": 481, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@_safeMint_510": { | |
"entryPoint": 5429, | |
"id": 510, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"@_safeTransfer_414": { | |
"entryPoint": 5092, | |
"id": 414, | |
"parameterSlots": 4, | |
"returnSlots": 0 | |
}, | |
"@_setApprovalForAll_767": { | |
"entryPoint": 4727, | |
"id": 767, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"@_setTokenURI_1094": { | |
"entryPoint": 4589, | |
"id": 1094, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@_transfer_711": { | |
"entryPoint": 3930, | |
"id": 711, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"@approve_256": { | |
"entryPoint": 1217, | |
"id": 256, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@balanceOf_117": { | |
"entryPoint": 2126, | |
"id": 117, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@current_1487": { | |
"entryPoint": 4545, | |
"id": 1487, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@encode_1955": { | |
"entryPoint": 2999, | |
"id": 1955, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@getApproved_274": { | |
"entryPoint": 1147, | |
"id": 274, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@increment_1501": { | |
"entryPoint": 4705, | |
"id": 1501, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"@isApprovedForAll_309": { | |
"entryPoint": 2851, | |
"id": 309, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"@isContract_1170": { | |
"entryPoint": 6754, | |
"id": 1170, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@mintNFT_1897": { | |
"entryPoint": 1625, | |
"id": 1897, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@name_155": { | |
"entryPoint": 1001, | |
"id": 155, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"@ownerOf_145": { | |
"entryPoint": 1948, | |
"id": 145, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@safeTransferFrom_355": { | |
"entryPoint": 1593, | |
"id": 355, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"@safeTransferFrom_385": { | |
"entryPoint": 2478, | |
"id": 385, | |
"parameterSlots": 4, | |
"returnSlots": 0 | |
}, | |
"@setApprovalForAll_291": { | |
"entryPoint": 2456, | |
"id": 291, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@supportsInterface_1792": { | |
"entryPoint": 3407, | |
"id": 1792, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@supportsInterface_93": { | |
"entryPoint": 775, | |
"id": 93, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@symbol_165": { | |
"entryPoint": 2310, | |
"id": 165, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"@toString_1631": { | |
"entryPoint": 5927, | |
"id": 1631, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@tokenURI_1072": { | |
"entryPoint": 2576, | |
"id": 1072, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@tokenURI_204": { | |
"entryPoint": 5207, | |
"id": 204, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@transferFrom_336": { | |
"entryPoint": 1497, | |
"id": 336, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"abi_decode_available_length_t_bytes_memory_ptr": { | |
"entryPoint": 6952, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_address": { | |
"entryPoint": 7018, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_bool": { | |
"entryPoint": 7039, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_bytes4": { | |
"entryPoint": 7060, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_bytes4_fromMemory": { | |
"entryPoint": 7081, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_bytes_memory_ptr": { | |
"entryPoint": 7102, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_uint256": { | |
"entryPoint": 7148, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_address": { | |
"entryPoint": 7169, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_addresst_address": { | |
"entryPoint": 7214, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 2 | |
}, | |
"abi_decode_tuple_t_addresst_addresst_uint256": { | |
"entryPoint": 7278, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 3 | |
}, | |
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": { | |
"entryPoint": 7361, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 4 | |
}, | |
"abi_decode_tuple_t_addresst_bool": { | |
"entryPoint": 7492, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 2 | |
}, | |
"abi_decode_tuple_t_addresst_uint256": { | |
"entryPoint": 7556, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 2 | |
}, | |
"abi_decode_tuple_t_bytes4": { | |
"entryPoint": 7620, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_bytes4_fromMemory": { | |
"entryPoint": 7665, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_uint256": { | |
"entryPoint": 7710, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_address_to_t_address_fromStack": { | |
"entryPoint": 7755, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_bool_to_t_bool_fromStack": { | |
"entryPoint": 7770, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": { | |
"entryPoint": 7785, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 7842, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 7899, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 7948, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 7983, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8018, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8053, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8088, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8123, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8158, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8193, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8228, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8263, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8298, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8333, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 8368, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_uint256_to_t_uint256_fromStack": { | |
"entryPoint": 8403, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
"entryPoint": 8418, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { | |
"entryPoint": 8454, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"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": { | |
"entryPoint": 8481, | |
"id": null, | |
"parameterSlots": 5, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { | |
"entryPoint": 8557, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8584, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8618, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8650, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8682, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8714, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8746, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8778, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8810, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8842, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8874, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8906, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8938, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 8970, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 9002, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { | |
"entryPoint": 9034, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"allocate_memory": { | |
"entryPoint": 9061, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"allocate_unbounded": { | |
"entryPoint": 9088, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"array_allocation_size_t_bytes_memory_ptr": { | |
"entryPoint": 9098, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_bytes_memory_ptr": { | |
"entryPoint": 9147, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_string_memory_ptr": { | |
"entryPoint": 9158, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": { | |
"entryPoint": 9169, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
"entryPoint": 9186, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 9203, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_add_t_uint256": { | |
"entryPoint": 9214, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_div_t_uint256": { | |
"entryPoint": 9300, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_mul_t_uint256": { | |
"entryPoint": 9349, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_sub_t_uint256": { | |
"entryPoint": 9439, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_address": { | |
"entryPoint": 9491, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_bool": { | |
"entryPoint": 9509, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_bytes4": { | |
"entryPoint": 9521, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint160": { | |
"entryPoint": 9565, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 9597, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"copy_calldata_to_memory": { | |
"entryPoint": 9607, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"copy_memory_to_memory": { | |
"entryPoint": 9622, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"extract_byte_array_length": { | |
"entryPoint": 9673, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"finalize_allocation": { | |
"entryPoint": 9723, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"increment_t_uint256": { | |
"entryPoint": 9772, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"mod_t_uint256": { | |
"entryPoint": 9845, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"panic_error_0x11": { | |
"entryPoint": 9894, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x12": { | |
"entryPoint": 9941, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x22": { | |
"entryPoint": 9988, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x32": { | |
"entryPoint": 10035, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x41": { | |
"entryPoint": 10082, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
"entryPoint": 10129, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
"entryPoint": 10134, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
"entryPoint": 10139, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
"entryPoint": 10144, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"round_up_to_mul_of_32": { | |
"entryPoint": 10149, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": { | |
"entryPoint": 10166, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": { | |
"entryPoint": 10245, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": { | |
"entryPoint": 10324, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": { | |
"entryPoint": 10365, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": { | |
"entryPoint": 10444, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": { | |
"entryPoint": 10485, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4": { | |
"entryPoint": 10564, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304": { | |
"entryPoint": 10643, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": { | |
"entryPoint": 10722, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": { | |
"entryPoint": 10763, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": { | |
"entryPoint": 10804, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b": { | |
"entryPoint": 10883, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36": { | |
"entryPoint": 10962, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_address": { | |
"entryPoint": 11003, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_bool": { | |
"entryPoint": 11026, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_bytes4": { | |
"entryPoint": 11049, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_uint256": { | |
"entryPoint": 11072, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:28984:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "90:327:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "100:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "166:6:13" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_bytes_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "125:40:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "125:48:13" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nodeType": "YulIdentifier", | |
"src": "109:15:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "109:65:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "100:5:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "190:5:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "197:6:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "183:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "183:21:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "183:21:13" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "213:27:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "228:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "235:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "224:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "224:16:13" | |
}, | |
"variables": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "217:3:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "278:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nodeType": "YulIdentifier", | |
"src": "280:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "280:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "280:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "259:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "264:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "255:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "255:16:13" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "273:3:13" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "252:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "252:25:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "249:112:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "394:3:13" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "399:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "404:6:13" | |
} | |
], | |
"functionName": { | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "370:23:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "370:41:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "370:41:13" | |
} | |
] | |
}, | |
"name": "abi_decode_available_length_t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "63:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "68:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "76:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "84:5:13", | |
"type": "" | |
} | |
], | |
"src": "7:410:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "475:87:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "485:29:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "507:6:13" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "494:12:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "494:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "485:5:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "550:5:13" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "523:26:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "523:33:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "523:33:13" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "453:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "461:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "469:5:13", | |
"type": "" | |
} | |
], | |
"src": "423:139:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "617:84:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "627:29:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "649:6:13" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "636:12:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "636:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "627:5:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "689:5:13" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "665:23:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "665:30:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "665:30:13" | |
} | |
] | |
}, | |
"name": "abi_decode_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "595:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "603:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "611:5:13", | |
"type": "" | |
} | |
], | |
"src": "568:133:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "758:86:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "768:29:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "790:6:13" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "777:12:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "777:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "768:5:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "832:5:13" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_bytes4", | |
"nodeType": "YulIdentifier", | |
"src": "806:25:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "806:32:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "806:32:13" | |
} | |
] | |
}, | |
"name": "abi_decode_t_bytes4", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "736:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "744:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "752:5:13", | |
"type": "" | |
} | |
], | |
"src": "707:137:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "912:79:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "922:22:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "937:6:13" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "931:5:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "931:13:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "922:5:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "979:5:13" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_bytes4", | |
"nodeType": "YulIdentifier", | |
"src": "953:25:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "953:32:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "953:32:13" | |
} | |
] | |
}, | |
"name": "abi_decode_t_bytes4_fromMemory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "890:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "898:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "906:5:13", | |
"type": "" | |
} | |
], | |
"src": "850:141:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1071:277:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1120:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nodeType": "YulIdentifier", | |
"src": "1122:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1122:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1122:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1099:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1107:4:13", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1095:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1095:17:13" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "1114:3:13" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "1091:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1091:27:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "1084:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1084:35:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "1081:122:13" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1212:34:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1239:6:13" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "1226:12:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1226:20:13" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1216:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1255:87:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1315:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1323:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1311:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1311:17:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1330:6:13" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "1338:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_available_length_t_bytes_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "1264:46:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1264:78:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1255:5:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1049:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1057:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "1065:5:13", | |
"type": "" | |
} | |
], | |
"src": "1010:338:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1406:87:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1416:29:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1438:6:13" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "1425:12:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1425:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1416:5:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "1481:5:13" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "1454:26:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1454:33:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1454:33:13" | |
} | |
] | |
}, | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1384:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1392:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "1400:5:13", | |
"type": "" | |
} | |
], | |
"src": "1354:139:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1565:263:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1611:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "1613:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1613:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1613:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1586:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1595:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "1582:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1582:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1607:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "1578:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1578:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "1575:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "1704:117:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1719:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1733:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "1723:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1748:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1783:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "1794:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1779:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1779:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1803:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "1758:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1758:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "1748:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "1535:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "1546:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "1558:6:13", | |
"type": "" | |
} | |
], | |
"src": "1499:329:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1917:391:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1963:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "1965:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1965:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1965:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "1938:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "1947:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "1934:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1934:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1959:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "1930:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1930:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "1927:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2056:117:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2071:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2085:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2075:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2100:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2135:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2146:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2131:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2131:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2155:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "2110:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2110:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "2100:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2183:118:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2198:16:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2212:2:13", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2202:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2228:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2263:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2274:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2259:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2259:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2283:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "2238:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2238:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "2228:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "1879:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "1890:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "1902:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "1910:6:13", | |
"type": "" | |
} | |
], | |
"src": "1834:474:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2414:519:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2460:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "2462:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2462:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2462:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2435:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2444:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "2431:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2431:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2456:2:13", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2427:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2427:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "2424:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2553:117:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2568:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2582:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2572:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2597:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2632:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2643:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2628:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2628:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2652:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "2607:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2607:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "2597:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2680:118:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2695:16:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2709:2:13", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2699:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2725:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2760:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2771:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2756:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2756:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2780:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "2735:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2735:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "2725:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2808:118:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2823:16:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2837:2:13", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2827:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2853:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2888:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2899:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2884:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2884:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2908:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "2863:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2863:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "2853:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_addresst_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "2368:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "2379:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "2391:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "2399:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "2407:6:13", | |
"type": "" | |
} | |
], | |
"src": "2314:619:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3065:817:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3112:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "3114:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3114:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3114:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3086:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3095:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "3082:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3082:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3107:3:13", | |
"type": "", | |
"value": "128" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "3078:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3078:33:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "3075:120:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3205:117:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3220:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3234:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3224:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3249:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3284:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3295:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3280:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3280:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3304:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "3259:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3259:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "3249:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3332:118:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3347:16:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3361:2:13", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3351:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3377:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3412:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3423:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3408:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3408:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3432:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "3387:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3387:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "3377:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3460:118:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3475:16:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3489:2:13", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3479:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3505:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3540:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3551:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3536:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3536:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3560:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "3515:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3515:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "3505:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3588:287:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3603:46:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3634:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3645:2:13", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3630:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3630:18:13" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "3617:12:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3617:32:13" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3607:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3696:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "3698:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3698:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3698:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3668:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3676:18:13", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3665:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3665:30:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "3662:117:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3793:72:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3837:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3848:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3833:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3833:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3857:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bytes_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "3803:29:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3803:62:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value3", | |
"nodeType": "YulIdentifier", | |
"src": "3793:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "3011:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "3022:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "3034:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "3042:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "3050:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value3", | |
"nodeType": "YulTypedName", | |
"src": "3058:6:13", | |
"type": "" | |
} | |
], | |
"src": "2939:943:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3968:388:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4014:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "4016:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4016:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4016:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3989:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3998:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "3985:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3985:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4010:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "3981:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3981:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "3978:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4107:117:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4122:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4136:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4126:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4151:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4186:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4197:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4182:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4182:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "4206:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "4161:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4161:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "4151:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4234:115:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4249:16:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4263:2:13", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4253:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4279:60:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4311:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4322:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4307:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4307:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "4331:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "4289:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4289:50:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "4279:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "3930:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "3941:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "3953:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "3961:6:13", | |
"type": "" | |
} | |
], | |
"src": "3888:468:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4445:391:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4491:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "4493:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4493:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4493:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "4466:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4475:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "4462:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4462:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4487:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "4458:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4458:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "4455:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4584:117:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4599:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4613:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4603:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4628:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4663:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4674:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4659:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4659:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "4683:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "4638:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4638:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "4628:6:13" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "4711:118:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4726:16:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4740:2:13", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4730:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4756:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4791:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4802:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4787:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4787:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "4811:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4766:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4766:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "4756:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_addresst_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "4407:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "4418:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "4430:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "4438:6:13", | |
"type": "" | |
} | |
], | |
"src": "4362:474:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4907:262:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4953:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "4955:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4955:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4955:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "4928:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4937:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "4924:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4924:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4949:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "4920:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4920:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "4917:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5046:116:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5061:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5075:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5065:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5090:62:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5124:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5135:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5120:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5120:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5144:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bytes4", | |
"nodeType": "YulIdentifier", | |
"src": "5100:19:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5100:52:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "5090:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_bytes4", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "4877:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "4888:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "4900:6:13", | |
"type": "" | |
} | |
], | |
"src": "4842:327:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5251:273:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5297:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "5299:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5299:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5299:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5272:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5281:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "5268:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5268:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5293:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "5264:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5264:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "5261:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5390:127:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5405:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5419:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5409:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5434:73:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5479:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5490:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5475:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5475:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5499:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_bytes4_fromMemory", | |
"nodeType": "YulIdentifier", | |
"src": "5444:30:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5444:63:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "5434:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_bytes4_fromMemory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "5221:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "5232:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "5244:6:13", | |
"type": "" | |
} | |
], | |
"src": "5175:349:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5596:263:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5642:83:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "5644:77:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5644:79:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5644:79:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5617:7:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5626:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "5613:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5613:23:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5638:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "5609:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5609:32:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "5606:119:13" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5735:117:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5750:15:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5764:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5754:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5779:63:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5814:9:13" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5825:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5810:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5810:22:13" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5834:7:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "5789:20:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5789:53:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "5779:6:13" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "5566:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "5577:7:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "5589:6:13", | |
"type": "" | |
} | |
], | |
"src": "5530:329:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5930:53:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "5947:3:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5970:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "5952:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5952:24:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "5940:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5940:37:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5940:37:13" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "5918:5:13", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "5925:3:13", | |
"type": "" | |
} | |
], | |
"src": "5865:118:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6048:50:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6065:3:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6085:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "6070:14:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6070:21:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6058:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6058:34:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6058:34:13" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6036:5:13", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6043:3:13", | |
"type": "" | |
} | |
], | |
"src": "5989:109:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6194:270:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6204:52:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6250:5:13" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_bytes_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "6218:31:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6218:38:13" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "6208:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6265:77:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6330:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "6335:6:13" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "6272:57:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6272:70:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6265:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6377:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6384:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6373:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6373:16:13" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6391:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "6396:6:13" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "6351:21:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6351:52:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6351:52:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6412:46:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6423:3:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "6450:6:13" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "6428:21:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6428:29:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6419:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6419:39:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "6412:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6175:5:13", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6182:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "6190:3:13", | |
"type": "" | |
} | |
], | |
"src": "6104:360:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6562:272:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6572:53:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6619:5:13" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "6586:32:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6586:39:13" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "6576:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6634:78:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6700:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "6705:6:13" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "6641:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6641:71:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6634:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6747:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6754:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6743:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6743:16:13" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6761:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "6766:6:13" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "6721:21:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6721:52:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6721:52:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6782:46:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6793:3:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "6820:6:13" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "6798:21:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6798:29:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6789:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6789:39:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "6782:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6543:5:13", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6550:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "6558:3:13", | |
"type": "" | |
} | |
], | |
"src": "6470:364:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6950:267:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6960:53:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7007:5:13" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "6974:32:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6974:39:13" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "6964:6:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7022:96:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7106:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "7111:6:13" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "7029:76:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7029:89:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7022:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7153:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7160:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7149:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7149:16:13" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7167:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "7172:6:13" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "7127:21:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7127:52:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7127:52:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7188:23:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7199:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "7204:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7195:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7195:16:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "7188:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6931:5:13", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6938:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "6946:3:13", | |
"type": "" | |
} | |
], | |
"src": "6840:377:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7369:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7379:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7445:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7450:2:13", | |
"type": "", | |
"value": "50" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "7386:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7386:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7379:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7551:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e", | |
"nodeType": "YulIdentifier", | |
"src": "7462:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7462:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7462:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7564:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7575:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7580:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7571:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7571:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "7564:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7357:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "7365:3:13", | |
"type": "" | |
} | |
], | |
"src": "7223:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7741:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7751:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7817:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7822:2:13", | |
"type": "", | |
"value": "37" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "7758:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7758:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7751:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7923:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48", | |
"nodeType": "YulIdentifier", | |
"src": "7834:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7834:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7834:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7936:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7947:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7952:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7943:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7943:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "7936:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7729:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "7737:3:13", | |
"type": "" | |
} | |
], | |
"src": "7595:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8113:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8123:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8189:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8194:2:13", | |
"type": "", | |
"value": "28" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "8130:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8130:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8123:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8295:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57", | |
"nodeType": "YulIdentifier", | |
"src": "8206:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8206:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8206:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8308:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8319:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8324:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8315:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8315:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "8308:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8101:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "8109:3:13", | |
"type": "" | |
} | |
], | |
"src": "7967:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8485:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8495:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8561:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8566:2:13", | |
"type": "", | |
"value": "36" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "8502:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8502:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8495:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8667:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4", | |
"nodeType": "YulIdentifier", | |
"src": "8578:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8578:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8578:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8680:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8691:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8696:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8687:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8687:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "8680:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8473:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "8481:3:13", | |
"type": "" | |
} | |
], | |
"src": "8339:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8857:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8867:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8933:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8938:2:13", | |
"type": "", | |
"value": "25" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "8874:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8874:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8867:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9039:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05", | |
"nodeType": "YulIdentifier", | |
"src": "8950:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8950:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8950:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9052:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9063:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9068:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9059:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9059:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "9052:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8845:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "8853:3:13", | |
"type": "" | |
} | |
], | |
"src": "8711:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9229:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9239:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9305:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9310:2:13", | |
"type": "", | |
"value": "41" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "9246:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9246:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9239:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9411:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159", | |
"nodeType": "YulIdentifier", | |
"src": "9322:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9322:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9322:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9424:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9435:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9440:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9431:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9431:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "9424:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "9217:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "9225:3:13", | |
"type": "" | |
} | |
], | |
"src": "9083:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9601:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9611:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9677:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9682:2:13", | |
"type": "", | |
"value": "46" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "9618:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9618:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9611:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9783:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4", | |
"nodeType": "YulIdentifier", | |
"src": "9694:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9694:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9694:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9796:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9807:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9812:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9803:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9803:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "9796:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "9589:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "9597:3:13", | |
"type": "" | |
} | |
], | |
"src": "9455:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9973:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9983:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10049:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10054:2:13", | |
"type": "", | |
"value": "62" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "9990:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9990:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9983:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10155:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304", | |
"nodeType": "YulIdentifier", | |
"src": "10066:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10066:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10066:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10168:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10179:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10184:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10175:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10175:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "10168:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "9961:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "9969:3:13", | |
"type": "" | |
} | |
], | |
"src": "9827:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10345:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10355:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10421:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10426:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "10362:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10362:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10355:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10527:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6", | |
"nodeType": "YulIdentifier", | |
"src": "10438:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10438:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10438:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10540:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10551:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10556:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10547:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10547:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "10540:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "10333:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "10341:3:13", | |
"type": "" | |
} | |
], | |
"src": "10199:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10717:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10727:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10793:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10798:2:13", | |
"type": "", | |
"value": "24" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "10734:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10734:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10727:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10899:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f", | |
"nodeType": "YulIdentifier", | |
"src": "10810:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10810:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10810:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10912:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10923:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10928:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10919:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10919:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "10912:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "10705:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "10713:3:13", | |
"type": "" | |
} | |
], | |
"src": "10571:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11089:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11099:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11165:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11170:2:13", | |
"type": "", | |
"value": "33" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11106:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11106:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11099:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11271:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942", | |
"nodeType": "YulIdentifier", | |
"src": "11182:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11182:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11182:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11284:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11295:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11300:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11291:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11291:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "11284:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "11077:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "11085:3:13", | |
"type": "" | |
} | |
], | |
"src": "10943:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11461:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11471:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11537:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11542:2:13", | |
"type": "", | |
"value": "46" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11478:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11478:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11471:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11643:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b", | |
"nodeType": "YulIdentifier", | |
"src": "11554:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11554:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11554:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11656:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11667:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11672:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11663:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11663:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "11656:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "11449:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "11457:3:13", | |
"type": "" | |
} | |
], | |
"src": "11315:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11833:220:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11843:74:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11909:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11914:2:13", | |
"type": "", | |
"value": "14" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11850:58:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11850:67:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "11843:3:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12015:3:13" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36", | |
"nodeType": "YulIdentifier", | |
"src": "11926:88:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11926:93:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11926:93:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12028:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12039:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12044:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12035:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12035:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "12028:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "11821:3:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "11829:3:13", | |
"type": "" | |
} | |
], | |
"src": "11687:366:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12124:53:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12141:3:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12164:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "12146:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12146:24:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "12134:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12134:37:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12134:37:13" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "12112:5:13", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12119:3:13", | |
"type": "" | |
} | |
], | |
"src": "12059:118:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12367:251:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12378:102:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "12467:6:13" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12476:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12385:81:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12385:95:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12378:3:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12490:102:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "12579:6:13" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12588:3:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12497:81:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12497:95:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12490:3:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12602:10:13", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12609:3:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "12602:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12338:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "12344:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "12352:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "12363:3:13", | |
"type": "" | |
} | |
], | |
"src": "12183:435:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12722:124:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12732:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "12744:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12755:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12740:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12740:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "12732:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "12812:6:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "12825:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12836:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12821:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12821:17:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12768:43:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12768:71:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12768:71:13" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "12694:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "12706:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "12717:4:13", | |
"type": "" | |
} | |
], | |
"src": "12624:222:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13052:440:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13062:27:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13074:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13085:3:13", | |
"type": "", | |
"value": "128" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13070:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13070:19:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13062:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "13143:6:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13156:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13167:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13152:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13152:17:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "13099:43:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13099:71:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13099:71:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "13224:6:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13237:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13248:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13233:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13233:18:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "13180:43:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13180:72:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13180:72:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "13306:6:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13319:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13330:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13315:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13315:18:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "13262:43:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13262:72:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13262:72:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13355:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13366:2:13", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13351:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13351:18:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13375:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13381:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "13371:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13371:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13344:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13344:48:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13344:48:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13401:84:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value3", | |
"nodeType": "YulIdentifier", | |
"src": "13471:6:13" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13480:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "13409:61:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13409:76:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13401:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"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": "13000:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "value3", | |
"nodeType": "YulTypedName", | |
"src": "13012:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "13020:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "13028:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "13036:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "13047:4:13", | |
"type": "" | |
} | |
], | |
"src": "12852:640:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13590:118:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13600:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13612:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13623:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13608:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13608:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13600:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "13674:6:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13687:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13698:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13683:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13683:17:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "13636:37:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13636:65:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13636:65:13" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "13562:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "13574:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "13585:4:13", | |
"type": "" | |
} | |
], | |
"src": "13498:210:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13832:195:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13842:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13854:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13865:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13850:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13850:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13842:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13889:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13900:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13885:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13885:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13908:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "13914:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "13904:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13904:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13878:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13878:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13878:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13934:86:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "14006:6:13" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14015:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "13942:63:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13942:78:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "13934:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "13804:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "13816:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "13827:4:13", | |
"type": "" | |
} | |
], | |
"src": "13714:313:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14204:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14214:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "14226:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14237:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14222:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14222:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14214:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "14261:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14272:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14257:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14257:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14280:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "14286:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "14276:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14276:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14250:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14250:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14250:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14306:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14440:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "14314:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14314:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14306:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "14184:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "14199:4:13", | |
"type": "" | |
} | |
], | |
"src": "14033:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14629:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14639:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "14651:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14662:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14647:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14647:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14639:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "14686:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14697:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14682:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14682:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14705:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "14711:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "14701:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14701:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "14675:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14675:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14675:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14731:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14865:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "14739:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14739:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "14731:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "14609:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "14624:4:13", | |
"type": "" | |
} | |
], | |
"src": "14458:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15054:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15064:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15076:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15087:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15072:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15072:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15064:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15111:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15122:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15107:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15107:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15130:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15136:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "15126:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15126:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "15100:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15100:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15100:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15156:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15290:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "15164:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15164:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15156:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "15034:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "15049:4:13", | |
"type": "" | |
} | |
], | |
"src": "14883:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15479:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15489:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15501:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15512:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15497:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15497:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15489:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15536:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15547:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15532:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15532:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15555:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15561:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "15551:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15551:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "15525:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15525:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15525:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15581:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15715:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "15589:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15589:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15581:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "15459:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "15474:4:13", | |
"type": "" | |
} | |
], | |
"src": "15308:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "15904:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "15914:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15926:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15937:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15922:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15922:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15914:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15961:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "15972:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "15957:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15957:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "15980:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "15986:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "15976:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15976:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "15950:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "15950:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "15950:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16006:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16140:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "16014:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16014:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16006:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "15884:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "15899:4:13", | |
"type": "" | |
} | |
], | |
"src": "15733:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "16329:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16339:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "16351:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16362:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "16347:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16347:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16339:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "16386:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16397:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "16382:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16382:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16405:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "16411:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "16401:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16401:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "16375:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16375:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "16375:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16431:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16565:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "16439:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16439:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16431:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "16309:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "16324:4:13", | |
"type": "" | |
} | |
], | |
"src": "16158:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "16754:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16764:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "16776:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16787:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "16772:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16772:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16764:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "16811:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "16822:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "16807:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16807:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16830:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "16836:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "16826:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16826:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "16800:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16800:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "16800:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "16856:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16990:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "16864:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "16864:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "16856:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "16734:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "16749:4:13", | |
"type": "" | |
} | |
], | |
"src": "16583:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "17179:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17189:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "17201:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17212:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "17197:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17197:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17189:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "17236:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17247:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "17232:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17232:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17255:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "17261:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "17251:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17251:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "17225:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17225:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "17225:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17281:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17415:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "17289:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17289:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17281:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "17159:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "17174:4:13", | |
"type": "" | |
} | |
], | |
"src": "17008:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "17604:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17614:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "17626:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17637:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "17622:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17622:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17614:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "17661:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "17672:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "17657:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17657:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17680:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "17686:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "17676:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17676:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "17650:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17650:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "17650:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "17706:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17840:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "17714:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "17714:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "17706:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "17584:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "17599:4:13", | |
"type": "" | |
} | |
], | |
"src": "17433:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "18029:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18039:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18051:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18062:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18047:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18047:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18039:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18086:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18097:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18082:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18082:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18105:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18111:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "18101:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18101:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "18075:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18075:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "18075:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18131:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18265:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "18139:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18139:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18131:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "18009:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "18024:4:13", | |
"type": "" | |
} | |
], | |
"src": "17858:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "18454:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18464:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18476:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18487:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18472:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18472:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18464:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18511:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18522:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18507:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18507:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18530:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18536:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "18526:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18526:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "18500:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18500:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "18500:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18556:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18690:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "18564:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18564:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18556:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "18434:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "18449:4:13", | |
"type": "" | |
} | |
], | |
"src": "18283:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "18879:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18889:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18901:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18912:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18897:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18897:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18889:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18936:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "18947:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "18932:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18932:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18955:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "18961:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "18951:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18951:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "18925:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18925:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "18925:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "18981:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "19115:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "18989:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "18989:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "18981:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "18859:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "18874:4:13", | |
"type": "" | |
} | |
], | |
"src": "18708:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "19304:248:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19314:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "19326:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19337:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19322:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19322:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "19314:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "19361:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19372:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19357:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19357:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "19380:4:13" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "19386:9:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "19376:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19376:20:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "19350:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19350:47:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "19350:47:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19406:139:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "19540:4:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "19414:124:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19414:131:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "19406:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "19284:9:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "19299:4:13", | |
"type": "" | |
} | |
], | |
"src": "19133:419:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "19656:124:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19666:26:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "19678:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19689:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19674:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19674:18:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "19666:4:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "19746:6:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "19759:9:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19770:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "19755:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19755:17:13" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "19702:43:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19702:71:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "19702:71:13" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "19628:9:13", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "19640:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "19651:4:13", | |
"type": "" | |
} | |
], | |
"src": "19558:222:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "19827:88:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19837:30:13", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "allocate_unbounded", | |
"nodeType": "YulIdentifier", | |
"src": "19847:18:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19847:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "19837:6:13" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "19896:6:13" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "19904:4:13" | |
} | |
], | |
"functionName": { | |
"name": "finalize_allocation", | |
"nodeType": "YulIdentifier", | |
"src": "19876:19:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19876:33:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "19876:33:13" | |
} | |
] | |
}, | |
"name": "allocate_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "19811:4:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "19820:6:13", | |
"type": "" | |
} | |
], | |
"src": "19786:129:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "19961:35:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "19971:19:13", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "19987:2:13", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "19981:5:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "19981:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "19971:6:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "19954:6:13", | |
"type": "" | |
} | |
], | |
"src": "19921:75:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "20068:241:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "20173:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "20175:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20175:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20175:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "20145:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20153:18:13", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "20142:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20142:30:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "20139:56:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "20205:37:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "20235:6:13" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "20213:21:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20213:29:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "20205:4:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "20279:23:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "20291:4:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20297:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20287:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20287:15:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "20279:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "20052:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "20063:4:13", | |
"type": "" | |
} | |
], | |
"src": "20002:307:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "20373:40:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "20384:22:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "20400:5:13" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "20394:5:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20394:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "20384:6:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_bytes_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "20356:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "20366:6:13", | |
"type": "" | |
} | |
], | |
"src": "20315:98:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "20478:40:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "20489:22:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "20505:5:13" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "20499:5:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20499:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "20489:6:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "20461:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "20471:6:13", | |
"type": "" | |
} | |
], | |
"src": "20419:99:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "20619:73:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20636:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "20641:6:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "20629:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20629:19:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20629:19:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "20657:29:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20676:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20681:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20672:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20672:14:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "20657:11:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "20591:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "20596:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "20607:11:13", | |
"type": "" | |
} | |
], | |
"src": "20524:168:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "20794:73:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20811:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "20816:6:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "20804:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20804:19:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "20804:19:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "20832:29:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "20851:3:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "20856:4:13", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "20847:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "20847:14:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "20832:11:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "20766:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "20771:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "20782:11:13", | |
"type": "" | |
} | |
], | |
"src": "20698:169:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "20987:34:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "20997:18:13", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "21012:3:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "20997:11:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "20959:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "20964:6:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "20975:11:13", | |
"type": "" | |
} | |
], | |
"src": "20873:148:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "21071:261:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21081:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21104:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21086:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21086:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21081:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21115:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21138:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21120:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21120:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21115:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "21278:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "21280:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21280:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21280:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21199:1:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21206:66:13", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21274:1:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "21202:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21202:74:13" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "21196:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21196:81:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "21193:107:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21310:16:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21321:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21324:1:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "21317:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21317:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "21310:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "21058:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "21061:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "21067:3:13", | |
"type": "" | |
} | |
], | |
"src": "21027:305:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "21380:143:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21390:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21413:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21395:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21395:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21390:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21424:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21447:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21429:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21429:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21424:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "21471:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x12", | |
"nodeType": "YulIdentifier", | |
"src": "21473:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21473:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21473:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21468:1:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "21461:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21461:9:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "21458:35:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21503:14:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21512:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21515:1:13" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "21508:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21508:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "r", | |
"nodeType": "YulIdentifier", | |
"src": "21503:1:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_div_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "21369:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "21372:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "r", | |
"nodeType": "YulTypedName", | |
"src": "21378:1:13", | |
"type": "" | |
} | |
], | |
"src": "21338:185:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "21577:300:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21587:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21610:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21592:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21592:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21587:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21621:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21644:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21626:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21626:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21621:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "21819:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "21821:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21821:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "21821:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21731:1:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "21724:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21724:9:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "21717:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21717:17:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21739:1:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "21746:66:13", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21814:1:13" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "21742:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21742:74:13" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "21736:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21736:81:13" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "21713:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21713:105:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "21710:131:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21851:20:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21866:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21869:1:13" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "21862:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21862:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "product", | |
"nodeType": "YulIdentifier", | |
"src": "21851:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_mul_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "21560:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "21563:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "product", | |
"nodeType": "YulTypedName", | |
"src": "21569:7:13", | |
"type": "" | |
} | |
], | |
"src": "21529:348:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "21928:146:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21938:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21961:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21943:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21943:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "21938:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "21972:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21995:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "21977:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "21977:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "21972:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22019:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "22021:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22021:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22021:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "22013:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "22016:1:13" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "22010:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22010:8:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "22007:34:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22051:17:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "22063:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "22066:1:13" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "22059:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22059:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "diff", | |
"nodeType": "YulIdentifier", | |
"src": "22051:4:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_sub_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "21914:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "21917:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "diff", | |
"nodeType": "YulTypedName", | |
"src": "21923:4:13", | |
"type": "" | |
} | |
], | |
"src": "21883:191:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22125:51:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22135:35:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22164:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "22146:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22146:24:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "22135:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22107:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "22117:7:13", | |
"type": "" | |
} | |
], | |
"src": "22080:96:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22224:48:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22234:32:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22259:5:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "22252:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22252:13:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "22245:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22245:21:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "22234:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22206:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "22216:7:13", | |
"type": "" | |
} | |
], | |
"src": "22182:90:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22322:105:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22332:89:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22347:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22354:66:13", | |
"type": "", | |
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000" | |
} | |
], | |
"functionName": { | |
"name": "and", | |