Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sagaratalatti/9d047beb627ec2c889dd1e05d744c42f to your computer and use it in GitHub Desktop.
Save sagaratalatti/9d047beb627ec2c889dd1e05d744c42f to your computer and use it in GitHub Desktop.
Chainlink Dynamic NFT
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// 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 {}
}
// 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];
}
}
}
// 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);
}
// 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);
}
// 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);
}
// 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);
}
}
}
}
// 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;
}
}
// 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;
}
}
// 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;
}
}
// 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);
}
// 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);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_175": {
"entryPoint": null,
"id": 175,
"parameterSlots": 2,
"returnSlots": 0
},
"@_1968": {
"entryPoint": null,
"id": 1968,
"parameterSlots": 1,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1572": {
"entryPoint": 389,
"id": 1572,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_111": {
"entryPoint": 397,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 984,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 1007,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1057,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1067,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 1121,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1168,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1173,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1560:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "70:80:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "80:22:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "89:5:13"
},
"nodeType": "YulFunctionCall",
"src": "89:13:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "80:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "138:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "111:26:13"
},
"nodeType": "YulFunctionCall",
"src": "111:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "111:33:13"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "48:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "56:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:13",
"type": ""
}
],
"src": "7:143:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "233:274:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "279:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "281:77:13"
},
"nodeType": "YulFunctionCall",
"src": "281:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "281:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "254:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "263:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "250:3:13"
},
"nodeType": "YulFunctionCall",
"src": "250:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "275:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "246:3:13"
},
"nodeType": "YulFunctionCall",
"src": "246:32:13"
},
"nodeType": "YulIf",
"src": "243:119:13"
},
{
"nodeType": "YulBlock",
"src": "372:128:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "387:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "401:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "391:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "416:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "462:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "473:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "458:3:13"
},
"nodeType": "YulFunctionCall",
"src": "458:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "482:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "426:31:13"
},
"nodeType": "YulFunctionCall",
"src": "426:64:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "416:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "203:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "214:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "226:6:13",
"type": ""
}
],
"src": "156:351:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "553:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "563:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "579:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "573:5:13"
},
"nodeType": "YulFunctionCall",
"src": "573:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "563:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "546:6:13",
"type": ""
}
],
"src": "513:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "639:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "649:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "660:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "649:7:13"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "621:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "631:7:13",
"type": ""
}
],
"src": "594:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "728:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "738:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "752:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "758:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "748:3:13"
},
"nodeType": "YulFunctionCall",
"src": "748:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "738:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "769:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "799:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "805:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "795:3:13"
},
"nodeType": "YulFunctionCall",
"src": "795:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "773:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "846:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "860:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "874:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "882:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "870:3:13"
},
"nodeType": "YulFunctionCall",
"src": "870:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "860:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "826:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "819:6:13"
},
"nodeType": "YulFunctionCall",
"src": "819:26:13"
},
"nodeType": "YulIf",
"src": "816:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "963:16:13"
},
"nodeType": "YulFunctionCall",
"src": "963:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "963:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "913:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "936:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "933:2:13"
},
"nodeType": "YulFunctionCall",
"src": "933:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "910:2:13"
},
"nodeType": "YulFunctionCall",
"src": "910:38:13"
},
"nodeType": "YulIf",
"src": "907:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "712:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "721:6:13",
"type": ""
}
],
"src": "677:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1031:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1048:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1041:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1041:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "1041:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1145:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1148:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1138:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1138:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "1138:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1169:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1172:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1162:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1162:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "1162:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "1003:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1278:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1295:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1298:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1288:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1288:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1288:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1189:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1401:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1418:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1421:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1411:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1411:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1411:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1312:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1478:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1535:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1544:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1547:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1537:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1537:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1537:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1501:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1526:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1508:17:13"
},
"nodeType": "YulFunctionCall",
"src": "1508:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1498:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1498:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1491:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1491:43:13"
},
"nodeType": "YulIf",
"src": "1488:63:13"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1471:5:13",
"type": ""
}
],
"src": "1435:122:13"
}
]
},
"contents": "{\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_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_uint256_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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 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"
}
],
"linkReferences": {},
"object": "608060405260405180606001604052806040518060800160405280604d8152602001620037d1604d91398152602001604051806080016040528060568152602001620037256056913981526020016040518060800160405280605681526020016200377b6056913981525060099060036200007c92919062000253565b503480156200008a57600080fd5b506040516200381e3803806200381e8339818101604052810190620000b09190620003ef565b6040518060400160405280600a81526020017f44796e616d69634e4654000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f644e465473000000000000000000000000000000000000000000000000000000815250816000908051906020019062000134929190620002ba565b5080600190805190602001906200014d929190620002ba565b50505062000170620001646200018560201b60201c565b6200018d60201b60201c565b80600b8190555042600a8190555050620004af565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054828255906000526020600020908101928215620002a7579160200282015b82811115620002a657825182908051906020019062000295929190620002ba565b509160200191906001019062000274565b5b509050620002b691906200034b565b5090565b828054620002c8906200042b565b90600052602060002090601f016020900481019282620002ec576000855562000338565b82601f106200030757805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003375782518255916020019190600101906200031a565b5b50905062000347919062000373565b5090565b5b808211156200036f576000818162000365919062000392565b506001016200034c565b5090565b5b808211156200038e57600081600090555060010162000374565b5090565b508054620003a0906200042b565b6000825580601f10620003b45750620003d5565b601f016020900490600052602060002090810190620003d4919062000373565b5b50565b600081519050620003e98162000495565b92915050565b60006020828403121562000408576200040762000490565b5b60006200041884828501620003d8565b91505092915050565b6000819050919050565b600060028204905060018216806200044457607f821691505b602082108114156200045b576200045a62000461565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b620004a08162000421565b8114620004ac57600080fd5b50565b61326680620004bf6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610360578063bed34bba1461037c578063c87b56dd146103ac578063d9f2f7a2146103dc578063e985e9c51461040c578063f2fde38b1461043c57610142565b806370a08231146102ce578063715018a6146102fe5780638da5cb5b1461030857806395d89b4114610326578063a22cb4651461034457610142565b80632b98af8d1161010a5780632b98af8d146101fd57806340d097c31461021957806342842e0e146102355780635e6c102e146102515780636352211e146102825780636c7c8f17146102b257610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c919061231e565b610458565b60405161016e91906127c6565b60405180910390f35b61017f61053a565b60405161018c9190612811565b60405180910390f35b6101af60048036038101906101aa919061243d565b6105cc565b6040516101bc919061275f565b60405180910390f35b6101df60048036038101906101da91906122de565b610612565b005b6101fb60048036038101906101f691906121c8565b61072a565b005b6102176004803603810190610212919061243d565b61078a565b005b610233600480360381019061022e919061215b565b610873565b005b61024f600480360381019061024a91906121c8565b610952565b005b61026b60048036038101906102669190612378565b610972565b6040516102799291906127e1565b60405180910390f35b61029c6004803603810190610297919061243d565b610991565b6040516102a9919061275f565b60405180910390f35b6102cc60048036038101906102c79190612378565b610a43565b005b6102e860048036038101906102e3919061215b565b610a70565b6040516102f591906129f3565b60405180910390f35b610306610b28565b005b610310610b3c565b60405161031d919061275f565b60405180910390f35b61032e610b66565b60405161033b9190612811565b60405180910390f35b61035e6004803603810190610359919061229e565b610bf8565b005b61037a6004803603810190610375919061221b565b610c0e565b005b610396600480360381019061039191906123c5565b610c70565b6040516103a391906127c6565b60405180910390f35b6103c660048036038101906103c1919061243d565b610cc9565b6040516103d39190612811565b60405180910390f35b6103f660048036038101906103f1919061243d565b610cdb565b60405161040391906129f3565b60405180910390f35b61042660048036038101906104219190612188565b610e74565b60405161043391906127c6565b60405180910390f35b6104566004803603810190610451919061215b565b610f08565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610533575061053282610f8c565b5b9050919050565b60606000805461054990612c49565b80601f016020809104026020016040519081016040528092919081815260200182805461057590612c49565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782610ff6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061061d82610991565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610685906129b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ad611041565b73ffffffffffffffffffffffffffffffffffffffff1614806106dc57506106db816106d6611041565b610e74565b5b61071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290612933565b60405180910390fd5b6107258383611049565b505050565b61073b610735611041565b82611102565b61077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610771906129d3565b60405180910390fd5b610785838383611197565b505050565b600261079582610cdb565b1061079f57610870565b600060016107ac83610cdb565b6107b69190612ad8565b90506000600982815481106107ce576107cd612db3565b5b9060005260206000200180546107e390612c49565b80601f016020809104026020016040519081016040528092919081815260200182805461080f90612c49565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905061086d83826113fe565b50505b50565b61087b611472565b600061088760086114f0565b905061089360086114fe565b61089d8282611514565b61094e8160096000815481106108b6576108b5612db3565b5b9060005260206000200180546108cb90612c49565b80601f01602080910402602001604051908101604052809291908181526020018280546108f790612c49565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b50505050506113fe565b5050565b61096d83838360405180602001604052806000815250610c0e565b505050565b60006060600b54600a54426109879190612b5f565b1191509250929050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190612993565b60405180910390fd5b80915050919050565b600b54600a5442610a549190612b5f565b1115610a6c5742600a81905550610a6b600061078a565b5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906128f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b30611472565b610b3a6000611532565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b7590612c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba190612c49565b8015610bee5780601f10610bc357610100808354040283529160200191610bee565b820191906000526020600020905b815481529060010190602001808311610bd157829003601f168201915b5050505050905090565b610c0a610c03611041565b83836115f8565b5050565b610c1f610c19611041565b83611102565b610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c55906129d3565b60405180910390fd5b610c6a84848484611765565b50505050565b600081604051602001610c839190612724565b6040516020818303038152906040528051906020012083604051602001610caa9190612724565b6040516020818303038152906040528051906020012014905092915050565b6060610cd4826117c1565b9050919050565b600080610ce783610cc9565b9050610d9a816009600081548110610d0257610d01612db3565b5b906000526020600020018054610d1790612c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390612c49565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050610c70565b15610da9576000915050610e6f565b610e5a816009600181548110610dc257610dc1612db3565b5b906000526020600020018054610dd790612c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0390612c49565b8015610e505780601f10610e2557610100808354040283529160200191610e50565b820191906000526020600020905b815481529060010190602001808311610e3357829003601f168201915b5050505050610c70565b15610e69576001915050610e6f565b60029150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f10611472565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790612853565b60405180910390fd5b610f8981611532565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610fff816118d4565b61103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590612993565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110bc83610991565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061110e83610991565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611150575061114f8185610e74565b5b8061118e57508373ffffffffffffffffffffffffffffffffffffffff16611176846105cc565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166111b782610991565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490612873565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906128b3565b60405180910390fd5b611288838383611940565b611293600082611049565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112e39190612b5f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461133a9190612ad8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113f9838383611945565b505050565b611407826118d4565b611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90612913565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061146d929190611f19565b505050565b61147a611041565b73ffffffffffffffffffffffffffffffffffffffff16611498610b3c565b73ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612973565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61152e82826040518060200160405280600081525061194a565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e906128d3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175891906127c6565b60405180910390a3505050565b611770848484611197565b61177c848484846119a5565b6117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290612833565b60405180910390fd5b50505050565b60606117cc82610ff6565b60006006600084815260200190815260200160002080546117ec90612c49565b80601f016020809104026020016040519081016040528092919081815260200182805461181890612c49565b80156118655780601f1061183a57610100808354040283529160200191611865565b820191906000526020600020905b81548152906001019060200180831161184857829003601f168201915b505050505090506000611876611b3c565b905060008151141561188c5781925050506118cf565b6000825111156118c15780826040516020016118a992919061273b565b604051602081830303815290604052925050506118cf565b6118ca84611b53565b925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6119548383611bbb565b61196160008484846119a5565b6119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790612833565b60405180910390fd5b505050565b60006119c68473ffffffffffffffffffffffffffffffffffffffff16611d95565b15611b2f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119ef611041565b8786866040518563ffffffff1660e01b8152600401611a11949392919061277a565b602060405180830381600087803b158015611a2b57600080fd5b505af1925050508015611a5c57506040513d601f19601f82011682018060405250810190611a59919061234b565b60015b611adf573d8060008114611a8c576040519150601f19603f3d011682016040523d82523d6000602084013e611a91565b606091505b50600081511415611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90612833565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b34565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060611b5e82610ff6565b6000611b68611b3c565b90506000815111611b885760405180602001604052806000815250611bb3565b80611b9284611db8565b604051602001611ba392919061273b565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290612953565b60405180910390fd5b611c34816118d4565b15611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90612893565b60405180910390fd5b611c8060008383611940565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd09190612ad8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9160008383611945565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415611e00576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f14565b600082905060005b60008214611e32578080611e1b90612cac565b915050600a82611e2b9190612b2e565b9150611e08565b60008167ffffffffffffffff811115611e4e57611e4d612de2565b5b6040519080825280601f01601f191660200182016040528015611e805781602001600182028036833780820191505090505b5090505b60008514611f0d57600182611e999190612b5f565b9150600a85611ea89190612cf5565b6030611eb49190612ad8565b60f81b818381518110611eca57611ec9612db3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f069190612b2e565b9450611e84565b8093505050505b919050565b828054611f2590612c49565b90600052602060002090601f016020900481019282611f475760008555611f8e565b82601f10611f6057805160ff1916838001178555611f8e565b82800160010185558215611f8e579182015b82811115611f8d578251825591602001919060010190611f72565b5b509050611f9b9190611f9f565b5090565b5b80821115611fb8576000816000905550600101611fa0565b5090565b6000611fcf611fca84612a33565b612a0e565b905082815260208101848484011115611feb57611fea612e20565b5b611ff6848285612c07565b509392505050565b600061201161200c84612a64565b612a0e565b90508281526020810184848401111561202d5761202c612e20565b5b612038848285612c07565b509392505050565b60008135905061204f816131d4565b92915050565b600081359050612064816131eb565b92915050565b60008135905061207981613202565b92915050565b60008151905061208e81613202565b92915050565b60008083601f8401126120aa576120a9612e16565b5b8235905067ffffffffffffffff8111156120c7576120c6612e11565b5b6020830191508360018202830111156120e3576120e2612e1b565b5b9250929050565b600082601f8301126120ff576120fe612e16565b5b813561210f848260208601611fbc565b91505092915050565b600082601f83011261212d5761212c612e16565b5b813561213d848260208601611ffe565b91505092915050565b60008135905061215581613219565b92915050565b60006020828403121561217157612170612e2a565b5b600061217f84828501612040565b91505092915050565b6000806040838503121561219f5761219e612e2a565b5b60006121ad85828601612040565b92505060206121be85828601612040565b9150509250929050565b6000806000606084860312156121e1576121e0612e2a565b5b60006121ef86828701612040565b935050602061220086828701612040565b925050604061221186828701612146565b9150509250925092565b6000806000806080858703121561223557612234612e2a565b5b600061224387828801612040565b945050602061225487828801612040565b935050604061226587828801612146565b925050606085013567ffffffffffffffff81111561228657612285612e25565b5b612292878288016120ea565b91505092959194509250565b600080604083850312156122b5576122b4612e2a565b5b60006122c385828601612040565b92505060206122d485828601612055565b9150509250929050565b600080604083850312156122f5576122f4612e2a565b5b600061230385828601612040565b925050602061231485828601612146565b9150509250929050565b60006020828403121561233457612333612e2a565b5b60006123428482850161206a565b91505092915050565b60006020828403121561236157612360612e2a565b5b600061236f8482850161207f565b91505092915050565b6000806020838503121561238f5761238e612e2a565b5b600083013567ffffffffffffffff8111156123ad576123ac612e25565b5b6123b985828601612094565b92509250509250929050565b600080604083850312156123dc576123db612e2a565b5b600083013567ffffffffffffffff8111156123fa576123f9612e25565b5b61240685828601612118565b925050602083013567ffffffffffffffff81111561242757612426612e25565b5b61243385828601612118565b9150509250929050565b60006020828403121561245357612452612e2a565b5b600061246184828501612146565b91505092915050565b61247381612b93565b82525050565b61248281612ba5565b82525050565b600061249382612a95565b61249d8185612aab565b93506124ad818560208601612c16565b6124b681612e2f565b840191505092915050565b60006124cc82612aa0565b6124d68185612abc565b93506124e6818560208601612c16565b6124ef81612e2f565b840191505092915050565b600061250582612aa0565b61250f8185612acd565b935061251f818560208601612c16565b80840191505092915050565b6000612538603283612abc565b915061254382612e40565b604082019050919050565b600061255b602683612abc565b915061256682612e8f565b604082019050919050565b600061257e602583612abc565b915061258982612ede565b604082019050919050565b60006125a1601c83612abc565b91506125ac82612f2d565b602082019050919050565b60006125c4602483612abc565b91506125cf82612f56565b604082019050919050565b60006125e7601983612abc565b91506125f282612fa5565b602082019050919050565b600061260a602983612abc565b915061261582612fce565b604082019050919050565b600061262d602e83612abc565b91506126388261301d565b604082019050919050565b6000612650603e83612abc565b915061265b8261306c565b604082019050919050565b6000612673602083612abc565b915061267e826130bb565b602082019050919050565b6000612696602083612abc565b91506126a1826130e4565b602082019050919050565b60006126b9601883612abc565b91506126c48261310d565b602082019050919050565b60006126dc602183612abc565b91506126e782613136565b604082019050919050565b60006126ff602e83612abc565b915061270a82613185565b604082019050919050565b61271e81612bfd565b82525050565b600061273082846124fa565b915081905092915050565b600061274782856124fa565b915061275382846124fa565b91508190509392505050565b6000602082019050612774600083018461246a565b92915050565b600060808201905061278f600083018761246a565b61279c602083018661246a565b6127a96040830185612715565b81810360608301526127bb8184612488565b905095945050505050565b60006020820190506127db6000830184612479565b92915050565b60006040820190506127f66000830185612479565b81810360208301526128088184612488565b90509392505050565b6000602082019050818103600083015261282b81846124c1565b905092915050565b6000602082019050818103600083015261284c8161252b565b9050919050565b6000602082019050818103600083015261286c8161254e565b9050919050565b6000602082019050818103600083015261288c81612571565b9050919050565b600060208201905081810360008301526128ac81612594565b9050919050565b600060208201905081810360008301526128cc816125b7565b9050919050565b600060208201905081810360008301526128ec816125da565b9050919050565b6000602082019050818103600083015261290c816125fd565b9050919050565b6000602082019050818103600083015261292c81612620565b9050919050565b6000602082019050818103600083015261294c81612643565b9050919050565b6000602082019050818103600083015261296c81612666565b9050919050565b6000602082019050818103600083015261298c81612689565b9050919050565b600060208201905081810360008301526129ac816126ac565b9050919050565b600060208201905081810360008301526129cc816126cf565b9050919050565b600060208201905081810360008301526129ec816126f2565b9050919050565b6000602082019050612a086000830184612715565b92915050565b6000612a18612a29565b9050612a248282612c7b565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4e57612a4d612de2565b5b612a5782612e2f565b9050602081019050919050565b600067ffffffffffffffff821115612a7f57612a7e612de2565b5b612a8882612e2f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ae382612bfd565b9150612aee83612bfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2357612b22612d26565b5b828201905092915050565b6000612b3982612bfd565b9150612b4483612bfd565b925082612b5457612b53612d55565b5b828204905092915050565b6000612b6a82612bfd565b9150612b7583612bfd565b925082821015612b8857612b87612d26565b5b828203905092915050565b6000612b9e82612bdd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c34578082015181840152602081019050612c19565b83811115612c43576000848401525b50505050565b60006002820490506001821680612c6157607f821691505b60208210811415612c7557612c74612d84565b5b50919050565b612c8482612e2f565b810181811067ffffffffffffffff82111715612ca357612ca2612de2565b5b80604052505050565b6000612cb782612bfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cea57612ce9612d26565b5b600182019050919050565b6000612d0082612bfd565b9150612d0b83612bfd565b925082612d1b57612d1a612d55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6131dd81612b93565b81146131e857600080fd5b50565b6131f481612ba5565b81146131ff57600080fd5b50565b61320b81612bb1565b811461321657600080fd5b50565b61322281612bfd565b811461322d57600080fd5b5056fea26469706673582212202e741d1b0b1bc235cd7a3931055b920addbfc13d9d37a766bc11b0b19bf18f2064736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d59615473797854446e724734746f6338373231773632724c345a424b585154476a396339527064726e746f752f707572706c652d7370726f75742e6a736f6e68747470733a2f2f697066732e696f2f697066732f516d59615473797854446e724734746f6338373231773632724c345a424b585154476a396339527064726e746f752f707572706c652d626c6f6f6d732e6a736f6e68747470733a2f2f697066732e696f2f697066732f516d59615473797854446e724734746f6338373231773632724c345a424b585154476a396339527064726e746f752f736565642e6a736f6e",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4D DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x37D1 PUSH1 0x4D SWAP2 CODECOPY DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x56 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x3725 PUSH1 0x56 SWAP2 CODECOPY DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x80 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x56 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x377B PUSH1 0x56 SWAP2 CODECOPY DUP2 MSTORE POP PUSH1 0x9 SWAP1 PUSH1 0x3 PUSH3 0x7C SWAP3 SWAP2 SWAP1 PUSH3 0x253 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH3 0x8A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x381E CODESIZE SUB DUP1 PUSH3 0x381E DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0xB0 SWAP2 SWAP1 PUSH3 0x3EF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xA DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x44796E616D69634E465400000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x644E465473000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x134 SWAP3 SWAP2 SWAP1 PUSH3 0x2BA JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x14D SWAP3 SWAP2 SWAP1 PUSH3 0x2BA JUMP JUMPDEST POP POP POP PUSH3 0x170 PUSH3 0x164 PUSH3 0x185 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x18D PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP1 PUSH1 0xB DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0xA DUP2 SWAP1 SSTORE POP POP PUSH3 0x4AF JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH3 0x2A7 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x2A6 JUMPI DUP3 MLOAD DUP3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x295 SWAP3 SWAP2 SWAP1 PUSH3 0x2BA JUMP JUMPDEST POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x274 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x2B6 SWAP2 SWAP1 PUSH3 0x34B JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x2C8 SWAP1 PUSH3 0x42B JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x2EC JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x338 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x307 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x338 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x338 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x337 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x31A JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x347 SWAP2 SWAP1 PUSH3 0x373 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x36F JUMPI PUSH1 0x0 DUP2 DUP2 PUSH3 0x365 SWAP2 SWAP1 PUSH3 0x392 JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH3 0x34C JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x38E JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x374 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST POP DUP1 SLOAD PUSH3 0x3A0 SWAP1 PUSH3 0x42B JUMP JUMPDEST PUSH1 0x0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH3 0x3B4 JUMPI POP PUSH3 0x3D5 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH3 0x3D4 SWAP2 SWAP1 PUSH3 0x373 JUMP JUMPDEST JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x3E9 DUP2 PUSH3 0x495 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x408 JUMPI PUSH3 0x407 PUSH3 0x490 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x418 DUP5 DUP3 DUP6 ADD PUSH3 0x3D8 JUMP JUMPDEST SWAP2 POP 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 0x444 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x45B JUMPI PUSH3 0x45A PUSH3 0x461 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x4A0 DUP2 PUSH3 0x421 JUMP JUMPDEST DUP2 EQ PUSH3 0x4AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3266 DUP1 PUSH3 0x4BF 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 0x142 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x360 JUMPI DUP1 PUSH4 0xBED34BBA EQ PUSH2 0x37C JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x3AC JUMPI DUP1 PUSH4 0xD9F2F7A2 EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x40C JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x43C JUMPI PUSH2 0x142 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2CE JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2FE JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x308 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x326 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x344 JUMPI PUSH2 0x142 JUMP JUMPDEST DUP1 PUSH4 0x2B98AF8D GT PUSH2 0x10A JUMPI DUP1 PUSH4 0x2B98AF8D EQ PUSH2 0x1FD JUMPI DUP1 PUSH4 0x40D097C3 EQ PUSH2 0x219 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x235 JUMPI DUP1 PUSH4 0x5E6C102E EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0x6C7C8F17 EQ PUSH2 0x2B2 JUMPI PUSH2 0x142 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E1 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x161 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15C SWAP2 SWAP1 PUSH2 0x231E JUMP JUMPDEST PUSH2 0x458 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16E SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH2 0x53A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0x2811 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0x5CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DA SWAP2 SWAP1 PUSH2 0x22DE JUMP JUMPDEST PUSH2 0x612 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F6 SWAP2 SWAP1 PUSH2 0x21C8 JUMP JUMPDEST PUSH2 0x72A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x217 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x212 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0x78A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x233 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22E SWAP2 SWAP1 PUSH2 0x215B JUMP JUMPDEST PUSH2 0x873 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x24A SWAP2 SWAP1 PUSH2 0x21C8 JUMP JUMPDEST PUSH2 0x952 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0x972 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x279 SWAP3 SWAP2 SWAP1 PUSH2 0x27E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x297 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0x991 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A9 SWAP2 SWAP1 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C7 SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0xA43 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2E8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E3 SWAP2 SWAP1 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xA70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F5 SWAP2 SWAP1 PUSH2 0x29F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x306 PUSH2 0xB28 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x310 PUSH2 0xB3C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31D SWAP2 SWAP1 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32E PUSH2 0xB66 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x2811 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x359 SWAP2 SWAP1 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xBF8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x37A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x375 SWAP2 SWAP1 PUSH2 0x221B JUMP JUMPDEST PUSH2 0xC0E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x396 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x391 SWAP2 SWAP1 PUSH2 0x23C5 JUMP JUMPDEST PUSH2 0xC70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A3 SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C1 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0xCC9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D3 SWAP2 SWAP1 PUSH2 0x2811 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F1 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0xCDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x403 SWAP2 SWAP1 PUSH2 0x29F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x426 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x421 SWAP2 SWAP1 PUSH2 0x2188 JUMP JUMPDEST PUSH2 0xE74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x433 SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x456 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x451 SWAP2 SWAP1 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xF08 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x523 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x533 JUMPI POP PUSH2 0x532 DUP3 PUSH2 0xF8C JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x549 SWAP1 PUSH2 0x2C49 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 0x575 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5C2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x597 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5C2 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 0x5A5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5D7 DUP3 PUSH2 0xFF6 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 0x61D DUP3 PUSH2 0x991 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x68E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x685 SWAP1 PUSH2 0x29B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x6AD PUSH2 0x1041 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x6DC JUMPI POP PUSH2 0x6DB DUP2 PUSH2 0x6D6 PUSH2 0x1041 JUMP JUMPDEST PUSH2 0xE74 JUMP JUMPDEST JUMPDEST PUSH2 0x71B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x712 SWAP1 PUSH2 0x2933 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x725 DUP4 DUP4 PUSH2 0x1049 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x73B PUSH2 0x735 PUSH2 0x1041 JUMP JUMPDEST DUP3 PUSH2 0x1102 JUMP JUMPDEST PUSH2 0x77A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x771 SWAP1 PUSH2 0x29D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x785 DUP4 DUP4 DUP4 PUSH2 0x1197 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH2 0x795 DUP3 PUSH2 0xCDB JUMP JUMPDEST LT PUSH2 0x79F JUMPI PUSH2 0x870 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x7AC DUP4 PUSH2 0xCDB JUMP JUMPDEST PUSH2 0x7B6 SWAP2 SWAP1 PUSH2 0x2AD8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x7CE JUMPI PUSH2 0x7CD PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x7E3 SWAP1 PUSH2 0x2C49 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 0x80F SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x85C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x831 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x85C 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 0x83F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x86D DUP4 DUP3 PUSH2 0x13FE JUMP JUMPDEST POP POP JUMPDEST POP JUMP JUMPDEST PUSH2 0x87B PUSH2 0x1472 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x887 PUSH1 0x8 PUSH2 0x14F0 JUMP JUMPDEST SWAP1 POP PUSH2 0x893 PUSH1 0x8 PUSH2 0x14FE JUMP JUMPDEST PUSH2 0x89D DUP3 DUP3 PUSH2 0x1514 JUMP JUMPDEST PUSH2 0x94E DUP2 PUSH1 0x9 PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0x8B6 JUMPI PUSH2 0x8B5 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x8CB SWAP1 PUSH2 0x2C49 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 0x8F7 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x944 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x919 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x944 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 0x927 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP PUSH2 0x13FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x96D DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xC0E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0xB SLOAD PUSH1 0xA SLOAD TIMESTAMP PUSH2 0x987 SWAP2 SWAP1 PUSH2 0x2B5F JUMP JUMPDEST GT SWAP2 POP SWAP3 POP SWAP3 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 0xA3A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA31 SWAP1 PUSH2 0x2993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0xA SLOAD TIMESTAMP PUSH2 0xA54 SWAP2 SWAP1 PUSH2 0x2B5F JUMP JUMPDEST GT ISZERO PUSH2 0xA6C JUMPI TIMESTAMP PUSH1 0xA DUP2 SWAP1 SSTORE POP PUSH2 0xA6B PUSH1 0x0 PUSH2 0x78A JUMP JUMPDEST JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xAE1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAD8 SWAP1 PUSH2 0x28F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB30 PUSH2 0x1472 JUMP JUMPDEST PUSH2 0xB3A PUSH1 0x0 PUSH2 0x1532 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xB75 SWAP1 PUSH2 0x2C49 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 0xBA1 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xBEE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBC3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xBEE 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 0xBD1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xC0A PUSH2 0xC03 PUSH2 0x1041 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x15F8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xC1F PUSH2 0xC19 PUSH2 0x1041 JUMP JUMPDEST DUP4 PUSH2 0x1102 JUMP JUMPDEST PUSH2 0xC5E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC55 SWAP1 PUSH2 0x29D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC6A DUP5 DUP5 DUP5 DUP5 PUSH2 0x1765 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC83 SWAP2 SWAP1 PUSH2 0x2724 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCAA SWAP2 SWAP1 PUSH2 0x2724 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xCD4 DUP3 PUSH2 0x17C1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xCE7 DUP4 PUSH2 0xCC9 JUMP JUMPDEST SWAP1 POP PUSH2 0xD9A DUP2 PUSH1 0x9 PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0xD02 JUMPI PUSH2 0xD01 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0xD17 SWAP1 PUSH2 0x2C49 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 0xD43 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD90 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xD65 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xD90 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 0xD73 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP PUSH2 0xC70 JUMP JUMPDEST ISZERO PUSH2 0xDA9 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xE6F JUMP JUMPDEST PUSH2 0xE5A DUP2 PUSH1 0x9 PUSH1 0x1 DUP2 SLOAD DUP2 LT PUSH2 0xDC2 JUMPI PUSH2 0xDC1 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0xDD7 SWAP1 PUSH2 0x2C49 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 0xE03 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE50 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE25 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE50 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 0xE33 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP PUSH2 0xC70 JUMP JUMPDEST ISZERO PUSH2 0xE69 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xE6F JUMP JUMPDEST PUSH1 0x2 SWAP2 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 PUSH2 0xF10 PUSH2 0x1472 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF77 SWAP1 PUSH2 0x2853 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF89 DUP2 PUSH2 0x1532 JUMP JUMPDEST 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 0xFFF DUP2 PUSH2 0x18D4 JUMP JUMPDEST PUSH2 0x103E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1035 SWAP1 PUSH2 0x2993 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 0x10BC DUP4 PUSH2 0x991 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 0x110E DUP4 PUSH2 0x991 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1150 JUMPI POP PUSH2 0x114F DUP2 DUP6 PUSH2 0xE74 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0x118E JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1176 DUP5 PUSH2 0x5CC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x11B7 DUP3 PUSH2 0x991 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x120D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1204 SWAP1 PUSH2 0x2873 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1274 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1288 DUP4 DUP4 DUP4 PUSH2 0x1940 JUMP JUMPDEST PUSH2 0x1293 PUSH1 0x0 DUP3 PUSH2 0x1049 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 0x12E3 SWAP2 SWAP1 PUSH2 0x2B5F 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 0x133A SWAP2 SWAP1 PUSH2 0x2AD8 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 0x13F9 DUP4 DUP4 DUP4 PUSH2 0x1945 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1407 DUP3 PUSH2 0x18D4 JUMP JUMPDEST PUSH2 0x1446 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x143D SWAP1 PUSH2 0x2913 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 0x146D SWAP3 SWAP2 SWAP1 PUSH2 0x1F19 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x147A PUSH2 0x1041 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1498 PUSH2 0xB3C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x14EE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14E5 SWAP1 PUSH2 0x2973 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 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 PUSH2 0x152E DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x194A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1667 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x165E SWAP1 PUSH2 0x28D3 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 0x1758 SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1770 DUP5 DUP5 DUP5 PUSH2 0x1197 JUMP JUMPDEST PUSH2 0x177C DUP5 DUP5 DUP5 DUP5 PUSH2 0x19A5 JUMP JUMPDEST PUSH2 0x17BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17B2 SWAP1 PUSH2 0x2833 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x17CC DUP3 PUSH2 0xFF6 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 0x17EC SWAP1 PUSH2 0x2C49 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 0x1818 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1865 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x183A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1865 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 0x1848 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x1876 PUSH2 0x1B3C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x188C JUMPI DUP2 SWAP3 POP POP POP PUSH2 0x18CF JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0x18C1 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x18A9 SWAP3 SWAP2 SWAP1 PUSH2 0x273B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP PUSH2 0x18CF JUMP JUMPDEST PUSH2 0x18CA DUP5 PUSH2 0x1B53 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST 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 0x1954 DUP4 DUP4 PUSH2 0x1BBB JUMP JUMPDEST PUSH2 0x1961 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x19A5 JUMP JUMPDEST PUSH2 0x19A0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1997 SWAP1 PUSH2 0x2833 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19C6 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1D95 JUMP JUMPDEST ISZERO PUSH2 0x1B2F JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x19EF PUSH2 0x1041 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A11 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x277A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A2B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1A5C 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 0x1A59 SWAP2 SWAP1 PUSH2 0x234B JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1ADF JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1A8C 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 0x1A91 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1AD7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1ACE SWAP1 PUSH2 0x2833 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 0x1B34 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 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 0x1B5E DUP3 PUSH2 0xFF6 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B68 PUSH2 0x1B3C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1B88 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1BB3 JUMP JUMPDEST DUP1 PUSH2 0x1B92 DUP5 PUSH2 0x1DB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1BA3 SWAP3 SWAP2 SWAP1 PUSH2 0x273B 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1C2B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C22 SWAP1 PUSH2 0x2953 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C34 DUP2 PUSH2 0x18D4 JUMP JUMPDEST ISZERO PUSH2 0x1C74 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C6B SWAP1 PUSH2 0x2893 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C80 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1940 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 0x1CD0 SWAP2 SWAP1 PUSH2 0x2AD8 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 0x1D91 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1945 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1E00 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 0x1F14 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1E32 JUMPI DUP1 DUP1 PUSH2 0x1E1B SWAP1 PUSH2 0x2CAC JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1E2B SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP2 POP PUSH2 0x1E08 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1E4E JUMPI PUSH2 0x1E4D PUSH2 0x2DE2 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 0x1E80 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 0x1F0D JUMPI PUSH1 0x1 DUP3 PUSH2 0x1E99 SWAP2 SWAP1 PUSH2 0x2B5F JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1EA8 SWAP2 SWAP1 PUSH2 0x2CF5 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1EB4 SWAP2 SWAP1 PUSH2 0x2AD8 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1ECA JUMPI PUSH2 0x1EC9 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1F06 SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP5 POP PUSH2 0x1E84 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1F25 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1F47 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1F8E JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1F60 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1F8E JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1F8E JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1F8D JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1F72 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x1F9B SWAP2 SWAP1 PUSH2 0x1F9F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1FB8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x1FA0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCF PUSH2 0x1FCA DUP5 PUSH2 0x2A33 JUMP JUMPDEST PUSH2 0x2A0E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1FEB JUMPI PUSH2 0x1FEA PUSH2 0x2E20 JUMP JUMPDEST JUMPDEST PUSH2 0x1FF6 DUP5 DUP3 DUP6 PUSH2 0x2C07 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2011 PUSH2 0x200C DUP5 PUSH2 0x2A64 JUMP JUMPDEST PUSH2 0x2A0E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x202D JUMPI PUSH2 0x202C PUSH2 0x2E20 JUMP JUMPDEST JUMPDEST PUSH2 0x2038 DUP5 DUP3 DUP6 PUSH2 0x2C07 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x204F DUP2 PUSH2 0x31D4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2064 DUP2 PUSH2 0x31EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2079 DUP2 PUSH2 0x3202 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x208E DUP2 PUSH2 0x3202 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x20AA JUMPI PUSH2 0x20A9 PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x20C7 JUMPI PUSH2 0x20C6 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x20E3 JUMPI PUSH2 0x20E2 PUSH2 0x2E1B JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x20FF JUMPI PUSH2 0x20FE PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x210F DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1FBC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x212D JUMPI PUSH2 0x212C PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x213D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1FFE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2155 DUP2 PUSH2 0x3219 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2171 JUMPI PUSH2 0x2170 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x217F DUP5 DUP3 DUP6 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x219F JUMPI PUSH2 0x219E PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x21AD DUP6 DUP3 DUP7 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x21BE DUP6 DUP3 DUP7 ADD PUSH2 0x2040 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 0x21E1 JUMPI PUSH2 0x21E0 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x21EF DUP7 DUP3 DUP8 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2200 DUP7 DUP3 DUP8 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2211 DUP7 DUP3 DUP8 ADD PUSH2 0x2146 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 0x2235 JUMPI PUSH2 0x2234 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2243 DUP8 DUP3 DUP9 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2254 DUP8 DUP3 DUP9 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2265 DUP8 DUP3 DUP9 ADD PUSH2 0x2146 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2286 JUMPI PUSH2 0x2285 PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x2292 DUP8 DUP3 DUP9 ADD PUSH2 0x20EA 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 0x22B5 JUMPI PUSH2 0x22B4 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x22C3 DUP6 DUP3 DUP7 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x22D4 DUP6 DUP3 DUP7 ADD PUSH2 0x2055 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22F5 JUMPI PUSH2 0x22F4 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2303 DUP6 DUP3 DUP7 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2314 DUP6 DUP3 DUP7 ADD PUSH2 0x2146 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2334 JUMPI PUSH2 0x2333 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2342 DUP5 DUP3 DUP6 ADD PUSH2 0x206A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2361 JUMPI PUSH2 0x2360 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x236F DUP5 DUP3 DUP6 ADD PUSH2 0x207F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x238F JUMPI PUSH2 0x238E PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x23AD JUMPI PUSH2 0x23AC PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x23B9 DUP6 DUP3 DUP7 ADD PUSH2 0x2094 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23DC JUMPI PUSH2 0x23DB PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x23FA JUMPI PUSH2 0x23F9 PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x2406 DUP6 DUP3 DUP7 ADD PUSH2 0x2118 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2427 JUMPI PUSH2 0x2426 PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x2433 DUP6 DUP3 DUP7 ADD PUSH2 0x2118 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2453 JUMPI PUSH2 0x2452 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2461 DUP5 DUP3 DUP6 ADD PUSH2 0x2146 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2473 DUP2 PUSH2 0x2B93 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2482 DUP2 PUSH2 0x2BA5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2493 DUP3 PUSH2 0x2A95 JUMP JUMPDEST PUSH2 0x249D DUP2 DUP6 PUSH2 0x2AAB JUMP JUMPDEST SWAP4 POP PUSH2 0x24AD DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST PUSH2 0x24B6 DUP2 PUSH2 0x2E2F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24CC DUP3 PUSH2 0x2AA0 JUMP JUMPDEST PUSH2 0x24D6 DUP2 DUP6 PUSH2 0x2ABC JUMP JUMPDEST SWAP4 POP PUSH2 0x24E6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST PUSH2 0x24EF DUP2 PUSH2 0x2E2F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2505 DUP3 PUSH2 0x2AA0 JUMP JUMPDEST PUSH2 0x250F DUP2 DUP6 PUSH2 0x2ACD JUMP JUMPDEST SWAP4 POP PUSH2 0x251F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2538 PUSH1 0x32 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2543 DUP3 PUSH2 0x2E40 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x255B PUSH1 0x26 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2566 DUP3 PUSH2 0x2E8F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x257E PUSH1 0x25 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2589 DUP3 PUSH2 0x2EDE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25A1 PUSH1 0x1C DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x25AC DUP3 PUSH2 0x2F2D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25C4 PUSH1 0x24 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x25CF DUP3 PUSH2 0x2F56 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25E7 PUSH1 0x19 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x25F2 DUP3 PUSH2 0x2FA5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x260A PUSH1 0x29 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2615 DUP3 PUSH2 0x2FCE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x262D PUSH1 0x2E DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2638 DUP3 PUSH2 0x301D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2650 PUSH1 0x3E DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x265B DUP3 PUSH2 0x306C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2673 PUSH1 0x20 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x267E DUP3 PUSH2 0x30BB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2696 PUSH1 0x20 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x26A1 DUP3 PUSH2 0x30E4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26B9 PUSH1 0x18 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x26C4 DUP3 PUSH2 0x310D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26DC PUSH1 0x21 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x26E7 DUP3 PUSH2 0x3136 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26FF PUSH1 0x2E DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x270A DUP3 PUSH2 0x3185 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x271E DUP2 PUSH2 0x2BFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2730 DUP3 DUP5 PUSH2 0x24FA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2747 DUP3 DUP6 PUSH2 0x24FA JUMP JUMPDEST SWAP2 POP PUSH2 0x2753 DUP3 DUP5 PUSH2 0x24FA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2774 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x246A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x278F PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x246A JUMP JUMPDEST PUSH2 0x279C PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x246A JUMP JUMPDEST PUSH2 0x27A9 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x2715 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x27BB DUP2 DUP5 PUSH2 0x2488 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x27DB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2479 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x27F6 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2479 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x2808 DUP2 DUP5 PUSH2 0x2488 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x282B DUP2 DUP5 PUSH2 0x24C1 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 0x284C DUP2 PUSH2 0x252B 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 0x286C DUP2 PUSH2 0x254E 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 0x288C DUP2 PUSH2 0x2571 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 0x28AC DUP2 PUSH2 0x2594 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 0x28CC DUP2 PUSH2 0x25B7 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 0x28EC DUP2 PUSH2 0x25DA 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 0x290C DUP2 PUSH2 0x25FD 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 0x292C DUP2 PUSH2 0x2620 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 0x294C DUP2 PUSH2 0x2643 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 0x296C DUP2 PUSH2 0x2666 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 0x298C DUP2 PUSH2 0x2689 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 0x29AC DUP2 PUSH2 0x26AC 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 0x29CC DUP2 PUSH2 0x26CF 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 0x29EC DUP2 PUSH2 0x26F2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2A08 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2715 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A18 PUSH2 0x2A29 JUMP JUMPDEST SWAP1 POP PUSH2 0x2A24 DUP3 DUP3 PUSH2 0x2C7B 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 0x2A4E JUMPI PUSH2 0x2A4D PUSH2 0x2DE2 JUMP JUMPDEST JUMPDEST PUSH2 0x2A57 DUP3 PUSH2 0x2E2F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A7F JUMPI PUSH2 0x2A7E PUSH2 0x2DE2 JUMP JUMPDEST JUMPDEST PUSH2 0x2A88 DUP3 PUSH2 0x2E2F 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 0x2AE3 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2AEE DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2B23 JUMPI PUSH2 0x2B22 PUSH2 0x2D26 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B39 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2B44 DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2B54 JUMPI PUSH2 0x2B53 PUSH2 0x2D55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B6A DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2B75 DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2B88 JUMPI PUSH2 0x2B87 PUSH2 0x2D26 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B9E DUP3 PUSH2 0x2BDD 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 0x2C34 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2C19 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2C43 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 0x2C61 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2C75 JUMPI PUSH2 0x2C74 PUSH2 0x2D84 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C84 DUP3 PUSH2 0x2E2F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2CA3 JUMPI PUSH2 0x2CA2 PUSH2 0x2DE2 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CB7 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2CEA JUMPI PUSH2 0x2CE9 PUSH2 0x2D26 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D00 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2D0B DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2D1B JUMPI PUSH2 0x2D1A PUSH2 0x2D55 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 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 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 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 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 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 PUSH2 0x31DD DUP2 PUSH2 0x2B93 JUMP JUMPDEST DUP2 EQ PUSH2 0x31E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x31F4 DUP2 PUSH2 0x2BA5 JUMP JUMPDEST DUP2 EQ PUSH2 0x31FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x320B DUP2 PUSH2 0x2BB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x3216 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3222 DUP2 PUSH2 0x2BFD JUMP JUMPDEST DUP2 EQ PUSH2 0x322D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E PUSH21 0x1D1B0B1BC235CD7A3931055B920ADDBFC13D9D37A7 PUSH7 0xBC11B0B19BF18F KECCAK256 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER PUSH9 0x747470733A2F2F6970 PUSH7 0x732E696F2F6970 PUSH7 0x732F516D596154 PUSH20 0x797854446E724734746F6338373231773632724C CALLVALUE GAS TIMESTAMP 0x4B PC MLOAD SLOAD SELFBALANCE PUSH11 0x396339527064726E746F75 0x2F PUSH17 0x7572706C652D7370726F75742E6A736F6E PUSH9 0x747470733A2F2F6970 PUSH7 0x732E696F2F6970 PUSH7 0x732F516D596154 PUSH20 0x797854446E724734746F6338373231773632724C CALLVALUE GAS TIMESTAMP 0x4B PC MLOAD SLOAD SELFBALANCE PUSH11 0x396339527064726E746F75 0x2F PUSH17 0x7572706C652D626C6F6F6D732E6A736F6E PUSH9 0x747470733A2F2F6970 PUSH7 0x732E696F2F6970 PUSH7 0x732F516D596154 PUSH20 0x797854446E724734746F6338373231773632724C CALLVALUE GAS TIMESTAMP 0x4B PC MLOAD SLOAD SELFBALANCE PUSH11 0x396339527064726E746F75 0x2F PUSH20 0x6565642E6A736F6E000000000000000000000000 ",
"sourceMap": "391:2920:12:-:0;;;603:310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;970:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1390:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;1052:9:12::1;1041:8;:20;;;;1087:15;1071:13;:31;;;;970:139:::0;391:2920;;640:96:7;693:7;719:10;712:17;;640:96;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;391:2920:12:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;7:143:13:-;64:5;95:6;89:13;80:22;;111:33;138:5;111:33;:::i;:::-;7:143;;;;:::o;156:351::-;226:6;275:2;263:9;254:7;250:23;246:32;243:119;;;281:79;;:::i;:::-;243:119;401:1;426:64;482:7;473:6;462:9;458:22;426:64;:::i;:::-;416:74;;372:128;156:351;;;;:::o;594:77::-;631:7;660:5;649:16;;594:77;;;:::o;677:320::-;721:6;758:1;752:4;748:12;738:22;;805:1;799:4;795:12;826:18;816:81;;882:4;874:6;870:17;860:27;;816:81;944:2;936:6;933:14;913:18;910:38;907:84;;;963:18;;:::i;:::-;907:84;728:269;677:320;;;:::o;1003:180::-;1051:77;1048:1;1041:88;1148:4;1145:1;1138:15;1172:4;1169:1;1162:15;1312:117;1421:1;1418;1411:12;1435:122;1508:24;1526:5;1508:24;:::i;:::-;1501:5;1498:35;1488:63;;1547:1;1544;1537:12;1488:63;1435:122;:::o;391:2920:12:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_978": {
"entryPoint": 6469,
"id": 978,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_848": {
"entryPoint": 4169,
"id": 848,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_326": {
"entryPoint": 6972,
"id": 326,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_967": {
"entryPoint": 6464,
"id": 967,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_956": {
"entryPoint": 6565,
"id": 956,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkOwner_54": {
"entryPoint": 5234,
"id": 54,
"parameterSlots": 0,
"returnSlots": 0
},
"@_exists_545": {
"entryPoint": 6356,
"id": 545,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_579": {
"entryPoint": 4354,
"id": 579,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_689": {
"entryPoint": 7099,
"id": 689,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1572": {
"entryPoint": 4161,
"id": 1572,
"parameterSlots": 0,
"returnSlots": 1
},
"@_requireMinted_894": {
"entryPoint": 4086,
"id": 894,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeMint_594": {
"entryPoint": 5396,
"id": 594,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_623": {
"entryPoint": 6474,
"id": 623,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_527": {
"entryPoint": 5989,
"id": 527,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_880": {
"entryPoint": 5624,
"id": 880,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setTokenURI_1207": {
"entryPoint": 5118,
"id": 1207,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 5426,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_824": {
"entryPoint": 4503,
"id": 824,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_369": {
"entryPoint": 1554,
"id": 369,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_230": {
"entryPoint": 2672,
"id": 230,
"parameterSlots": 1,
"returnSlots": 1
},
"@checkUpKeep_1988": {
"entryPoint": 2418,
"id": 1988,
"parameterSlots": 2,
"returnSlots": 2
},
"@compareStrings_2139": {
"entryPoint": 3184,
"id": 2139,
"parameterSlots": 2,
"returnSlots": 1
},
"@current_1600": {
"entryPoint": 5360,
"id": 1600,
"parameterSlots": 1,
"returnSlots": 1
},
"@flowerStage_2112": {
"entryPoint": 3291,
"id": 2112,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_387": {
"entryPoint": 1484,
"id": 387,
"parameterSlots": 1,
"returnSlots": 1
},
"@growFlower_2076": {
"entryPoint": 1930,
"id": 2076,
"parameterSlots": 1,
"returnSlots": 0
},
"@increment_1614": {
"entryPoint": 5374,
"id": 1614,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_422": {
"entryPoint": 3700,
"id": 422,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1283": {
"entryPoint": 7573,
"id": 1283,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_268": {
"entryPoint": 1338,
"id": 268,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_258": {
"entryPoint": 2449,
"id": 258,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_40": {
"entryPoint": 2876,
"id": 40,
"parameterSlots": 0,
"returnSlots": 1
},
"@performUpKeep_2012": {
"entryPoint": 2627,
"id": 2012,
"parameterSlots": 2,
"returnSlots": 0
},
"@renounceOwnership_68": {
"entryPoint": 2856,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeMint_2043": {
"entryPoint": 2163,
"id": 2043,
"parameterSlots": 1,
"returnSlots": 0
},
"@safeTransferFrom_468": {
"entryPoint": 2386,
"id": 468,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_498": {
"entryPoint": 3086,
"id": 498,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_404": {
"entryPoint": 3064,
"id": 404,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1905": {
"entryPoint": 3980,
"id": 1905,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_206": {
"entryPoint": 1112,
"id": 206,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_278": {
"entryPoint": 2918,
"id": 278,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1744": {
"entryPoint": 7608,
"id": 1744,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_1185": {
"entryPoint": 6081,
"id": 1185,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_2170": {
"entryPoint": 3273,
"id": 2170,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_317": {
"entryPoint": 6995,
"id": 317,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_449": {
"entryPoint": 1834,
"id": 449,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_91": {
"entryPoint": 3848,
"id": 91,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 8124,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 8190,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 8256,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 8277,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 8298,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 8319,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_calldata_ptr": {
"entryPoint": 8340,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 8426,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 8472,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 8518,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 8539,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 8584,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 8648,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 8731,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 8862,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 8926,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 8990,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 9035,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes_calldata_ptr": {
"entryPoint": 9080,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 9157,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 9277,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 9322,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 9337,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 9352,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9409,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 9466,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9550,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9585,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9620,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9655,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9690,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9725,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9760,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9795,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9830,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9865,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9900,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9935,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9970,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 10005,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 10020,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"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": 10043,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 10079,
"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": 10106,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 10182,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 10209,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10257,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10291,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10323,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10355,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10387,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10419,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10451,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10483,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10547,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10611,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10643,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10675,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10707,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 10739,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 10766,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 10793,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 10803,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 10852,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 10901,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 10912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 10923,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 10940,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 10957,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 10968,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 11054,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 11103,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 11155,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 11173,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 11185,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 11229,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 11261,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 11271,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 11286,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 11337,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 11387,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 11436,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 11509,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 11558,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 11605,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 11652,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 11699,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 11746,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 11793,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 11798,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 11803,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 11808,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 11813,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 11818,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 11823,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 11840,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 11919,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 11998,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 12077,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 12118,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 12197,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": {
"entryPoint": 12238,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4": {
"entryPoint": 12317,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304": {
"entryPoint": 12396,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 12475,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 12516,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": {
"entryPoint": 12557,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 12598,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b": {
"entryPoint": 12677,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 12756,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 12779,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 12802,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 12825,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:33652: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": "507:328:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "517:75:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "584:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "542:41:13"
},
"nodeType": "YulFunctionCall",
"src": "542:49:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "526:15:13"
},
"nodeType": "YulFunctionCall",
"src": "526:66:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "517:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "608:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "615:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "601:6:13"
},
"nodeType": "YulFunctionCall",
"src": "601:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "601:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "631:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "646:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "653:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "642:3:13"
},
"nodeType": "YulFunctionCall",
"src": "642:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "635:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "696:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "698:77:13"
},
"nodeType": "YulFunctionCall",
"src": "698:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "698:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "677:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "682:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "673:3:13"
},
"nodeType": "YulFunctionCall",
"src": "673:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "691:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "670:2:13"
},
"nodeType": "YulFunctionCall",
"src": "670:25:13"
},
"nodeType": "YulIf",
"src": "667:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "812:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "817:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "822:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "788:23:13"
},
"nodeType": "YulFunctionCall",
"src": "788:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "788:41:13"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "480:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "485:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "493:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "501:5:13",
"type": ""
}
],
"src": "423:412:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "893:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "903:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "925:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "912:12:13"
},
"nodeType": "YulFunctionCall",
"src": "912:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "903:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "968:5:13"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "941:26:13"
},
"nodeType": "YulFunctionCall",
"src": "941:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "941:33:13"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "871:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "879:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "887:5:13",
"type": ""
}
],
"src": "841:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1035:84:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1045:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1067:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1054:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1054:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1045:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1107:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1083:23:13"
},
"nodeType": "YulFunctionCall",
"src": "1083:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "1083:30:13"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1013:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1021:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1029:5:13",
"type": ""
}
],
"src": "986:133:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1176:86:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1186:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1208:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1195:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1195:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1186:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1250:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1224:25:13"
},
"nodeType": "YulFunctionCall",
"src": "1224:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "1224:32:13"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1154:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1162:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1170:5:13",
"type": ""
}
],
"src": "1125:137:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1330:79:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1340:22:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1355:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1349:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1349:13:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1340:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1371:25:13"
},
"nodeType": "YulFunctionCall",
"src": "1371:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "1371:32:13"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1308:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1316:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1324:5:13",
"type": ""
}
],
"src": "1268:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1502:478:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1551:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1553:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1553:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1553:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1530:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1538:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1526:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1526:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1545:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1522:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1522:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1515:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1515:35:13"
},
"nodeType": "YulIf",
"src": "1512:122:13"
},
{
"nodeType": "YulAssignment",
"src": "1643:30:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1666:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1653:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1653:20:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1643:6:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1716:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulIdentifier",
"src": "1718:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1718:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1718:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1688:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1696:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1685:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1685:30:13"
},
"nodeType": "YulIf",
"src": "1682:117:13"
},
{
"nodeType": "YulAssignment",
"src": "1808:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1824:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1832:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1820:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1820:17:13"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1808:8:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1891:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulIdentifier",
"src": "1893:77:13"
},
"nodeType": "YulFunctionCall",
"src": "1893:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "1893:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1856:8:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1870:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1878:4:13",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1866:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1866:17:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1852:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1852:32:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1886:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1849:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1849:41:13"
},
"nodeType": "YulIf",
"src": "1846:128:13"
}
]
},
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1469:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1477:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "1485:8:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1495:6:13",
"type": ""
}
],
"src": "1428:552:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2060:277:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2109:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2111:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2111:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2111:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2088:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2096:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2084:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2084:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2103:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2080:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2080:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2073:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2073:35:13"
},
"nodeType": "YulIf",
"src": "2070:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2201:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2228:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2215:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2215:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2205:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2244:87:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2304:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2312:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2300:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2300:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2319:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2327:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2253:46:13"
},
"nodeType": "YulFunctionCall",
"src": "2253:78:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2244:5:13"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2038:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2046:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2054:5:13",
"type": ""
}
],
"src": "1999:338:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2419:278:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2468:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2470:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2470:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2470:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2447:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2455:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2443:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2443:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2462:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2439:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2439:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2432:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2432:35:13"
},
"nodeType": "YulIf",
"src": "2429:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2560:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2587:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2574:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2574:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2564:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2603:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2664:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2672:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2660:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2660:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2679:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2687:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2612:47:13"
},
"nodeType": "YulFunctionCall",
"src": "2612:79:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2603:5:13"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2397:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2405:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2413:5:13",
"type": ""
}
],
"src": "2357:340:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2755:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2765:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2787:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2774:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2774:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2765:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2830:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2803:26:13"
},
"nodeType": "YulFunctionCall",
"src": "2803:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "2803:33:13"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2733:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2741:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2749:5:13",
"type": ""
}
],
"src": "2703:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2914:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2960:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2962:77:13"
},
"nodeType": "YulFunctionCall",
"src": "2962:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "2962:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2935:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2944:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2931:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2931:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2956:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2927:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2927:32:13"
},
"nodeType": "YulIf",
"src": "2924:119:13"
},
{
"nodeType": "YulBlock",
"src": "3053:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3068:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3082:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3072:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3097:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3132:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3143:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3128:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3128:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3152:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3107:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3107:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3097:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2884:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2895:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2907:6:13",
"type": ""
}
],
"src": "2848:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3266:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3312:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3314:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3314:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3314:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3287:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3296:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3283:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3283:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3308:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3279:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3279:32:13"
},
"nodeType": "YulIf",
"src": "3276:119:13"
},
{
"nodeType": "YulBlock",
"src": "3405:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3434:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3424:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3449:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3484:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3495:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3480:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3480:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3504:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3459:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3459:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3449:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3532:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3547:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3561:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3551:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3577:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3612:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3623:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3608:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3608:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3632:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3587:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3587:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3577:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3228:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3239:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3251:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3259:6:13",
"type": ""
}
],
"src": "3183:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3763:519:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3809:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3811:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3811:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3811:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3784:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3793:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3780:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3780:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3805:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3776:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3776:32:13"
},
"nodeType": "YulIf",
"src": "3773:119:13"
},
{
"nodeType": "YulBlock",
"src": "3902:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3917:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3931:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3921:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3946:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3981:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3992:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3977:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3977:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4001:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3956:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3956:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3946:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4029:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4044:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4058:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4048:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4074:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4109:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4120:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4105:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4105:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4129:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4084:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4084:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4074:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4157:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4172:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4186:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4176:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4202:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4237:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4248:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4233:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4233:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4257:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4212:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4212:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4202:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3717:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3728:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3740:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3748:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3756:6:13",
"type": ""
}
],
"src": "3663:619:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4414:817:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4461:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4463:77:13"
},
"nodeType": "YulFunctionCall",
"src": "4463:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "4463:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4435:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4444:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4431:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4431:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4456:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4427:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4427:33:13"
},
"nodeType": "YulIf",
"src": "4424:120:13"
},
{
"nodeType": "YulBlock",
"src": "4554:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4569:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4583:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4573:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4598:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4633:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4644:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4629:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4629:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4653:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4608:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4608:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4598:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4681:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4696:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4710:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4700:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4726:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4761:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4772:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4757:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4757:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4781:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4736:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4736:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4726:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4809:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4824:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4838:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4828:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4854:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4889:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4900:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4885:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4885:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4909:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4864:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4864:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4854:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4937:287:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4952:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4983:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4994:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4979:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4979:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4966:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4966:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4956:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5045:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5047:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5047:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5047:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5017:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5025:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5014:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5014:30:13"
},
"nodeType": "YulIf",
"src": "5011:117:13"
},
{
"nodeType": "YulAssignment",
"src": "5142:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5186:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5197:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5182:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5182:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5206:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5152:29:13"
},
"nodeType": "YulFunctionCall",
"src": "5152:62:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "5142:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4360:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4371:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4383:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4391:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4399:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4407:6:13",
"type": ""
}
],
"src": "4288:943:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5317:388:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5363:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5365:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5365:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5365:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5338:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5347:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5334:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5334:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5359:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5330:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5330:32:13"
},
"nodeType": "YulIf",
"src": "5327:119:13"
},
{
"nodeType": "YulBlock",
"src": "5456:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5471:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5485:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5475:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5500:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5535:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5546:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5531:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5531:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5555:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5510:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5510:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5500:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5583:115:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5598:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5612:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5602:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5628:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5660:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5671:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5656:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5656:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5680:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5638:17:13"
},
"nodeType": "YulFunctionCall",
"src": "5638:50:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5628:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5279:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5290:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5302:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5310:6:13",
"type": ""
}
],
"src": "5237:468:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5794:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5840:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5842:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5842:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5842:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5815:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5824:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5811:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5811:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5836:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5807:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5807:32:13"
},
"nodeType": "YulIf",
"src": "5804:119:13"
},
{
"nodeType": "YulBlock",
"src": "5933:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5948:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5962:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5952:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5977:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6012:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6023:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6008:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6008:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6032:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5987:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5987:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5977:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6060:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6075:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6089:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6079:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6105:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6140:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6151:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6136:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6136:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6160:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6115:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6115:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6105:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5756:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5767:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5779:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5787:6:13",
"type": ""
}
],
"src": "5711:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6256:262:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6302:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6304:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6304:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6304:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6277:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6286:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6273:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6273:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6298:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6269:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6269:32:13"
},
"nodeType": "YulIf",
"src": "6266:119:13"
},
{
"nodeType": "YulBlock",
"src": "6395:116:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6410:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6424:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6414:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6439:62:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6473:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6484:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6469:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6469:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6493:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "6449:19:13"
},
"nodeType": "YulFunctionCall",
"src": "6449:52:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6439:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6226:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6237:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6249:6:13",
"type": ""
}
],
"src": "6191:327:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6600:273:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6646:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6648:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6648:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6648:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6621:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6630:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6617:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6617:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6642:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6613:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6613:32:13"
},
"nodeType": "YulIf",
"src": "6610:119:13"
},
{
"nodeType": "YulBlock",
"src": "6739:127:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6754:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6768:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6758:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6783:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6828:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6839:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6824:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6824:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6848:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "6793:30:13"
},
"nodeType": "YulFunctionCall",
"src": "6793:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6783:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6570:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6581:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6593:6:13",
"type": ""
}
],
"src": "6524:349:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6964:442:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7010:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7012:77:13"
},
"nodeType": "YulFunctionCall",
"src": "7012:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "7012:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6985:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6994:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6981:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6981:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7006:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6977:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6977:32:13"
},
"nodeType": "YulIf",
"src": "6974:119:13"
},
{
"nodeType": "YulBlock",
"src": "7103:296:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7118:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7149:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7160:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7145:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7145:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7132:12:13"
},
"nodeType": "YulFunctionCall",
"src": "7132:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7122:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7210:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "7212:77:13"
},
"nodeType": "YulFunctionCall",
"src": "7212:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "7212:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7182:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7190:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7179:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7179:30:13"
},
"nodeType": "YulIf",
"src": "7176:117:13"
},
{
"nodeType": "YulAssignment",
"src": "7307:82:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7361:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7372:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7357:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7357:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7381:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "7325:31:13"
},
"nodeType": "YulFunctionCall",
"src": "7325:64:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7307:6:13"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "7315:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6926:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6937:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6949:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6957:6:13",
"type": ""
}
],
"src": "6879:527:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7515:731:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7561:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7563:77:13"
},
"nodeType": "YulFunctionCall",
"src": "7563:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "7563:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7536:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7545:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7532:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7532:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7557:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7528:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7528:32:13"
},
"nodeType": "YulIf",
"src": "7525:119:13"
},
{
"nodeType": "YulBlock",
"src": "7654:287:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7669:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7700:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7711:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7696:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7696:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7683:12:13"
},
"nodeType": "YulFunctionCall",
"src": "7683:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7673:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7761:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "7763:77:13"
},
"nodeType": "YulFunctionCall",
"src": "7763:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "7763:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7733:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7741:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7730:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7730:30:13"
},
"nodeType": "YulIf",
"src": "7727:117:13"
},
{
"nodeType": "YulAssignment",
"src": "7858:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7903:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7914:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7899:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7899:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7923:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7868:30:13"
},
"nodeType": "YulFunctionCall",
"src": "7868:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7858:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "7951:288:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7966:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7997:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8008:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7993:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7993:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "7980:12:13"
},
"nodeType": "YulFunctionCall",
"src": "7980:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7970:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8059:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "8061:77:13"
},
"nodeType": "YulFunctionCall",
"src": "8061:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "8061:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8031:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8039:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8028:2:13"
},
"nodeType": "YulFunctionCall",
"src": "8028:30:13"
},
"nodeType": "YulIf",
"src": "8025:117:13"
},
{
"nodeType": "YulAssignment",
"src": "8156:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8201:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8212:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8197:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8197:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8221:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8166:30:13"
},
"nodeType": "YulFunctionCall",
"src": "8166:63:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "8156:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7477:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7488:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7500:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "7508:6:13",
"type": ""
}
],
"src": "7412:834:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8318:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8364:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "8366:77:13"
},
"nodeType": "YulFunctionCall",
"src": "8366:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "8366:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8339:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8348:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8335:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8335:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8360:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8331:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8331:32:13"
},
"nodeType": "YulIf",
"src": "8328:119:13"
},
{
"nodeType": "YulBlock",
"src": "8457:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8472:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8486:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8476:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8501:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8536:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8547:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8532:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8532:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "8556:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "8511:20:13"
},
"nodeType": "YulFunctionCall",
"src": "8511:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "8501:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8288:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "8299:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "8311:6:13",
"type": ""
}
],
"src": "8252:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8652:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8669:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8692:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "8674:17:13"
},
"nodeType": "YulFunctionCall",
"src": "8674:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8662:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8662:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "8662:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8640:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8647:3:13",
"type": ""
}
],
"src": "8587:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8770:50:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8787:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8807:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "8792:14:13"
},
"nodeType": "YulFunctionCall",
"src": "8792:21:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8780:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8780:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "8780:34:13"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8758:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8765:3:13",
"type": ""
}
],
"src": "8711:109:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8916:270:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8926:52:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8972:5:13"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8940:31:13"
},
"nodeType": "YulFunctionCall",
"src": "8940:38:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8930:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8987:77:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9052:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9057:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8994:57:13"
},
"nodeType": "YulFunctionCall",
"src": "8994:70:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8987:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9099:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9106:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9095:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9095:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9113:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9118:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9073:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9073:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "9073:52:13"
},
{
"nodeType": "YulAssignment",
"src": "9134:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9145:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9172:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9150:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9150:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9141:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9141:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9134:3:13"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8897:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8904:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8912:3:13",
"type": ""
}
],
"src": "8826:360:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9284:272:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9294:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9341:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9308:32:13"
},
"nodeType": "YulFunctionCall",
"src": "9308:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9298:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9356:78:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9422:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9427:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9363:58:13"
},
"nodeType": "YulFunctionCall",
"src": "9363:71:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9356:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9469:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9476:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9465:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9465:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9483:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9488:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9443:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9443:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "9443:52:13"
},
{
"nodeType": "YulAssignment",
"src": "9504:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9515:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9542:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9520:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9520:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9511:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9511:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9504:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9265:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9272:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9280:3:13",
"type": ""
}
],
"src": "9192:364:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9672:267:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9682:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9729:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9696:32:13"
},
"nodeType": "YulFunctionCall",
"src": "9696:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9686:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9744:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9828:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9833:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "9751:76:13"
},
"nodeType": "YulFunctionCall",
"src": "9751:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9744:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9875:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9882:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9871:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9871:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9889:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9894:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9849:21:13"
},
"nodeType": "YulFunctionCall",
"src": "9849:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "9849:52:13"
},
{
"nodeType": "YulAssignment",
"src": "9910:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9921:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9926:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9917:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9917:16:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9910: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": "9653:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9660:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9668:3:13",
"type": ""
}
],
"src": "9562:377:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10091:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10101:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10167:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10172:2:13",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10108:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10108:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10101:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10273:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "10184:88:13"
},
"nodeType": "YulFunctionCall",
"src": "10184:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "10184:93:13"
},
{
"nodeType": "YulAssignment",
"src": "10286:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10297:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10302:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10293:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10293:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10286:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10079:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10087:3:13",
"type": ""
}
],
"src": "9945:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10463:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10473:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10539:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10544:2:13",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10480:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10480:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10473:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10645:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "10556:88:13"
},
"nodeType": "YulFunctionCall",
"src": "10556:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "10556:93:13"
},
{
"nodeType": "YulAssignment",
"src": "10658:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10669:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10674:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10665:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10665:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10658:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10451:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10459:3:13",
"type": ""
}
],
"src": "10317:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10835:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10845:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10911:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10916:2:13",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10852:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10852:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10845:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11017:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "10928:88:13"
},
"nodeType": "YulFunctionCall",
"src": "10928:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "10928:93:13"
},
{
"nodeType": "YulAssignment",
"src": "11030:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11041:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11046:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11037:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11037:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11030:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10823:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10831:3:13",
"type": ""
}
],
"src": "10689:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11207:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11217:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11283:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11288:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11224:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11224:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11217:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11389:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "11300:88:13"
},
"nodeType": "YulFunctionCall",
"src": "11300:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "11300:93:13"
},
{
"nodeType": "YulAssignment",
"src": "11402:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11413:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11418:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11409:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11409:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11402:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11195:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11203:3:13",
"type": ""
}
],
"src": "11061:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11579:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11589:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11655:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11660:2:13",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11596:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11596:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11589:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11761:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "11672:88:13"
},
"nodeType": "YulFunctionCall",
"src": "11672:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "11672:93:13"
},
{
"nodeType": "YulAssignment",
"src": "11774:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11785:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11790:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11781:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11781:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11774:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11567:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11575:3:13",
"type": ""
}
],
"src": "11433:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11951:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11961:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12027:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12032:2:13",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11968:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11968:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11961:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12133:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "12044:88:13"
},
"nodeType": "YulFunctionCall",
"src": "12044:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "12044:93:13"
},
{
"nodeType": "YulAssignment",
"src": "12146:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12157:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12162:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12153:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12153:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12146:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11939:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11947:3:13",
"type": ""
}
],
"src": "11805:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12323:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12333:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12399:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12404:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12340:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12340:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12333:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12505:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulIdentifier",
"src": "12416:88:13"
},
"nodeType": "YulFunctionCall",
"src": "12416:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "12416:93:13"
},
{
"nodeType": "YulAssignment",
"src": "12518:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12529:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12534:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12525:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12525:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12518:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12311:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12319:3:13",
"type": ""
}
],
"src": "12177:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12695:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12705:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12771:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12776:2:13",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12712:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12712:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12705:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12877:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulIdentifier",
"src": "12788:88:13"
},
"nodeType": "YulFunctionCall",
"src": "12788:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "12788:93:13"
},
{
"nodeType": "YulAssignment",
"src": "12890:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12901:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12906:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12897:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12897:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12890:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12683:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12691:3:13",
"type": ""
}
],
"src": "12549:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13067:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13077:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13143:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13148:2:13",
"type": "",
"value": "62"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13084:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13084:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13077:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13249:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304",
"nodeType": "YulIdentifier",
"src": "13160:88:13"
},
"nodeType": "YulFunctionCall",
"src": "13160:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "13160:93:13"
},
{
"nodeType": "YulAssignment",
"src": "13262:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13273:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13278:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13269:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13269:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13262:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13055:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13063:3:13",
"type": ""
}
],
"src": "12921:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13439:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13449:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13515:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13520:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13456:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13456:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13449:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13621:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "13532:88:13"
},
"nodeType": "YulFunctionCall",
"src": "13532:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "13532:93:13"
},
{
"nodeType": "YulAssignment",
"src": "13634:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13645:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13650:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13641:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13641:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13634:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13427:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13435:3:13",
"type": ""
}
],
"src": "13293:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13811:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13821:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13887:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13892:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13828:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13828:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13821:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13993:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "13904:88:13"
},
"nodeType": "YulFunctionCall",
"src": "13904:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "13904:93:13"
},
{
"nodeType": "YulAssignment",
"src": "14006:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14017:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14022:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14013:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14013:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14006:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13799:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13807:3:13",
"type": ""
}
],
"src": "13665:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14183:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14193:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14259:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14264:2:13",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14200:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14200:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14193:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14365:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulIdentifier",
"src": "14276:88:13"
},
"nodeType": "YulFunctionCall",
"src": "14276:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "14276:93:13"
},
{
"nodeType": "YulAssignment",
"src": "14378:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14389:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14394:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14385:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14385:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14378:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14171:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14179:3:13",
"type": ""
}
],
"src": "14037:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14555:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14565:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14631:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14636:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14572:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14572:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14565:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14737:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "14648:88:13"
},
"nodeType": "YulFunctionCall",
"src": "14648:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "14648:93:13"
},
{
"nodeType": "YulAssignment",
"src": "14750:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14761:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14766:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14757:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14757:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14750:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14543:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14551:3:13",
"type": ""
}
],
"src": "14409:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14927:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14937:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15003:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15008:2:13",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14944:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14944:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14937:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15109:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b",
"nodeType": "YulIdentifier",
"src": "15020:88:13"
},
"nodeType": "YulFunctionCall",
"src": "15020:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "15020:93:13"
},
{
"nodeType": "YulAssignment",
"src": "15122:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15133:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15138:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15129:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15129:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15122:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14915:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14923:3:13",
"type": ""
}
],
"src": "14781:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15218:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15235:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15258:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15240:17:13"
},
"nodeType": "YulFunctionCall",
"src": "15240:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15228:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15228:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "15228:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15206:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15213:3:13",
"type": ""
}
],
"src": "15153:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15413:139:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15424:102:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15513:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15522:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "15431:81:13"
},
"nodeType": "YulFunctionCall",
"src": "15431:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15424:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15536:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15543:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15536:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15392:3:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15398:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15409:3:13",
"type": ""
}
],
"src": "15277:275:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15742:251:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15753:102:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15842:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15851:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "15760:81:13"
},
"nodeType": "YulFunctionCall",
"src": "15760:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15753:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15865:102:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15954:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15963:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "15872:81:13"
},
"nodeType": "YulFunctionCall",
"src": "15872:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15865:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "15977:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15984:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15977: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": "15713:3:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15719:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15727:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15738:3:13",
"type": ""
}
],
"src": "15558:435:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16097:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16107:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16119:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16130:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16115:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16115:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16107:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16187:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16200:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16211:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16196:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16196:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16143:43:13"
},
"nodeType": "YulFunctionCall",
"src": "16143:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "16143:71:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16069:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16081:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16092:4:13",
"type": ""
}
],
"src": "15999:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16427:440:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16437:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16449:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16460:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16445:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16445:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16437:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16518:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16531:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16542:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16527:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16527:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16474:43:13"
},
"nodeType": "YulFunctionCall",
"src": "16474:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "16474:71:13"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16599:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16612:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16623:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16608:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16608:18:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16555:43:13"
},
"nodeType": "YulFunctionCall",
"src": "16555:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "16555:72:13"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "16681:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16694:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16705:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16690:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16690:18:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "16637:43:13"
},
"nodeType": "YulFunctionCall",
"src": "16637:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "16637:72:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16730:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16741:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16726:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16726:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16750:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16756:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16746:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16746:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16719:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16719:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "16719:48:13"
},
{
"nodeType": "YulAssignment",
"src": "16776:84:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "16846:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16855:4:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16784:61:13"
},
"nodeType": "YulFunctionCall",
"src": "16784:76:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16776: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": "16375:9:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "16387:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "16395:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "16403:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16411:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16422:4:13",
"type": ""
}
],
"src": "16227:640:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16965:118:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16975:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16987:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16998:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16983:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16983:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16975:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17049:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17062:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17073:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17058:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17058:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "17011:37:13"
},
"nodeType": "YulFunctionCall",
"src": "17011:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "17011:65:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16937:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16949:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16960:4:13",
"type": ""
}
],
"src": "16873:210:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17227:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17237:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17249:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17260:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17245:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17245:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17237:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17311:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17324:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17335:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17320:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17320:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "17273:37:13"
},
"nodeType": "YulFunctionCall",
"src": "17273:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "17273:65:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17359:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17370:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17355:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17355:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17379:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17385:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17375:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17375:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17348:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17348:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "17348:48:13"
},
{
"nodeType": "YulAssignment",
"src": "17405:84:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "17475:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17484:4:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17413:61:13"
},
"nodeType": "YulFunctionCall",
"src": "17413:76:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17405:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17191:9:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "17203:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17211:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17222:4:13",
"type": ""
}
],
"src": "17089:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17620:195:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17630:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17642:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17653:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17638:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17638:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17630:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17677:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17688:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17673:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17673:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17696:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17702:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17692:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17692:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17666:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17666:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "17666:47:13"
},
{
"nodeType": "YulAssignment",
"src": "17722:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "17794:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17803:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17730:63:13"
},
"nodeType": "YulFunctionCall",
"src": "17730:78:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17722: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": "17592:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "17604:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17615:4:13",
"type": ""
}
],
"src": "17502:313:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17992:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18002:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18014:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18025:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18010:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18010:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18002:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18049:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18060:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18045:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18045:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18068:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18074:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18064:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18064:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18038:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18038:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "18038:47:13"
},
{
"nodeType": "YulAssignment",
"src": "18094:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18228:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18102:124:13"
},
"nodeType": "YulFunctionCall",
"src": "18102:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18094:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17972:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17987:4:13",
"type": ""
}
],
"src": "17821:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18417:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18427:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18439:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18450:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18435:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18435:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18427:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18474:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18485:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18470:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18470:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18493:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18499:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18489:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18489:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18463:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18463:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "18463:47:13"
},
{
"nodeType": "YulAssignment",
"src": "18519:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18653:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18527:124:13"
},
"nodeType": "YulFunctionCall",
"src": "18527:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18519:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18397:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18412:4:13",
"type": ""
}
],
"src": "18246:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18842:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18852:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18864:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18875:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18860:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18860:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18852:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18899:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18910:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18895:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18895:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18918:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18924:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18914:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18914:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18888:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18888:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "18888:47:13"
},
{
"nodeType": "YulAssignment",
"src": "18944:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19078:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18952:124:13"
},
"nodeType": "YulFunctionCall",
"src": "18952:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18944:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18822:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18837:4:13",
"type": ""
}
],
"src": "18671:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19267:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19277:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19289:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19300:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19285:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19285:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19277:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19324:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19335:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19320:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19320:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19343:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19349:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19339:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19339:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19313:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19313:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "19313:47:13"
},
{
"nodeType": "YulAssignment",
"src": "19369:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19503:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19377:124:13"
},
"nodeType": "YulFunctionCall",
"src": "19377:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19369:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19247:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19262:4:13",
"type": ""
}
],
"src": "19096:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19692:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19702:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19714:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19725:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19710:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19710:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19702:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19749:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19760:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19745:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19745:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19768:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19774:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19764:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19764:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19738:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19738:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "19738:47:13"
},
{
"nodeType": "YulAssignment",
"src": "19794:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19928:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19802:124:13"
},
"nodeType": "YulFunctionCall",
"src": "19802:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19794:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19672:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19687:4:13",
"type": ""
}
],
"src": "19521:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20117:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20127:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20139:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20150:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20135:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20135:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20127:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20174:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20185:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20170:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20170:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20193:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20199:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20189:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20189:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20163:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20163:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "20163:47:13"
},
{
"nodeType": "YulAssignment",
"src": "20219:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20353:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20227:124:13"
},
"nodeType": "YulFunctionCall",
"src": "20227:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20219:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20097:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20112:4:13",
"type": ""
}
],
"src": "19946:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20542:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20552:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20564:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20575:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20560:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20560:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20552:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20599:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20610:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20595:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20595:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20618:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20624:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20614:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20614:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20588:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20588:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "20588:47:13"
},
{
"nodeType": "YulAssignment",
"src": "20644:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20778:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20652:124:13"
},
"nodeType": "YulFunctionCall",
"src": "20652:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20644:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20522:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20537:4:13",
"type": ""
}
],
"src": "20371:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20967:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20977:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20989:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21000:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20985:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20985:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20977:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21024:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21035:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21020:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21020:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21043:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21049:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21039:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21039:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21013:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21013:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "21013:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21069:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21203:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21077:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21077:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21069:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20947:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20962:4:13",
"type": ""
}
],
"src": "20796:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21392:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21402:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21414:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21425:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21410:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21410:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21402:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21449:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21460:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21445:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21445:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21468:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21474:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21464:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21464:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21438:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21438:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "21438:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21494:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21628:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21502:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21502:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21494:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21372:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21387:4:13",
"type": ""
}
],
"src": "21221:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21817:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21827:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21839:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21850:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21835:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21835:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21827:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21874:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21885:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21870:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21870:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21893:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21899:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21889:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21889:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21863:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21863:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "21863:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21919:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22053:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21927:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21927:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21919:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21797:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21812:4:13",
"type": ""
}
],
"src": "21646:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22242:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22252:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22264:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22275:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22260:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22260:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22252:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22299:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22310:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22295:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22295:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22318:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22324:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22314:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22314:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22288:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22288:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "22288:47:13"
},
{
"nodeType": "YulAssignment",
"src": "22344:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22478:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22352:124:13"
},
"nodeType": "YulFunctionCall",
"src": "22352:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22344:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22222:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22237:4:13",
"type": ""
}
],
"src": "22071:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22667:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22677:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22689:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22700:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22685:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22685:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22677:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22724:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22735:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22720:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22720:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22743:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22749:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22739:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22739:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22713:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22713:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "22713:47:13"
},
{
"nodeType": "YulAssignment",
"src": "22769:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22903:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22777:124:13"
},
"nodeType": "YulFunctionCall",
"src": "22777:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22769:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22647:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22662:4:13",
"type": ""
}
],
"src": "22496:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23092:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23102:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23114:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23125:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23110:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23110:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23102:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23149:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23160:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23145:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23145:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23168:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23174:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23164:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23164:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23138:6:13"
},
"nodeType": "YulFunctionCall",
"src": "23138:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "23138:47:13"
},
{
"nodeType": "YulAssignment",
"src": "23194:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23328:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23202:124:13"
},
"nodeType": "YulFunctionCall",
"src": "23202:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23194:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23072:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23087:4:13",
"type": ""
}
],
"src": "22921:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23517:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23527:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23539:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23550:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23535:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23535:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23527:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23574:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23585:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23570:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23570:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23593:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23599:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23589:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23589:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23563:6:13"
},
"nodeType": "YulFunctionCall",
"src": "23563:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "23563:47:13"
},
{
"nodeType": "YulAssignment",
"src": "23619:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23753:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23627:124:13"
},
"nodeType": "YulFunctionCall",
"src": "23627:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23619:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23497:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23512:4:13",
"type": ""
}
],
"src": "23346:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23869:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23879:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23891:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23902:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23887:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23887:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23879:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23959:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23972:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23983:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23968:3:13"
},
"nodeType": "YulFunctionCall",
"src": "23968:17:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23915:43:13"
},
"nodeType": "YulFunctionCall",
"src": "23915:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "23915:71:13"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23841:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23853:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23864:4:13",
"type": ""
}
],
"src": "23771:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24040:88:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24050:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "24060:18:13"
},
"nodeType": "YulFunctionCall",
"src": "24060:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24050:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24109:6:13"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24117:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "24089:19:13"
},
"nodeType": "YulFunctionCall",
"src": "24089:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "24089:33:13"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "24024:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24033:6:13",
"type": ""
}
],
"src": "23999:129:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24174:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24184:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24200:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24194:5:13"
},
"nodeType": "YulFunctionCall",
"src": "24194:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24184:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24167:6:13",
"type": ""
}
],
"src": "24134:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24281:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "24386:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "24388:16:13"
},
"nodeType": "YulFunctionCall",
"src": "24388:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "24388:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24358:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24366:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "24355:2:13"
},
"nodeType": "YulFunctionCall",
"src": "24355:30:13"
},
"nodeType": "YulIf",
"src": "24352:56:13"
},
{
"nodeType": "YulAssignment",
"src": "24418:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24448:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "24426:21:13"
},
"nodeType": "YulFunctionCall",
"src": "24426:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24418:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24492:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24504:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24510:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24500:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24500:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24492:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24265:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "24276:4:13",
"type": ""
}
],
"src": "24215:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24595:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "24700:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "24702:16:13"
},
"nodeType": "YulFunctionCall",
"src": "24702:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "24702:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24672:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24680:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "24669:2:13"
},
"nodeType": "YulFunctionCall",
"src": "24669:30:13"
},
"nodeType": "YulIf",
"src": "24666:56:13"
},
{
"nodeType": "YulAssignment",
"src": "24732:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24762:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "24740:21:13"
},
"nodeType": "YulFunctionCall",
"src": "24740:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24732:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24806:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24818:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24824:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24814:3:13"
},
"nodeType": "YulFunctionCall",
"src": "24814:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24806:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24579:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "24590:4:13",
"type": ""
}
],
"src": "24528:308:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24900:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24911:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24927:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24921:5:13"
},
"nodeType": "YulFunctionCall",
"src": "24921:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24911:6:13"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24883:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24893:6:13",
"type": ""
}
],
"src": "24842:98:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25005:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25016:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25032:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25026:5:13"
},
"nodeType": "YulFunctionCall",
"src": "25026:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25016:6:13"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24988:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24998:6:13",
"type": ""
}
],
"src": "24946:99:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25146:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25163:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25168:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25156:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25156:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "25156:19:13"
},
{
"nodeType": "YulAssignment",
"src": "25184:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25203:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25208:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25199:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25199:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25184:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25118:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25123:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25134:11:13",
"type": ""
}
],
"src": "25051:168:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25321:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25338:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25343:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25331:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25331:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "25331:19:13"
},
{
"nodeType": "YulAssignment",
"src": "25359:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25378:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25383:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25374:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25374:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25359:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25293:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25298:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25309:11:13",
"type": ""
}
],
"src": "25225:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25514:34:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25524:18:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25539:3:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25524:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25486:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25491:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25502:11:13",
"type": ""
}
],
"src": "25400:148:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25598:261:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25608:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25631:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25613:17:13"
},
"nodeType": "YulFunctionCall",
"src": "25613:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25608:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25642:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25665:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25647:17:13"
},
"nodeType": "YulFunctionCall",
"src": "25647:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25642:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25805:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "25807:16:13"
},
"nodeType": "YulFunctionCall",
"src": "25807:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "25807:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25726:1:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25733:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25801:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "25729:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25729:74:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "25723:2:13"
},
"nodeType": "YulFunctionCall",
"src": "25723:81:13"
},
"nodeType": "YulIf",
"src": "25720:107:13"
},
{
"nodeType": "YulAssignment",
"src": "25837:16:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25848:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25851:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25844:3:13"
},
"nodeType": "YulFunctionCall",
"src": "25844:9:13"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "25837:3:13"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "25585:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "25588:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "25594:3:13",
"type": ""
}
],
"src": "25554:305:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25907:143:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25917:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25940:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25922:17:13"
},
"nodeType": "YulFunctionCall",
"src": "25922:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25917:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25951:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25974:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25956:17:13"
},
"nodeType": "YulFunctionCall",
"src": "25956:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25951:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25998:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "26000:16:13"
},
"nodeType": "YulFunctionCall",
"src": "26000:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "26000:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25995:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "25988:6:13"
},
"nodeType": "YulFunctionCall",
"src": "25988:9:13"
},
"nodeType": "YulIf",
"src": "25985:35:13"
},
{
"nodeType": "YulAssignment",
"src": "26030:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26039:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26042:1:13"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "26035:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26035:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "26030:1:13"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "25896:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "25899:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "25905:1:13",
"type": ""
}
],
"src": "25865:185:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26101:146:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26111:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26134:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26116:17:13"
},
"nodeType": "YulFunctionCall",
"src": "26116:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26111:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26145:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26168:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26150:17:13"
},
"nodeType": "YulFunctionCall",
"src": "26150:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26145:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26192:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26194:16:13"
},
"nodeType": "YulFunctionCall",
"src": "26194:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "26194:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26186:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26189:1:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "26183:2:13"
},
"nodeType": "YulFunctionCall",
"src": "26183:8:13"
},
"nodeType": "YulIf",
"src": "26180:34:13"
},
{
"nodeType": "YulAssignment",
"src": "26224:17:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26236:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26239:1:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26232:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26232:9:13"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "26224:4:13"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26087:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26090:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "26096:4:13",
"type": ""
}
],
"src": "26056:191:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26298:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26308:35:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26337:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "26319:17:13"
},
"nodeType": "YulFunctionCall",
"src": "26319:24:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26308:7:13"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26280:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26290:7:13",
"type": ""
}
],
"src": "26253:96:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26397:48:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26407:32:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26432:5:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26425:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26425:13:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26418:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26418:21:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26407:7:13"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26379:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26389:7:13",
"type": ""
}
],
"src": "26355:90:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26495:105:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26505:89:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26520:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26527:66:13",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26516:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26516:78:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26505:7:13"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26477:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26487:7:13",
"type": ""
}
],
"src": "26451:149:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26651:81:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26661:65:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26676:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26683:42:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26672:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26672:54:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26661:7:13"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26633:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26643:7:13",
"type": ""
}
],
"src": "26606:126:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26783:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26793:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "26804:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26793:7:13"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26765:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26775:7:13",
"type": ""
}
],
"src": "26738:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26872:103:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "26895:3:13"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "26900:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26905:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "26882:12:13"
},
"nodeType": "YulFunctionCall",
"src": "26882:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "26882:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "26953:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26958:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26949:3:13"
},
"nodeType": "YulFunctionCall",
"src": "26949:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26967:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26942:6:13"
},
"nodeType": "YulFunctionCall",
"src": "26942:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "26942:27:13"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "26854:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "26859:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26864:6:13",
"type": ""
}
],
"src": "26821:154:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27030:258:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "27040:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "27049:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "27044:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27109:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27134:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27139:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27130:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27130:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "27153:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27158:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27149:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27149:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "27143:5:13"
},
"nodeType": "YulFunctionCall",
"src": "27143:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27123:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27123:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "27123:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27070:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27073:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27067:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27067:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "27081:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27083:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27092:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27095:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27088:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27088:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27083:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "27063:3:13",
"statements": []
},
"src": "27059:113:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27206:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27256:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27261:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27252:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27252:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27270:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27245:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27245:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "27245:27:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27187:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27190:6:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27184:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27184:13:13"
},
"nodeType": "YulIf",
"src": "27181:101:13"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "27012:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "27017:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27022:6:13",
"type": ""
}
],
"src": "26981:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27345:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27355:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27369:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27375:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "27365:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27365:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27355:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "27386:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27416:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27422:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27412:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27412:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "27390:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27463:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27477:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27491:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27499:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27487:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27487:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27477:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "27443:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27436:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27436:26:13"
},
"nodeType": "YulIf",
"src": "27433:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27566:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "27580:16:13"
},
"nodeType": "YulFunctionCall",
"src": "27580:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "27580:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "27530:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27553:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27561:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27550:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27550:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27527:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27527:38:13"
},
"nodeType": "YulIf",
"src": "27524:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "27329:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27338:6:13",
"type": ""
}
],
"src": "27294:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27663:238:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "27673:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27695:6:13"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "27725:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "27703:21:13"
},
"nodeType": "YulFunctionCall",
"src": "27703:27:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27691:3:13"
},
"nodeType": "YulFunctionCall",
"src": "27691:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "27677:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27842:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "27844:16:13"
},
"nodeType": "YulFunctionCall",
"src": "27844:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "27844:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "27785:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27797:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27782:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27782:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "27821:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27833:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27818:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27818:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "27779:2:13"
},
"nodeType": "YulFunctionCall",
"src": "27779:62:13"
},
"nodeType": "YulIf",
"src": "27776:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27880:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "27884:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27873:6:13"
},
"nodeType": "YulFunctionCall",
"src": "27873:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "27873:22:13"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27649:6:13",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "27657:4:13",
"type": ""
}
],
"src": "27620:281:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27950:190:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27960:33:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27987:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27969:17:13"
},
"nodeType": "YulFunctionCall",
"src": "27969:24:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27960:5:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28083:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "28085:16:13"
},
"nodeType": "YulFunctionCall",
"src": "28085:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "28085:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28008:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28015:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28005:2:13"
},
"nodeType": "YulFunctionCall",
"src": "28005:77:13"
},
"nodeType": "YulIf",
"src": "28002:103:13"
},
{
"nodeType": "YulAssignment",
"src": "28114:20:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28125:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28132:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28121:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28121:13:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "28114:3:13"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27936:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "27946:3:13",
"type": ""
}
],
"src": "27907:233:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28180:142:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28190:25:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28213:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28195:17:13"
},
"nodeType": "YulFunctionCall",
"src": "28195:20:13"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28190:1:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28224:25:13",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28247:1:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28229:17:13"
},
"nodeType": "YulFunctionCall",
"src": "28229:20:13"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28224:1:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28271:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "28273:16:13"
},
"nodeType": "YulFunctionCall",
"src": "28273:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "28273:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28268:1:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28261:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28261:9:13"
},
"nodeType": "YulIf",
"src": "28258:35:13"
},
{
"nodeType": "YulAssignment",
"src": "28302:14:13",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28311:1:13"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28314:1:13"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "28307:3:13"
},
"nodeType": "YulFunctionCall",
"src": "28307:9:13"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "28302:1:13"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "28169:1:13",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "28172:1:13",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "28178:1:13",
"type": ""
}
],
"src": "28146:176:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28356:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28373:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28376:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28366:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28366:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "28366:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28470:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28473:4:13",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28463:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28463:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "28463:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28494:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28497:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28487:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28487:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "28487:15:13"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "28328:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28542:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28559:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28562:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28552:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28552:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "28552:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28656:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28659:4:13",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28649:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28649:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "28649:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28680:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28683:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28673:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28673:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "28673:15:13"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "28514:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28728:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28745:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28748:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28738:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28738:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "28738:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28842:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28845:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28835:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28835:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "28835:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28866:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28869:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28859:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28859:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "28859:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "28700:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28914:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28931:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28934:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28924:6:13"
},
"nodeType": "YulFunctionCall",
"src": "28924:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "28924:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29028:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29031:4:13",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29021:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29021:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "29021:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29052:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29055:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29045:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29045:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "29045:15:13"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "28886:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29100:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29117:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29120:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29110:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29110:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "29110:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29214:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29217:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29207:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29207:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "29207:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29238:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29241:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29231:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29231:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "29231:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "29072:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29347:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29364:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29367:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29357:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29357:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "29357:12:13"
}
]
},
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nodeType": "YulFunctionDefinition",
"src": "29258:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29470:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29487:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29490:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29480:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29480:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "29480:12:13"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "29381:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29593:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29610:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29613:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29603:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29603:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "29603:12:13"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nodeType": "YulFunctionDefinition",
"src": "29504:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29716:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29733:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29736:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29726:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29726:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "29726:12:13"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "29627:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29839:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29856:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29859:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29849:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29849:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "29849:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "29750:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29962:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29979:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29982:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29972:6:13"
},
"nodeType": "YulFunctionCall",
"src": "29972:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "29972:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "29873:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30044:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30054:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30072:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30079:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30068:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30068:14:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30088:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "30084:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30084:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "30064:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30064:28:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "30054:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30027:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "30037:6:13",
"type": ""
}
],
"src": "29996:102:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30210:131:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30232:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30240:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30228:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30228:14:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30244:34:13",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30221:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30221:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "30221:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30300:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30308:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30296:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30296:15:13"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30313:20:13",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30289:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30289:45:13"
},
"nodeType": "YulExpressionStatement",
"src": "30289:45:13"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30202:6:13",
"type": ""
}
],
"src": "30104:237:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30453:119:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30475:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30483:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30471:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30471:14:13"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30487:34:13",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30464:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30464:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "30464:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30543:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30551:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30539:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30539:15:13"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30556:8:13",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30532:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30532:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "30532:33:13"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30445:6:13",
"type": ""
}
],
"src": "30347:225:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30684:118:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30706:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30714:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30702:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30702:14:13"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30718:34:13",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30695:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30695:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "30695:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30774:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30782:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30770:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30770:15:13"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30787:7:13",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30763:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30763:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "30763:32:13"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30676:6:13",
"type": ""
}
],
"src": "30578:224:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30914:72:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30936:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30944:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30932:3:13"
},
"nodeType": "YulFunctionCall",
"src": "30932:14:13"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30948:30:13",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30925:6:13"
},
"nodeType": "YulFunctionCall",
"src": "30925:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "30925:54:13"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30906:6:13",
"type": ""
}
],
"src": "30808:178:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31098:117:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31120:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31128:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31116:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31116:14:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31132:34:13",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31109:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31109:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "31109:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31188:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31196:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31184:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31184:15:13"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31201:6:13",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31177:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31177:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "31177:31:13"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31090:6:13",
"type": ""
}
],
"src": "30992:223:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31327:69:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31349:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31357:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31345:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31345:14:13"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31361:27:13",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31338:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31338:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "31338:51:13"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31319:6:13",
"type": ""
}
],
"src": "31221:175:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31508:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31530:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31538:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31526:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31526:14:13"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31542:34:13",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31519:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31519:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "31519:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31598:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31606:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31594:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31594:15:13"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31611:11:13",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31587:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31587:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "31587:36:13"
}
]
},
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31500:6:13",
"type": ""
}
],
"src": "31402:228:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31742:127:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31764:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31772:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31760:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31760:14:13"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920736574206f66206e6f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31776:34:13",
"type": "",
"value": "ERC721URIStorage: URI set of non"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31753:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31753:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "31753:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31832:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31840:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31828:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31828:15:13"
},
{
"hexValue": "6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31845:16:13",
"type": "",
"value": "existent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31821:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31821:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "31821:41:13"
}
]
},
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31734:6:13",
"type": ""
}
],
"src": "31636:233:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31981:143:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32003:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32011:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31999:3:13"
},
"nodeType": "YulFunctionCall",
"src": "31999:14:13"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32015:34:13",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31992:6:13"
},
"nodeType": "YulFunctionCall",
"src": "31992:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "31992:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32071:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32079:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32067:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32067:15:13"
},
{
"hexValue": "6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32084:32:13",
"type": "",
"value": "ken owner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32060:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32060:57:13"
},
"nodeType": "YulExpressionStatement",
"src": "32060:57:13"
}
]
},
"name": "store_literal_in_memory_8a333355a81806ed720720a526142c1e97d1086371f6be2b18561203134ef304",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31973:6:13",
"type": ""
}
],
"src": "31875:249:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32236:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32258:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32266:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32254:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32254:14:13"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32270:34:13",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32247:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32247:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "32247:58:13"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32228:6:13",
"type": ""
}
],
"src": "32130:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32424:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32446:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32454:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32442:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32442:14:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32458:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32435:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32435:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "32435:58:13"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32416:6:13",
"type": ""
}
],
"src": "32318:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32612:68:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32634:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32642:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32630:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32630:14:13"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32646:26:13",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32623:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32623:50:13"
},
"nodeType": "YulExpressionStatement",
"src": "32623:50:13"
}
]
},
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32604:6:13",
"type": ""
}
],
"src": "32506:174:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32792:114:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32814:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32822:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32810:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32810:14:13"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32826:34:13",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32803:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32803:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "32803:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "32882:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32890:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32878:3:13"
},
"nodeType": "YulFunctionCall",
"src": "32878:15:13"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "32895:3:13",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32871:6:13"
},
"nodeType": "YulFunctionCall",
"src": "32871:28:13"
},
"nodeType": "YulExpressionStatement",
"src": "32871:28:13"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "32784:6:13",
"type": ""
}
],
"src": "32686:220:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33018:127:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33040:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33048:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33036:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33036:14:13"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33052:34:13",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33029:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33029:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "33029:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "33108:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33116:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33104:3:13"
},
"nodeType": "YulFunctionCall",
"src": "33104:15:13"
},
{
"hexValue": "72206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "33121:16:13",
"type": "",
"value": "r nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33097:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33097:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "33097:41:13"
}
]
},
"name": "store_literal_in_memory_eb80b9f25203511adb7b7660e6222669e088cedd0909cd81ed7470e34dcd010b",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "33010:6:13",
"type": ""
}
],
"src": "32912:233:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33194:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33251:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33260:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33263:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33253:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33253:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "33253:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33217:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33242:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "33224:17:13"
},
"nodeType": "YulFunctionCall",
"src": "33224:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33214:2:13"
},
"nodeType": "YulFunctionCall",
"src": "33214:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33207:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33207:43:13"
},
"nodeType": "YulIf",
"src": "33204:63:13"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33187:5:13",
"type": ""
}
],
"src": "33151:122:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33319:76:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33373:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33382:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33385:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33375:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33375:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "33375:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33342:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33364:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "33349:14:13"
},
"nodeType": "YulFunctionCall",
"src": "33349:21:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33339:2:13"
},
"nodeType": "YulFunctionCall",
"src": "33339:32:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33332:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33332:40:13"
},
"nodeType": "YulIf",
"src": "33329:60:13"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33312:5:13",
"type": ""
}
],
"src": "33279:116:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33443:78:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33499:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33508:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33511:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33501:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33501:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "33501:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33466:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33490:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "33473:16:13"
},
"nodeType": "YulFunctionCall",
"src": "33473:23:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33463:2:13"
},
"nodeType": "YulFunctionCall",
"src": "33463:34:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33456:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33456:42:13"
},
"nodeType": "YulIf",
"src": "33453:62:13"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33436:5:13",
"type": ""
}
],
"src": "33401:120:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33570:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "33627:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33636:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33639:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "33629:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33629:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "33629:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33593:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33618:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "33600:17:13"
},
"nodeType": "YulFunctionCall",
"src": "33600:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "33590:2:13"
},
"nodeType": "YulFunctionCall",
"src": "33590:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "33583:6:13"
},
"nodeType": "YulFunctionCall",
"src": "33583:43:13"
},
"nodeType": "YulIf",
"src": "33580:63:13"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33563:5:13",
"type": ""
}
],
"src": "33527: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_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n 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_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\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 // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_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_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0, value1 := abi_decode_t_bytes_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n 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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_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_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__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\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_bool_t_bytes_memory_ptr__to_t_bool_t_bytes_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value1, tail)\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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_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_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_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_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_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\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_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function store_literal_in_memory_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_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\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 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": "608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063b88d4fde1161007c578063b88d4fde14610360578063bed34bba1461037c578063c87b56dd146103ac578063d9f2f7a2146103dc578063e985e9c51461040c578063f2fde38b1461043c57610142565b806370a08231146102ce578063715018a6146102fe5780638da5cb5b1461030857806395d89b4114610326578063a22cb4651461034457610142565b80632b98af8d1161010a5780632b98af8d146101fd57806340d097c31461021957806342842e0e146102355780635e6c102e146102515780636352211e146102825780636c7c8f17146102b257610142565b806301ffc9a71461014757806306fdde0314610177578063081812fc14610195578063095ea7b3146101c557806323b872dd146101e1575b600080fd5b610161600480360381019061015c919061231e565b610458565b60405161016e91906127c6565b60405180910390f35b61017f61053a565b60405161018c9190612811565b60405180910390f35b6101af60048036038101906101aa919061243d565b6105cc565b6040516101bc919061275f565b60405180910390f35b6101df60048036038101906101da91906122de565b610612565b005b6101fb60048036038101906101f691906121c8565b61072a565b005b6102176004803603810190610212919061243d565b61078a565b005b610233600480360381019061022e919061215b565b610873565b005b61024f600480360381019061024a91906121c8565b610952565b005b61026b60048036038101906102669190612378565b610972565b6040516102799291906127e1565b60405180910390f35b61029c6004803603810190610297919061243d565b610991565b6040516102a9919061275f565b60405180910390f35b6102cc60048036038101906102c79190612378565b610a43565b005b6102e860048036038101906102e3919061215b565b610a70565b6040516102f591906129f3565b60405180910390f35b610306610b28565b005b610310610b3c565b60405161031d919061275f565b60405180910390f35b61032e610b66565b60405161033b9190612811565b60405180910390f35b61035e6004803603810190610359919061229e565b610bf8565b005b61037a6004803603810190610375919061221b565b610c0e565b005b610396600480360381019061039191906123c5565b610c70565b6040516103a391906127c6565b60405180910390f35b6103c660048036038101906103c1919061243d565b610cc9565b6040516103d39190612811565b60405180910390f35b6103f660048036038101906103f1919061243d565b610cdb565b60405161040391906129f3565b60405180910390f35b61042660048036038101906104219190612188565b610e74565b60405161043391906127c6565b60405180910390f35b6104566004803603810190610451919061215b565b610f08565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610533575061053282610f8c565b5b9050919050565b60606000805461054990612c49565b80601f016020809104026020016040519081016040528092919081815260200182805461057590612c49565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782610ff6565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061061d82610991565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561068e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610685906129b3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106ad611041565b73ffffffffffffffffffffffffffffffffffffffff1614806106dc57506106db816106d6611041565b610e74565b5b61071b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071290612933565b60405180910390fd5b6107258383611049565b505050565b61073b610735611041565b82611102565b61077a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610771906129d3565b60405180910390fd5b610785838383611197565b505050565b600261079582610cdb565b1061079f57610870565b600060016107ac83610cdb565b6107b69190612ad8565b90506000600982815481106107ce576107cd612db3565b5b9060005260206000200180546107e390612c49565b80601f016020809104026020016040519081016040528092919081815260200182805461080f90612c49565b801561085c5780601f106108315761010080835404028352916020019161085c565b820191906000526020600020905b81548152906001019060200180831161083f57829003601f168201915b5050505050905061086d83826113fe565b50505b50565b61087b611472565b600061088760086114f0565b905061089360086114fe565b61089d8282611514565b61094e8160096000815481106108b6576108b5612db3565b5b9060005260206000200180546108cb90612c49565b80601f01602080910402602001604051908101604052809291908181526020018280546108f790612c49565b80156109445780601f1061091957610100808354040283529160200191610944565b820191906000526020600020905b81548152906001019060200180831161092757829003601f168201915b50505050506113fe565b5050565b61096d83838360405180602001604052806000815250610c0e565b505050565b60006060600b54600a54426109879190612b5f565b1191509250929050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3190612993565b60405180910390fd5b80915050919050565b600b54600a5442610a549190612b5f565b1115610a6c5742600a81905550610a6b600061078a565b5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906128f3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b30611472565b610b3a6000611532565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610b7590612c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba190612c49565b8015610bee5780601f10610bc357610100808354040283529160200191610bee565b820191906000526020600020905b815481529060010190602001808311610bd157829003601f168201915b5050505050905090565b610c0a610c03611041565b83836115f8565b5050565b610c1f610c19611041565b83611102565b610c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c55906129d3565b60405180910390fd5b610c6a84848484611765565b50505050565b600081604051602001610c839190612724565b6040516020818303038152906040528051906020012083604051602001610caa9190612724565b6040516020818303038152906040528051906020012014905092915050565b6060610cd4826117c1565b9050919050565b600080610ce783610cc9565b9050610d9a816009600081548110610d0257610d01612db3565b5b906000526020600020018054610d1790612c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390612c49565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050610c70565b15610da9576000915050610e6f565b610e5a816009600181548110610dc257610dc1612db3565b5b906000526020600020018054610dd790612c49565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0390612c49565b8015610e505780601f10610e2557610100808354040283529160200191610e50565b820191906000526020600020905b815481529060010190602001808311610e3357829003601f168201915b5050505050610c70565b15610e69576001915050610e6f565b60029150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f10611472565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790612853565b60405180910390fd5b610f8981611532565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610fff816118d4565b61103e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103590612993565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166110bc83610991565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061110e83610991565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611150575061114f8185610e74565b5b8061118e57508373ffffffffffffffffffffffffffffffffffffffff16611176846105cc565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166111b782610991565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120490612873565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611274906128b3565b60405180910390fd5b611288838383611940565b611293600082611049565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112e39190612b5f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461133a9190612ad8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113f9838383611945565b505050565b611407826118d4565b611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90612913565b60405180910390fd5b8060066000848152602001908152602001600020908051906020019061146d929190611f19565b505050565b61147a611041565b73ffffffffffffffffffffffffffffffffffffffff16611498610b3c565b73ffffffffffffffffffffffffffffffffffffffff16146114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612973565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b61152e82826040518060200160405280600081525061194a565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e906128d3565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161175891906127c6565b60405180910390a3505050565b611770848484611197565b61177c848484846119a5565b6117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b290612833565b60405180910390fd5b50505050565b60606117cc82610ff6565b60006006600084815260200190815260200160002080546117ec90612c49565b80601f016020809104026020016040519081016040528092919081815260200182805461181890612c49565b80156118655780601f1061183a57610100808354040283529160200191611865565b820191906000526020600020905b81548152906001019060200180831161184857829003601f168201915b505050505090506000611876611b3c565b905060008151141561188c5781925050506118cf565b6000825111156118c15780826040516020016118a992919061273b565b604051602081830303815290604052925050506118cf565b6118ca84611b53565b925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6119548383611bbb565b61196160008484846119a5565b6119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790612833565b60405180910390fd5b505050565b60006119c68473ffffffffffffffffffffffffffffffffffffffff16611d95565b15611b2f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026119ef611041565b8786866040518563ffffffff1660e01b8152600401611a11949392919061277a565b602060405180830381600087803b158015611a2b57600080fd5b505af1925050508015611a5c57506040513d601f19601f82011682018060405250810190611a59919061234b565b60015b611adf573d8060008114611a8c576040519150601f19603f3d011682016040523d82523d6000602084013e611a91565b606091505b50600081511415611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90612833565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611b34565b600190505b949350505050565b606060405180602001604052806000815250905090565b6060611b5e82610ff6565b6000611b68611b3c565b90506000815111611b885760405180602001604052806000815250611bb3565b80611b9284611db8565b604051602001611ba392919061273b565b6040516020818303038152906040525b915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2290612953565b60405180910390fd5b611c34816118d4565b15611c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6b90612893565b60405180910390fd5b611c8060008383611940565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cd09190612ad8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611d9160008383611945565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60606000821415611e00576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f14565b600082905060005b60008214611e32578080611e1b90612cac565b915050600a82611e2b9190612b2e565b9150611e08565b60008167ffffffffffffffff811115611e4e57611e4d612de2565b5b6040519080825280601f01601f191660200182016040528015611e805781602001600182028036833780820191505090505b5090505b60008514611f0d57600182611e999190612b5f565b9150600a85611ea89190612cf5565b6030611eb49190612ad8565b60f81b818381518110611eca57611ec9612db3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f069190612b2e565b9450611e84565b8093505050505b919050565b828054611f2590612c49565b90600052602060002090601f016020900481019282611f475760008555611f8e565b82601f10611f6057805160ff1916838001178555611f8e565b82800160010185558215611f8e579182015b82811115611f8d578251825591602001919060010190611f72565b5b509050611f9b9190611f9f565b5090565b5b80821115611fb8576000816000905550600101611fa0565b5090565b6000611fcf611fca84612a33565b612a0e565b905082815260208101848484011115611feb57611fea612e20565b5b611ff6848285612c07565b509392505050565b600061201161200c84612a64565b612a0e565b90508281526020810184848401111561202d5761202c612e20565b5b612038848285612c07565b509392505050565b60008135905061204f816131d4565b92915050565b600081359050612064816131eb565b92915050565b60008135905061207981613202565b92915050565b60008151905061208e81613202565b92915050565b60008083601f8401126120aa576120a9612e16565b5b8235905067ffffffffffffffff8111156120c7576120c6612e11565b5b6020830191508360018202830111156120e3576120e2612e1b565b5b9250929050565b600082601f8301126120ff576120fe612e16565b5b813561210f848260208601611fbc565b91505092915050565b600082601f83011261212d5761212c612e16565b5b813561213d848260208601611ffe565b91505092915050565b60008135905061215581613219565b92915050565b60006020828403121561217157612170612e2a565b5b600061217f84828501612040565b91505092915050565b6000806040838503121561219f5761219e612e2a565b5b60006121ad85828601612040565b92505060206121be85828601612040565b9150509250929050565b6000806000606084860312156121e1576121e0612e2a565b5b60006121ef86828701612040565b935050602061220086828701612040565b925050604061221186828701612146565b9150509250925092565b6000806000806080858703121561223557612234612e2a565b5b600061224387828801612040565b945050602061225487828801612040565b935050604061226587828801612146565b925050606085013567ffffffffffffffff81111561228657612285612e25565b5b612292878288016120ea565b91505092959194509250565b600080604083850312156122b5576122b4612e2a565b5b60006122c385828601612040565b92505060206122d485828601612055565b9150509250929050565b600080604083850312156122f5576122f4612e2a565b5b600061230385828601612040565b925050602061231485828601612146565b9150509250929050565b60006020828403121561233457612333612e2a565b5b60006123428482850161206a565b91505092915050565b60006020828403121561236157612360612e2a565b5b600061236f8482850161207f565b91505092915050565b6000806020838503121561238f5761238e612e2a565b5b600083013567ffffffffffffffff8111156123ad576123ac612e25565b5b6123b985828601612094565b92509250509250929050565b600080604083850312156123dc576123db612e2a565b5b600083013567ffffffffffffffff8111156123fa576123f9612e25565b5b61240685828601612118565b925050602083013567ffffffffffffffff81111561242757612426612e25565b5b61243385828601612118565b9150509250929050565b60006020828403121561245357612452612e2a565b5b600061246184828501612146565b91505092915050565b61247381612b93565b82525050565b61248281612ba5565b82525050565b600061249382612a95565b61249d8185612aab565b93506124ad818560208601612c16565b6124b681612e2f565b840191505092915050565b60006124cc82612aa0565b6124d68185612abc565b93506124e6818560208601612c16565b6124ef81612e2f565b840191505092915050565b600061250582612aa0565b61250f8185612acd565b935061251f818560208601612c16565b80840191505092915050565b6000612538603283612abc565b915061254382612e40565b604082019050919050565b600061255b602683612abc565b915061256682612e8f565b604082019050919050565b600061257e602583612abc565b915061258982612ede565b604082019050919050565b60006125a1601c83612abc565b91506125ac82612f2d565b602082019050919050565b60006125c4602483612abc565b91506125cf82612f56565b604082019050919050565b60006125e7601983612abc565b91506125f282612fa5565b602082019050919050565b600061260a602983612abc565b915061261582612fce565b604082019050919050565b600061262d602e83612abc565b91506126388261301d565b604082019050919050565b6000612650603e83612abc565b915061265b8261306c565b604082019050919050565b6000612673602083612abc565b915061267e826130bb565b602082019050919050565b6000612696602083612abc565b91506126a1826130e4565b602082019050919050565b60006126b9601883612abc565b91506126c48261310d565b602082019050919050565b60006126dc602183612abc565b91506126e782613136565b604082019050919050565b60006126ff602e83612abc565b915061270a82613185565b604082019050919050565b61271e81612bfd565b82525050565b600061273082846124fa565b915081905092915050565b600061274782856124fa565b915061275382846124fa565b91508190509392505050565b6000602082019050612774600083018461246a565b92915050565b600060808201905061278f600083018761246a565b61279c602083018661246a565b6127a96040830185612715565b81810360608301526127bb8184612488565b905095945050505050565b60006020820190506127db6000830184612479565b92915050565b60006040820190506127f66000830185612479565b81810360208301526128088184612488565b90509392505050565b6000602082019050818103600083015261282b81846124c1565b905092915050565b6000602082019050818103600083015261284c8161252b565b9050919050565b6000602082019050818103600083015261286c8161254e565b9050919050565b6000602082019050818103600083015261288c81612571565b9050919050565b600060208201905081810360008301526128ac81612594565b9050919050565b600060208201905081810360008301526128cc816125b7565b9050919050565b600060208201905081810360008301526128ec816125da565b9050919050565b6000602082019050818103600083015261290c816125fd565b9050919050565b6000602082019050818103600083015261292c81612620565b9050919050565b6000602082019050818103600083015261294c81612643565b9050919050565b6000602082019050818103600083015261296c81612666565b9050919050565b6000602082019050818103600083015261298c81612689565b9050919050565b600060208201905081810360008301526129ac816126ac565b9050919050565b600060208201905081810360008301526129cc816126cf565b9050919050565b600060208201905081810360008301526129ec816126f2565b9050919050565b6000602082019050612a086000830184612715565b92915050565b6000612a18612a29565b9050612a248282612c7b565b919050565b6000604051905090565b600067ffffffffffffffff821115612a4e57612a4d612de2565b5b612a5782612e2f565b9050602081019050919050565b600067ffffffffffffffff821115612a7f57612a7e612de2565b5b612a8882612e2f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ae382612bfd565b9150612aee83612bfd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b2357612b22612d26565b5b828201905092915050565b6000612b3982612bfd565b9150612b4483612bfd565b925082612b5457612b53612d55565b5b828204905092915050565b6000612b6a82612bfd565b9150612b7583612bfd565b925082821015612b8857612b87612d26565b5b828203905092915050565b6000612b9e82612bdd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c34578082015181840152602081019050612c19565b83811115612c43576000848401525b50505050565b60006002820490506001821680612c6157607f821691505b60208210811415612c7557612c74612d84565b5b50919050565b612c8482612e2f565b810181811067ffffffffffffffff82111715612ca357612ca2612de2565b5b80604052505050565b6000612cb782612bfd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612cea57612ce9612d26565b5b600182019050919050565b6000612d0082612bfd565b9150612d0b83612bfd565b925082612d1b57612d1a612d55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6131dd81612b93565b81146131e857600080fd5b50565b6131f481612ba5565b81146131ff57600080fd5b50565b61320b81612bb1565b811461321657600080fd5b50565b61322281612bfd565b811461322d57600080fd5b5056fea26469706673582212202e741d1b0b1bc235cd7a3931055b920addbfc13d9d37a766bc11b0b19bf18f2064736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x142 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xB8 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x7C JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x360 JUMPI DUP1 PUSH4 0xBED34BBA EQ PUSH2 0x37C JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x3AC JUMPI DUP1 PUSH4 0xD9F2F7A2 EQ PUSH2 0x3DC JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x40C JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x43C JUMPI PUSH2 0x142 JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2CE JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2FE JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x308 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x326 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x344 JUMPI PUSH2 0x142 JUMP JUMPDEST DUP1 PUSH4 0x2B98AF8D GT PUSH2 0x10A JUMPI DUP1 PUSH4 0x2B98AF8D EQ PUSH2 0x1FD JUMPI DUP1 PUSH4 0x40D097C3 EQ PUSH2 0x219 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x235 JUMPI DUP1 PUSH4 0x5E6C102E EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x282 JUMPI DUP1 PUSH4 0x6C7C8F17 EQ PUSH2 0x2B2 JUMPI PUSH2 0x142 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x177 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x195 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1C5 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E1 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x161 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15C SWAP2 SWAP1 PUSH2 0x231E JUMP JUMPDEST PUSH2 0x458 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x16E SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x17F PUSH2 0x53A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18C SWAP2 SWAP1 PUSH2 0x2811 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AA SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0x5CC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BC SWAP2 SWAP1 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1DF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DA SWAP2 SWAP1 PUSH2 0x22DE JUMP JUMPDEST PUSH2 0x612 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F6 SWAP2 SWAP1 PUSH2 0x21C8 JUMP JUMPDEST PUSH2 0x72A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x217 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x212 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0x78A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x233 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22E SWAP2 SWAP1 PUSH2 0x215B JUMP JUMPDEST PUSH2 0x873 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x24F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x24A SWAP2 SWAP1 PUSH2 0x21C8 JUMP JUMPDEST PUSH2 0x952 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0x972 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x279 SWAP3 SWAP2 SWAP1 PUSH2 0x27E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x297 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0x991 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A9 SWAP2 SWAP1 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C7 SWAP2 SWAP1 PUSH2 0x2378 JUMP JUMPDEST PUSH2 0xA43 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2E8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E3 SWAP2 SWAP1 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xA70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F5 SWAP2 SWAP1 PUSH2 0x29F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x306 PUSH2 0xB28 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x310 PUSH2 0xB3C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31D SWAP2 SWAP1 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x32E PUSH2 0xB66 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x33B SWAP2 SWAP1 PUSH2 0x2811 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x35E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x359 SWAP2 SWAP1 PUSH2 0x229E JUMP JUMPDEST PUSH2 0xBF8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x37A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x375 SWAP2 SWAP1 PUSH2 0x221B JUMP JUMPDEST PUSH2 0xC0E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x396 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x391 SWAP2 SWAP1 PUSH2 0x23C5 JUMP JUMPDEST PUSH2 0xC70 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3A3 SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3C6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C1 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0xCC9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D3 SWAP2 SWAP1 PUSH2 0x2811 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F1 SWAP2 SWAP1 PUSH2 0x243D JUMP JUMPDEST PUSH2 0xCDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x403 SWAP2 SWAP1 PUSH2 0x29F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x426 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x421 SWAP2 SWAP1 PUSH2 0x2188 JUMP JUMPDEST PUSH2 0xE74 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x433 SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x456 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x451 SWAP2 SWAP1 PUSH2 0x215B JUMP JUMPDEST PUSH2 0xF08 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x523 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x533 JUMPI POP PUSH2 0x532 DUP3 PUSH2 0xF8C JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x549 SWAP1 PUSH2 0x2C49 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 0x575 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5C2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x597 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5C2 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 0x5A5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5D7 DUP3 PUSH2 0xFF6 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 0x61D DUP3 PUSH2 0x991 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x68E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x685 SWAP1 PUSH2 0x29B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x6AD PUSH2 0x1041 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x6DC JUMPI POP PUSH2 0x6DB DUP2 PUSH2 0x6D6 PUSH2 0x1041 JUMP JUMPDEST PUSH2 0xE74 JUMP JUMPDEST JUMPDEST PUSH2 0x71B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x712 SWAP1 PUSH2 0x2933 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x725 DUP4 DUP4 PUSH2 0x1049 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x73B PUSH2 0x735 PUSH2 0x1041 JUMP JUMPDEST DUP3 PUSH2 0x1102 JUMP JUMPDEST PUSH2 0x77A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x771 SWAP1 PUSH2 0x29D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x785 DUP4 DUP4 DUP4 PUSH2 0x1197 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH2 0x795 DUP3 PUSH2 0xCDB JUMP JUMPDEST LT PUSH2 0x79F JUMPI PUSH2 0x870 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x7AC DUP4 PUSH2 0xCDB JUMP JUMPDEST PUSH2 0x7B6 SWAP2 SWAP1 PUSH2 0x2AD8 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x7CE JUMPI PUSH2 0x7CD PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x7E3 SWAP1 PUSH2 0x2C49 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 0x80F SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x85C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x831 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x85C 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 0x83F JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x86D DUP4 DUP3 PUSH2 0x13FE JUMP JUMPDEST POP POP JUMPDEST POP JUMP JUMPDEST PUSH2 0x87B PUSH2 0x1472 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x887 PUSH1 0x8 PUSH2 0x14F0 JUMP JUMPDEST SWAP1 POP PUSH2 0x893 PUSH1 0x8 PUSH2 0x14FE JUMP JUMPDEST PUSH2 0x89D DUP3 DUP3 PUSH2 0x1514 JUMP JUMPDEST PUSH2 0x94E DUP2 PUSH1 0x9 PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0x8B6 JUMPI PUSH2 0x8B5 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x8CB SWAP1 PUSH2 0x2C49 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 0x8F7 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x944 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x919 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x944 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 0x927 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP PUSH2 0x13FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x96D DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xC0E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 PUSH1 0xB SLOAD PUSH1 0xA SLOAD TIMESTAMP PUSH2 0x987 SWAP2 SWAP1 PUSH2 0x2B5F JUMP JUMPDEST GT SWAP2 POP SWAP3 POP SWAP3 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 0xA3A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA31 SWAP1 PUSH2 0x2993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB SLOAD PUSH1 0xA SLOAD TIMESTAMP PUSH2 0xA54 SWAP2 SWAP1 PUSH2 0x2B5F JUMP JUMPDEST GT ISZERO PUSH2 0xA6C JUMPI TIMESTAMP PUSH1 0xA DUP2 SWAP1 SSTORE POP PUSH2 0xA6B PUSH1 0x0 PUSH2 0x78A JUMP JUMPDEST JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xAE1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAD8 SWAP1 PUSH2 0x28F3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB30 PUSH2 0x1472 JUMP JUMPDEST PUSH2 0xB3A PUSH1 0x0 PUSH2 0x1532 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xB75 SWAP1 PUSH2 0x2C49 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 0xBA1 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xBEE JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBC3 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xBEE 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 0xBD1 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xC0A PUSH2 0xC03 PUSH2 0x1041 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x15F8 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xC1F PUSH2 0xC19 PUSH2 0x1041 JUMP JUMPDEST DUP4 PUSH2 0x1102 JUMP JUMPDEST PUSH2 0xC5E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC55 SWAP1 PUSH2 0x29D3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xC6A DUP5 DUP5 DUP5 DUP5 PUSH2 0x1765 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xC83 SWAP2 SWAP1 PUSH2 0x2724 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 DUP4 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xCAA SWAP2 SWAP1 PUSH2 0x2724 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 EQ SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xCD4 DUP3 PUSH2 0x17C1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xCE7 DUP4 PUSH2 0xCC9 JUMP JUMPDEST SWAP1 POP PUSH2 0xD9A DUP2 PUSH1 0x9 PUSH1 0x0 DUP2 SLOAD DUP2 LT PUSH2 0xD02 JUMPI PUSH2 0xD01 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0xD17 SWAP1 PUSH2 0x2C49 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 0xD43 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xD90 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xD65 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xD90 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 0xD73 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP PUSH2 0xC70 JUMP JUMPDEST ISZERO PUSH2 0xDA9 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0xE6F JUMP JUMPDEST PUSH2 0xE5A DUP2 PUSH1 0x9 PUSH1 0x1 DUP2 SLOAD DUP2 LT PUSH2 0xDC2 JUMPI PUSH2 0xDC1 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0xDD7 SWAP1 PUSH2 0x2C49 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 0xE03 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE50 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE25 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE50 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 0xE33 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP PUSH2 0xC70 JUMP JUMPDEST ISZERO PUSH2 0xE69 JUMPI PUSH1 0x1 SWAP2 POP POP PUSH2 0xE6F JUMP JUMPDEST PUSH1 0x2 SWAP2 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 PUSH2 0xF10 PUSH2 0x1472 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF80 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF77 SWAP1 PUSH2 0x2853 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xF89 DUP2 PUSH2 0x1532 JUMP JUMPDEST 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 0xFFF DUP2 PUSH2 0x18D4 JUMP JUMPDEST PUSH2 0x103E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1035 SWAP1 PUSH2 0x2993 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 0x10BC DUP4 PUSH2 0x991 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 0x110E DUP4 PUSH2 0x991 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1150 JUMPI POP PUSH2 0x114F DUP2 DUP6 PUSH2 0xE74 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0x118E JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1176 DUP5 PUSH2 0x5CC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x11B7 DUP3 PUSH2 0x991 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x120D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1204 SWAP1 PUSH2 0x2873 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x127D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1274 SWAP1 PUSH2 0x28B3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1288 DUP4 DUP4 DUP4 PUSH2 0x1940 JUMP JUMPDEST PUSH2 0x1293 PUSH1 0x0 DUP3 PUSH2 0x1049 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 0x12E3 SWAP2 SWAP1 PUSH2 0x2B5F 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 0x133A SWAP2 SWAP1 PUSH2 0x2AD8 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 0x13F9 DUP4 DUP4 DUP4 PUSH2 0x1945 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1407 DUP3 PUSH2 0x18D4 JUMP JUMPDEST PUSH2 0x1446 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x143D SWAP1 PUSH2 0x2913 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 0x146D SWAP3 SWAP2 SWAP1 PUSH2 0x1F19 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x147A PUSH2 0x1041 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1498 PUSH2 0xB3C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x14EE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14E5 SWAP1 PUSH2 0x2973 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 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 PUSH2 0x152E DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x194A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1667 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x165E SWAP1 PUSH2 0x28D3 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 0x1758 SWAP2 SWAP1 PUSH2 0x27C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1770 DUP5 DUP5 DUP5 PUSH2 0x1197 JUMP JUMPDEST PUSH2 0x177C DUP5 DUP5 DUP5 DUP5 PUSH2 0x19A5 JUMP JUMPDEST PUSH2 0x17BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17B2 SWAP1 PUSH2 0x2833 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x17CC DUP3 PUSH2 0xFF6 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 0x17EC SWAP1 PUSH2 0x2C49 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 0x1818 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1865 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x183A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1865 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 0x1848 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x1876 PUSH2 0x1B3C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x188C JUMPI DUP2 SWAP3 POP POP POP PUSH2 0x18CF JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0x18C1 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x18A9 SWAP3 SWAP2 SWAP1 PUSH2 0x273B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP PUSH2 0x18CF JUMP JUMPDEST PUSH2 0x18CA DUP5 PUSH2 0x1B53 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST 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 0x1954 DUP4 DUP4 PUSH2 0x1BBB JUMP JUMPDEST PUSH2 0x1961 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x19A5 JUMP JUMPDEST PUSH2 0x19A0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1997 SWAP1 PUSH2 0x2833 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x19C6 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1D95 JUMP JUMPDEST ISZERO PUSH2 0x1B2F JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x19EF PUSH2 0x1041 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A11 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x277A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1A2B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1A5C 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 0x1A59 SWAP2 SWAP1 PUSH2 0x234B JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1ADF JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1A8C 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 0x1A91 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1AD7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1ACE SWAP1 PUSH2 0x2833 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 0x1B34 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 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 0x1B5E DUP3 PUSH2 0xFF6 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B68 PUSH2 0x1B3C JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1B88 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1BB3 JUMP JUMPDEST DUP1 PUSH2 0x1B92 DUP5 PUSH2 0x1DB8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1BA3 SWAP3 SWAP2 SWAP1 PUSH2 0x273B 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1C2B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C22 SWAP1 PUSH2 0x2953 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C34 DUP2 PUSH2 0x18D4 JUMP JUMPDEST ISZERO PUSH2 0x1C74 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C6B SWAP1 PUSH2 0x2893 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C80 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1940 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 0x1CD0 SWAP2 SWAP1 PUSH2 0x2AD8 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 0x1D91 PUSH1 0x0 DUP4 DUP4 PUSH2 0x1945 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1E00 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 0x1F14 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1E32 JUMPI DUP1 DUP1 PUSH2 0x1E1B SWAP1 PUSH2 0x2CAC JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x1E2B SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP2 POP PUSH2 0x1E08 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1E4E JUMPI PUSH2 0x1E4D PUSH2 0x2DE2 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 0x1E80 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 0x1F0D JUMPI PUSH1 0x1 DUP3 PUSH2 0x1E99 SWAP2 SWAP1 PUSH2 0x2B5F JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x1EA8 SWAP2 SWAP1 PUSH2 0x2CF5 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x1EB4 SWAP2 SWAP1 PUSH2 0x2AD8 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1ECA JUMPI PUSH2 0x1EC9 PUSH2 0x2DB3 JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1F06 SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP5 POP PUSH2 0x1E84 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x1F25 SWAP1 PUSH2 0x2C49 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x1F47 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x1F8E JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x1F60 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x1F8E JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x1F8E JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x1F8D JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x1F72 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x1F9B SWAP2 SWAP1 PUSH2 0x1F9F JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x1FB8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x1FA0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1FCF PUSH2 0x1FCA DUP5 PUSH2 0x2A33 JUMP JUMPDEST PUSH2 0x2A0E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1FEB JUMPI PUSH2 0x1FEA PUSH2 0x2E20 JUMP JUMPDEST JUMPDEST PUSH2 0x1FF6 DUP5 DUP3 DUP6 PUSH2 0x2C07 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2011 PUSH2 0x200C DUP5 PUSH2 0x2A64 JUMP JUMPDEST PUSH2 0x2A0E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x202D JUMPI PUSH2 0x202C PUSH2 0x2E20 JUMP JUMPDEST JUMPDEST PUSH2 0x2038 DUP5 DUP3 DUP6 PUSH2 0x2C07 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x204F DUP2 PUSH2 0x31D4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2064 DUP2 PUSH2 0x31EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2079 DUP2 PUSH2 0x3202 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x208E DUP2 PUSH2 0x3202 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x20AA JUMPI PUSH2 0x20A9 PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x20C7 JUMPI PUSH2 0x20C6 PUSH2 0x2E11 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x20E3 JUMPI PUSH2 0x20E2 PUSH2 0x2E1B JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x20FF JUMPI PUSH2 0x20FE PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x210F DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1FBC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x212D JUMPI PUSH2 0x212C PUSH2 0x2E16 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x213D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1FFE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2155 DUP2 PUSH2 0x3219 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2171 JUMPI PUSH2 0x2170 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x217F DUP5 DUP3 DUP6 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x219F JUMPI PUSH2 0x219E PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x21AD DUP6 DUP3 DUP7 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x21BE DUP6 DUP3 DUP7 ADD PUSH2 0x2040 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 0x21E1 JUMPI PUSH2 0x21E0 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x21EF DUP7 DUP3 DUP8 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2200 DUP7 DUP3 DUP8 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2211 DUP7 DUP3 DUP8 ADD PUSH2 0x2146 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 0x2235 JUMPI PUSH2 0x2234 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2243 DUP8 DUP3 DUP9 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2254 DUP8 DUP3 DUP9 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x2265 DUP8 DUP3 DUP9 ADD PUSH2 0x2146 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2286 JUMPI PUSH2 0x2285 PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x2292 DUP8 DUP3 DUP9 ADD PUSH2 0x20EA 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 0x22B5 JUMPI PUSH2 0x22B4 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x22C3 DUP6 DUP3 DUP7 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x22D4 DUP6 DUP3 DUP7 ADD PUSH2 0x2055 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x22F5 JUMPI PUSH2 0x22F4 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2303 DUP6 DUP3 DUP7 ADD PUSH2 0x2040 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2314 DUP6 DUP3 DUP7 ADD PUSH2 0x2146 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2334 JUMPI PUSH2 0x2333 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2342 DUP5 DUP3 DUP6 ADD PUSH2 0x206A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2361 JUMPI PUSH2 0x2360 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x236F DUP5 DUP3 DUP6 ADD PUSH2 0x207F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x238F JUMPI PUSH2 0x238E PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x23AD JUMPI PUSH2 0x23AC PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x23B9 DUP6 DUP3 DUP7 ADD PUSH2 0x2094 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x23DC JUMPI PUSH2 0x23DB PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x23FA JUMPI PUSH2 0x23F9 PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x2406 DUP6 DUP3 DUP7 ADD PUSH2 0x2118 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2427 JUMPI PUSH2 0x2426 PUSH2 0x2E25 JUMP JUMPDEST JUMPDEST PUSH2 0x2433 DUP6 DUP3 DUP7 ADD PUSH2 0x2118 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2453 JUMPI PUSH2 0x2452 PUSH2 0x2E2A JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2461 DUP5 DUP3 DUP6 ADD PUSH2 0x2146 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2473 DUP2 PUSH2 0x2B93 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2482 DUP2 PUSH2 0x2BA5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2493 DUP3 PUSH2 0x2A95 JUMP JUMPDEST PUSH2 0x249D DUP2 DUP6 PUSH2 0x2AAB JUMP JUMPDEST SWAP4 POP PUSH2 0x24AD DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST PUSH2 0x24B6 DUP2 PUSH2 0x2E2F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24CC DUP3 PUSH2 0x2AA0 JUMP JUMPDEST PUSH2 0x24D6 DUP2 DUP6 PUSH2 0x2ABC JUMP JUMPDEST SWAP4 POP PUSH2 0x24E6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST PUSH2 0x24EF DUP2 PUSH2 0x2E2F JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2505 DUP3 PUSH2 0x2AA0 JUMP JUMPDEST PUSH2 0x250F DUP2 DUP6 PUSH2 0x2ACD JUMP JUMPDEST SWAP4 POP PUSH2 0x251F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C16 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2538 PUSH1 0x32 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2543 DUP3 PUSH2 0x2E40 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x255B PUSH1 0x26 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2566 DUP3 PUSH2 0x2E8F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x257E PUSH1 0x25 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2589 DUP3 PUSH2 0x2EDE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25A1 PUSH1 0x1C DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x25AC DUP3 PUSH2 0x2F2D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25C4 PUSH1 0x24 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x25CF DUP3 PUSH2 0x2F56 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25E7 PUSH1 0x19 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x25F2 DUP3 PUSH2 0x2FA5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x260A PUSH1 0x29 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2615 DUP3 PUSH2 0x2FCE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x262D PUSH1 0x2E DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x2638 DUP3 PUSH2 0x301D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2650 PUSH1 0x3E DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x265B DUP3 PUSH2 0x306C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2673 PUSH1 0x20 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x267E DUP3 PUSH2 0x30BB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2696 PUSH1 0x20 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x26A1 DUP3 PUSH2 0x30E4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26B9 PUSH1 0x18 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x26C4 DUP3 PUSH2 0x310D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26DC PUSH1 0x21 DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x26E7 DUP3 PUSH2 0x3136 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26FF PUSH1 0x2E DUP4 PUSH2 0x2ABC JUMP JUMPDEST SWAP2 POP PUSH2 0x270A DUP3 PUSH2 0x3185 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x271E DUP2 PUSH2 0x2BFD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2730 DUP3 DUP5 PUSH2 0x24FA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2747 DUP3 DUP6 PUSH2 0x24FA JUMP JUMPDEST SWAP2 POP PUSH2 0x2753 DUP3 DUP5 PUSH2 0x24FA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2774 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x246A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x278F PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x246A JUMP JUMPDEST PUSH2 0x279C PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x246A JUMP JUMPDEST PUSH2 0x27A9 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x2715 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x27BB DUP2 DUP5 PUSH2 0x2488 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x27DB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2479 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x27F6 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x2479 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x2808 DUP2 DUP5 PUSH2 0x2488 JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x282B DUP2 DUP5 PUSH2 0x24C1 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 0x284C DUP2 PUSH2 0x252B 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 0x286C DUP2 PUSH2 0x254E 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 0x288C DUP2 PUSH2 0x2571 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 0x28AC DUP2 PUSH2 0x2594 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 0x28CC DUP2 PUSH2 0x25B7 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 0x28EC DUP2 PUSH2 0x25DA 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 0x290C DUP2 PUSH2 0x25FD 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 0x292C DUP2 PUSH2 0x2620 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 0x294C DUP2 PUSH2 0x2643 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 0x296C DUP2 PUSH2 0x2666 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 0x298C DUP2 PUSH2 0x2689 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 0x29AC DUP2 PUSH2 0x26AC 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 0x29CC DUP2 PUSH2 0x26CF 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 0x29EC DUP2 PUSH2 0x26F2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2A08 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2715 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A18 PUSH2 0x2A29 JUMP JUMPDEST SWAP1 POP PUSH2 0x2A24 DUP3 DUP3 PUSH2 0x2C7B 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 0x2A4E JUMPI PUSH2 0x2A4D PUSH2 0x2DE2 JUMP JUMPDEST JUMPDEST PUSH2 0x2A57 DUP3 PUSH2 0x2E2F JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A7F JUMPI PUSH2 0x2A7E PUSH2 0x2DE2 JUMP JUMPDEST JUMPDEST PUSH2 0x2A88 DUP3 PUSH2 0x2E2F 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 0x2AE3 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2AEE DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2B23 JUMPI PUSH2 0x2B22 PUSH2 0x2D26 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B39 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2B44 DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2B54 JUMPI PUSH2 0x2B53 PUSH2 0x2D55 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B6A DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2B75 DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2B88 JUMPI PUSH2 0x2B87 PUSH2 0x2D26 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B9E DUP3 PUSH2 0x2BDD 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 0x2C34 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2C19 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2C43 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 0x2C61 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2C75 JUMPI PUSH2 0x2C74 PUSH2 0x2D84 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C84 DUP3 PUSH2 0x2E2F JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2CA3 JUMPI PUSH2 0x2CA2 PUSH2 0x2DE2 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CB7 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2CEA JUMPI PUSH2 0x2CE9 PUSH2 0x2D26 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D00 DUP3 PUSH2 0x2BFD JUMP JUMPDEST SWAP2 POP PUSH2 0x2D0B DUP4 PUSH2 0x2BFD JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2D1B JUMPI PUSH2 0x2D1A PUSH2 0x2D55 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 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 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 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 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 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 PUSH2 0x31DD DUP2 PUSH2 0x2B93 JUMP JUMPDEST DUP2 EQ PUSH2 0x31E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x31F4 DUP2 PUSH2 0x2BA5 JUMP JUMPDEST DUP2 EQ PUSH2 0x31FF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x320B DUP2 PUSH2 0x2BB1 JUMP JUMPDEST DUP2 EQ PUSH2 0x3216 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x3222 DUP2 PUSH2 0x2BFD JUMP JUMPDEST DUP2 EQ PUSH2 0x322D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2E PUSH21 0x1D1B0B1BC235CD7A3931055B920ADDBFC13D9D37A7 PUSH7 0xBC11B0B19BF18F KECCAK256 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "391:2920:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2470:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3935:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3467:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4612:327;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2023:371:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1796:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5005:179:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1115:269:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;2190:218:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1390:400:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1929:204:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;:::i;:::-;;1201:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2632:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4169:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5250:315;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2810:221:12;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3156:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2448:356;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4388:162:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1570:300:1;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;2023:371:12:-;2106:1;2081:21;2093:8;2081:11;:21::i;:::-;:26;2078:62;;2123:7;;2078:62;2206:14;2247:1;2223:21;2235:8;2223:11;:21::i;:::-;:25;;;;:::i;:::-;2206:42;;2287:20;2310:7;2318:6;2310:15;;;;;;;;:::i;:::-;;;;;;;;;2287:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2357:30;2370:8;2380:6;2357:12;:30::i;:::-;2068:326;;2023:371;;:::o;1796:221::-;1094:13:0;:11;:13::i;:::-;1854:15:12::1;1872:25;:15;:23;:25::i;:::-;1854:43;;1907:27;:15;:25;:27::i;:::-;1944:23;1954:3;1959:7;1944:9;:23::i;:::-;1977:33;1990:7;1999;2007:1;1999:10;;;;;;;;:::i;:::-;;;;;;;;;1977:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:33::i;:::-;1844:173;1796:221:::0;:::o;5005:179:1:-;5138:39;5155:4;5161:2;5165:7;5138:39;;;;;;;;;;;;:16;:39::i;:::-;5005:179;;;:::o;1115:269:12:-;1174:17;1193:12;1268:8;;1251:13;;1233:15;:31;;;;:::i;:::-;1232:44;1217:59;;1115:269;;;;;:::o;2190:218:1:-;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;1390:400:12:-;1571:8;;1554:13;;1536:15;:31;;;;:::i;:::-;1535:44;1532:132;;;1611:15;1595:13;:31;;;;1640:13;1651:1;1640:10;:13::i;:::-;1532:132;1390:400;;:::o;1929:204:1:-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2110:9;:16;2120:5;2110:16;;;;;;;;;;;;;;;;2103:23;;1929:204;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;1201:85::-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;2632:102:1:-;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;2810:221:12:-;2910:4;3008:12;2990:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;2980:43;;;;;;2962:11;2944:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;2934:42;;;;;;:89;2926:98;;2810:221;;;;:::o;3156:153::-;3247:13;3279:23;3294:7;3279:14;:23::i;:::-;3272:30;;3156:153;;;:::o;2448:356::-;2508:7;2527:18;2548;2557:8;2548;:18::i;:::-;2527:39;;2596:32;2611:4;2617:7;2625:1;2617:10;;;;;;;;:::i;:::-;;;;;;;;;2596:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:32::i;:::-;2592:71;;;2651:1;2644:8;;;;;2592:71;2694:32;2709:4;2715:7;2723:1;2715:10;;;;;;;;:::i;:::-;;;;;;;;;2694:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:14;:32::i;:::-;2690:71;;;2749:1;2742:8;;;;;2690:71;2796:1;2789:8;;;2448:356;;;;:::o;4388:162:1:-;4485:4;4508:18;:25;4527:5;4508:25;;;;;;;;;;;;;;;:35;4534:8;4508:35;;;;;;;;;;;;;;;;;;;;;;;;;4501:42;;4388:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;829:155:10:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;11657:133:1:-;11738:16;11746:7;11738;:16::i;:::-;11730:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;11657:133;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;10959:171:1:-;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;1237:214:4:-;1336:16;1344:7;1336;:16::i;:::-;1328:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1435:9;1413:10;:19;1424:7;1413:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;1237:214;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;827:112:8:-;892:7;918;:14;;;911:21;;827:112;;;:::o;945:123::-;1050:1;1032:7;:14;;;:19;;;;;;;;;;;945:123;:::o;7908:108:1:-;7983:26;7993:2;7997:7;7983:26;;;;;;;;;;;;:9;:26::i;:::-;7908:108;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;11266:307:1:-;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;482:608:4:-;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;7034:125:1:-;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;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;8868:427::-;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:6:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;392:703:9:-;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;-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:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:552::-;1485:8;1495:6;1545:3;1538:4;1530:6;1526:17;1522:27;1512:122;;1553:79;;:::i;:::-;1512:122;1666:6;1653:20;1643:30;;1696:18;1688:6;1685:30;1682:117;;;1718:79;;:::i;:::-;1682:117;1832:4;1824:6;1820:17;1808:29;;1886:3;1878:4;1870:6;1866:17;1856:8;1852:32;1849:41;1846:128;;;1893:79;;:::i;:::-;1846:128;1428:552;;;;;:::o;1999:338::-;2054:5;2103:3;2096:4;2088:6;2084:17;2080:27;2070:122;;2111:79;;:::i;:::-;2070:122;2228:6;2215:20;2253:78;2327:3;2319:6;2312:4;2304:6;2300:17;2253:78;:::i;:::-;2244:87;;2060:277;1999:338;;;;:::o;2357:340::-;2413:5;2462:3;2455:4;2447:6;2443:17;2439:27;2429:122;;2470:79;;:::i;:::-;2429:122;2587:6;2574:20;2612:79;2687:3;2679:6;2672:4;2664:6;2660:17;2612:79;:::i;:::-;2603:88;;2419:278;2357:340;;;;:::o;2703:139::-;2749:5;2787:6;2774:20;2765:29;;2803:33;2830:5;2803:33;:::i;:::-;2703:139;;;;:::o;2848:329::-;2907:6;2956:2;2944:9;2935:7;2931:23;2927:32;2924:119;;;2962:79;;:::i;:::-;2924:119;3082:1;3107:53;3152:7;3143:6;3132:9;3128:22;3107:53;:::i;:::-;3097:63;;3053:117;2848:329;;;;:::o;3183:474::-;3251:6;3259;3308:2;3296:9;3287:7;3283:23;3279:32;3276:119;;;3314:79;;:::i;:::-;3276:119;3434:1;3459:53;3504:7;3495:6;3484:9;3480:22;3459:53;:::i;:::-;3449:63;;3405:117;3561:2;3587:53;3632:7;3623:6;3612:9;3608:22;3587:53;:::i;:::-;3577:63;;3532:118;3183:474;;;;;:::o;3663:619::-;3740:6;3748;3756;3805:2;3793:9;3784:7;3780:23;3776:32;3773:119;;;3811:79;;:::i;:::-;3773:119;3931:1;3956:53;4001:7;3992:6;3981:9;3977:22;3956:53;:::i;:::-;3946:63;;3902:117;4058:2;4084:53;4129:7;4120:6;4109:9;4105:22;4084:53;:::i;:::-;4074:63;;4029:118;4186:2;4212:53;4257:7;4248:6;4237:9;4233:22;4212:53;:::i;:::-;4202:63;;4157:118;3663:619;;;;;:::o;4288:943::-;4383:6;4391;4399;4407;4456:3;4444:9;4435:7;4431:23;4427:33;4424:120;;;4463:79;;:::i;:::-;4424:120;4583:1;4608:53;4653:7;4644:6;4633:9;4629:22;4608:53;:::i;:::-;4598:63;;4554:117;4710:2;4736:53;4781:7;4772:6;4761:9;4757:22;4736:53;:::i;:::-;4726:63;;4681:118;4838:2;4864:53;4909:7;4900:6;4889:9;4885:22;4864:53;:::i;:::-;4854:63;;4809:118;4994:2;4983:9;4979:18;4966:32;5025:18;5017:6;5014:30;5011:117;;;5047:79;;:::i;:::-;5011:117;5152:62;5206:7;5197:6;5186:9;5182:22;5152:62;:::i;:::-;5142:72;;4937:287;4288:943;;;;;;;:::o;5237:468::-;5302:6;5310;5359:2;5347:9;5338:7;5334:23;5330:32;5327:119;;;5365:79;;:::i;:::-;5327:119;5485:1;5510:53;5555:7;5546:6;5535:9;5531:22;5510:53;:::i;:::-;5500:63;;5456:117;5612:2;5638:50;5680:7;5671:6;5660:9;5656:22;5638:50;:::i;:::-;5628:60;;5583:115;5237:468;;;;;:::o;5711:474::-;5779:6;5787;5836:2;5824:9;5815:7;5811:23;5807:32;5804:119;;;5842:79;;:::i;:::-;5804:119;5962:1;5987:53;6032:7;6023:6;6012:9;6008:22;5987:53;:::i;:::-;5977:63;;5933:117;6089:2;6115:53;6160:7;6151:6;6140:9;6136:22;6115:53;:::i;:::-;6105:63;;6060:118;5711:474;;;;;:::o;6191:327::-;6249:6;6298:2;6286:9;6277:7;6273:23;6269:32;6266:119;;;6304:79;;:::i;:::-;6266:119;6424:1;6449:52;6493:7;6484:6;6473:9;6469:22;6449:52;:::i;:::-;6439:62;;6395:116;6191:327;;;;:::o;6524:349::-;6593:6;6642:2;6630:9;6621:7;6617:23;6613:32;6610:119;;;6648:79;;:::i;:::-;6610:119;6768:1;6793:63;6848:7;6839:6;6828:9;6824:22;6793:63;:::i;:::-;6783:73;;6739:127;6524:349;;;;:::o;6879:527::-;6949:6;6957;7006:2;6994:9;6985:7;6981:23;6977:32;6974:119;;;7012:79;;:::i;:::-;6974:119;7160:1;7149:9;7145:17;7132:31;7190:18;7182:6;7179:30;7176:117;;;7212:79;;:::i;:::-;7176:117;7325:64;7381:7;7372:6;7361:9;7357:22;7325:64;:::i;:::-;7307:82;;;;7103:296;6879:527;;;;;:::o;7412:834::-;7500:6;7508;7557:2;7545:9;7536:7;7532:23;7528:32;7525:119;;;7563:79;;:::i;:::-;7525:119;7711:1;7700:9;7696:17;7683:31;7741:18;7733:6;7730:30;7727:117;;;7763:79;;:::i;:::-;7727:117;7868:63;7923:7;7914:6;7903:9;7899:22;7868:63;:::i;:::-;7858:73;;7654:287;8008:2;7997:9;7993:18;7980:32;8039:18;8031:6;8028:30;8025:117;;;8061:79;;:::i;:::-;8025:117;8166:63;8221:7;8212:6;8201:9;8197:22;8166:63;:::i;:::-;8156:73;;7951:288;7412:834;;;;;:::o;8252:329::-;8311:6;8360:2;8348:9;8339:7;8335:23;8331:32;8328:119;;;8366:79;;:::i;:::-;8328:119;8486:1;8511:53;8556:7;8547:6;8536:9;8532:22;8511:53;:::i;:::-;8501:63;;8457:117;8252:329;;;;:::o;8587:118::-;8674:24;8692:5;8674:24;:::i;:::-;8669:3;8662:37;8587:118;;:::o;8711:109::-;8792:21;8807:5;8792:21;:::i;:::-;8787:3;8780:34;8711:109;;:::o;8826:360::-;8912:3;8940:38;8972:5;8940:38;:::i;:::-;8994:70;9057:6;9052:3;8994:70;:::i;:::-;8987:77;;9073:52;9118:6;9113:3;9106:4;9099:5;9095:16;9073:52;:::i;:::-;9150:29;9172:6;9150:29;:::i;:::-;9145:3;9141:39;9134:46;;8916:270;8826:360;;;;:::o;9192:364::-;9280:3;9308:39;9341:5;9308:39;:::i;:::-;9363:71;9427:6;9422:3;9363:71;:::i;:::-;9356:78;;9443:52;9488:6;9483:3;9476:4;9469:5;9465:16;9443:52;:::i;:::-;9520:29;9542:6;9520:29;:::i;:::-;9515:3;9511:39;9504:46;;9284:272;9192:364;;;;:::o;9562:377::-;9668:3;9696:39;9729:5;9696:39;:::i;:::-;9751:89;9833:6;9828:3;9751:89;:::i;:::-;9744:96;;9849:52;9894:6;9889:3;9882:4;9875:5;9871:16;9849:52;:::i;:::-;9926:6;9921:3;9917:16;9910:23;;9672:267;9562:377;;;;:::o;9945:366::-;10087:3;10108:67;10172:2;10167:3;10108:67;:::i;:::-;10101:74;;10184:93;10273:3;10184:93;:::i;:::-;10302:2;10297:3;10293:12;10286:19;;9945:366;;;:::o;10317:::-;10459:3;10480:67;10544:2;10539:3;10480:67;:::i;:::-;10473:74;;10556:93;10645:3;10556:93;:::i;:::-;10674:2;10669:3;10665:12;10658:19;;10317:366;;;:::o;10689:::-;10831:3;10852:67;10916:2;10911:3;10852:67;:::i;:::-;10845:74;;10928:93;11017:3;10928:93;:::i;:::-;11046:2;11041:3;11037:12;11030:19;;10689:366;;;:::o;11061:::-;11203:3;11224:67;11288:2;11283:3;11224:67;:::i;:::-;11217:74;;11300:93;11389:3;11300:93;:::i;:::-;11418:2;11413:3;11409:12;11402:19;;11061:366;;;:::o;11433:::-;11575:3;11596:67;11660:2;11655:3;11596:67;:::i;:::-;11589:74;;11672:93;11761:3;11672:93;:::i;:::-;11790:2;11785:3;11781:12;11774:19;;11433:366;;;:::o;11805:::-;11947:3;11968:67;12032:2;12027:3;11968:67;:::i;:::-;11961:74;;12044:93;12133:3;12044:93;:::i;:::-;12162:2;12157:3;12153:12;12146:19;;11805:366;;;:::o;12177:::-;12319:3;12340:67;12404:2;12399:3;12340:67;:::i;:::-;12333:74;;12416:93;12505:3;12416:93;:::i;:::-;12534:2;12529:3;12525:12;12518:19;;12177:366;;;:::o;12549:::-;12691:3;12712:67;12776:2;12771:3;12712:67;:::i;:::-;12705:74;;12788:93;12877:3;12788:93;:::i;:::-;12906:2;12901:3;12897:12;12890:19;;12549:366;;;:::o;12921:::-;13063:3;13084:67;13148:2;13143:3;13084:67;:::i;:::-;13077:74;;13160:93;13249:3;13160:93;:::i;:::-;13278:2;13273:3;13269:12;13262:19;;12921:366;;;:::o;13293:::-;13435:3;13456:67;13520:2;13515:3;13456:67;:::i;:::-;13449:74;;13532:93;13621:3;13532:93;:::i;:::-;13650:2;13645:3;13641:12;13634:19;;13293:366;;;:::o;13665:::-;13807:3;13828:67;13892:2;13887:3;13828:67;:::i;:::-;13821:74;;13904:93;13993:3;13904:93;:::i;:::-;14022:2;14017:3;14013:12;14006:19;;13665:366;;;:::o;14037:::-;14179:3;14200:67;14264:2;14259:3;14200:67;:::i;:::-;14193:74;;14276:93;14365:3;14276:93;:::i;:::-;14394:2;14389:3;14385:12;14378:19;;14037:366;;;:::o;14409:::-;14551:3;14572:67;14636:2;14631:3;14572:67;:::i;:::-;14565:74;;14648:93;14737:3;14648:93;:::i;:::-;14766:2;14761:3;14757:12;14750:19;;14409:366;;;:::o;14781:::-;14923:3;14944:67;15008:2;15003:3;14944:67;:::i;:::-;14937:74;;15020:93;15109:3;15020:93;:::i;:::-;15138:2;15133:3;15129:12;15122:19;;14781:366;;;:::o;15153:118::-;15240:24;15258:5;15240:24;:::i;:::-;15235:3;15228:37;15153:118;;:::o;15277:275::-;15409:3;15431:95;15522:3;15513:6;15431:95;:::i;:::-;15424:102;;15543:3;15536:10;;15277:275;;;;:::o;15558:435::-;15738:3;15760:95;15851:3;15842:6;15760:95;:::i;:::-;15753:102;;15872:95;15963:3;15954:6;15872:95;:::i;:::-;15865:102;;15984:3;15977:10;;15558:435;;;;;:::o;15999:222::-;16092:4;16130:2;16119:9;16115:18;16107:26;;16143:71;16211:1;16200:9;16196:17;16187:6;16143:71;:::i;:::-;15999:222;;;;:::o;16227:640::-;16422:4;16460:3;16449:9;16445:19;16437:27;;16474:71;16542:1;16531:9;16527:17;16518:6;16474:71;:::i;:::-;16555:72;16623:2;16612:9;16608:18;16599:6;16555:72;:::i;:::-;16637;16705:2;16694:9;16690:18;16681:6;16637:72;:::i;:::-;16756:9;16750:4;16746:20;16741:2;16730:9;16726:18;16719:48;16784:76;16855:4;16846:6;16784:76;:::i;:::-;16776:84;;16227:640;;;;;;;:::o;16873:210::-;16960:4;16998:2;16987:9;16983:18;16975:26;;17011:65;17073:1;17062:9;17058:17;17049:6;17011:65;:::i;:::-;16873:210;;;;:::o;17089:407::-;17222:4;17260:2;17249:9;17245:18;17237:26;;17273:65;17335:1;17324:9;17320:17;17311:6;17273:65;:::i;:::-;17385:9;17379:4;17375:20;17370:2;17359:9;17355:18;17348:48;17413:76;17484:4;17475:6;17413:76;:::i;:::-;17405:84;;17089:407;;;;;:::o;17502:313::-;17615:4;17653:2;17642:9;17638:18;17630:26;;17702:9;17696:4;17692:20;17688:1;17677:9;17673:17;17666:47;17730:78;17803:4;17794:6;17730:78;:::i;:::-;17722:86;;17502:313;;;;:::o;17821:419::-;17987:4;18025:2;18014:9;18010:18;18002:26;;18074:9;18068:4;18064:20;18060:1;18049:9;18045:17;18038:47;18102:131;18228:4;18102:131;:::i;:::-;18094:139;;17821:419;;;:::o;18246:::-;18412:4;18450:2;18439:9;18435:18;18427:26;;18499:9;18493:4;18489:20;18485:1;18474:9;18470:17;18463:47;18527:131;18653:4;18527:131;:::i;:::-;18519:139;;18246:419;;;:::o;18671:::-;18837:4;18875:2;18864:9;18860:18;18852:26;;18924:9;18918:4;18914:20;18910:1;18899:9;18895:17;18888:47;18952:131;19078:4;18952:131;:::i;:::-;18944:139;;18671:419;;;:::o;19096:::-;19262:4;19300:2;19289:9;19285:18;19277:26;;19349:9;19343:4;19339:20;19335:1;19324:9;19320:17;19313:47;19377:131;19503:4;19377:131;:::i;:::-;19369:139;;19096:419;;;:::o;19521:::-;19687:4;19725:2;19714:9;19710:18;19702:26;;19774:9;19768:4;19764:20;19760:1;19749:9;19745:17;19738:47;19802:131;19928:4;19802:131;:::i;:::-;19794:139;;19521:419;;;:::o;19946:::-;20112:4;20150:2;20139:9;20135:18;20127:26;;20199:9;20193:4;20189:20;20185:1;20174:9;20170:17;20163:47;20227:131;20353:4;20227:131;:::i;:::-;20219:139;;19946:419;;;:::o;20371:::-;20537:4;20575:2;20564:9;20560:18;20552:26;;20624:9;20618:4;20614:20;20610:1;20599:9;20595:17;20588:47;20652:131;20778:4;20652:131;:::i;:::-;20644:139;;20371:419;;;:::o;20796:::-;20962:4;21000:2;20989:9;20985:18;20977:26;;21049:9;21043:4;21039:20;21035:1;21024:9;21020:17;21013:47;21077:131;21203:4;21077:131;:::i;:::-;21069:139;;20796:419;;;:::o;21221:::-;21387:4;21425:2;21414:9;21410:18;21402:26;;21474:9;21468:4;21464:20;21460:1;21449:9;21445:17;21438:47;21502:131;21628:4;21502:131;:::i;:::-;21494:139;;21221:419;;;:::o;21646:::-;21812:4;21850:2;21839:9;21835:18;21827:26;;21899:9;21893:4;21889:20;21885:1;21874:9;21870:17;21863:47;21927:131;22053:4;21927:131;:::i;:::-;21919:139;;21646:419;;;:::o;22071:::-;22237:4;22275:2;22264:9;22260:18;22252:26;;22324:9;22318:4;22314:20;22310:1;22299:9;22295:17;22288:47;22352:131;22478:4;22352:131;:::i;:::-;22344:139;;22071:419;;;:::o;22496:::-;22662:4;22700:2;22689:9;22685:18;22677:26;;22749:9;22743:4;22739:20;22735:1;22724:9;22720:17;22713:47;22777:131;22903:4;22777:131;:::i;:::-;22769:139;;22496:419;;;:::o;22921:::-;23087:4;23125:2;23114:9;23110:18;23102:26;;23174:9;23168:4;23164:20;23160:1;23149:9;23145:17;23138:47;23202:131;23328:4;23202:131;:::i;:::-;23194:139;;22921:419;;;:::o;23346:::-;23512:4;23550:2;23539:9;23535:18;23527:26;;23599:9;23593:4;23589:20;23585:1;23574:9;23570:17;23563:47;23627:131;23753:4;23627:131;:::i;:::-;23619:139;;23346:419;;;:::o;23771:222::-;23864:4;23902:2;23891:9;23887:18;23879:26;;23915:71;23983:1;23972:9;23968:17;23959:6;23915:71;:::i;:::-;23771:222;;;;:::o;23999:129::-;24033:6;24060:20;;:::i;:::-;24050:30;;24089:33;24117:4;24109:6;24089:33;:::i;:::-;23999:129;;;:::o;24134:75::-;24167:6;24200:2;24194:9;24184:19;;24134:75;:::o;24215:307::-;24276:4;24366:18;24358:6;24355:30;24352:56;;;24388:18;;:::i;:::-;24352:56;24426:29;24448:6;24426:29;:::i;:::-;24418:37;;24510:4;24504;24500:15;24492:23;;24215:307;;;:::o;24528:308::-;24590:4;24680:18;24672:6;24669:30;24666:56;;;24702:18;;:::i;:::-;24666:56;24740:29;24762:6;24740:29;:::i;:::-;24732:37;;24824:4;24818;24814:15;24806:23;;24528:308;;;:::o;24842:98::-;24893:6;24927:5;24921:12;24911:22;;24842:98;;;:::o;24946:99::-;24998:6;25032:5;25026:12;25016:22;;24946:99;;;:::o;25051:168::-;25134:11;25168:6;25163:3;25156:19;25208:4;25203:3;25199:14;25184:29;;25051:168;;;;:::o;25225:169::-;25309:11;25343:6;25338:3;25331:19;25383:4;25378:3;25374:14;25359:29;;25225:169;;;;:::o;25400:148::-;25502:11;25539:3;25524:18;;25400:148;;;;:::o;25554:305::-;25594:3;25613:20;25631:1;25613:20;:::i;:::-;25608:25;;25647:20;25665:1;25647:20;:::i;:::-;25642:25;;25801:1;25733:66;25729:74;25726:1;25723:81;25720:107;;;25807:18;;:::i;:::-;25720:107;25851:1;25848;25844:9;25837:16;;25554:305;;;;:::o;25865:185::-;25905:1;25922:20;25940:1;25922:20;:::i;:::-;25917:25;;25956:20;25974:1;25956:20;:::i;:::-;25951:25;;25995:1;25985:35;;26000:18;;:::i;:::-;25985:35;26042:1;26039;26035:9;26030:14;;25865:185;;;;:::o;26056:191::-;26096:4;26116:20;26134:1;26116:20;:::i;:::-;26111:25;;26150:20;26168:1;26150:20;:::i;:::-;26145:25;;26189:1;26186;26183:8;26180:34;;;26194:18;;:::i;:::-;26180:34;26239:1;26236;26232:9;26224:17;;26056:191;;;;:::o;26253:96::-;26290:7;26319:24;26337:5;26319:24;:::i;:::-;26308:35;;26253:96;;;:::o;26355:90::-;26389:7;26432:5;26425:13;26418:21;26407:32;;26355:90;;;:::o;26451:149::-;26487:7;26527:66;26520:5;26516:78;26505:89;;26451:149;;;:::o;26606:126::-;26643:7;26683:42;26676:5;26672:54;26661:65;;26606:126;;;:::o;26738:77::-;26775:7;26804:5;26793:16;;26738:77;;;:::o;26821:154::-;26905:6;26900:3;26895;26882:30;26967:1;26958:6;26953:3;26949:16;26942:27;26821:154;;;:::o;26981:307::-;27049:1;27059:113;27073:6;27070:1;27067:13;27059:113;;;27158:1;27153:3;27149:11;27143:18;27139:1;27134:3;27130:11;27123:39;27095:2;27092:1;27088:10;27083:15;;27059:113;;;27190:6;27187:1;27184:13;27181:101;;;27270:1;27261:6;27256:3;27252:16;27245:27;27181:101;27030:258;26981:307;;;:::o;27294:320::-;27338:6;27375:1;27369:4;27365:12;27355:22;;27422:1;27416:4;27412:12;27443:18;27433:81;;27499:4;27491:6;27487:17;27477:27;;27433:81;27561:2;27553:6;27550:14;27530:18;27527:38;27524:84;;;27580:18;;:::i;:::-;27524:84;27345:269;27294:320;;;:::o;27620:281::-;27703:27;27725:4;27703:27;:::i;:::-;27695:6;27691:40;27833:6;27821:10;27818:22;27797:18;27785:10;27782:34;27779:62;27776:88;;;27844:18;;:::i;:::-;27776:88;27884:10;27880:2;27873:22;27663:238;27620:281;;:::o;27907:233::-;27946:3;27969:24;27987:5;27969:24;:::i;:::-;27960:33;;28015:66;28008:5;28005:77;28002:103;;;28085:18;;:::i;:::-;28002:103;28132:1;28125:5;28121:13;28114:20;;27907:233;;;:::o;28146:176::-;28178:1;28195:20;28213:1;28195:20;:::i;:::-;28190:25;;28229:20;28247:1;28229:20;:::i;:::-;28224:25;;28268:1;28258:35;;28273:18;;:::i;:::-;28258:35;28314:1;28311;28307:9;28302:14;;28146:176;;;;:::o;28328:180::-;28376:77;28373:1;28366:88;28473:4;28470:1;28463:15;28497:4;28494:1;28487:15;28514:180;28562:77;28559:1;28552:88;28659:4;28656:1;28649:15;28683:4;28680:1;28673:15;28700:180;28748:77;28745:1;28738:88;28845:4;28842:1;28835:15;28869:4;28866:1;28859:15;28886:180;28934:77;28931:1;28924:88;29031:4;29028:1;29021:15;29055:4;29052:1;29045:15;29072:180;29120:77;29117:1;29110:88;29217:4;29214:1;29207:15;29241:4;29238:1;29231:15;29258:117;29367:1;29364;29357:12;29381:117;29490:1;29487;29480:12;29504:117;29613:1;29610;29603:12;29627:117;29736:1;29733;29726:12;29750:117;29859:1;29856;29849:12;29873:117;29982:1;29979;29972:12;29996:102;30037:6;30088:2;30084:7;30079:2;30072:5;30068:14;30064:28;30054:38;;29996:102;;;:::o;30104:237::-;30244:34;30240:1;30232:6;30228:14;30221:58;30313:20;30308:2;30300:6;30296:15;30289:45;30104:237;:::o;30347:225::-;30487:34;30483:1;30475:6;30471:14;30464:58;30556:8;30551:2;30543:6;30539:15;30532:33;30347:225;:::o;30578:224::-;30718:34;30714:1;30706:6;30702:14;30695:58;30787:7;30782:2;30774:6;30770:15;30763:32;30578:224;:::o;30808:178::-;30948:30;30944:1;30936:6;30932:14;30925:54;30808:178;:::o;30992:223::-;31132:34;31128:1;31120:6;31116:14;31109:58;31201:6;31196:2;31188:6;31184:15;31177:31;30992:223;:::o;31221:175::-;31361:27;31357:1;31349:6;31345:14;31338:51;31221:175;:::o;31402:228::-;31542:34;31538:1;31530:6;31526:14;31519:58;31611:11;31606:2;31598:6;31594:15;31587:36;31402:228;:::o;31636:233::-;31776:34;31772:1;31764:6;31760:14;31753:58;31845:16;31840:2;31832:6;31828:15;31821:41;31636:233;:::o;31875:249::-;32015:34;32011:1;32003:6;31999:14;31992:58;32084:32;32079:2;32071:6;32067:15;32060:57;31875:249;:::o;32130:182::-;32270:34;32266:1;32258:6;32254:14;32247:58;32130:182;:::o;32318:::-;32458:34;32454:1;32446:6;32442:14;32435:58;32318:182;:::o;32506:174::-;32646:26;32642:1;32634:6;32630:14;32623:50;32506:174;:::o;32686:220::-;32826:34;32822:1;32814:6;32810:14;32803:58;32895:3;32890:2;32882:6;32878:15;32871:28;32686:220;:::o;32912:233::-;33052:34;33048:1;33040:6;33036:14;33029:58;33121:16;33116:2;33108:6;33104:15;33097:41;32912:233;:::o;33151:122::-;33224:24;33242:5;33224:24;:::i;:::-;33217:5;33214:35;33204:63;;33263:1;33260;33253:12;33204:63;33151:122;:::o;33279:116::-;33349:21;33364:5;33349:21;:::i;:::-;33342:5;33339:32;33329:60;;33385:1;33382;33375:12;33329:60;33279:116;:::o;33401:120::-;33473:23;33490:5;33473:23;:::i;:::-;33466:5;33463:34;33453:62;;33511:1;33508;33501:12;33453:62;33401:120;:::o;33527:122::-;33600:24;33618:5;33600:24;:::i;:::-;33593:5;33590:35;33580:63;;33639:1;33636;33629:12;33580:63;33527:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2580400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2902",
"checkUpKeep(bytes)": "infinite",
"compareStrings(string,string)": "infinite",
"flowerStage(uint256)": "infinite",
"getApproved(uint256)": "5257",
"growFlower(uint256)": "infinite",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"owner()": "2589",
"ownerOf(uint256)": "3070",
"performUpKeep(bytes)": "infinite",
"renounceOwnership()": "30443",
"safeMint(address)": "infinite",
"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",
"transferOwnership(address)": "30879"
},
"internal": {
"_burn(uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"checkUpKeep(bytes)": "5e6c102e",
"compareStrings(string,string)": "bed34bba",
"flowerStage(uint256)": "d9f2f7a2",
"getApproved(uint256)": "081812fc",
"growFlower(uint256)": "2b98af8d",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"ownerOf(uint256)": "6352211e",
"performUpKeep(bytes)": "6c7c8f17",
"renounceOwnership()": "715018a6",
"safeMint(address)": "40d097c3",
"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",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "_interval",
"type": "uint256"
}
],
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": "bytes",
"name": "",
"type": "bytes"
}
],
"name": "checkUpKeep",
"outputs": [
{
"internalType": "bool",
"name": "upKeepNeeded",
"type": "bool"
},
{
"internalType": "bytes",
"name": "",
"type": "bytes"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "firstString",
"type": "string"
},
{
"internalType": "string",
"name": "secondString",
"type": "string"
}
],
"name": "compareStrings",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "flowerStage",
"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": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "growFlower",
"outputs": [],
"stateMutability": "nonpayable",
"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": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"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": "bytes",
"name": "",
"type": "bytes"
}
],
"name": "performUpKeep",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
}
],
"name": "safeMint",
"outputs": [],
"stateMutability": "nonpayable",
"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"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "_interval",
"type": "uint256"
}
],
"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": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"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": "bytes",
"name": "",
"type": "bytes"
}
],
"name": "checkUpKeep",
"outputs": [
{
"internalType": "bool",
"name": "upKeepNeeded",
"type": "bool"
},
{
"internalType": "bytes",
"name": "",
"type": "bytes"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "firstString",
"type": "string"
},
{
"internalType": "string",
"name": "secondString",
"type": "string"
}
],
"name": "compareStrings",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "flowerStage",
"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": "uint256",
"name": "_tokenId",
"type": "uint256"
}
],
"name": "growFlower",
"outputs": [],
"stateMutability": "nonpayable",
"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": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"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": "bytes",
"name": "",
"type": "bytes"
}
],
"name": "performUpKeep",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_to",
"type": "address"
}
],
"name": "safeMint",
"outputs": [],
"stateMutability": "nonpayable",
"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"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Create a sample ERC721 standard token",
"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}."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"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}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"title": "SampleERC721",
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/SampleERC721.sol": "DynaNFT"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673",
"license": "MIT",
"urls": [
"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2",
"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y"
]
},
"@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/SampleERC721.sol": {
"keccak256": "0xd96cdc8cf5e8fd344b04f1a8f13851a7b39c7b9ed048d9a84c9d52001aa07475",
"license": "GPL-3.0",
"urls": [
"bzz-raw://8f749da2ac8c832cee0acdefea0f9ea2969d89395a6ea4e9fca0d8db8a9885e7",
"dweb:/ipfs/QmWqehLHeKMqziSYCXPGKmdStwrrspZG4HpHossNrzqrn7"
]
}
},
"version": 1
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
/**
* @title SampleERC721
* @dev Create a sample ERC721 standard token
*/
contract DynaNFT is ERC721, ERC721URIStorage, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenIdCounter;
//Metadata information for each stage of the NFT on IPFS.
string[] IPFSUri = [
"https://ipfs.io/ipfs/QmYaTsyxTDnrG4toc8721w62rL4ZBKXQTGj9c9Rpdrntou/seed.json",
"https://ipfs.io/ipfs/QmYaTsyxTDnrG4toc8721w62rL4ZBKXQTGj9c9Rpdrntou/purple-sprout.json",
"https://ipfs.io/ipfs/QmYaTsyxTDnrG4toc8721w62rL4ZBKXQTGj9c9Rpdrntou/purple-blooms.json"
];
uint256 lastTimeStamp;
uint256 interval;
constructor(uint256 _interval) ERC721("DynamicNFT", "dNFTs") {
interval = _interval;
lastTimeStamp = block.timestamp;
}
function checkUpKeep(bytes calldata) external view returns(bool upKeepNeeded, bytes memory) {
upKeepNeeded = (block.timestamp - lastTimeStamp) > interval;
// We don't use the checkData here. The checkData is defined when the UpKeep was registered.
}
function performUpKeep(bytes calldata) external {
// Highly recommended revalidating the upkeep in the performUpkeep function
if((block.timestamp - lastTimeStamp) > interval) {
lastTimeStamp = block.timestamp;
growFlower(0);
}
// We don't use the performData here. The performData is generated by the Keeper's call to checkUpKeep function
}
function safeMint(address _to) public onlyOwner {
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(_to, tokenId);
_setTokenURI(tokenId, IPFSUri[0]);
}
function growFlower(uint256 _tokenId) public {
if(flowerStage(_tokenId) >= 2) {
return;
}
//Get the current stage of the flower and add 1
uint256 newVal = flowerStage(_tokenId) + 1;
// store the new URI
string memory newUri = IPFSUri[newVal];
// update URI
_setTokenURI(_tokenId, newUri);
}
// determine the stage of the flower growth
function flowerStage(uint256 _tokenId) public view returns (uint256) {
string memory _uri = tokenURI(_tokenId);
// Seed
if (compareStrings(_uri, IPFSUri[0])) {
return 0;
}
// Sprout
if (compareStrings(_uri, IPFSUri[1])) {
return 1;
}
// Blossom
return 2;
}
function compareStrings(string memory firstString, string memory secondString) public pure returns (bool) {
return (keccak256(abi.encodePacked((firstString))) == keccak256(abi.encodePacked((secondString))));
}
function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
super._burn(tokenId);
}
function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
return super.tokenURI(tokenId);
}
}
This file has been truncated, but you can view the full file.
{
"id": "16a6197fb3df579dfcd9775537846755",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/SampleERC721.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\nimport \"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol\";\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\nimport \"@openzeppelin/contracts/utils/Counters.sol\";\n\n/**\n * @title SampleERC721\n * @dev Create a sample ERC721 standard token\n */\ncontract DynaNFT is ERC721, ERC721URIStorage, Ownable {\n\n using Counters for Counters.Counter;\n\n Counters.Counter private _tokenIdCounter;\n\n //Metadata information for each stage of the NFT on IPFS.\n string[] IPFSUri = [\n \"https://ipfs.io/ipfs/QmYaTsyxTDnrG4toc8721w62rL4ZBKXQTGj9c9Rpdrntou/seed.json\",\n \"https://ipfs.io/ipfs/QmYaTsyxTDnrG4toc8721w62rL4ZBKXQTGj9c9Rpdrntou/purple-sprout.json\",\n \"https://ipfs.io/ipfs/QmYaTsyxTDnrG4toc8721w62rL4ZBKXQTGj9c9Rpdrntou/purple-blooms.json\"\n ];\n\n uint256 lastTimeStamp;\n uint256 interval;\n\n constructor(uint256 _interval) ERC721(\"DynamicNFT\", \"dNFTs\") {\n interval = _interval;\n lastTimeStamp = block.timestamp;\n }\n\n function checkUpKeep(bytes calldata) external view returns(bool upKeepNeeded, bytes memory) {\n upKeepNeeded = (block.timestamp - lastTimeStamp) > interval;\n // We don't use the checkData here. The checkData is defined when the UpKeep was registered.\n }\n\n function performUpKeep(bytes calldata) external {\n // Highly recommended revalidating the upkeep in the performUpkeep function\n if((block.timestamp - lastTimeStamp) > interval) {\n lastTimeStamp = block.timestamp;\n growFlower(0);\n }\n // We don't use the performData here. The performData is generated by the Keeper's call to checkUpKeep function\n }\n\n function safeMint(address _to) public onlyOwner {\n uint256 tokenId = _tokenIdCounter.current();\n _tokenIdCounter.increment();\n _safeMint(_to, tokenId);\n _setTokenURI(tokenId, IPFSUri[0]);\n }\n\n function growFlower(uint256 _tokenId) public {\n if(flowerStage(_tokenId) >= 2) {\n return;\n }\n\n //Get the current stage of the flower and add 1\n uint256 newVal = flowerStage(_tokenId) + 1;\n // store the new URI\n string memory newUri = IPFSUri[newVal];\n // update URI\n _setTokenURI(_tokenId, newUri);\n }\n\n // determine the stage of the flower growth\n function flowerStage(uint256 _tokenId) public view returns (uint256) {\n string memory _uri = tokenURI(_tokenId);\n // Seed\n if (compareStrings(_uri, IPFSUri[0])) {\n return 0;\n }\n // Sprout\n if (compareStrings(_uri, IPFSUri[1])) {\n return 1;\n }\n // Blossom\n return 2;\n }\n\n function compareStrings(string memory firstString, string memory secondString) public pure returns (bool) {\n return (keccak256(abi.encodePacked((firstString))) == keccak256(abi.encodePacked((secondString))));\n }\n\n function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {\n super._burn(tokenId);\n }\n\n function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {\n return super.tokenURI(tokenId);\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/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\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/access/Ownable.sol": {
"Ownable": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xa94b34880e3c1b0b931662cb1c09e5dfa6662f31cba80e07c5ee71cd135c9673\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://40fb1b5102468f783961d0af743f91b9980cf66b50d1d12009f6bb1869cea4d2\",\"dweb:/ipfs/QmYqEbJML4jB1GHbzD4cUZDtJg5wVwNm3vDJq1GbyDus8y\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@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
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