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", | |
"nodeType": "YulIdentifier", | |
"src": "22343:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22343:78:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "22332:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bytes4", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22304:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "22314:7:13", | |
"type": "" | |
} | |
], | |
"src": "22278:149:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22478:81:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22488:65:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22503:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22510:42:13", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "22499:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22499:54:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "22488:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22460:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "22470:7:13", | |
"type": "" | |
} | |
], | |
"src": "22433:126:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22610:32:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22620:16:13", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "22631:5:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "22620:7:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "22592:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "22602:7:13", | |
"type": "" | |
} | |
], | |
"src": "22565:77:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22699:103:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "22722:3:13" | |
}, | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "22727:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "22732:6:13" | |
} | |
], | |
"functionName": { | |
"name": "calldatacopy", | |
"nodeType": "YulIdentifier", | |
"src": "22709:12:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22709:30:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22709:30:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "22780:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "22785:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22776:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22776:16:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22794:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "22769:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22769:27:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22769:27:13" | |
} | |
] | |
}, | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "22681:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "22686:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "22691:6:13", | |
"type": "" | |
} | |
], | |
"src": "22648:154:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22857:258:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "22867:10:13", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22876:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "22871:1:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "22936:63:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "22961:3:13" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "22966:1:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22957:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22957:11:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "22980:3:13" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "22985:1:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22976:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22976:11:13" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "22970:5:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22970:18:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "22950:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22950:39:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "22950:39:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "22897:1:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "22900:6:13" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "22894:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22894:13:13" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "22908:19:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "22910:15:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "22919:1:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "22922:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "22915:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "22915:10:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "22910:1:13" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "22890:3:13", | |
"statements": [] | |
}, | |
"src": "22886:113:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23033:76:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "23083:3:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "23088:6:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "23079:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23079:16:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23097:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "23072:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23072:27:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23072:27:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "23014:1:13" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "23017:6:13" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "23011:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23011:13:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "23008:101:13" | |
} | |
] | |
}, | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "22839:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "22844:3:13", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "22849:6:13", | |
"type": "" | |
} | |
], | |
"src": "22808:307:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23172:269:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23182:22:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "23196:4:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23202:1:13", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "23192:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23192:12:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "23182:6:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "23213:38:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "23243:4:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23249:1:13", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "23239:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23239:12:13" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulTypedName", | |
"src": "23217:18:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23290:51:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23304:27:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "23318:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23326:4:13", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "23314:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23314:17:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "23304:6:13" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "23270:18:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "23263:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23263:26:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "23260:81:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23393:42:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nodeType": "YulIdentifier", | |
"src": "23407:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23407:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23407:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "23357:18:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "23380:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23388:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "23377:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23377:14:13" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "23354:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23354:38:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "23351:84:13" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "23156:4:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "23165:6:13", | |
"type": "" | |
} | |
], | |
"src": "23121:320:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23490:238:13", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "23500:58:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "23522:6:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "23552:4:13" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "23530:21:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23530:27:13" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "23518:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23518:40:13" | |
}, | |
"variables": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulTypedName", | |
"src": "23504:10:13", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23669:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "23671:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23671:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23671:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "23612:10:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23624:18:13", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "23609:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23609:34:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "23648:10:13" | |
}, | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "23660:6:13" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "23645:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23645:22:13" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nodeType": "YulIdentifier", | |
"src": "23606:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23606:62:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "23603:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23707:2:13", | |
"type": "", | |
"value": "64" | |
}, | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "23711:10:13" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "23700:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23700:22:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23700:22:13" | |
} | |
] | |
}, | |
"name": "finalize_allocation", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "23476:6:13", | |
"type": "" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "23484:4:13", | |
"type": "" | |
} | |
], | |
"src": "23447:281:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23777:190:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23787:33:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "23814:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "23796:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23796:24:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "23787:5:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "23910:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "23912:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23912:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "23912:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "23835:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23842:66:13", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "23832:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23832:77:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "23829:103:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "23941:20:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "23952:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "23959:1:13", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "23948:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "23948:13:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulIdentifier", | |
"src": "23941:3:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "increment_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "23763:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulTypedName", | |
"src": "23773:3:13", | |
"type": "" | |
} | |
], | |
"src": "23734:233:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24007:142:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24017:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "24040:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "24022:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24022:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "24017:1:13" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24051:25:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "24074:1:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "24056:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24056:20:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "24051:1:13" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24098:22:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x12", | |
"nodeType": "YulIdentifier", | |
"src": "24100:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24100:18:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24100:18:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "24095:1:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "24088:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24088:9:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "24085:35:13" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "24129:14:13", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "24138:1:13" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "24141:1:13" | |
} | |
], | |
"functionName": { | |
"name": "mod", | |
"nodeType": "YulIdentifier", | |
"src": "24134:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24134:9:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "r", | |
"nodeType": "YulIdentifier", | |
"src": "24129:1:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "mod_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "23996:1:13", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "23999:1:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "r", | |
"nodeType": "YulTypedName", | |
"src": "24005:1:13", | |
"type": "" | |
} | |
], | |
"src": "23973:176:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24183:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24200:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24203:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24193:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24193:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24193:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24297:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24300:4:13", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24290:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24290:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24290:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24321:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24324:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "24314:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24314:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24314:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "24155:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24369:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24386:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24389:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24379:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24379:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24379:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24483:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24486:4:13", | |
"type": "", | |
"value": "0x12" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24476:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24476:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24476:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24507:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24510:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "24500:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24500:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24500:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x12", | |
"nodeType": "YulFunctionDefinition", | |
"src": "24341:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24555:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24572:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24575:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24565:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24565:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24565:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24669:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24672:4:13", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24662:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24662:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24662:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24693:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24696:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "24686:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24686:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24686:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nodeType": "YulFunctionDefinition", | |
"src": "24527:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24741:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24758:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24761:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24751:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24751:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24751:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24855:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24858:4:13", | |
"type": "", | |
"value": "0x32" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24848:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24848:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24848:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24879:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24882:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "24872:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24872:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24872:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x32", | |
"nodeType": "YulFunctionDefinition", | |
"src": "24713:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "24927:152:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24944:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "24947:77:13", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "24937:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "24937:88:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "24937:88:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25041:1:13", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25044:4:13", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "25034:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25034:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25034:15:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25065:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25068:4:13", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "25058:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25058:15:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25058:15:13" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nodeType": "YulFunctionDefinition", | |
"src": "24899:180:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25174:28:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25191:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25194:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "25184:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25184:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25184:12:13" | |
} | |
] | |
}, | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nodeType": "YulFunctionDefinition", | |
"src": "25085:117:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25297:28:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25314:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25317:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "25307:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25307:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25307:12:13" | |
} | |
] | |
}, | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nodeType": "YulFunctionDefinition", | |
"src": "25208:117:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25420:28:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25437:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25440:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "25430:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25430:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25430:12:13" | |
} | |
] | |
}, | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulFunctionDefinition", | |
"src": "25331:117:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25543:28:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25560:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25563:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "25553:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25553:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25553:12:13" | |
} | |
] | |
}, | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulFunctionDefinition", | |
"src": "25454:117:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25625:54:13", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "25635:38:13", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "25653:5:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25660:2:13", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25649:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25649:14:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25669:2:13", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nodeType": "YulIdentifier", | |
"src": "25665:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25665:7:13" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "25645:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25645:28:13" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nodeType": "YulIdentifier", | |
"src": "25635:6:13" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "25608:5:13", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nodeType": "YulTypedName", | |
"src": "25618:6:13", | |
"type": "" | |
} | |
], | |
"src": "25577:102:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "25791:131:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "25813:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25821:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25809:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25809:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "25825:34:13", | |
"type": "", | |
"value": "ERC721: transfer to non ERC721Re" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "25802:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25802:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25802:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "25881:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "25889:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "25877:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25877:15:13" | |
}, | |
{ | |
"hexValue": "63656976657220696d706c656d656e746572", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "25894:20:13", | |
"type": "", | |
"value": "ceiver implementer" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "25870:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "25870:45:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "25870:45:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "25783:6:13", | |
"type": "" | |
} | |
], | |
"src": "25685:237:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26034:118:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26056:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26064:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26052:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26052:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26068:34:13", | |
"type": "", | |
"value": "ERC721: transfer from incorrect " | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26045:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26045:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26045:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26124:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26132:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26120:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26120:15:13" | |
}, | |
{ | |
"hexValue": "6f776e6572", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26137:7:13", | |
"type": "", | |
"value": "owner" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26113:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26113:32:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26113:32:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "26026:6:13", | |
"type": "" | |
} | |
], | |
"src": "25928:224:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26264:72:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26286:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26294:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26282:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26282:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26298:30:13", | |
"type": "", | |
"value": "ERC721: token already minted" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26275:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26275:54:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26275:54:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "26256:6:13", | |
"type": "" | |
} | |
], | |
"src": "26158:178:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26448:117:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26470:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26478:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26466:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26466:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26482:34:13", | |
"type": "", | |
"value": "ERC721: transfer to the zero add" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26459:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26459:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26459:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26538:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26546:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26534:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26534:15:13" | |
}, | |
{ | |
"hexValue": "72657373", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26551:6:13", | |
"type": "", | |
"value": "ress" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26527:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26527:31:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26527:31:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "26440:6:13", | |
"type": "" | |
} | |
], | |
"src": "26342:223:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26677:69:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26699:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26707:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26695:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26695:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26711:27:13", | |
"type": "", | |
"value": "ERC721: approve to caller" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26688:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26688:51:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26688:51:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "26669:6:13", | |
"type": "" | |
} | |
], | |
"src": "26571:175:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "26858:122:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26880:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26888:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26876:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26876:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26892:34:13", | |
"type": "", | |
"value": "ERC721: address zero is not a va" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26869:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26869:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26869:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "26948:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "26956:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "26944:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26944:15:13" | |
}, | |
{ | |
"hexValue": "6c6964206f776e6572", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "26961:11:13", | |
"type": "", | |
"value": "lid owner" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "26937:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "26937:36:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "26937:36:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "26850:6:13", | |
"type": "" | |
} | |
], | |
"src": "26752:228:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27092:127:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "27114:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27122:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27110:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27110:14:13" | |
}, | |
{ | |
"hexValue": "45524337323155524953746f726167653a2055524920736574206f66206e6f6e", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "27126:34:13", | |
"type": "", | |
"value": "ERC721URIStorage: URI set of non" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27103:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27103:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27103:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "27182:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27190:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27178:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27178:15:13" | |
}, | |
{ | |
"hexValue": "6578697374656e7420746f6b656e", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "27195:16:13", | |
"type": "", | |
"value": "existent token" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27171:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27171:41:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27171:41:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "27084:6:13", | |
"type": "" | |
} | |
], | |
"src": "26986:233:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27331:143:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "27353:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27361:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27349:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27349:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "27365:34:13", | |
"type": "", | |
"value": "ERC721: approve caller is not to" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27342:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27342:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27342:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "27421:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27429:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27417:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27417:15:13" | |
}, | |
{ | |
"hexValue": "6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "27434:32:13", | |
"type": "", | |
"value": "ken owner nor approved for all" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27410:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27410:57:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27410:57:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "27323:6:13", | |
"type": "" | |
} | |
], | |
"src": "27225:249:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27586:76:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "27608:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27616:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27604:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27604:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "27620:34:13", | |
"type": "", | |
"value": "ERC721: mint to the zero address" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27597:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27597:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27597:58:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "27578:6:13", | |
"type": "" | |
} | |
], | |
"src": "27480:182:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27774:68:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "27796:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27804:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27792:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27792:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "27808:26:13", | |
"type": "", | |
"value": "ERC721: invalid token ID" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27785:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27785:50:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27785:50:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "27766:6:13", | |
"type": "" | |
} | |
], | |
"src": "27668:174:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "27954:114:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "27976:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "27984:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "27972:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27972:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "27988:34:13", | |
"type": "", | |
"value": "ERC721: approval to current owne" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "27965:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "27965:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "27965:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "28044:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28052:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28040:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28040:15:13" | |
}, | |
{ | |
"hexValue": "72", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "28057:3:13", | |
"type": "", | |
"value": "r" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "28033:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28033:28:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28033:28:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "27946:6:13", | |
"type": "" | |
} | |
], | |
"src": "27848:220:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28180:127:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "28202:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28210:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28198:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28198:14:13" | |
}, | |
{ | |
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "28214:34:13", | |
"type": "", | |
"value": "ERC721: caller is not token owne" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "28191:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28191:58:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28191:58:13" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "28270:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28278:2:13", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28266:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28266:15:13" | |
}, | |
{ | |
"hexValue": "72206e6f7220617070726f766564", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "28283:16:13", | |
"type": "", | |
"value": "r nor approved" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "28259:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28259:41:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28259:41:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "28172:6:13", | |
"type": "" | |
} | |
], | |
"src": "28074:233:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28419:58:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "28441:6:13" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28449:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "28437:3:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28437:14:13" | |
}, | |
{ | |
"hexValue": "4e6f7420617574686f72697a6564", | |
"kind": "string", | |
"nodeType": "YulLiteral", | |
"src": "28453:16:13", | |
"type": "", | |
"value": "Not authorized" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "28430:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28430:40:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28430:40:13" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "28411:6:13", | |
"type": "" | |
} | |
], | |
"src": "28313:164:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28526:79:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28583:16:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28592:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28595:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "28585:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28585:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28585:12:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28549:5:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28574:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "28556:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28556:24:13" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "28546:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28546:35:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "28539:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28539:43:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "28536:63:13" | |
} | |
] | |
}, | |
"name": "validator_revert_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "28519:5:13", | |
"type": "" | |
} | |
], | |
"src": "28483:122:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28651:76:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28705:16:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28714:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28717:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "28707:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28707:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28707:12:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28674:5:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28696:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "28681:14:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28681:21:13" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "28671:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28671:32:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "28664:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28664:40:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "28661:60:13" | |
} | |
] | |
}, | |
"name": "validator_revert_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "28644:5:13", | |
"type": "" | |
} | |
], | |
"src": "28611:116:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28775:78:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28831:16:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28840:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28843:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "28833:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28833:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28833:12:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28798:5:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28822:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bytes4", | |
"nodeType": "YulIdentifier", | |
"src": "28805:16:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28805:23:13" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "28795:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28795:34:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "28788:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28788:42:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "28785:62:13" | |
} | |
] | |
}, | |
"name": "validator_revert_t_bytes4", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "28768:5:13", | |
"type": "" | |
} | |
], | |
"src": "28733:120:13" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28902:79:13", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "28959:16:13", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28968:1:13", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "28971:1:13", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "28961:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28961:12:13" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "28961:12:13" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28925:5:13" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "28950:5:13" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "28932:17:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28932:24:13" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "28922:2:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28922:35:13" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "28915:6:13" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "28915:43:13" | |
}, | |
"nodeType": "YulIf", | |
"src": "28912:63:13" | |
} | |
] | |
}, | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "28895:5:13", | |
"type": "" | |
} | |
], | |
"src": "28859:122:13" | |
} | |
] | |
}, | |
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 62)\n store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x != 0 and y > (maxValue / x)\n if and(iszero(iszero(x)), gt(y, div(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, x))) { panic_error_0x11() }\n\n product := mul(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(memPtr, 32), \"owner\")\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: address zero is not a va\")\n\n mstore(add(memPtr, 32), \"lid owner\")\n\n }\n\n function store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721URIStorage: URI set of non\")\n\n mstore(add(memPtr, 32), \"existent token\")\n\n }\n\n function store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not to\")\n\n mstore(add(memPtr, 32), \"ken owner nor approved for all\")\n\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: invalid token ID\")\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: caller is not token owne\")\n\n mstore(add(memPtr, 32), \"r nor approved\")\n\n }\n\n function store_literal_in_memory_fac3bac318c0d00994f57b0f2f4c643c313072b71db2302bf4b900309cc50b36(memPtr) {\n\n mstore(add(memPtr, 0), \"Not authorized\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n", | |
"id": 13, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb4651461026f578063b88d4fde1461028b578063c87b56dd146102a7578063e985e9c5146102d7576100ea565b80636352211e146101f157806370a082311461022157806395d89b4114610251576100ea565b8063095ea7b3116100c8578063095ea7b31461016d57806323b872dd1461018957806342842e0e146101a557806354ba0f27146101c1576100ea565b806301ffc9a7146100ef57806306fdde031461011f578063081812fc1461013d575b600080fd5b61010960048036038101906101049190611dc4565b610307565b604051610116919061216d565b60405180910390f35b6101276103e9565b6040516101349190612188565b60405180910390f35b61015760048036038101906101529190611e1e565b61047b565b6040516101649190612106565b60405180910390f35b61018760048036038101906101829190611d84565b6104c1565b005b6101a3600480360381019061019e9190611c6e565b6105d9565b005b6101bf60048036038101906101ba9190611c6e565b610639565b005b6101db60048036038101906101d69190611c01565b610659565b6040516101e8919061234a565b60405180910390f35b61020b60048036038101906102069190611e1e565b61079c565b6040516102189190612106565b60405180910390f35b61023b60048036038101906102369190611c01565b61084e565b604051610248919061234a565b60405180910390f35b610259610906565b6040516102669190612188565b60405180910390f35b61028960048036038101906102849190611d44565b610998565b005b6102a560048036038101906102a09190611cc1565b6109ae565b005b6102c160048036038101906102bc9190611e1e565b610a10565b6040516102ce9190612188565b60405180910390f35b6102f160048036038101906102ec9190611c2e565b610b23565b6040516102fe919061216d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103d257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103e257506103e182610d4f565b5b9050919050565b6060600080546103f8906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610424906125c9565b80156104715780601f1061044657610100808354040283529160200191610471565b820191906000526020600020905b81548152906001019060200180831161045457829003601f168201915b5050505050905090565b600061048682610db9565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104cc8261079c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561053d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610534906122ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661055c610e04565b73ffffffffffffffffffffffffffffffffffffffff16148061058b575061058a81610585610e04565b610b23565b5b6105ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c19061228a565b60405180910390fd5b6105d48383610e0c565b505050565b6105ea6105e4610e04565b82610ec5565b610629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106209061230a565b60405180910390fd5b610634838383610f5a565b505050565b610654838383604051806020016040528060008152506109ae565b505050565b600073b8b79891abf6957641ab350ed74842878cc06ff573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d49061232a565b60405180910390fd5b60006106e960076111c1565b90506106f583826111cf565b6107898160098054610706906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610732906125c9565b801561077f5780601f106107545761010080835404028352916020019161077f565b820191906000526020600020905b81548152906001019060200180831161076257829003601f168201915b50505050506111ed565b6107936007611261565b80915050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c906122ca565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b69061224a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060018054610915906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610941906125c9565b801561098e5780601f106109635761010080835404028352916020019161098e565b820191906000526020600020905b81548152906001019060200180831161097157829003601f168201915b5050505050905090565b6109aa6109a3610e04565b8383611277565b5050565b6109bf6109b9610e04565b83610ec5565b6109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f59061230a565b60405180910390fd5b610a0a848484846113e4565b50505050565b6060610a1b82610db9565b6000600660008481526020019081526020016000208054610a3b906125c9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a67906125c9565b8015610ab45780601f10610a8957610100808354040283529160200191610ab4565b820191906000526020600020905b815481529060010190602001808311610a9757829003601f168201915b505050505090506000610ac5611440565b9050600081511415610adb578192505050610b1e565b600082511115610b10578082604051602001610af89291906120e2565b60405160208183030381529060405292505050610b1e565b610b1984611457565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000825190506000811415610be05760405180602001604052806000815250915050610d4a565b60006003600283610bf191906123fe565b610bfb9190612454565b6004610c079190612485565b90506000602082610c1891906123fe565b67ffffffffffffffff811115610c3157610c30612762565b5b6040519080825280601f01601f191660200182016040528015610c635781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001612b58604091399050600181016020830160005b86811015610d075760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050610c8e565b506003860660018114610d215760028114610d3157610d3c565b613d3d60f01b6002830352610d3c565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610dc2816114bf565b610e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df8906122ca565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610e7f8361079c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ed18361079c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610f135750610f128185610b23565b5b80610f5157508373ffffffffffffffffffffffffffffffffffffffff16610f398461047b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610f7a8261079c565b73ffffffffffffffffffffffffffffffffffffffff1614610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc7906121ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611040576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110379061220a565b60405180910390fd5b61104b83838361152b565b611056600082610e0c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110a691906124df565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110fd91906123fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111bc838383611530565b505050565b600081600001549050919050565b6111e9828260405180602001604052806000815250611535565b5050565b6111f6826114bf565b611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c9061226a565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061125c929190611a85565b505050565b6001816000016000828254019250508190555050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd9061222a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d7919061216d565b60405180910390a3505050565b6113ef848484610f5a565b6113fb84848484611590565b61143a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611431906121aa565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b606061146282610db9565b600061146c611440565b9050600081511161148c57604051806020016040528060008152506114b7565b8061149684611727565b6040516020016114a79291906120e2565b6040516020818303038152906040525b915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b61153f8383611888565b61154c6000848484611590565b61158b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611582906121aa565b60405180910390fd5b505050565b60006115b18473ffffffffffffffffffffffffffffffffffffffff16611a62565b1561171a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115da610e04565b8786866040518563ffffffff1660e01b81526004016115fc9493929190612121565b602060405180830381600087803b15801561161657600080fd5b505af192505050801561164757506040513d601f19601f820116820180604052508101906116449190611df1565b60015b6116ca573d8060008114611677576040519150601f19603f3d011682016040523d82523d6000602084013e61167c565b606091505b506000815114156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906121aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061171f565b600190505b949350505050565b6060600082141561176f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611883565b600082905060005b600082146117a157808061178a9061262c565b915050600a8261179a9190612454565b9150611777565b60008167ffffffffffffffff8111156117bd576117bc612762565b5b6040519080825280601f01601f1916602001820160405280156117ef5781602001600182028036833780820191505090505b5090505b6000851461187c5760018261180891906124df565b9150600a856118179190612675565b603061182391906123fe565b60f81b81838151811061183957611838612733565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118759190612454565b94506117f3565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ef906122aa565b60405180910390fd5b611901816114bf565b15611941576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611938906121ea565b60405180910390fd5b61194d6000838361152b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199d91906123fe565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a5e60008383611530565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611a91906125c9565b90600052602060002090601f016020900481019282611ab35760008555611afa565b82601f10611acc57805160ff1916838001178555611afa565b82800160010185558215611afa579182015b82811115611af9578251825591602001919060010190611ade565b5b509050611b079190611b0b565b5090565b5b80821115611b24576000816000905550600101611b0c565b5090565b6000611b3b611b368461238a565b612365565b905082815260208101848484011115611b5757611b56612796565b5b611b62848285612587565b509392505050565b600081359050611b7981612afb565b92915050565b600081359050611b8e81612b12565b92915050565b600081359050611ba381612b29565b92915050565b600081519050611bb881612b29565b92915050565b600082601f830112611bd357611bd2612791565b5b8135611be3848260208601611b28565b91505092915050565b600081359050611bfb81612b40565b92915050565b600060208284031215611c1757611c166127a0565b5b6000611c2584828501611b6a565b91505092915050565b60008060408385031215611c4557611c446127a0565b5b6000611c5385828601611b6a565b9250506020611c6485828601611b6a565b9150509250929050565b600080600060608486031215611c8757611c866127a0565b5b6000611c9586828701611b6a565b9350506020611ca686828701611b6a565b9250506040611cb786828701611bec565b9150509250925092565b60008060008060808587031215611cdb57611cda6127a0565b5b6000611ce987828801611b6a565b9450506020611cfa87828801611b6a565b9350506040611d0b87828801611bec565b925050606085013567ffffffffffffffff811115611d2c57611d2b61279b565b5b611d3887828801611bbe565b91505092959194509250565b60008060408385031215611d5b57611d5a6127a0565b5b6000611d6985828601611b6a565b9250506020611d7a85828601611b7f565b9150509250929050565b60008060408385031215611d9b57611d9a6127a0565b5b6000611da985828601611b6a565b9250506020611dba85828601611bec565b9150509250929050565b600060208284031215611dda57611dd96127a0565b5b6000611de884828501611b94565b91505092915050565b600060208284031215611e0757611e066127a0565b5b6000611e1584828501611ba9565b91505092915050565b600060208284031215611e3457611e336127a0565b5b6000611e4284828501611bec565b91505092915050565b611e5481612513565b82525050565b611e6381612525565b82525050565b6000611e74826123bb565b611e7e81856123d1565b9350611e8e818560208601612596565b611e97816127a5565b840191505092915050565b6000611ead826123c6565b611eb781856123e2565b9350611ec7818560208601612596565b611ed0816127a5565b840191505092915050565b6000611ee6826123c6565b611ef081856123f3565b9350611f00818560208601612596565b80840191505092915050565b6000611f196032836123e2565b9150611f24826127b6565b604082019050919050565b6000611f3c6025836123e2565b9150611f4782612805565b604082019050919050565b6000611f5f601c836123e2565b9150611f6a82612854565b602082019050919050565b6000611f826024836123e2565b9150611f8d8261287d565b604082019050919050565b6000611fa56019836123e2565b9150611fb0826128cc565b602082019050919050565b6000611fc86029836123e2565b9150611fd3826128f5565b604082019050919050565b6000611feb602e836123e2565b9150611ff682612944565b604082019050919050565b600061200e603e836123e2565b915061201982612993565b604082019050919050565b60006120316020836123e2565b915061203c826129e2565b602082019050919050565b60006120546018836123e2565b915061205f82612a0b565b602082019050919050565b60006120776021836123e2565b915061208282612a34565b604082019050919050565b600061209a602e836123e2565b91506120a582612a83565b604082019050919050565b60006120bd600e836123e2565b91506120c882612ad2565b602082019050919050565b6120dc8161257d565b82525050565b60006120ee8285611edb565b91506120fa8284611edb565b91508190509392505050565b600060208201905061211b6000830184611e4b565b92915050565b60006080820190506121366000830187611e4b565b6121436020830186611e4b565b61215060408301856120d3565b81810360608301526121628184611e69565b905095945050505050565b60006020820190506121826000830184611e5a565b92915050565b600060208201905081810360008301526121a28184611ea2565b905092915050565b600060208201905081810360008301526121c381611f0c565b9050919050565b600060208201905081810360008301526121e381611f2f565b9050919050565b6000602082019050818103600083015261220381611f52565b9050919050565b6000602082019050818103600083015261222381611f75565b9050919050565b6000602082019050818103600083015261224381611f98565b9050919050565b6000602082019050818103600083015261226381611fbb565b9050919050565b6000602082019050818103600083015261228381611fde565b9050919050565b600060208201905081810360008301526122a381612001565b9050919050565b600060208201905081810360008301526122c381612024565b9050919050565b600060208201905081810360008301526122e381612047565b9050919050565b600060208201905081810360008301526123038161206a565b9050919050565b600060208201905081810360008301526123238161208d565b9050919050565b60006020820190508181036000830152612343816120b0565b9050919050565b600060208201905061235f60008301846120d3565b92915050565b600061236f612380565b905061237b82826125fb565b919050565b6000604051905090565b600067ffffffffffffffff8211156123a5576123a4612762565b5b6123ae826127a5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006124098261257d565b91506124148361257d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612449576124486126a6565b5b828201905092915050565b600061245f8261257d565b915061246a8361257d565b92508261247a576124796126d5565b5b828204905092915050565b60006124908261257d565b915061249b8361257d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124d4576124d36126a6565b5b828202905092915050565b60006124ea8261257d565b91506124f58361257d565b925082821015612508576125076126a6565b5b828203905092915050565b600061251e8261255d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156125b4578082015181840152602081019050612599565b838111156125c3576000848401525b50505050565b600060028204905060018216806125e157607f821691505b602082108114156125f5576125f4612704565b5b50919050565b612604826127a5565b810181811067ffffffffffffffff8211171561262357612622612762565b5b80604052505050565b60006126378261257d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561266a576126696126a6565b5b600182019050919050565b60006126808261257d565b915061268b8361257d565b92508261269b5761269a6126d5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b612b0481612513565b8114612b0f57600080fd5b50565b612b1b81612525565b8114612b2657600080fd5b50565b612b3281612531565b8114612b3d57600080fd5b50565b612b498161257d565b8114612b5457600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220fc751f2106dda19664774f40e8086640d45b4d24c598937865a7422e98a9d1a564736f6c63430008070033", | |
"opcodes": "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 ", | |
"sourceMap": "279:1162:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2470:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5005:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1206:233:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2190:218:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2632:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5250:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;482:608:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:162:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:300;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2470:98::-;2524:13;2556:5;2549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2470:98;:::o;3935:167::-;4011:7;4030:23;4045:7;4030:14;:23::i;:::-;4071:15;:24;4087:7;4071:24;;;;;;;;;;;;;;;;;;;;;4064:31;;3935:167;;;:::o;3467:407::-;3547:13;3563:23;3578:7;3563:14;:23::i;:::-;3547:39;;3610:5;3604:11;;:2;:11;;;;3596:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3701:5;3685:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3710:37;3727:5;3734:12;:10;:12::i;:::-;3710:16;:37::i;:::-;3685:62;3664:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:21;3855:2;3859:7;3846:8;:21::i;:::-;3537:337;3467:407;;:::o;4612:327::-;4801:41;4820:12;:10;:12::i;:::-;4834:7;4801:18;:41::i;:::-;4793:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;4904:28;4914:4;4920:2;4924:7;4904:9;:28::i;:::-;4612:327;;;:::o;5005:179::-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;:::-;5005:179;;;:::o;1206:233:11:-;1262:7;600:42;578:65;;:10;:65;;;570:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;1280:10:::1;1293:19;:9;:17;:19::i;:::-;1280:32;;1323:19;1333:4;1339:2;1323:9;:19::i;:::-;1352:29;1365:2;1369:11;1352:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:29::i;:::-;1392:21;:9;:19;:21::i;:::-;1430:2;1423:9;;;1206:233:::0;;;:::o;2190:218:0:-;2262:7;2281:13;2297:7;:16;2305:7;2297:16;;;;;;;;;;;;;;;;;;;;;2281:32;;2348:1;2331:19;;:5;:19;;;;2323:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;2396:5;2389:12;;;2190:218;;;:::o;1929:204::-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;2632:102::-;2688:13;2720:7;2713:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2632:102;:::o;4169:153::-;4263:52;4282:12;:10;:12::i;:::-;4296:8;4306;4263:18;:52::i;:::-;4169:153;;:::o;5250:315::-;5418:41;5437:12;:10;:12::i;:::-;5451:7;5418:18;:41::i;:::-;5410:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;5520:38;5534:4;5540:2;5544:7;5553:4;5520:13;:38::i;:::-;5250:315;;;;:::o;482:608:3:-;555:13;580:23;595:7;580:14;:23::i;:::-;614;640:10;:19;651:7;640:19;;;;;;;;;;;614:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;669:18;690:10;:8;:10::i;:::-;669:31;;795:1;779:4;773:18;:23;769:70;;;819:9;812:16;;;;;;769:70;967:1;947:9;941:23;:27;937:106;;;1015:4;1021:9;998:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;984:48;;;;;;937:106;1060:23;1075:7;1060:14;:23::i;:::-;1053:30;;;;482:608;;;;:::o;4388:162:0:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;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;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11657:133:0:-;11738:16;11746:7;11738;:16::i;:::-;11730:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11657:133;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;10959:171:0:-;11060:2;11033:15;:24;11049:7;11033:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11115:7;11111:2;11077:46;;11086:23;11101:7;11086:14;:23::i;:::-;11077:46;;;;;;;;;;;;10959:171;;:::o;7317:261::-;7410:4;7426:13;7442:23;7457:7;7442:14;:23::i;:::-;7426:39;;7494:5;7483:16;;:7;:16;;;:52;;;;7503:32;7520:5;7527:7;7503:16;:32::i;:::-;7483:52;:87;;;;7563:7;7539:31;;:20;7551:7;7539:11;:20::i;:::-;:31;;;7483:87;7475:96;;;7317:261;;;;:::o;10242:605::-;10396:4;10369:31;;:23;10384:7;10369:14;:23::i;:::-;:31;;;10361:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10474:1;10460:16;;:2;:16;;;;10452:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10528:39;10549:4;10555:2;10559:7;10528:20;:39::i;:::-;10629:29;10646:1;10650:7;10629:8;:29::i;:::-;10688:1;10669:9;:15;10679:4;10669:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10716:1;10699:9;:13;10709:2;10699:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10746:2;10727:7;:16;10735:7;10727:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10783:7;10779:2;10764:27;;10773:4;10764:27;;;;;;;;;;;;10802:38;10822:4;10828:2;10832:7;10802:19;:38::i;:::-;10242:605;;;:::o;827:112:7:-;892:7;918;:14;;;911:21;;827:112;;;:::o;7908:108:0:-;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;:::-;7908:108;;:::o;1237:214:3:-;1336:16;1344:7;1336;:16::i;:::-;1328:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1435:9;1413:10;:19;1424:7;1413:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;1237:214;;:::o;945:123:7:-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;11266:307:0:-;11416:8;11407:17;;:5;:17;;;;11399:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11502:8;11464:18;:25;11483:5;11464:25;;;;;;;;;;;;;;;:35;11490:8;11464:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11547:8;11525:41;;11540:5;11525:41;;;11557:8;11525:41;;;;;;:::i;:::-;;;;;;;;11266:307;;;:::o;6426:305::-;6576:28;6586:4;6592:2;6596:7;6576:9;:28::i;:::-;6622:47;6645:4;6651:2;6655:7;6664:4;6622:22;:47::i;:::-;6614:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;6426:305;;;;:::o;3318:92::-;3369:13;3394:9;;;;;;;;;;;;;;3318:92;:::o;2800:276::-;2873:13;2898:23;2913:7;2898:14;:23::i;:::-;2932:21;2956:10;:8;:10::i;:::-;2932:34;;3007:1;2989:7;2983:21;:25;:86;;;;;;;;;;;;;;;;;3035:7;3044:18;:7;:16;:18::i;:::-;3018:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2983:86;2976:93;;;2800:276;;;:::o;7034:125::-;7099:4;7150:1;7122:30;;:7;:16;7130:7;7122:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7115:37;;7034:125;;;:::o;13729:122::-;;;;:::o;14223:121::-;;;;:::o;8237:309::-;8361:18;8367:2;8371:7;8361:5;:18::i;:::-;8410:53;8441:1;8445:2;8449:7;8458:4;8410:22;:53::i;:::-;8389:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;8237:309;;;:::o;12342:831::-;12491:4;12511:15;:2;:13;;;:15::i;:::-;12507:660;;;12562:2;12546:36;;;12583:12;:10;:12::i;:::-;12597:4;12603:7;12612:4;12546:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12542:573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12801:1;12784:6;:13;:18;12780:321;;;12826:60;;;;;;;;;;:::i;:::-;;;;;;;;12780:321;13053:6;13047:13;13038:6;13034:2;13030:15;13023:38;12542:573;12677:41;;;12667:51;;;:6;:51;;;;12660:58;;;;;12507:660;13152:4;13145:11;;12342:831;;;;;;;:::o;392:703:8:-;448:13;674:1;665:5;:10;661:51;;;691:10;;;;;;;;;;;;;;;;;;;;;661:51;721:12;736:5;721:20;;751:14;775:75;790:1;782:4;:9;775:75;;807:8;;;;;:::i;:::-;;;;837:2;829:10;;;;;:::i;:::-;;;775:75;;;859:19;891:6;881:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;859:39;;908:150;924:1;915:5;:10;908:150;;951:1;941:11;;;;;:::i;:::-;;;1017:2;1009:5;:10;;;;:::i;:::-;996:2;:24;;;;:::i;:::-;983:39;;966:6;973;966:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1045:2;1036:11;;;;;:::i;:::-;;;908:150;;;1081:6;1067:21;;;;;392:703;;;;:::o;8868:427:0:-;8961:1;8947:16;;:2;:16;;;;8939:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9019:16;9027:7;9019;:16::i;:::-;9018:17;9010:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9079:45;9108:1;9112:2;9116:7;9079:20;:45::i;:::-;9152:1;9135:9;:13;9145:2;9135:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9182:2;9163:7;:16;9171:7;9163:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9225:7;9221:2;9200:33;;9217:1;9200:33;;;;;;;;;;;;9244:44;9272:1;9276:2;9280:7;9244:19;:44::i;:::-;8868:427;;:::o;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:13:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:::-;9597:3;9618:67;9682:2;9677:3;9618:67;:::i;:::-;9611:74;;9694:93;9783:3;9694:93;:::i;:::-;9812:2;9807:3;9803:12;9796:19;;9455:366;;;:::o;9827:::-;9969:3;9990:67;10054:2;10049:3;9990:67;:::i;:::-;9983:74;;10066:93;10155:3;10066:93;:::i;:::-;10184:2;10179:3;10175:12;10168:19;;9827:366;;;:::o;10199:::-;10341:3;10362:67;10426:2;10421:3;10362:67;:::i;:::-;10355:74;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10199:366;;;:::o;10571:::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:::-;11829:3;11850:67;11914:2;11909:3;11850:67;:::i;:::-;11843:74;;11926:93;12015:3;11926:93;:::i;:::-;12044:2;12039:3;12035:12;12028:19;;11687:366;;;:::o;12059:118::-;12146:24;12164:5;12146:24;:::i;:::-;12141:3;12134:37;12059:118;;:::o;12183:435::-;12363:3;12385:95;12476:3;12467:6;12385:95;:::i;:::-;12378:102;;12497:95;12588:3;12579:6;12497:95;:::i;:::-;12490:102;;12609:3;12602:10;;12183:435;;;;;:::o;12624:222::-;12717:4;12755:2;12744:9;12740:18;12732:26;;12768:71;12836:1;12825:9;12821:17;12812:6;12768:71;:::i;:::-;12624:222;;;;:::o;12852:640::-;13047:4;13085:3;13074:9;13070:19;13062:27;;13099:71;13167:1;13156:9;13152:17;13143:6;13099:71;:::i;:::-;13180:72;13248:2;13237:9;13233:18;13224:6;13180:72;:::i;:::-;13262;13330:2;13319:9;13315:18;13306:6;13262:72;:::i;:::-;13381:9;13375:4;13371:20;13366:2;13355:9;13351:18;13344:48;13409:76;13480:4;13471:6;13409:76;:::i;:::-;13401:84;;12852:640;;;;;;;:::o;13498:210::-;13585:4;13623:2;13612:9;13608:18;13600:26;;13636:65;13698:1;13687:9;13683:17;13674:6;13636:65;:::i;:::-;13498:210;;;;:::o;13714:313::-;13827:4;13865:2;13854:9;13850:18;13842:26;;13914:9;13908:4;13904:20;13900:1;13889:9;13885:17;13878:47;13942:78;14015:4;14006:6;13942:78;:::i;:::-;13934:86;;13714:313;;;;:::o;14033:419::-;14199:4;14237:2;14226:9;14222:18;14214:26;;14286:9;14280:4;14276:20;14272:1;14261:9;14257:17;14250:47;14314:131;14440:4;14314:131;:::i;:::-;14306:139;;14033:419;;;:::o;14458:::-;14624:4;14662:2;14651:9;14647:18;14639:26;;14711:9;14705:4;14701:20;14697:1;14686:9;14682:17;14675:47;14739:131;14865:4;14739:131;:::i;:::-;14731:139;;14458:419;;;:::o;14883:::-;15049:4;15087:2;15076:9;15072:18;15064:26;;15136:9;15130:4;15126:20;15122:1;15111:9;15107:17;15100:47;15164:131;15290:4;15164:131;:::i;:::-;15156:139;;14883:419;;;:::o;15308:::-;15474:4;15512:2;15501:9;15497:18;15489:26;;15561:9;15555:4;15551:20;15547:1;15536:9;15532:17;15525:47;15589:131;15715:4;15589:131;:::i;:::-;15581:139;;15308:419;;;:::o;15733:::-;15899:4;15937:2;15926:9;15922:18;15914:26;;15986:9;15980:4;15976:20;15972:1;15961:9;15957:17;15950:47;16014:131;16140:4;16014:131;:::i;:::-;16006:139;;15733:419;;;:::o;16158:::-;16324:4;16362:2;16351:9;16347:18;16339:26;;16411:9;16405:4;16401:20;16397:1;16386:9;16382:17;16375:47;16439:131;16565:4;16439:131;:::i;:::-;16431:139;;16158:419;;;:::o;16583:::-;16749:4;16787:2;16776:9;16772:18;16764:26;;16836:9;16830:4;16826:20;16822:1;16811:9;16807:17;16800:47;16864:131;16990:4;16864:131;:::i;:::-;16856:139;;16583:419;;;:::o;17008:::-;17174:4;17212:2;17201:9;17197:18;17189:26;;17261:9;17255:4;17251:20;17247:1;17236:9;17232:17;17225:47;17289:131;17415:4;17289:131;:::i;:::-;17281:139;;17008:419;;;:::o;17433:::-;17599:4;17637:2;17626:9;17622:18;17614:26;;17686:9;17680:4;17676:20;17672:1;17661:9;17657:17;17650:47;17714:131;17840:4;17714:131;:::i;:::-;17706:139;;17433:419;;;:::o;17858:::-;18024:4;18062:2;18051:9;18047:18;18039:26;;18111:9;18105:4;18101:20;18097:1;18086:9;18082:17;18075:47;18139:131;18265:4;18139:131;:::i;:::-;18131:139;;17858:419;;;:::o;18283:::-;18449:4;18487:2;18476:9;18472:18;18464:26;;18536:9;18530:4;18526:20;18522:1;18511:9;18507:17;18500:47;18564:131;18690:4;18564:131;:::i;:::-;18556:139;;18283:419;;;:::o;18708:::-;18874:4;18912:2;18901:9;18897:18;18889:26;;18961:9;18955:4;18951:20;18947:1;18936:9;18932:17;18925:47;18989:131;19115:4;18989:131;:::i;:::-;18981:139;;18708:419;;;:::o;19133:::-;19299:4;19337:2;19326:9;19322:18;19314:26;;19386:9;19380:4;19376:20;19372:1;19361:9;19357:17;19350:47;19414:131;19540:4;19414:131;:::i;:::-;19406:139;;19133:419;;;:::o;19558:222::-;19651:4;19689:2;19678:9;19674:18;19666:26;;19702:71;19770:1;19759:9;19755:17;19746:6;19702:71;:::i;:::-;19558:222;;;;:::o;19786:129::-;19820:6;19847:20;;:::i;:::-;19837:30;;19876:33;19904:4;19896:6;19876:33;:::i;:::-;19786:129;;;:::o;19921:75::-;19954:6;19987:2;19981:9;19971:19;;19921:75;:::o;20002:307::-;20063:4;20153:18;20145:6;20142:30;20139:56;;;20175:18;;:::i;:::-;20139:56;20213:29;20235:6;20213:29;:::i;:::-;20205:37;;20297:4;20291;20287:15;20279:23;;20002:307;;;:::o;20315:98::-;20366:6;20400:5;20394:12;20384:22;;20315:98;;;:::o;20419:99::-;20471:6;20505:5;20499:12;20489:22;;20419:99;;;:::o;20524:168::-;20607:11;20641:6;20636:3;20629:19;20681:4;20676:3;20672:14;20657:29;;20524:168;;;;:::o;20698:169::-;20782:11;20816:6;20811:3;20804:19;20856:4;20851:3;20847:14;20832:29;;20698:169;;;;:::o;20873:148::-;20975:11;21012:3;20997:18;;20873:148;;;;:::o;21027:305::-;21067:3;21086:20;21104:1;21086:20;:::i;:::-;21081:25;;21120:20;21138:1;21120:20;:::i;:::-;21115:25;;21274:1;21206:66;21202:74;21199:1;21196:81;21193:107;;;21280:18;;:::i;:::-;21193:107;21324:1;21321;21317:9;21310:16;;21027:305;;;;:::o;21338:185::-;21378:1;21395:20;21413:1;21395:20;:::i;:::-;21390:25;;21429:20;21447:1;21429:20;:::i;:::-;21424:25;;21468:1;21458:35;;21473:18;;:::i;:::-;21458:35;21515:1;21512;21508:9;21503:14;;21338:185;;;;:::o;21529:348::-;21569:7;21592:20;21610:1;21592:20;:::i;:::-;21587:25;;21626:20;21644:1;21626:20;:::i;:::-;21621:25;;21814:1;21746:66;21742:74;21739:1;21736:81;21731:1;21724:9;21717:17;21713:105;21710:131;;;21821:18;;:::i;:::-;21710:131;21869:1;21866;21862:9;21851:20;;21529:348;;;;:::o;21883:191::-;21923:4;21943:20;21961:1;21943:20;:::i;:::-;21938:25;;21977:20;21995:1;21977:20;:::i;:::-;21972:25;;22016:1;22013;22010:8;22007:34;;;22021:18;;:::i;:::-;22007:34;22066:1;22063;22059:9;22051:17;;21883:191;;;;:::o;22080:96::-;22117:7;22146:24;22164:5;22146:24;:::i;:::-;22135:35;;22080:96;;;:::o;22182:90::-;22216:7;22259:5;22252:13;22245:21;22234:32;;22182:90;;;:::o;22278:149::-;22314:7;22354:66;22347:5;22343:78;22332:89;;22278:149;;;:::o;22433:126::-;22470:7;22510:42;22503:5;22499:54;22488:65;;22433:126;;;:::o;22565:77::-;22602:7;22631:5;22620:16;;22565:77;;;:::o;22648:154::-;22732:6;22727:3;22722;22709:30;22794:1;22785:6;22780:3;22776:16;22769:27;22648:154;;;:::o;22808:307::-;22876:1;22886:113;22900:6;22897:1;22894:13;22886:113;;;22985:1;22980:3;22976:11;22970:18;22966:1;22961:3;22957:11;22950:39;22922:2;22919:1;22915:10;22910:15;;22886:113;;;23017:6;23014:1;23011:13;23008:101;;;23097:1;23088:6;23083:3;23079:16;23072:27;23008:101;22857:258;22808:307;;;:::o;23121:320::-;23165:6;23202:1;23196:4;23192:12;23182:22;;23249:1;23243:4;23239:12;23270:18;23260:81;;23326:4;23318:6;23314:17;23304:27;;23260:81;23388:2;23380:6;23377:14;23357:18;23354:38;23351:84;;;23407:18;;:::i;:::-;23351:84;23172:269;23121:320;;;:::o;23447:281::-;23530:27;23552:4;23530:27;:::i;:::-;23522:6;23518:40;23660:6;23648:10;23645:22;23624:18;23612:10;23609:34;23606:62;23603:88;;;23671:18;;:::i;:::-;23603:88;23711:10;23707:2;23700:22;23490:238;23447:281;;:::o;23734:233::-;23773:3;23796:24;23814:5;23796:24;:::i;:::-;23787:33;;23842:66;23835:5;23832:77;23829:103;;;23912:18;;:::i;:::-;23829:103;23959:1;23952:5;23948:13;23941:20;;23734:233;;;:::o;23973:176::-;24005:1;24022:20;24040:1;24022:20;:::i;:::-;24017:25;;24056:20;24074:1;24056:20;:::i;:::-;24051:25;;24095:1;24085:35;;24100:18;;:::i;:::-;24085:35;24141:1;24138;24134:9;24129:14;;23973:176;;;;:::o;24155:180::-;24203:77;24200:1;24193:88;24300:4;24297:1;24290:15;24324:4;24321:1;24314:15;24341:180;24389:77;24386:1;24379:88;24486:4;24483:1;24476:15;24510:4;24507:1;24500:15;24527:180;24575:77;24572:1;24565:88;24672:4;24669:1;24662:15;24696:4;24693:1;24686:15;24713:180;24761:77;24758:1;24751:88;24858:4;24855:1;24848:15;24882:4;24879:1;24872:15;24899:180;24947:77;24944:1;24937:88;25044:4;25041:1;25034:15;25068:4;25065:1;25058:15;25085:117;25194:1;25191;25184:12;25208:117;25317:1;25314;25307:12;25331:117;25440:1;25437;25430:12;25454:117;25563:1;25560;25553:12;25577:102;25618:6;25669:2;25665:7;25660:2;25653:5;25649:14;25645:28;25635:38;;25577:102;;;:::o;25685:237::-;25825:34;25821:1;25813:6;25809:14;25802:58;25894:20;25889:2;25881:6;25877:15;25870:45;25685:237;:::o;25928:224::-;26068:34;26064:1;26056:6;26052:14;26045:58;26137:7;26132:2;26124:6;26120:15;26113:32;25928:224;:::o;26158:178::-;26298:30;26294:1;26286:6;26282:14;26275:54;26158:178;:::o;26342:223::-;26482:34;26478:1;26470:6;26466:14;26459:58;26551:6;26546:2;26538:6;26534:15;26527:31;26342:223;:::o;26571:175::-;26711:27;26707:1;26699:6;26695:14;26688:51;26571:175;:::o;26752:228::-;26892:34;26888:1;26880:6;26876:14;26869:58;26961:11;26956:2;26948:6;26944:15;26937:36;26752:228;:::o;26986:233::-;27126:34;27122:1;27114:6;27110:14;27103:58;27195:16;27190:2;27182:6;27178:15;27171:41;26986:233;:::o;27225:249::-;27365:34;27361:1;27353:6;27349:14;27342:58;27434:32;27429:2;27421:6;27417:15;27410:57;27225:249;:::o;27480:182::-;27620:34;27616:1;27608:6;27604:14;27597:58;27480:182;:::o;27668:174::-;27808:26;27804:1;27796:6;27792:14;27785:50;27668:174;:::o;27848:220::-;27988:34;27984:1;27976:6;27972:14;27965:58;28057:3;28052:2;28044:6;28040:15;28033:28;27848:220;:::o;28074:233::-;28214:34;28210:1;28202:6;28198:14;28191:58;28283:16;28278:2;28270:6;28266:15;28259:41;28074:233;:::o;28313:164::-;28453:16;28449:1;28441:6;28437:14;28430:40;28313:164;:::o;28483:122::-;28556:24;28574:5;28556:24;:::i;:::-;28549:5;28546:35;28536:63;;28595:1;28592;28585:12;28536:63;28483:122;:::o;28611:116::-;28681:21;28696:5;28681:21;:::i;:::-;28674:5;28671:32;28661:60;;28717:1;28714;28707:12;28661:60;28611:116;:::o;28733:120::-;28805:23;28822:5;28805:23;:::i;:::-;28798:5;28795:34;28785:62;;28843:1;28840;28833:12;28785:62;28733:120;:::o;28859:122::-;28932:24;28950:5;28932:24;:::i;:::-;28925:5;28922:35;28912:63;;28971:1;28968;28961:12;28912:63;28859:122;:::o" | |
}, | |
"gasEstimates": { | |
"creation": { | |
"codeDepositCost": "2242600", | |
"executionCost": "infinite", | |
"totalCost": "infinite" | |
}, | |
"external": { | |
"approve(address,uint256)": "infinite", | |
"balanceOf(address)": "2924", | |
"getApproved(uint256)": "5257", | |
"isApprovedForAll(address,address)": "infinite", | |
"mintNFT(address)": "infinite", | |
"name()": "infinite", | |
"ownerOf(uint256)": "2982", | |
"safeTransferFrom(address,address,uint256)": "infinite", | |
"safeTransferFrom(address,address,uint256,bytes)": "infinite", | |
"setApprovalForAll(address,bool)": "infinite", | |
"supportsInterface(bytes4)": "797", | |
"symbol()": "infinite", | |
"tokenURI(uint256)": "infinite", | |
"transferFrom(address,address,uint256)": "infinite" | |
} | |
}, | |
"methodIdentifiers": { | |
"approve(address,uint256)": "095ea7b3", | |
"balanceOf(address)": "70a08231", | |
"getApproved(uint256)": "081812fc", | |
"isApprovedForAll(address,address)": "e985e9c5", | |
"mintNFT(address)": "54ba0f27", | |
"name()": "06fdde03", | |
"ownerOf(uint256)": "6352211e", | |
"safeTransferFrom(address,address,uint256)": "42842e0e", | |
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde", | |
"setApprovalForAll(address,bool)": "a22cb465", | |
"supportsInterface(bytes4)": "01ffc9a7", | |
"symbol()": "95d89b41", | |
"tokenURI(uint256)": "c87b56dd", | |
"transferFrom(address,address,uint256)": "23b872dd" | |
} | |
}, | |
"abi": [ | |
{ | |
"inputs": [], | |
"stateMutability": "nonpayable", | |
"type": "constructor" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "approved", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "Approval", | |
"type": "event" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "bool", | |
"name": "approved", | |
"type": "bool" | |
} | |
], | |
"name": "ApprovalForAll", | |
"type": "event" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "Transfer", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "approve", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
} | |
], | |
"name": "balanceOf", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "getApproved", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
} | |
], | |
"name": "isApprovedForAll", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "addr", | |
"type": "address" | |
} | |
], | |
"name": "mintNFT", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "name", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "ownerOf", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "safeTransferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "bytes", | |
"name": "data", | |
"type": "bytes" | |
} | |
], | |
"name": "safeTransferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
}, | |
{ | |
"internalType": "bool", | |
"name": "approved", | |
"type": "bool" | |
} | |
], | |
"name": "setApprovalForAll", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "bytes4", | |
"name": "interfaceId", | |
"type": "bytes4" | |
} | |
], | |
"name": "supportsInterface", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "symbol", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "tokenURI", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "transferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
] | |
} |
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
{ | |
"compiler": { | |
"version": "0.8.7+commit.e28d00a7" | |
}, | |
"language": "Solidity", | |
"output": { | |
"abi": [ | |
{ | |
"inputs": [], | |
"stateMutability": "nonpayable", | |
"type": "constructor" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "approved", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "Approval", | |
"type": "event" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "bool", | |
"name": "approved", | |
"type": "bool" | |
} | |
], | |
"name": "ApprovalForAll", | |
"type": "event" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "Transfer", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "approve", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
} | |
], | |
"name": "balanceOf", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "getApproved", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
} | |
], | |
"name": "isApprovedForAll", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "addr", | |
"type": "address" | |
} | |
], | |
"name": "mintNFT", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "name", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "ownerOf", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "safeTransferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "bytes", | |
"name": "data", | |
"type": "bytes" | |
} | |
], | |
"name": "safeTransferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
}, | |
{ | |
"internalType": "bool", | |
"name": "approved", | |
"type": "bool" | |
} | |
], | |
"name": "setApprovalForAll", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "bytes4", | |
"name": "interfaceId", | |
"type": "bytes4" | |
} | |
], | |
"name": "supportsInterface", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "symbol", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "tokenURI", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "transferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": { | |
"approve(address,uint256)": { | |
"details": "See {IERC721-approve}." | |
}, | |
"balanceOf(address)": { | |
"details": "See {IERC721-balanceOf}." | |
}, | |
"getApproved(uint256)": { | |
"details": "See {IERC721-getApproved}." | |
}, | |
"isApprovedForAll(address,address)": { | |
"details": "See {IERC721-isApprovedForAll}." | |
}, | |
"name()": { | |
"details": "See {IERC721Metadata-name}." | |
}, | |
"ownerOf(uint256)": { | |
"details": "See {IERC721-ownerOf}." | |
}, | |
"safeTransferFrom(address,address,uint256)": { | |
"details": "See {IERC721-safeTransferFrom}." | |
}, | |
"safeTransferFrom(address,address,uint256,bytes)": { | |
"details": "See {IERC721-safeTransferFrom}." | |
}, | |
"setApprovalForAll(address,bool)": { | |
"details": "See {IERC721-setApprovalForAll}." | |
}, | |
"supportsInterface(bytes4)": { | |
"details": "See {IERC165-supportsInterface}." | |
}, | |
"symbol()": { | |
"details": "See {IERC721Metadata-symbol}." | |
}, | |
"tokenURI(uint256)": { | |
"details": "See {IERC721Metadata-tokenURI}." | |
}, | |
"transferFrom(address,address,uint256)": { | |
"details": "See {IERC721-transferFrom}." | |
} | |
}, | |
"version": 1 | |
}, | |
"userdoc": { | |
"kind": "user", | |
"methods": {}, | |
"version": 1 | |
} | |
}, | |
"settings": { | |
"compilationTarget": { | |
"contracts/ProofOfBuilding.sol": "ProofOfBuilding" | |
}, | |
"evmVersion": "london", | |
"libraries": {}, | |
"metadata": { | |
"bytecodeHash": "ipfs" | |
}, | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"remappings": [] | |
}, | |
"sources": { | |
"@openzeppelin/contracts/token/ERC721/ERC721.sol": { | |
"keccak256": "0x0b606994df12f0ce35f6d2f6dcdde7e55e6899cdef7e00f180980caa81e3844e", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://4c827c981a552d1c76c96060e92f56b52bc20c6f9b4dbf911fe99ddbfb41f2ea", | |
"dweb:/ipfs/QmW8xvJdzHrr8Ry34C7viBsgG2b8T1mL4BQWJ5CdfD9JLB" | |
] | |
}, | |
"@openzeppelin/contracts/token/ERC721/IERC721.sol": { | |
"keccak256": "0xed6a749c5373af398105ce6ee3ac4763aa450ea7285d268c85d9eeca809cdb1f", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://20a97f891d06f0fe91560ea1a142aaa26fdd22bed1b51606b7d48f670deeb50f", | |
"dweb:/ipfs/QmTbCtZKChpaX5H2iRiTDMcSz29GSLCpTCDgJpcMR4wg8x" | |
] | |
}, | |
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": { | |
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708", | |
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV" | |
] | |
}, | |
"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol": { | |
"keccak256": "0x5c3501c1b70fcfc64417e9da5cc6a3597191baa354781e508e1e14cc0e50a038", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://899c87a849a94c848818d0afede6961d2c87665af1dd23a5c983e78981a65691", | |
"dweb:/ipfs/QmUeFDffQRDmX87FX3MRxN3bmpUxDTWpWLwPJzeAJ3yF6H" | |
] | |
}, | |
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": { | |
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146", | |
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf" | |
] | |
}, | |
"@openzeppelin/contracts/utils/Address.sol": { | |
"keccak256": "0xd6153ce99bcdcce22b124f755e72553295be6abcd63804cfdffceb188b8bef10", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://35c47bece3c03caaa07fab37dd2bb3413bfbca20db7bd9895024390e0a469487", | |
"dweb:/ipfs/QmPGWT2x3QHcKxqe6gRmAkdakhbaRgx3DLzcakHz5M4eXG" | |
] | |
}, | |
"@openzeppelin/contracts/utils/Context.sol": { | |
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92", | |
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3" | |
] | |
}, | |
"@openzeppelin/contracts/utils/Counters.sol": { | |
"keccak256": "0xf0018c2440fbe238dd3a8732fa8e17a0f9dce84d31451dc8a32f6d62b349c9f1", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://59e1c62884d55b70f3ae5432b44bb3166ad71ae3acd19c57ab6ddc3c87c325ee", | |
"dweb:/ipfs/QmezuXg5GK5oeA4F91EZhozBFekhq5TD966bHPH18cCqhu" | |
] | |
}, | |
"@openzeppelin/contracts/utils/Strings.sol": { | |
"keccak256": "0xaf159a8b1923ad2a26d516089bceca9bdeaeacd04be50983ea00ba63070f08a3", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://6f2cf1c531122bc7ca96b8c8db6a60deae60441e5223065e792553d4849b5638", | |
"dweb:/ipfs/QmPBdJmBBABMDCfyDjCbdxgiqRavgiSL88SYPGibgbPas9" | |
] | |
}, | |
"@openzeppelin/contracts/utils/introspection/ERC165.sol": { | |
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d", | |
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43" | |
] | |
}, | |
"@openzeppelin/contracts/utils/introspection/IERC165.sol": { | |
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f", | |
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy" | |
] | |
}, | |
"contracts/ProofOfBuilding.sol": { | |
"keccak256": "0xf55595015432417fca9610e2a8099da0b6205c92b76d9965d2a16ef20daebf19", | |
"license": "GPL-3.0", | |
"urls": [ | |
"bzz-raw://e7acbc99b31aafe0a72e84071e7ff88f905a673c6eb9d97534b60d6aceb488c8", | |
"dweb:/ipfs/QmQ4oNbXQzZSXNrrw3w7RzboLwsUhG3ZYjoM4TXEQ76QZA" | |
] | |
}, | |
"contracts/libraries/base64.sol": { | |
"keccak256": "0x6031abe877d4898183794136b9f5a258586cc9023df4050bb82248b18b1540a0", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://3b5948bd480971c2138d86c861e9ad4677c92a5a486de44858803ed69828fb96", | |
"dweb:/ipfs/Qmc14H9bGg7MeYdPYiWba1sKQik4k2T1RVZsTg3dMmnghB" | |
] | |
} | |
}, | |
"version": 1 | |
} |
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: GPL-3.0 | |
pragma solidity ^0.8.1; | |
// importing OpenZeppelin Contract | |
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; | |
import "@openzeppelin/contracts/utils/Counters.sol"; | |
import { Base64 } from "./libraries/base64.sol"; | |
contract ProofOfBuilding is ERC721URIStorage { | |
using Counters for Counters.Counter; | |
Counters.Counter private _tokenIds; | |
constructor() ERC721("proof-of-building", "engineer-hackathon") {} | |
// ONLY ALLOW ME TO MINT NFT FOR OTHERS PARTICIPANTS | |
modifier onlyOwner { | |
require(msg.sender == address(0xB8b79891ABF6957641ab350eD74842878Cc06ff5), 'Not authorized'); | |
_; | |
} | |
string json = Base64.encode( | |
abi.encodePacked( | |
'{"name": "', | |
"Engineer Hacks Hackathon", | |
'", "description": "This is Proof-Of-Building NFT for Engineer Hackathon. Keep Building !!","image": "https://bafkreibsghmmdpipphza3y2doxgcy73lmkxvguxav67kgertqa42q7p2cu.ipfs.dweb.link/"}' | |
) | |
); | |
string metadataURI = string( | |
abi.encodePacked("data:application/json;base64,",json) | |
); | |
function mintNFT(address addr) public onlyOwner returns(uint256){ | |
uint256 id = _tokenIds.current(); | |
_safeMint(addr, id); | |
_setTokenURI(id, metadataURI); | |
_tokenIds.increment(); | |
return id; | |
} | |
} |
This file has been truncated, but you can view the full file.
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
{ | |
"id": "9da86383e22385ac193dadbffced8462", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.7", | |
"solcLongVersion": "0.8.7+commit.e28d00a7", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/ProofOfBuilding.sol": { | |
"content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity ^0.8.1;\n\n// importing OpenZeppelin Contract\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\";\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\nimport { Base64 } from \"./libraries/base64.sol\";\n\ncontract ProofOfBuilding is ERC721URIStorage {\n using Counters for Counters.Counter;\n Counters.Counter private _tokenIds;\n\n constructor() ERC721(\"proof-of-building\", \"engineer-hackathon\") {}\n\n // ONLY ALLOW ME TO MINT NFT FOR OTHERS PARTICIPANTS\n modifier onlyOwner {\n require(msg.sender == address(0xB8b79891ABF6957641ab350eD74842878Cc06ff5), 'Not authorized');\n _;\n }\n\n string json = Base64.encode(\n abi.encodePacked(\n '{\"name\": \"',\n \"Engineer Hacks Hackathon\",\n '\", \"description\": \"This is Proof-Of-Building NFT for Engineer Hackathon. Keep Building !!\",\"image\": \"https://bafkreibsghmmdpipphza3y2doxgcy73lmkxvguxav67kgertqa42q7p2cu.ipfs.dweb.link/\"}'\n )\n );\n\n string metadataURI = string(\n abi.encodePacked(\"data:application/json;base64,\",json)\n );\n\n function mintNFT(address addr) public onlyOwner returns(uint256){\n uint256 id = _tokenIds.current();\n\n _safeMint(addr, id);\n _setTokenURI(id, metadataURI);\n\n _tokenIds.increment();\n return id;\n }\n}" | |
}, | |
"contracts/libraries/base64.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\n/// [MIT License]\n/// @title Base64\n/// @notice Provides a function for encoding some bytes in base64\n/// @author Brecht Devos <[email protected]>\nlibrary Base64 {\n bytes internal constant TABLE =\n \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\";\n\n /// @notice Encodes some bytes to the base64 representation\n function encode(bytes memory data) internal pure returns (string memory) {\n uint256 len = data.length;\n if (len == 0) return \"\";\n\n // multiply by 4/3 rounded up\n uint256 encodedLen = 4 * ((len + 2) / 3);\n\n // Add some extra buffer at the end\n bytes memory result = new bytes(encodedLen + 32);\n\n bytes memory table = TABLE;\n\n assembly {\n let tablePtr := add(table, 1)\n let resultPtr := add(result, 32)\n\n for {\n let i := 0\n } lt(i, len) {\n\n } {\n i := add(i, 3)\n let input := and(mload(add(data, i)), 0xffffff)\n\n let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))\n out := shl(8, out)\n out := add(\n out,\n and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)\n )\n out := shl(8, out)\n out := add(\n out,\n and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)\n )\n out := shl(8, out)\n out := add(\n out,\n and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)\n )\n out := shl(224, out)\n\n mstore(resultPtr, out)\n\n resultPtr := add(resultPtr, 4)\n }\n\n switch mod(len, 3)\n case 1 {\n mstore(sub(resultPtr, 2), shl(240, 0x3d3d))\n }\n case 2 {\n mstore(sub(resultPtr, 1), shl(248, 0x3d))\n }\n\n mstore(result, encodedLen)\n }\n\n return string(result);\n }\n}" | |
}, | |
"@openzeppelin/contracts/utils/Counters.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title Counters\n * @author Matt Condon (@shrugs)\n * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number\n * of elements in a mapping, issuing ERC721 ids, or counting request ids.\n *\n * Include with `using Counters for Counters.Counter;`\n */\nlibrary Counters {\n struct Counter {\n // This variable should never be directly accessed by users of the library: interactions must be restricted to\n // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add\n // this feature: see https://github.com/ethereum/solidity/issues/4637\n uint256 _value; // default: 0\n }\n\n function current(Counter storage counter) internal view returns (uint256) {\n return counter._value;\n }\n\n function increment(Counter storage counter) internal {\n unchecked {\n counter._value += 1;\n }\n }\n\n function decrement(Counter storage counter) internal {\n uint256 value = counter._value;\n require(value > 0, \"Counter: decrement overflow\");\n unchecked {\n counter._value = value - 1;\n }\n }\n\n function reset(Counter storage counter) internal {\n counter._value = 0;\n }\n}\n" | |
}, | |
"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721URIStorage.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../ERC721.sol\";\n\n/**\n * @dev ERC721 token with storage based token URI management.\n */\nabstract contract ERC721URIStorage is ERC721 {\n using Strings for uint256;\n\n // Optional mapping for token URIs\n mapping(uint256 => string) private _tokenURIs;\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n _requireMinted(tokenId);\n\n string memory _tokenURI = _tokenURIs[tokenId];\n string memory base = _baseURI();\n\n // If there is no base URI, return the token URI.\n if (bytes(base).length == 0) {\n return _tokenURI;\n }\n // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).\n if (bytes(_tokenURI).length > 0) {\n return string(abi.encodePacked(base, _tokenURI));\n }\n\n return super.tokenURI(tokenId);\n }\n\n /**\n * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {\n require(_exists(tokenId), \"ERC721URIStorage: URI set of nonexistent token\");\n _tokenURIs[tokenId] = _tokenURI;\n }\n\n /**\n * @dev See {ERC721-_burn}. This override additionally checks to see if a\n * token-specific URI was set for the token, and if so, it deletes the token URI from\n * the storage mapping.\n */\n function _burn(uint256 tokenId) internal virtual override {\n super._burn(tokenId);\n\n if (bytes(_tokenURIs[tokenId]).length != 0) {\n delete _tokenURIs[tokenId];\n }\n }\n}\n" | |
}, | |
"@openzeppelin/contracts/token/ERC721/ERC721.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to owner address\n mapping(uint256 => address) private _owners;\n\n // Mapping owner address to token count\n mapping(address => uint256) private _balances;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n /**\n * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view virtual override returns (uint256) {\n require(owner != address(0), \"ERC721: address zero is not a valid owner\");\n return _balances[owner];\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n address owner = _owners[tokenId];\n require(owner != address(0), \"ERC721: invalid token ID\");\n return owner;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n _requireMinted(tokenId);\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\";\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overridden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return \"\";\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public virtual override {\n address owner = ERC721.ownerOf(tokenId);\n require(to != owner, \"ERC721: approval to current owner\");\n\n require(\n _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n \"ERC721: approve caller is not token owner nor approved for all\"\n );\n\n _approve(to, tokenId);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view virtual override returns (address) {\n _requireMinted(tokenId);\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n _setApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\");\n\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) public virtual override {\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\");\n _safeTransfer(from, to, tokenId, data);\n }\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * `data` is additional data, it has no specified format and it is sent in call to `to`.\n *\n * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n * implement alternative mechanisms to perform token transfer, such as signature-based.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeTransfer(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) internal virtual {\n _transfer(from, to, tokenId);\n require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\");\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n * and stop existing when they are burned (`_burn`).\n */\n function _exists(uint256 tokenId) internal view virtual returns (bool) {\n return _owners[tokenId] != address(0);\n }\n\n /**\n * @dev Returns whether `spender` is allowed to manage `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n address owner = ERC721.ownerOf(tokenId);\n return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);\n }\n\n /**\n * @dev Safely mints `tokenId` and transfers it to `to`.\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(address to, uint256 tokenId) internal virtual {\n _safeMint(to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeMint(\n address to,\n uint256 tokenId,\n bytes memory data\n ) internal virtual {\n _mint(to, tokenId);\n require(\n _checkOnERC721Received(address(0), to, tokenId, data),\n \"ERC721: transfer to non ERC721Receiver implementer\"\n );\n }\n\n /**\n * @dev Mints `tokenId` and transfers it to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - `to` cannot be the zero address.\n *\n * Emits a {Transfer} event.\n */\n function _mint(address to, uint256 tokenId) internal virtual {\n require(to != address(0), \"ERC721: mint to the zero address\");\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n _beforeTokenTransfer(address(0), to, tokenId);\n\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(address(0), to, tokenId);\n\n _afterTokenTransfer(address(0), to, tokenId);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal virtual {\n address owner = ERC721.ownerOf(tokenId);\n\n _beforeTokenTransfer(owner, address(0), tokenId);\n\n // Clear approvals\n _approve(address(0), tokenId);\n\n _balances[owner] -= 1;\n delete _owners[tokenId];\n\n emit Transfer(owner, address(0), tokenId);\n\n _afterTokenTransfer(owner, address(0), tokenId);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n require(to != address(0), \"ERC721: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, tokenId);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId);\n\n _balances[from] -= 1;\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n _afterTokenTransfer(from, to, tokenId);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits an {Approval} event.\n */\n function _approve(address to, uint256 tokenId) internal virtual {\n _tokenApprovals[tokenId] = to;\n emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n }\n\n /**\n * @dev Approve `operator` to operate on all of `owner` tokens\n *\n * Emits an {ApprovalForAll} event.\n */\n function _setApprovalForAll(\n address owner,\n address operator,\n bool approved\n ) internal virtual {\n require(owner != operator, \"ERC721: approve to caller\");\n _operatorApprovals[owner][operator] = approved;\n emit ApprovalForAll(owner, operator, approved);\n }\n\n /**\n * @dev Reverts if the `tokenId` has not been minted yet.\n */\n function _requireMinted(uint256 tokenId) internal view virtual {\n require(_exists(tokenId), \"ERC721: invalid token ID\");\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n * The call is not executed if the target address is not a contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory data\n ) private returns (bool) {\n if (to.isContract()) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {\n return retval == IERC721Receiver.onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n } else {\n /// @solidity memory-safe-assembly\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n } else {\n return true;\n }\n }\n\n /**\n * @dev Hook that is called before any token transfer. This includes minting\n * and burning.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\n * transferred to `to`.\n * - When `from` is zero, `tokenId` will be minted for `to`.\n * - When `to` is zero, ``from``'s `tokenId` will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n}\n" | |
}, | |
"@openzeppelin/contracts/utils/introspection/ERC165.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n" | |
}, | |
"@openzeppelin/contracts/utils/Strings.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n uint8 private constant _ADDRESS_LENGTH = 20;\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n // Inspired by OraclizeAPI's implementation - MIT licence\n // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n if (value == 0) {\n return \"0\";\n }\n uint256 temp = value;\n uint256 digits;\n while (temp != 0) {\n digits++;\n temp /= 10;\n }\n bytes memory buffer = new bytes(digits);\n while (value != 0) {\n digits -= 1;\n buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n value /= 10;\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n if (value == 0) {\n return \"0x00\";\n }\n uint256 temp = value;\n uint256 length = 0;\n while (temp != 0) {\n length++;\n temp >>= 8;\n }\n return toHexString(value, length);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _HEX_SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n\n /**\n * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.\n */\n function toHexString(address addr) internal pure returns (string memory) {\n return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);\n }\n}\n" | |
}, | |
"@openzeppelin/contracts/utils/Context.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n" | |
}, | |
"@openzeppelin/contracts/utils/Address.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n /// @solidity memory-safe-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n" | |
}, | |
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n" | |
}, | |
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n" | |
}, | |
"@openzeppelin/contracts/token/ERC721/IERC721.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n" | |
}, | |
"@openzeppelin/contracts/utils/introspection/IERC165.sol": { | |
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n" | |
} | |
}, | |
"settings": { | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"outputSelection": { | |
"*": { | |
"": [ | |
"ast" | |
], | |
"*": [ | |
"abi", | |
"metadata", | |
"devdoc", | |
"userdoc", | |
"storageLayout", | |
"evm.legacyAssembly", | |
"evm.bytecode", | |
"evm.deployedBytecode", | |
"evm.methodIdentifiers", | |
"evm.gasEstimates", | |
"evm.assembly" | |
] | |
} | |
} | |
} | |
}, | |
"output": { | |
"contracts": { | |
"@openzeppelin/contracts/token/ERC721/ERC721.sol": { | |
"ERC721": { | |
"abi": [ | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "name_", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "symbol_", | |
"type": "string" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "constructor" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "approved", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "Approval", | |
"type": "event" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "bool", | |
"name": "approved", | |
"type": "bool" | |
} | |
], | |
"name": "ApprovalForAll", | |
"type": "event" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"indexed": true, | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "Transfer", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "approve", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
} | |
], | |
"name": "balanceOf", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "getApproved", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "owner", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
} | |
], | |
"name": "isApprovedForAll", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "name", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "ownerOf", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "safeTransferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "bytes", | |
"name": "data", | |
"type": "bytes" | |
} | |
], | |
"name": "safeTransferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "operator", | |
"type": "address" | |
}, | |
{ | |
"internalType": "bool", | |
"name": "approved", | |
"type": "bool" | |
} | |
], | |
"name": "setApprovalForAll", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "bytes4", | |
"name": "interfaceId", | |
"type": "bytes4" | |
} | |
], | |
"name": "supportsInterface", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "symbol", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "tokenURI", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "from", | |
"type": "address" | |
}, | |
{ | |
"internalType": "address", | |
"name": "to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "tokenId", | |
"type": "uint256" | |
} | |
], | |
"name": "transferFrom", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"details": "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}.", | |
"kind": "dev", | |
"methods": { | |
"approve(address,uint256)": { | |
"details": "See {IERC721-approve}." | |
}, | |
"balanceOf(address)": { | |
"details": "See {IERC721-balanceOf}." | |
}, | |
"constructor": { | |
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection." | |
}, | |
"getApproved(uint256)": { | |
"details": "See {IERC721-getApproved}." | |
}, | |
"isApprovedForAll(address,address)": { | |
"details": "See {IERC721-isApprovedForAll}." | |
}, | |
"name()": { | |
"details": "See {IERC721Metadata-name}." | |
}, | |
"ownerOf(uint256)": { | |
"details": "See {IERC721-ownerOf}." | |
}, | |
"safeTransferFrom(address,address,uint256)": { | |
"details": "See {IERC721-safeTransferFrom}." | |
}, | |
"safeTransferFrom(address,address,uint256,bytes)": { | |
"details": "See {IERC721-safeTransferFrom}." | |
}, | |
"setApprovalForAll(address,bool)": { | |
"details": "See {IERC721-setApprovalForAll}." | |
}, | |
"supportsInterface(bytes4)": { | |
"details": "See {IERC165-supportsInterface}." | |
}, | |
"symbol()": { | |
"details": "See {IERC721Metadata-symbol}." | |
}, | |
"tokenURI(uint256)": { | |
"details": "See {IERC721Metadata-tokenURI}." | |
}, | |
"transferFrom(address,address,uint256)": { | |
"details": "See {IERC721-transferFrom}." | |
} | |
}, | |
"version": 1 | |
}, | |
"evm": { | |
"assembly": " /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1464:1469 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1461 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1469 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1489:1496 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1496 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_9)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_12)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_12)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_12\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_15)\ntag_16:\ntag_12:\n pop\n swap1\n pop\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_20\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_19)\ntag_20:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:428 */\ntag_22:\n /* \"#utility.yul\":96:101 */\n 0x00\n /* \"#utility.yul\":121:187 */\n tag_24\n /* \"#utility.yul\":137:186 */\n tag_25\n /* \"#utility.yul\":179:185 */\n dup5\n /* \"#utility.yul\":137:186 */\n tag_26\n jump\t// in\ntag_25:\n /* \"#utility.yul\":121:187 */\n tag_27\n jump\t// in\ntag_24:\n /* \"#utility.yul\":112:187 */\n swap1\n pop\n /* \"#utility.yul\":210:216 */\n dup3\n /* \"#utility.yul\":203:208 */\n dup2\n /* \"#utility.yul\":196:217 */\n mstore\n /* \"#utility.yul\":248:252 */\n 0x20\n /* \"#utility.yul\":241:246 */\n dup2\n /* \"#utility.yul\":237:253 */\n add\n /* \"#utility.yul\":286:289 */\n dup5\n /* \"#utility.yul\":277:283 */\n dup5\n /* \"#utility.yul\":272:275 */\n dup5\n /* \"#utility.yul\":268:284 */\n add\n /* \"#utility.yul\":265:290 */\n gt\n /* \"#utility.yul\":262:374 */\n iszero\n tag_28\n jumpi\n /* \"#utility.yul\":293:372 */\n tag_29\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":262:374 */\ntag_28:\n /* \"#utility.yul\":383:422 */\n tag_31\n /* \"#utility.yul\":415:421 */\n dup5\n /* \"#utility.yul\":410:413 */\n dup3\n /* \"#utility.yul\":405:408 */\n dup6\n /* \"#utility.yul\":383:422 */\n tag_32\n jump\t// in\ntag_31:\n /* \"#utility.yul\":102:428 */\n pop\n /* \"#utility.yul\":7:428 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":448:803 */\ntag_33:\n /* \"#utility.yul\":515:520 */\n 0x00\n /* \"#utility.yul\":564:567 */\n dup3\n /* \"#utility.yul\":557:561 */\n 0x1f\n /* \"#utility.yul\":549:555 */\n dup4\n /* \"#utility.yul\":545:562 */\n add\n /* \"#utility.yul\":541:568 */\n slt\n /* \"#utility.yul\":531:653 */\n tag_35\n jumpi\n /* \"#utility.yul\":572:651 */\n tag_36\n tag_37\n jump\t// in\ntag_36:\n /* \"#utility.yul\":531:653 */\ntag_35:\n /* \"#utility.yul\":682:688 */\n dup2\n /* \"#utility.yul\":676:689 */\n mload\n /* \"#utility.yul\":707:797 */\n tag_38\n /* \"#utility.yul\":793:796 */\n dup5\n /* \"#utility.yul\":785:791 */\n dup3\n /* \"#utility.yul\":778:782 */\n 0x20\n /* \"#utility.yul\":770:776 */\n dup7\n /* \"#utility.yul\":766:783 */\n add\n /* \"#utility.yul\":707:797 */\n tag_22\n jump\t// in\ntag_38:\n /* \"#utility.yul\":698:797 */\n swap2\n pop\n /* \"#utility.yul\":521:803 */\n pop\n /* \"#utility.yul\":448:803 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":809:1662 */\ntag_3:\n /* \"#utility.yul\":908:914 */\n 0x00\n /* \"#utility.yul\":916:922 */\n dup1\n /* \"#utility.yul\":965:967 */\n 0x40\n /* \"#utility.yul\":953:962 */\n dup4\n /* \"#utility.yul\":944:951 */\n dup6\n /* \"#utility.yul\":940:963 */\n sub\n /* \"#utility.yul\":936:968 */\n slt\n /* \"#utility.yul\":933:1052 */\n iszero\n tag_40\n jumpi\n /* \"#utility.yul\":971:1050 */\n tag_41\n tag_42\n jump\t// in\ntag_41:\n /* \"#utility.yul\":933:1052 */\ntag_40:\n /* \"#utility.yul\":1112:1113 */\n 0x00\n /* \"#utility.yul\":1101:1110 */\n dup4\n /* \"#utility.yul\":1097:1114 */\n add\n /* \"#utility.yul\":1091:1115 */\n mload\n /* \"#utility.yul\":1142:1160 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1134:1140 */\n dup2\n /* \"#utility.yul\":1131:1161 */\n gt\n /* \"#utility.yul\":1128:1245 */\n iszero\n tag_43\n jumpi\n /* \"#utility.yul\":1164:1243 */\n tag_44\n tag_45\n jump\t// in\ntag_44:\n /* \"#utility.yul\":1128:1245 */\ntag_43:\n /* \"#utility.yul\":1269:1343 */\n tag_46\n /* \"#utility.yul\":1335:1342 */\n dup6\n /* \"#utility.yul\":1326:1332 */\n dup3\n /* \"#utility.yul\":1315:1324 */\n dup7\n /* \"#utility.yul\":1311:1333 */\n add\n /* \"#utility.yul\":1269:1343 */\n tag_33\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1259:1343 */\n swap3\n pop\n /* \"#utility.yul\":1062:1353 */\n pop\n /* \"#utility.yul\":1413:1415 */\n 0x20\n /* \"#utility.yul\":1402:1411 */\n dup4\n /* \"#utility.yul\":1398:1416 */\n add\n /* \"#utility.yul\":1392:1417 */\n mload\n /* \"#utility.yul\":1444:1462 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1436:1442 */\n dup2\n /* \"#utility.yul\":1433:1463 */\n gt\n /* \"#utility.yul\":1430:1547 */\n iszero\n tag_47\n jumpi\n /* \"#utility.yul\":1466:1545 */\n tag_48\n tag_45\n jump\t// in\ntag_48:\n /* \"#utility.yul\":1430:1547 */\ntag_47:\n /* \"#utility.yul\":1571:1645 */\n tag_49\n /* \"#utility.yul\":1637:1644 */\n dup6\n /* \"#utility.yul\":1628:1634 */\n dup3\n /* \"#utility.yul\":1617:1626 */\n dup7\n /* \"#utility.yul\":1613:1635 */\n add\n /* \"#utility.yul\":1571:1645 */\n tag_33\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1561:1645 */\n swap2\n pop\n /* \"#utility.yul\":1363:1655 */\n pop\n /* \"#utility.yul\":809:1662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1668:1797 */\ntag_27:\n /* \"#utility.yul\":1702:1708 */\n 0x00\n /* \"#utility.yul\":1729:1749 */\n tag_51\n tag_52\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1719:1749 */\n swap1\n pop\n /* \"#utility.yul\":1758:1791 */\n tag_53\n /* \"#utility.yul\":1786:1790 */\n dup3\n /* \"#utility.yul\":1778:1784 */\n dup3\n /* \"#utility.yul\":1758:1791 */\n tag_54\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1668:1797 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1803:1878 */\ntag_52:\n /* \"#utility.yul\":1836:1842 */\n 0x00\n /* \"#utility.yul\":1869:1871 */\n 0x40\n /* \"#utility.yul\":1863:1872 */\n mload\n /* \"#utility.yul\":1853:1872 */\n swap1\n pop\n /* \"#utility.yul\":1803:1878 */\n swap1\n jump\t// out\n /* \"#utility.yul\":1884:2192 */\ntag_26:\n /* \"#utility.yul\":1946:1950 */\n 0x00\n /* \"#utility.yul\":2036:2054 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2028:2034 */\n dup3\n /* \"#utility.yul\":2025:2055 */\n gt\n /* \"#utility.yul\":2022:2078 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":2058:2076 */\n tag_58\n tag_59\n jump\t// in\ntag_58:\n /* \"#utility.yul\":2022:2078 */\ntag_57:\n /* \"#utility.yul\":2096:2125 */\n tag_60\n /* \"#utility.yul\":2118:2124 */\n dup3\n /* \"#utility.yul\":2096:2125 */\n tag_61\n jump\t// in\ntag_60:\n /* \"#utility.yul\":2088:2125 */\n swap1\n pop\n /* \"#utility.yul\":2180:2184 */\n 0x20\n /* \"#utility.yul\":2174:2178 */\n dup2\n /* \"#utility.yul\":2170:2185 */\n add\n /* \"#utility.yul\":2162:2185 */\n swap1\n pop\n /* \"#utility.yul\":1884:2192 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2198:2505 */\ntag_32:\n /* \"#utility.yul\":2266:2267 */\n 0x00\n /* \"#utility.yul\":2276:2389 */\ntag_63:\n /* \"#utility.yul\":2290:2296 */\n dup4\n /* \"#utility.yul\":2287:2288 */\n dup2\n /* \"#utility.yul\":2284:2297 */\n lt\n /* \"#utility.yul\":2276:2389 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2370:2373 */\n dup3\n /* \"#utility.yul\":2366:2377 */\n add\n /* \"#utility.yul\":2360:2378 */\n mload\n /* \"#utility.yul\":2356:2357 */\n dup2\n /* \"#utility.yul\":2351:2354 */\n dup5\n /* \"#utility.yul\":2347:2358 */\n add\n /* \"#utility.yul\":2340:2379 */\n mstore\n /* \"#utility.yul\":2312:2314 */\n 0x20\n /* \"#utility.yul\":2309:2310 */\n dup2\n /* \"#utility.yul\":2305:2315 */\n add\n /* \"#utility.yul\":2300:2315 */\n swap1\n pop\n /* \"#utility.yul\":2276:2389 */\n jump(tag_63)\ntag_65:\n /* \"#utility.yul\":2407:2413 */\n dup4\n /* \"#utility.yul\":2404:2405 */\n dup2\n /* \"#utility.yul\":2401:2414 */\n gt\n /* \"#utility.yul\":2398:2499 */\n iszero\n tag_66\n jumpi\n /* \"#utility.yul\":2487:2488 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup5\n /* \"#utility.yul\":2473:2476 */\n dup5\n /* \"#utility.yul\":2469:2485 */\n add\n /* \"#utility.yul\":2462:2489 */\n mstore\n /* \"#utility.yul\":2398:2499 */\ntag_66:\n /* \"#utility.yul\":2247:2505 */\n pop\n /* \"#utility.yul\":2198:2505 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2511:2831 */\ntag_11:\n /* \"#utility.yul\":2555:2561 */\n 0x00\n /* \"#utility.yul\":2592:2593 */\n 0x02\n /* \"#utility.yul\":2586:2590 */\n dup3\n /* \"#utility.yul\":2582:2594 */\n div\n /* \"#utility.yul\":2572:2594 */\n swap1\n pop\n /* \"#utility.yul\":2639:2640 */\n 0x01\n /* \"#utility.yul\":2633:2637 */\n dup3\n /* \"#utility.yul\":2629:2641 */\n and\n /* \"#utility.yul\":2660:2678 */\n dup1\n /* \"#utility.yul\":2650:2731 */\n tag_68\n jumpi\n /* \"#utility.yul\":2716:2720 */\n 0x7f\n /* \"#utility.yul\":2708:2714 */\n dup3\n /* \"#utility.yul\":2704:2721 */\n and\n /* \"#utility.yul\":2694:2721 */\n swap2\n pop\n /* \"#utility.yul\":2650:2731 */\ntag_68:\n /* \"#utility.yul\":2778:2780 */\n 0x20\n /* \"#utility.yul\":2770:2776 */\n dup3\n /* \"#utility.yul\":2767:2781 */\n lt\n /* \"#utility.yul\":2747:2765 */\n dup2\n /* \"#utility.yul\":2744:2782 */\n eq\n /* \"#utility.yul\":2741:2825 */\n iszero\n tag_69\n jumpi\n /* \"#utility.yul\":2797:2815 */\n tag_70\n tag_71\n jump\t// in\ntag_70:\n /* \"#utility.yul\":2741:2825 */\ntag_69:\n /* \"#utility.yul\":2562:2831 */\n pop\n /* \"#utility.yul\":2511:2831 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2837:3118 */\ntag_54:\n /* \"#utility.yul\":2920:2947 */\n tag_73\n /* \"#utility.yul\":2942:2946 */\n dup3\n /* \"#utility.yul\":2920:2947 */\n tag_61\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2912:2918 */\n dup2\n /* \"#utility.yul\":2908:2948 */\n add\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3038:3048 */\n dup2\n /* \"#utility.yul\":3035:3057 */\n lt\n /* \"#utility.yul\":3014:3032 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3012 */\n dup3\n /* \"#utility.yul\":2999:3033 */\n gt\n /* \"#utility.yul\":2996:3058 */\n or\n /* \"#utility.yul\":2993:3081 */\n iszero\n tag_74\n jumpi\n /* \"#utility.yul\":3061:3079 */\n tag_75\n tag_59\n jump\t// in\ntag_75:\n /* \"#utility.yul\":2993:3081 */\ntag_74:\n /* \"#utility.yul\":3101:3111 */\n dup1\n /* \"#utility.yul\":3097:3099 */\n 0x40\n /* \"#utility.yul\":3090:3112 */\n mstore\n /* \"#utility.yul\":2880:3118 */\n pop\n /* \"#utility.yul\":2837:3118 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3124:3304 */\ntag_71:\n /* \"#utility.yul\":3172:3249 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3169:3170 */\n 0x00\n /* \"#utility.yul\":3162:3250 */\n mstore\n /* \"#utility.yul\":3269:3273 */\n 0x22\n /* \"#utility.yul\":3266:3267 */\n 0x04\n /* \"#utility.yul\":3259:3274 */\n mstore\n /* \"#utility.yul\":3293:3297 */\n 0x24\n /* \"#utility.yul\":3290:3291 */\n 0x00\n /* \"#utility.yul\":3283:3298 */\n revert\n /* \"#utility.yul\":3310:3490 */\ntag_59:\n /* \"#utility.yul\":3358:3435 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3355:3356 */\n 0x00\n /* \"#utility.yul\":3348:3436 */\n mstore\n /* \"#utility.yul\":3455:3459 */\n 0x41\n /* \"#utility.yul\":3452:3453 */\n 0x04\n /* \"#utility.yul\":3445:3460 */\n mstore\n /* \"#utility.yul\":3479:3483 */\n 0x24\n /* \"#utility.yul\":3476:3477 */\n 0x00\n /* \"#utility.yul\":3469:3484 */\n revert\n /* \"#utility.yul\":3496:3613 */\ntag_37:\n /* \"#utility.yul\":3605:3606 */\n 0x00\n /* \"#utility.yul\":3602:3603 */\n dup1\n /* \"#utility.yul\":3595:3607 */\n revert\n /* \"#utility.yul\":3619:3736 */\ntag_30:\n /* \"#utility.yul\":3728:3729 */\n 0x00\n /* \"#utility.yul\":3725:3726 */\n dup1\n /* \"#utility.yul\":3718:3730 */\n revert\n /* \"#utility.yul\":3742:3859 */\ntag_45:\n /* \"#utility.yul\":3851:3852 */\n 0x00\n /* \"#utility.yul\":3848:3849 */\n dup1\n /* \"#utility.yul\":3841:3853 */\n revert\n /* \"#utility.yul\":3865:3982 */\ntag_42:\n /* \"#utility.yul\":3974:3975 */\n 0x00\n /* \"#utility.yul\":3971:3972 */\n dup1\n /* \"#utility.yul\":3964:3976 */\n revert\n /* \"#utility.yul\":3988:4090 */\ntag_61:\n /* \"#utility.yul\":4029:4035 */\n 0x00\n /* \"#utility.yul\":4080:4082 */\n 0x1f\n /* \"#utility.yul\":4076:4083 */\n not\n /* \"#utility.yul\":4071:4073 */\n 0x1f\n /* \"#utility.yul\":4064:4069 */\n dup4\n /* \"#utility.yul\":4060:4074 */\n add\n /* \"#utility.yul\":4056:4084 */\n and\n /* \"#utility.yul\":4046:4084 */\n swap1\n pop\n /* \"#utility.yul\":3988:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14346 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x6352211e\n gt\n tag_16\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_12\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_13\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_14\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_15\n jumpi\n jump(tag_2)\n tag_17:\n dup1\n 0x6352211e\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_11\n jumpi\n jump(tag_2)\n tag_16:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2470:2568 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_5:\n tag_28\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_29\n swap2\n swap1\n tag_30\n jump\t// in\n tag_29:\n tag_31\n jump\t// in\n tag_28:\n mload(0x40)\n tag_32\n swap2\n swap1\n tag_33\n jump\t// in\n tag_32:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3467:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_6:\n tag_34\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_35\n swap2\n swap1\n tag_36\n jump\t// in\n tag_35:\n tag_37\n jump\t// in\n tag_34:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4939 function transferFrom(... */\n tag_7:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5005:5184 function safeTransferFrom(... */\n tag_8:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_40\n jump\t// in\n tag_43:\n tag_44\n jump\t// in\n tag_42:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2408 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_9:\n tag_45\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_46\n swap2\n swap1\n tag_30\n jump\t// in\n tag_46:\n tag_47\n jump\t// in\n tag_45:\n mload(0x40)\n tag_48\n swap2\n swap1\n tag_33\n jump\t// in\n tag_48:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_10:\n tag_49\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_50\n swap2\n swap1\n tag_51\n jump\t// in\n tag_50:\n tag_52\n jump\t// in\n tag_49:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_54\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2632:2734 function symbol() public view virtual override returns (string memory) {... */\n tag_11:\n tag_55\n tag_56\n jump\t// in\n tag_55:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_27\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_12:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5250:5565 function safeTransferFrom(... */\n tag_13:\n tag_62\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_63\n swap2\n swap1\n tag_64\n jump\t// in\n tag_63:\n tag_65\n jump\t// in\n tag_62:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2800:3076 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_14:\n tag_66\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_67\n swap2\n swap1\n tag_30\n jump\t// in\n tag_67:\n tag_68\n jump\t// in\n tag_66:\n mload(0x40)\n tag_69\n swap2\n swap1\n tag_27\n jump\t// in\n tag_69:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_15:\n tag_70\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_71\n swap2\n swap1\n tag_72\n jump\t// in\n tag_71:\n tag_73\n jump\t// in\n tag_70:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_23\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_21:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1672:1676 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1722:1747 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1718 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_76\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1778:1811 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1774 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_77\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n tag_78\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1851:1862 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1850 super.supportsInterface */\n tag_79\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n tag_77:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1688:1863 return... */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2470:2568 function name() public view virtual override returns (string memory) {... */\n tag_25:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2524:2537 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2556:2561 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2549:2561 return _name */\n dup1\n sload\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_83\n swap1\n tag_82\n jump\t// in\n tag_83:\n dup1\n iszero\n tag_84\n jumpi\n dup1\n 0x1f\n lt\n tag_85\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_84)\n tag_85:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_86:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_86\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_84:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2470:2568 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_31:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4011:4018 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n tag_88\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4045:4052 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4044 _requireMinted */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4030:4053 _requireMinted(tokenId) */\n jump\t// in\n tag_88:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4086 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4087:4094 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4071:4095 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4064:4095 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3935:4102 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3467:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_37:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3547:3560 address owner */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3563:3586 ERC721.ownerOf(tokenId) */\n tag_91\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3578:3585 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3563:3577 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3563:3586 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_91:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3547:3586 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3610:3615 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3604:3615 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3604:3606 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3604:3615 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3596:3653 require(to != owner, \"ERC721: approval to current owner\") */\n tag_92\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_93\n swap1\n tag_94\n jump\t// in\n tag_93:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_92:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3701:3706 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3706 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3697 _msgSender() */\n tag_95\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3695 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3697 _msgSender() */\n jump\t// in\n tag_95:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3706 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3747 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n dup1\n tag_97\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3710:3747 isApprovedForAll(owner, _msgSender()) */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3727:3732 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3734:3746 _msgSender() */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3734:3744 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3734:3746 _msgSender() */\n jump\t// in\n tag_99:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3710:3726 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3710:3747 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3685:3747 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n tag_97:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3664:3835 require(... */\n tag_100\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_101\n swap1\n tag_102\n jump\t// in\n tag_101:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_100:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n tag_103\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3855:3857 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3859:3866 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3854 _approve */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3846:3867 _approve(to, tokenId) */\n jump\t// in\n tag_103:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3537:3874 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3467:3874 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4939 function transferFrom(... */\n tag_41:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4842 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_106\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4820:4832 _msgSender() */\n tag_107\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4820:4830 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4820:4832 _msgSender() */\n jump\t// in\n tag_107:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4834:4841 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4819 _isApprovedOrOwner */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4801:4842 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_106:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4793:4893 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\") */\n tag_109\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_110\n swap1\n tag_111\n jump\t// in\n tag_110:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4904:4932 _transfer(from, to, tokenId) */\n tag_112\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4914:4918 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4920:4922 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4924:4931 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4904:4913 _transfer */\n tag_113\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4904:4932 _transfer(from, to, tokenId) */\n jump\t// in\n tag_112:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4612:4939 function transferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5005:5184 function safeTransferFrom(... */\n tag_44:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5177 safeTransferFrom(from, to, tokenId, \"\") */\n tag_115\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5155:5159 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5161:5163 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5165:5172 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5177 safeTransferFrom(from, to, tokenId, \"\") */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5154 safeTransferFrom */\n tag_65\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5138:5177 safeTransferFrom(from, to, tokenId, \"\") */\n jump\t// in\n tag_115:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5005:5184 function safeTransferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2408 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_47:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2262:2269 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2281:2294 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2304 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2313 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2305:2312 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2297:2313 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2281:2313 address owner = _owners[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2348:2349 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2331:2350 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2331:2336 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2331:2350 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2323:2379 require(owner != address(0), \"ERC721: invalid token ID\") */\n tag_117\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_118\n swap1\n tag_119\n jump\t// in\n tag_118:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_117:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2396:2401 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2389:2401 return owner */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2190:2408 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_52:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2001:2008 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2045:2046 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2033 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2093 require(owner != address(0), \"ERC721: address zero is not a valid owner\") */\n tag_121\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_122\n swap1\n tag_123\n jump\t// in\n tag_122:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_121:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2119 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _balances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2120:2125 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2110:2126 _balances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2103:2126 return _balances[owner] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2133 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2632:2734 function symbol() public view virtual override returns (string memory) {... */\n tag_56:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2688:2701 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2720:2727 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2713:2727 return _symbol */\n dup1\n sload\n tag_125\n swap1\n tag_82\n jump\t// in\n tag_125:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_126\n swap1\n tag_82\n jump\t// in\n tag_126:\n dup1\n iszero\n tag_127\n jumpi\n dup1\n 0x1f\n lt\n tag_128\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_127)\n tag_128:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_129:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_129\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_127:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2632:2734 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_61:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n tag_131\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4294 _msgSender() */\n tag_132\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4292 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4282:4294 _msgSender() */\n jump\t// in\n tag_132:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4296:4304 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4306:4314 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4281 _setApprovalForAll */\n tag_133\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4263:4315 _setApprovalForAll(_msgSender(), operator, approved) */\n jump\t// in\n tag_131:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4169:4322 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5250:5565 function safeTransferFrom(... */\n tag_65:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5418:5459 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_135\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5437:5449 _msgSender() */\n tag_136\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5437:5447 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5437:5449 _msgSender() */\n jump\t// in\n tag_136:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5451:5458 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5418:5436 _isApprovedOrOwner */\n tag_108\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5418:5459 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_135:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5410:5510 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: caller is not token owner nor approved\") */\n tag_137\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_138\n swap1\n tag_111\n jump\t// in\n tag_138:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_137:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5520:5558 _safeTransfer(from, to, tokenId, data) */\n tag_139\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5534:5538 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5540:5542 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5544:5551 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5553:5557 data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5520:5533 _safeTransfer */\n tag_140\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5520:5558 _safeTransfer(from, to, tokenId, data) */\n jump\t// in\n tag_139:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5250:5565 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2800:3076 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_68:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2873:2886 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2898:2921 _requireMinted(tokenId) */\n tag_142\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2913:2920 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2898:2912 _requireMinted */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2898:2921 _requireMinted(tokenId) */\n jump\t// in\n tag_142:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2932:2953 string memory baseURI */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2956:2966 _baseURI() */\n tag_143\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2956:2964 _baseURI */\n tag_144\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2956:2966 _baseURI() */\n jump\t// in\n tag_143:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2932:2966 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3007:3008 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2989:2996 baseURI */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3004 bytes(baseURI).length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3008 bytes(baseURI).length > 0 */\n gt\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3069 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_145\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_146)\n tag_145:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3035:3042 baseURI */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3062 tokenId.toString() */\n tag_147\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3051 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3060 tokenId.toString */\n tag_148\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3044:3062 tokenId.toString() */\n jump\t// in\n tag_147:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3018:3063 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_149\n swap3\n swap2\n swap1\n tag_150\n jump\t// in\n tag_149:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2983:3069 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_146:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2976:3069 return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2800:3076 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4485:4489 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4526 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4527:4532 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4533 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4543 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4534:4542 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4508:4543 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4501:4543 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4388:4550 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_79:\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":914:918 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":952:977 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:948 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":930:977 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11657:11790 function _requireMinted(uint256 tokenId) internal view virtual {... */\n tag_89:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11738:11754 _exists(tokenId) */\n tag_154\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11746:11753 tokenId */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11738:11745 _exists */\n tag_155\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11738:11754 _exists(tokenId) */\n jump\t// in\n tag_154:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11730:11783 require(_exists(tokenId), \"ERC721: invalid token ID\") */\n tag_156\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_157\n swap1\n tag_119\n jump\t// in\n tag_157:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_156:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11657:11790 function _requireMinted(uint256 tokenId) internal view virtual {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_96:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10959:11130 function _approve(address to, uint256 tokenId) internal virtual {... */\n tag_104:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11060:11062 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11048 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11057 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11049:11056 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11057 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11062 _tokenApprovals[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11115:11122 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11111:11113 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11077:11123 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11086:11109 ERC721.ownerOf(tokenId) */\n tag_160\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11101:11108 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11086:11100 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11086:11109 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_160:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11077:11123 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10959:11130 function _approve(address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7317:7578 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n tag_108:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7410:7414 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7426:7439 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7465 ERC721.ownerOf(tokenId) */\n tag_162\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7457:7464 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7456 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7442:7465 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_162:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7426:7465 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7494:7499 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7499 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7490 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7499 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7535 spender == owner || isApprovedForAll(owner, spender) */\n dup1\n tag_163\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7503:7535 isApprovedForAll(owner, spender) */\n tag_164\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7520:7525 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7527:7534 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7503:7519 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7503:7535 isApprovedForAll(owner, spender) */\n jump\t// in\n tag_164:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7535 spender == owner || isApprovedForAll(owner, spender) */\n tag_163:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7570 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n dup1\n tag_165\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7563:7570 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7570 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7559 getApproved(tokenId) */\n tag_166\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7551:7558 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7550 getApproved */\n tag_31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7559 getApproved(tokenId) */\n jump\t// in\n tag_166:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7539:7570 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7483:7570 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n tag_165:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7475:7571 return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender) */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7317:7578 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10242:10847 function _transfer(... */\n tag_113:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10396:10400 from */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10400 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10392 ERC721.ownerOf(tokenId) */\n tag_168\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10384:10391 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10383 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10392 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_168:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10369:10400 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10361:10442 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_169\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_170\n swap1\n tag_171\n jump\t// in\n tag_170:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_169:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10474:10475 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10460:10476 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10460:10462 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10460:10476 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10452:10517 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_172\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_173\n swap1\n tag_174\n jump\t// in\n tag_173:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_172:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10528:10567 _beforeTokenTransfer(from, to, tokenId) */\n tag_175\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10549:10553 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10555:10557 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10559:10566 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10528:10548 _beforeTokenTransfer */\n tag_176\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10528:10567 _beforeTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_175:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10629:10658 _approve(address(0), tokenId) */\n tag_177\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10646:10647 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10650:10657 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10629:10637 _approve */\n tag_104\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10629:10658 _approve(address(0), tokenId) */\n jump\t// in\n tag_177:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10688:10689 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10678 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10684 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10679:10683 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10684 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10669:10689 _balances[from] -= 1 */\n dup3\n dup3\n sload\n tag_178\n swap2\n swap1\n tag_179\n jump\t// in\n tag_178:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10716:10717 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10699:10708 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10699:10712 _balances[to] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10709:10711 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10699:10712 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10699:10717 _balances[to] += 1 */\n dup3\n dup3\n sload\n tag_180\n swap2\n swap1\n tag_181\n jump\t// in\n tag_180:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10746:10748 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10727:10734 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10727:10743 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10735:10742 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10727:10743 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10727:10748 _owners[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10783:10790 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10779:10781 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10764:10791 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10773:10777 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10764:10791 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10802:10840 _afterTokenTransfer(from, to, tokenId) */\n tag_182\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10822:10826 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10828:10830 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10832:10839 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10802:10821 _afterTokenTransfer */\n tag_183\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10802:10840 _afterTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_182:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10242:10847 function _transfer(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11266:11573 function _setApprovalForAll(... */\n tag_133:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11416:11424 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11407:11424 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11407:11412 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11407:11424 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11399:11454 require(owner != operator, \"ERC721: approve to caller\") */\n tag_185\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_186\n swap1\n tag_187\n jump\t// in\n tag_186:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_185:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11502:11510 approved */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11482 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11489 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11483:11488 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11489 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11499 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11490:11498 operator */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11499 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11464:11510 _operatorApprovals[owner][operator] = approved */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11547:11555 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11525:11566 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11540:11545 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11525:11566 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11557:11565 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11525:11566 ApprovalForAll(owner, operator, approved) */\n mload(0x40)\n tag_188\n swap2\n swap1\n tag_23\n jump\t// in\n tag_188:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11266:11573 function _setApprovalForAll(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6426:6731 function _safeTransfer(... */\n tag_140:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6576:6604 _transfer(from, to, tokenId) */\n tag_190\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6586:6590 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6592:6594 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6596:6603 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6576:6585 _transfer */\n tag_113\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6576:6604 _transfer(from, to, tokenId) */\n jump\t// in\n tag_190:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6622:6669 _checkOnERC721Received(from, to, tokenId, data) */\n tag_191\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6645:6649 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6651:6653 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6655:6662 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6664:6668 data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6622:6644 _checkOnERC721Received */\n tag_192\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6622:6669 _checkOnERC721Received(from, to, tokenId, data) */\n jump\t// in\n tag_191:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6614:6724 require(_checkOnERC721Received(from, to, tokenId, data), \"ERC721: transfer to non ERC721Receiver implementer\") */\n tag_193\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_194\n swap1\n tag_195\n jump\t// in\n tag_194:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_193:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6426:6731 function _safeTransfer(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3318:3410 function _baseURI() internal view virtual returns (string memory) {... */\n tag_144:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3369:3382 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3394:3403 return \"\" */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3318:3410 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Strings.sol\":392:1095 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_148:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":448:461 string memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Strings.sol\":674:675 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":665:670 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":665:675 value == 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":661:712 if (value == 0) {... */\n iszero\n tag_198\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":691:701 return \"0\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x01\n dup2\n mstore\n 0x20\n add\n 0x3000000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n jump(tag_197)\n /* \"@openzeppelin/contracts/utils/Strings.sol\":661:712 if (value == 0) {... */\n tag_198:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":721:733 uint256 temp */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":736:741 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":721:741 uint256 temp = value */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":751:765 uint256 digits */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":775:850 while (temp != 0) {... */\n tag_199:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":790:791 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":782:786 temp */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":782:791 temp != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":775:850 while (temp != 0) {... */\n tag_200\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":807:815 digits++ */\n dup1\n dup1\n tag_201\n swap1\n tag_202\n jump\t// in\n tag_201:\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":837:839 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":829:839 temp /= 10 */\n dup3\n tag_203\n swap2\n swap1\n tag_204\n jump\t// in\n tag_203:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":775:850 while (temp != 0) {... */\n jump(tag_199)\n tag_200:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":859:878 bytes memory buffer */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":891:897 digits */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":881:898 new bytes(digits) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_205\n jumpi\n tag_206\n tag_207\n jump\t// in\n tag_206:\n tag_205:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_208\n jumpi\n dup2\n 0x20\n add\n 0x01\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_208:\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":859:898 bytes memory buffer = new bytes(digits) */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":908:1058 while (value != 0) {... */\n tag_209:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":924:925 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":915:920 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":915:925 value != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":908:1058 while (value != 0) {... */\n tag_210\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":951:952 1 */\n 0x01\n /* \"@openzeppelin/contracts/utils/Strings.sol\":941:952 digits -= 1 */\n dup3\n tag_211\n swap2\n swap1\n tag_179\n jump\t// in\n tag_211:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1017:1019 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1009:1014 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1009:1019 value % 10 */\n tag_212\n swap2\n swap1\n tag_213\n jump\t// in\n tag_212:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":996:998 48 */\n 0x30\n /* \"@openzeppelin/contracts/utils/Strings.sol\":996:1020 48 + uint256(value % 10) */\n tag_214\n swap2\n swap1\n tag_181\n jump\t// in\n tag_214:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":983:1022 bytes1(uint8(48 + uint256(value % 10))) */\n 0xf8\n shl\n /* \"@openzeppelin/contracts/utils/Strings.sol\":966:972 buffer */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":973:979 digits */\n dup4\n /* \"@openzeppelin/contracts/utils/Strings.sol\":966:980 buffer[digits] */\n dup2\n mload\n dup2\n lt\n tag_215\n jumpi\n tag_216\n tag_217\n jump\t// in\n tag_216:\n tag_215:\n 0x20\n add\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":966:1022 buffer[digits] = bytes1(uint8(48 + uint256(value % 10))) */\n swap1\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n swap1\n dup2\n 0x00\n byte\n swap1\n mstore8\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1045:1047 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1036:1047 value /= 10 */\n dup6\n tag_218\n swap2\n swap1\n tag_204\n jump\t// in\n tag_218:\n swap5\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":908:1058 while (value != 0) {... */\n jump(tag_209)\n tag_210:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1081:1087 buffer */\n dup1\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1067:1088 return string(buffer) */\n swap4\n pop\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":392:1095 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_197:\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7034:7159 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n tag_155:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7099:7103 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7150:7151 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7152 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7129 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7138 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7130:7137 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7138 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7122:7152 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7115:7152 return _owners[tokenId] != address(0) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7034:7159 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13729:13851 function _beforeTokenTransfer(... */\n tag_176:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14223:14344 function _afterTokenTransfer(... */\n tag_183:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12342:13173 function _checkOnERC721Received(... */\n tag_192:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12491:12495 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12526 to.isContract() */\n tag_223\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12513 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12524 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_224\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12511:12526 to.isContract() */\n jump\t// in\n tag_223:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12507:13167 if (to.isContract()) {... */\n iszero\n tag_225\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12562:12564 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12546:12582 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12583:12595 _msgSender() */\n tag_226\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12583:12593 _msgSender */\n tag_96\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12583:12595 _msgSender() */\n jump\t// in\n tag_226:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12597:12601 from */\n dup8\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12603:12610 tokenId */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12612:12616 data */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12546:12617 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) */\n mload(0x40)\n dup6\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_227\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_228\n jump\t// in\n tag_227:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n dup1\n extcodesize\n iszero\n dup1\n iszero\n tag_229\n jumpi\n 0x00\n dup1\n revert\n tag_229:\n pop\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_230\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_231\n swap2\n swap1\n tag_232\n jump\t// in\n tag_231:\n 0x01\n tag_230:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12542:13115 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_233\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_238\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_237)\n tag_238:\n 0x60\n swap2\n pop\n tag_237:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12801:12802 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12784:12790 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12784:12797 reason.length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12784:12802 reason.length == 0 */\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12780:13101 if (reason.length == 0) {... */\n iszero\n tag_239\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12826:12886 revert(\"ERC721: transfer to non ERC721Receiver implementer\") */\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_240\n swap1\n tag_195\n jump\t// in\n tag_240:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12780:13101 if (reason.length == 0) {... */\n tag_239:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13053:13059 reason */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13047:13060 mload(reason) */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13038:13044 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13034:13036 32 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13030:13045 add(32, reason) */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13023:13061 revert(add(32, reason), mload(reason)) */\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12542:13115 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {... */\n tag_233:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12677:12718 IERC721Receiver.onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12667:12718 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12667:12673 retval */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12667:12718 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12660:12718 return retval == IERC721Receiver.onERC721Received.selector */\n swap2\n pop\n pop\n jump(tag_222)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12507:13167 if (to.isContract()) {... */\n tag_225:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13152:13156 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13145:13156 return true */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12342:13173 function _checkOnERC721Received(... */\n tag_222:\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n tag_224:\n /* \"@openzeppelin/contracts/utils/Address.sol\":1235:1239 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":1487:1488 0 */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1472 account */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1484 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1488 account.code.length > 0 */\n gt\n /* \"@openzeppelin/contracts/utils/Address.sol\":1458:1488 return account.code.length > 0 */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7:417 */\n tag_246:\n /* \"#utility.yul\":84:89 */\n 0x00\n /* \"#utility.yul\":109:174 */\n tag_248\n /* \"#utility.yul\":125:173 */\n tag_249\n /* \"#utility.yul\":166:172 */\n dup5\n /* \"#utility.yul\":125:173 */\n tag_250\n jump\t// in\n tag_249:\n /* \"#utility.yul\":109:174 */\n tag_251\n jump\t// in\n tag_248:\n /* \"#utility.yul\":100:174 */\n swap1\n pop\n /* \"#utility.yul\":197:203 */\n dup3\n /* \"#utility.yul\":190:195 */\n dup2\n /* \"#utility.yul\":183:204 */\n mstore\n /* \"#utility.yul\":235:239 */\n 0x20\n /* \"#utility.yul\":228:233 */\n dup2\n /* \"#utility.yul\":224:240 */\n add\n /* \"#utility.yul\":273:276 */\n dup5\n /* \"#utility.yul\":264:270 */\n dup5\n /* \"#utility.yul\":259:262 */\n dup5\n /* \"#utility.yul\":255:271 */\n add\n /* \"#utility.yul\":252:277 */\n gt\n /* \"#utility.yul\":249:361 */\n iszero\n tag_252\n jumpi\n /* \"#utility.yul\":280:359 */\n tag_253\n tag_254\n jump\t// in\n tag_253:\n /* \"#utility.yul\":249:361 */\n tag_252:\n /* \"#utility.yul\":370:411 */\n tag_255\n /* \"#utility.yul\":404:410 */\n dup5\n /* \"#utility.yul\":399:402 */\n dup3\n /* \"#utility.yul\":394:397 */\n dup6\n /* \"#utility.yul\":370:411 */\n tag_256\n jump\t// in\n tag_255:\n /* \"#utility.yul\":90:417 */\n pop\n /* \"#utility.yul\":7:417 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":423:562 */\n tag_257:\n /* \"#utility.yul\":469:474 */\n 0x00\n /* \"#utility.yul\":507:513 */\n dup2\n /* \"#utility.yul\":494:514 */\n calldataload\n /* \"#utility.yul\":485:514 */\n swap1\n pop\n /* \"#utility.yul\":523:556 */\n tag_259\n /* \"#utility.yul\":550:555 */\n dup2\n /* \"#utility.yul\":523:556 */\n tag_260\n jump\t// in\n tag_259:\n /* \"#utility.yul\":423:562 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":568:701 */\n tag_261:\n /* \"#utility.yul\":611:616 */\n 0x00\n /* \"#utility.yul\":649:655 */\n dup2\n /* \"#utility.yul\":636:656 */\n calldataload\n /* \"#utility.yul\":627:656 */\n swap1\n pop\n /* \"#utility.yul\":665:695 */\n tag_263\n /* \"#utility.yul\":689:694 */\n dup2\n /* \"#utility.yul\":665:695 */\n tag_264\n jump\t// in\n tag_263:\n /* \"#utility.yul\":568:701 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":707:844 */\n tag_265:\n /* \"#utility.yul\":752:757 */\n 0x00\n /* \"#utility.yul\":790:796 */\n dup2\n /* \"#utility.yul\":777:797 */\n calldataload\n /* \"#utility.yul\":768:797 */\n swap1\n pop\n /* \"#utility.yul\":806:838 */\n tag_267\n /* \"#utility.yul\":832:837 */\n dup2\n /* \"#utility.yul\":806:838 */\n tag_268\n jump\t// in\n tag_267:\n /* \"#utility.yul\":707:844 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":850:991 */\n tag_269:\n /* \"#utility.yul\":906:911 */\n 0x00\n /* \"#utility.yul\":937:943 */\n dup2\n /* \"#utility.yul\":931:944 */\n mload\n /* \"#utility.yul\":922:944 */\n swap1\n pop\n /* \"#utility.yul\":953:985 */\n tag_271\n /* \"#utility.yul\":979:984 */\n dup2\n /* \"#utility.yul\":953:985 */\n tag_268\n jump\t// in\n tag_271:\n /* \"#utility.yul\":850:991 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1010:1348 */\n tag_272:\n /* \"#utility.yul\":1065:1070 */\n 0x00\n /* \"#utility.yul\":1114:1117 */\n dup3\n /* \"#utility.yul\":1107:1111 */\n 0x1f\n /* \"#utility.yul\":1099:1105 */\n dup4\n /* \"#utility.yul\":1095:1112 */\n add\n /* \"#utility.yul\":1091:1118 */\n slt\n /* \"#utility.yul\":1081:1203 */\n tag_274\n jumpi\n /* \"#utility.yul\":1122:1201 */\n tag_275\n tag_276\n jump\t// in\n tag_275:\n /* \"#utility.yul\":1081:1203 */\n tag_274:\n /* \"#utility.yul\":1239:1245 */\n dup2\n /* \"#utility.yul\":1226:1246 */\n calldataload\n /* \"#utility.yul\":1264:1342 */\n tag_277\n /* \"#utility.yul\":1338:1341 */\n dup5\n /* \"#utility.yul\":1330:1336 */\n dup3\n /* \"#utility.yul\":1323:1327 */\n 0x20\n /* \"#utility.yul\":1315:1321 */\n dup7\n /* \"#utility.yul\":1311:1328 */\n add\n /* \"#utility.yul\":1264:1342 */\n tag_246\n jump\t// in\n tag_277:\n /* \"#utility.yul\":1255:1342 */\n swap2\n pop\n /* \"#utility.yul\":1071:1348 */\n pop\n /* \"#utility.yul\":1010:1348 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1354:1493 */\n tag_278:\n /* \"#utility.yul\":1400:1405 */\n 0x00\n /* \"#utility.yul\":1438:1444 */\n dup2\n /* \"#utility.yul\":1425:1445 */\n calldataload\n /* \"#utility.yul\":1416:1445 */\n swap1\n pop\n /* \"#utility.yul\":1454:1487 */\n tag_280\n /* \"#utility.yul\":1481:1486 */\n dup2\n /* \"#utility.yul\":1454:1487 */\n tag_281\n jump\t// in\n tag_280:\n /* \"#utility.yul\":1354:1493 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1499:1828 */\n tag_51:\n /* \"#utility.yul\":1558:1564 */\n 0x00\n /* \"#utility.yul\":1607:1609 */\n 0x20\n /* \"#utility.yul\":1595:1604 */\n dup3\n /* \"#utility.yul\":1586:1593 */\n dup5\n /* \"#utility.yul\":1582:1605 */\n sub\n /* \"#utility.yul\":1578:1610 */\n slt\n /* \"#utility.yul\":1575:1694 */\n iszero\n tag_283\n jumpi\n /* \"#utility.yul\":1613:1692 */\n tag_284\n tag_285\n jump\t// in\n tag_284:\n /* \"#utility.yul\":1575:1694 */\n tag_283:\n /* \"#utility.yul\":1733:1734 */\n 0x00\n /* \"#utility.yul\":1758:1811 */\n tag_286\n /* \"#utility.yul\":1803:1810 */\n dup5\n /* \"#utility.yul\":1794:1800 */\n dup3\n /* \"#utility.yul\":1783:1792 */\n dup6\n /* \"#utility.yul\":1779:1801 */\n add\n /* \"#utility.yul\":1758:1811 */\n tag_257\n jump\t// in\n tag_286:\n /* \"#utility.yul\":1748:1811 */\n swap2\n pop\n /* \"#utility.yul\":1704:1821 */\n pop\n /* \"#utility.yul\":1499:1828 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1834:2308 */\n tag_72:\n /* \"#utility.yul\":1902:1908 */\n 0x00\n /* \"#utility.yul\":1910:1916 */\n dup1\n /* \"#utility.yul\":1959:1961 */\n 0x40\n /* \"#utility.yul\":1947:1956 */\n dup4\n /* \"#utility.yul\":1938:1945 */\n dup6\n /* \"#utility.yul\":1934:1957 */\n sub\n /* \"#utility.yul\":1930:1962 */\n slt\n /* \"#utility.yul\":1927:2046 */\n iszero\n tag_288\n jumpi\n /* \"#utility.yul\":1965:2044 */\n tag_289\n tag_285\n jump\t// in\n tag_289:\n /* \"#utility.yul\":1927:2046 */\n tag_288:\n /* \"#utility.yul\":2085:2086 */\n 0x00\n /* \"#utility.yul\":2110:2163 */\n tag_290\n /* \"#utility.yul\":2155:2162 */\n dup6\n /* \"#utility.yul\":2146:2152 */\n dup3\n /* \"#utility.yul\":2135:2144 */\n dup7\n /* \"#utility.yul\":2131:2153 */\n add\n /* \"#utility.yul\":2110:2163 */\n tag_257\n jump\t// in\n tag_290:\n /* \"#utility.yul\":2100:2163 */\n swap3\n pop\n /* \"#utility.yul\":2056:2173 */\n pop\n /* \"#utility.yul\":2212:2214 */\n 0x20\n /* \"#utility.y |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment