Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shide1989/f961b0f2fbb8e54791ec3ba805397e4b to your computer and use it in GitHub Desktop.
Save shide1989/f961b0f2fbb8e54791ec3ba805397e4b to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=builtin&optimize=false&runs=200&gist=
// 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.8.2) (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 = _ownerOf(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 or 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 or 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 or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @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 _ownerOf(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, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @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, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @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. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../utils/Context.sol";
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_burn(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.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* 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.8.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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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/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.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _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) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _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);
}
}
// 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.8.2) (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 = _ownerOf(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 or 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 or 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 or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @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 _ownerOf(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, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @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, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @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. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual override {
super._beforeTokenTransfer(from, to, firstTokenId, batchSize);
if (batchSize > 1) {
// Will only trigger during construction. Batch transferring (minting) is not available afterwards.
revert("ERC721Enumerable: consecutive transfers not supported");
}
uint256 tokenId = firstTokenId;
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// 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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// 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.8.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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* 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.8.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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _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) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _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);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "@openzeppelin/contracts@4.8.3/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts@4.8.3/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts@4.8.3/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts@4.8.3/access/Ownable.sol";
import "@openzeppelin/contracts@4.8.3/utils/Counters.sol";
contract Million is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenIdCounter;
constructor() ERC721("Million", "MILL") {}
function safeMint(address to, string memory uri) public onlyOwner {
uint256 tokenId = _tokenIdCounter.current();
_tokenIdCounter.increment();
_safeMint(to, tokenId);
_setTokenURI(tokenId, uri);
}
// The following functions are overrides required by Solidity.
function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
internal
override(ERC721, ERC721Enumerable)
{
super._beforeTokenTransfer(from, to, tokenId, batchSize);
}
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);
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721, ERC721Enumerable)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
}
View raw

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

View raw

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

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_175": {
"entryPoint": null,
"id": 175,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_3242": {
"entryPoint": null,
"id": 3242,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_2052": {
"entryPoint": 202,
"id": 2052,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_111": {
"entryPoint": 210,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"array_dataslot_t_string_storage": {
"entryPoint": 566,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 887,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 702,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 848,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 722,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1042,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 587,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 513,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1012,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 712,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 980,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 466,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 419,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 762,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 603,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 967,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 820,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 616,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 772,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 815,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5231:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:16"
},
"nodeType": "YulFunctionCall",
"src": "87:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:16"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:16",
"type": ""
}
],
"src": "7:99:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:16"
},
"nodeType": "YulFunctionCall",
"src": "150:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:16",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:16"
},
"nodeType": "YulFunctionCall",
"src": "247:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:16"
},
"nodeType": "YulFunctionCall",
"src": "271:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:16"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:16"
},
"nodeType": "YulFunctionCall",
"src": "336:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:16"
},
"nodeType": "YulFunctionCall",
"src": "433:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:16"
},
"nodeType": "YulFunctionCall",
"src": "457:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:16"
},
"nodeType": "YulFunctionCall",
"src": "555:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:16"
},
"nodeType": "YulFunctionCall",
"src": "602:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:16"
},
"nodeType": "YulFunctionCall",
"src": "677:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:16"
},
"nodeType": "YulFunctionCall",
"src": "626:26:16"
},
"nodeType": "YulIf",
"src": "623:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:16"
},
"nodeType": "YulFunctionCall",
"src": "770:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:16"
},
"nodeType": "YulFunctionCall",
"src": "740:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:16"
},
"nodeType": "YulFunctionCall",
"src": "717:38:16"
},
"nodeType": "YulIf",
"src": "714:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:16",
"type": ""
}
],
"src": "484:320:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:16",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:16"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:16",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:16"
},
"nodeType": "YulFunctionCall",
"src": "895:14:16"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:16"
},
{
"nodeType": "YulAssignment",
"src": "918:26:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:16"
},
"nodeType": "YulFunctionCall",
"src": "926:18:16"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:16"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:16",
"type": ""
}
],
"src": "810:141:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:16"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:16",
"type": ""
}
],
"src": "957:93:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:16",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:16"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:16"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:16"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:16"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:16",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:16",
"type": ""
}
],
"src": "1056:107:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:16",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:16",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:16"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:16",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:16"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:16"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:16",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:16"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:16"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:16"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:16"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:16"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:16"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:16"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:16"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:16"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:16"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:16",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:16",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:16",
"type": ""
}
],
"src": "1169:393:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:16"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:16",
"type": ""
}
],
"src": "1568:77:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:16"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:16",
"type": ""
}
],
"src": "1651:60:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:16",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:16"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:16"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:16"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:16"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:16"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:16"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:16",
"type": ""
}
],
"src": "1717:142:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:16"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:16",
"type": ""
}
],
"src": "1865:75:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:16",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:16"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:16"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:16"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:16"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:16"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:16"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:16"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:16"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:16"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:16"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:16"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:16"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:16",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:16",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:16",
"type": ""
}
],
"src": "1946:269:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:16",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:16"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:16",
"type": ""
}
],
"src": "2221:73:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:16",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:16"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:16"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:16"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:16"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:16"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:16"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:16",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:16",
"type": ""
}
],
"src": "2300:189:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:16"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:16"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:16"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:16",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:16"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:16",
"statements": []
},
"src": "2555:120:16"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:16",
"type": ""
}
],
"src": "2495:186:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:16",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:16"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:16"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:16"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:16",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:16"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:16"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:16"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:16"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:16",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:16"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:16"
},
"nodeType": "YulIf",
"src": "3071:49:16"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:16"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:16"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:16"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:16"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:16"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:16"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:16"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:16"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:16"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:16"
},
"nodeType": "YulIf",
"src": "2777:446:16"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:16",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:16",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:16",
"type": ""
}
],
"src": "2687:543:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:16",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:16"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:16"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:16"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:16"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:16",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:16",
"type": ""
}
],
"src": "3236:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:16",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:16",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:16"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:16"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:16"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:16"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:16"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:16"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:16",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:16",
"type": ""
}
],
"src": "3359:169:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:16"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:16"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:16"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:16"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:16",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:16"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:16"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:16",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:16",
"type": ""
}
],
"src": "3533:295:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:16",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:16"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:16"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:16"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:16"
},
"nodeType": "YulIf",
"src": "4038:56:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:16"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:16"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:16"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:16"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:16"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:16"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:16"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:16"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:16"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:16"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:16",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:16"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:16",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:16"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:16",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:16"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:16"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:16"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:16"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:16"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:16"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:16",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:16"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:16",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:16"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:16"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:16",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:16"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:16",
"statements": []
},
"src": "4524:208:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:16"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:16"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:16"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:16"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:16"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:16"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:16"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:16"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:16"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:16"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:16"
},
"nodeType": "YulIf",
"src": "4745:179:16"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:16"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:16",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:16"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:16"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:16"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:16"
},
"nodeType": "YulIf",
"src": "5041:77:16"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:16"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:16"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:16"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:16"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:16"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:16"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:16",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:16"
},
"nodeType": "YulSwitch",
"src": "4335:887:16"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:16",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:16",
"type": ""
}
],
"src": "3833:1395:16"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\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 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 array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600781526020017f4d696c6c696f6e000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d494c4c0000000000000000000000000000000000000000000000000000000081525081600090816200008f919062000412565b508060019081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b61376380620005096000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063d204c45e1461038f578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b600480360381019061014691906122dd565b6103f7565b6040516101589190612325565b60405180910390f35b610169610409565b60405161017691906123d0565b60405180910390f35b61019960048036038101906101949190612428565b61049b565b6040516101a69190612496565b60405180910390f35b6101c960048036038101906101c491906124dd565b6104e1565b005b6101d36105f8565b6040516101e0919061252c565b60405180910390f35b61020360048036038101906101fe9190612547565b610605565b005b61021f600480360381019061021a91906124dd565b610665565b60405161022c919061252c565b60405180910390f35b61024f600480360381019061024a9190612547565b61070a565b005b61026b60048036038101906102669190612428565b61072a565b604051610278919061252c565b60405180910390f35b61029b60048036038101906102969190612428565b61079b565b6040516102a89190612496565b60405180910390f35b6102cb60048036038101906102c6919061259a565b610821565b6040516102d8919061252c565b60405180910390f35b6102e96108d8565b005b6102f36108ec565b6040516103009190612496565b60405180910390f35b610311610916565b60405161031e91906123d0565b60405180910390f35b610341600480360381019061033c91906125f3565b6109a8565b005b61035d60048036038101906103589190612768565b6109be565b005b61037960048036038101906103749190612428565b610a20565b60405161038691906123d0565b60405180910390f35b6103a960048036038101906103a4919061288c565b610a32565b005b6103c560048036038101906103c091906128e8565b610a6b565b6040516103d29190612325565b60405180910390f35b6103f560048036038101906103f0919061259a565b610aff565b005b600061040282610b82565b9050919050565b60606000805461041890612957565b80601f016020809104026020016040519081016040528092919081815260200182805461044490612957565b80156104915780601f1061046657610100808354040283529160200191610491565b820191906000526020600020905b81548152906001019060200180831161047457829003601f168201915b5050505050905090565b60006104a682610bfc565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104ec8261079b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361055c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610553906129fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661057b610c47565b73ffffffffffffffffffffffffffffffffffffffff1614806105aa57506105a9816105a4610c47565b610a6b565b5b6105e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e090612a8c565b60405180910390fd5b6105f38383610c4f565b505050565b6000600880549050905090565b610616610610610c47565b82610d08565b610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90612b1e565b60405180910390fd5b610660838383610d9d565b505050565b600061067083610821565b82106106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890612bb0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610725838383604051806020016040528060008152506109be565b505050565b60006107346105f8565b8210610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612c42565b60405180910390fd5b6008828154811061078957610788612c62565b5b90600052602060002001549050919050565b6000806107a783611096565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90612cdd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890612d6f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e06110d3565b6108ea6000611151565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461092590612957565b80601f016020809104026020016040519081016040528092919081815260200182805461095190612957565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b6109ba6109b3610c47565b8383611217565b5050565b6109cf6109c9610c47565b83610d08565b610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612b1e565b60405180910390fd5b610a1a84848484611383565b50505050565b6060610a2b826113df565b9050919050565b610a3a6110d3565b6000610a46600c6114f1565b9050610a52600c6114ff565b610a5c8382611515565b610a668183611533565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b076110d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612e01565b60405180910390fd5b610b7f81611151565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf55750610bf4826115a0565b5b9050919050565b610c0581611682565b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90612cdd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cc28361079b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d148361079b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d565750610d558185610a6b565b5b80610d9457508373ffffffffffffffffffffffffffffffffffffffff16610d7c8461049b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610dbd8261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612e93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612f25565b60405180910390fd5b610e8f83838360016116c3565b8273ffffffffffffffffffffffffffffffffffffffff16610eaf8261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90612e93565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461109183838360016116d5565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6110db610c47565b73ffffffffffffffffffffffffffffffffffffffff166110f96108ec565b73ffffffffffffffffffffffffffffffffffffffff161461114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690612f91565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612ffd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113769190612325565b60405180910390a3505050565b61138e848484610d9d565b61139a848484846116db565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061308f565b60405180910390fd5b50505050565b60606113ea82610bfc565b6000600a6000848152602001908152602001600020805461140a90612957565b80601f016020809104026020016040519081016040528092919081815260200182805461143690612957565b80156114835780601f1061145857610100808354040283529160200191611483565b820191906000526020600020905b81548152906001019060200180831161146657829003601f168201915b505050505090506000611494611862565b905060008151036114a95781925050506114ec565b6000825111156114de5780826040516020016114c69291906130eb565b604051602081830303815290604052925050506114ec565b6114e784611879565b925050505b919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61152f8282604051806020016040528060008152506118e1565b5050565b61153c82611682565b61157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613181565b60405180910390fd5b80600a6000848152602001908152602001600020908161159b919061334d565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061166b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061167b575061167a8261193c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166116a483611096565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6116cf848484846119a6565b50505050565b50505050565b60006116fc8473ffffffffffffffffffffffffffffffffffffffff16611b04565b15611855578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611725610c47565b8786866040518563ffffffff1660e01b81526004016117479493929190613474565b6020604051808303816000875af192505050801561178357506040513d601f19601f8201168201806040525081019061178091906134d5565b60015b611805573d80600081146117b3576040519150601f19603f3d011682016040523d82523d6000602084013e6117b8565b606091505b5060008151036117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f49061308f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061185a565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061188482610bfc565b600061188e611862565b905060008151116118ae57604051806020016040528060008152506118d9565b806118b884611b27565b6040516020016118c99291906130eb565b6040516020818303038152906040525b915050919050565b6118eb8383611bf5565b6118f860008484846116db565b611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9061308f565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119b284848484611e12565b60018111156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90613574565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a3d57611a3881611e18565b611a7c565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611a7b57611a7a8582611e61565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611abe57611ab981611fce565b611afd565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611afc57611afb848261209f565b5b5b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606060006001611b368461211e565b01905060008167ffffffffffffffff811115611b5557611b5461263d565b5b6040519080825280601f01601f191660200182016040528015611b875781602001600182028036833780820191505090505b509050600082602001820190505b600115611bea578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611bde57611bdd613594565b5b04945060008503611b95575b819350505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061360f565b60405180910390fd5b611c6d81611682565b15611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca49061367b565b60405180910390fd5b611cbb6000838360016116c3565b611cc481611682565b15611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb9061367b565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0e6000838360016116d5565b5050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e6e84610821565b611e7891906136ca565b9050600060076000848152602001908152602001600020549050818114611f5d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fe291906136ca565b905060006009600084815260200190815260200160002054905060006008838154811061201257612011612c62565b5b90600052602060002001549050806008838154811061203457612033612c62565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612083576120826136fe565b5b6001900381819060005260206000200160009055905550505050565b60006120aa83610821565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061217c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161217257612171613594565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121b9576d04ee2d6d415b85acef810000000083816121af576121ae613594565b5b0492506020810190505b662386f26fc1000083106121e857662386f26fc1000083816121de576121dd613594565b5b0492506010810190505b6305f5e1008310612211576305f5e100838161220757612206613594565b5b0492506008810190505b612710831061223657612710838161222c5761222b613594565b5b0492506004810190505b60648310612259576064838161224f5761224e613594565b5b0492506002810190505b600a8310612268576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122ba81612285565b81146122c557600080fd5b50565b6000813590506122d7816122b1565b92915050565b6000602082840312156122f3576122f261227b565b5b6000612301848285016122c8565b91505092915050565b60008115159050919050565b61231f8161230a565b82525050565b600060208201905061233a6000830184612316565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561237a57808201518184015260208101905061235f565b60008484015250505050565b6000601f19601f8301169050919050565b60006123a282612340565b6123ac818561234b565b93506123bc81856020860161235c565b6123c581612386565b840191505092915050565b600060208201905081810360008301526123ea8184612397565b905092915050565b6000819050919050565b612405816123f2565b811461241057600080fd5b50565b600081359050612422816123fc565b92915050565b60006020828403121561243e5761243d61227b565b5b600061244c84828501612413565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061248082612455565b9050919050565b61249081612475565b82525050565b60006020820190506124ab6000830184612487565b92915050565b6124ba81612475565b81146124c557600080fd5b50565b6000813590506124d7816124b1565b92915050565b600080604083850312156124f4576124f361227b565b5b6000612502858286016124c8565b925050602061251385828601612413565b9150509250929050565b612526816123f2565b82525050565b6000602082019050612541600083018461251d565b92915050565b6000806000606084860312156125605761255f61227b565b5b600061256e868287016124c8565b935050602061257f868287016124c8565b925050604061259086828701612413565b9150509250925092565b6000602082840312156125b0576125af61227b565b5b60006125be848285016124c8565b91505092915050565b6125d08161230a565b81146125db57600080fd5b50565b6000813590506125ed816125c7565b92915050565b6000806040838503121561260a5761260961227b565b5b6000612618858286016124c8565b9250506020612629858286016125de565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61267582612386565b810181811067ffffffffffffffff821117156126945761269361263d565b5b80604052505050565b60006126a7612271565b90506126b3828261266c565b919050565b600067ffffffffffffffff8211156126d3576126d261263d565b5b6126dc82612386565b9050602081019050919050565b82818337600083830152505050565b600061270b612706846126b8565b61269d565b90508281526020810184848401111561272757612726612638565b5b6127328482856126e9565b509392505050565b600082601f83011261274f5761274e612633565b5b813561275f8482602086016126f8565b91505092915050565b600080600080608085870312156127825761278161227b565b5b6000612790878288016124c8565b94505060206127a1878288016124c8565b93505060406127b287828801612413565b925050606085013567ffffffffffffffff8111156127d3576127d2612280565b5b6127df8782880161273a565b91505092959194509250565b600067ffffffffffffffff8211156128065761280561263d565b5b61280f82612386565b9050602081019050919050565b600061282f61282a846127eb565b61269d565b90508281526020810184848401111561284b5761284a612638565b5b6128568482856126e9565b509392505050565b600082601f83011261287357612872612633565b5b813561288384826020860161281c565b91505092915050565b600080604083850312156128a3576128a261227b565b5b60006128b1858286016124c8565b925050602083013567ffffffffffffffff8111156128d2576128d1612280565b5b6128de8582860161285e565b9150509250929050565b600080604083850312156128ff576128fe61227b565b5b600061290d858286016124c8565b925050602061291e858286016124c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061296f57607f821691505b60208210810361298257612981612928565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e460218361234b565b91506129ef82612988565b604082019050919050565b60006020820190508181036000830152612a13816129d7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612a76603d8361234b565b9150612a8182612a1a565b604082019050919050565b60006020820190508181036000830152612aa581612a69565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612b08602d8361234b565b9150612b1382612aac565b604082019050919050565b60006020820190508181036000830152612b3781612afb565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612b9a602b8361234b565b9150612ba582612b3e565b604082019050919050565b60006020820190508181036000830152612bc981612b8d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612c2c602c8361234b565b9150612c3782612bd0565b604082019050919050565b60006020820190508181036000830152612c5b81612c1f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612cc760188361234b565b9150612cd282612c91565b602082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612d5960298361234b565b9150612d6482612cfd565b604082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612deb60268361234b565b9150612df682612d8f565b604082019050919050565b60006020820190508181036000830152612e1a81612dde565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612e7d60258361234b565b9150612e8882612e21565b604082019050919050565b60006020820190508181036000830152612eac81612e70565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f0f60248361234b565b9150612f1a82612eb3565b604082019050919050565b60006020820190508181036000830152612f3e81612f02565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7b60208361234b565b9150612f8682612f45565b602082019050919050565b60006020820190508181036000830152612faa81612f6e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612fe760198361234b565b9150612ff282612fb1565b602082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061307960328361234b565b91506130848261301d565b604082019050919050565b600060208201905081810360008301526130a88161306c565b9050919050565b600081905092915050565b60006130c582612340565b6130cf81856130af565b93506130df81856020860161235c565b80840191505092915050565b60006130f782856130ba565b915061310382846130ba565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061316b602e8361234b565b91506131768261310f565b604082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131c6565b61320d86836131c6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061324a613245613240846123f2565b613225565b6123f2565b9050919050565b6000819050919050565b6132648361322f565b61327861327082613251565b8484546131d3565b825550505050565b600090565b61328d613280565b61329881848461325b565b505050565b5b818110156132bc576132b1600082613285565b60018101905061329e565b5050565b601f821115613301576132d2816131a1565b6132db846131b6565b810160208510156132ea578190505b6132fe6132f6856131b6565b83018261329d565b50505b505050565b600082821c905092915050565b600061332460001984600802613306565b1980831691505092915050565b600061333d8383613313565b9150826002028217905092915050565b61335682612340565b67ffffffffffffffff81111561336f5761336e61263d565b5b6133798254612957565b6133848282856132c0565b600060209050601f8311600181146133b757600084156133a5578287015190505b6133af8582613331565b865550613417565b601f1984166133c5866131a1565b60005b828110156133ed578489015182556001820191506020850194506020810190506133c8565b8683101561340a5784890151613406601f891682613313565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b60006134468261341f565b613450818561342a565b935061346081856020860161235c565b61346981612386565b840191505092915050565b60006080820190506134896000830187612487565b6134966020830186612487565b6134a3604083018561251d565b81810360608301526134b5818461343b565b905095945050505050565b6000815190506134cf816122b1565b92915050565b6000602082840312156134eb576134ea61227b565b5b60006134f9848285016134c0565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061355e60358361234b565b915061356982613502565b604082019050919050565b6000602082019050818103600083015261358d81613551565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135f960208361234b565b9150613604826135c3565b602082019050919050565b60006020820190508181036000830152613628816135ec565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613665601c8361234b565b91506136708261362f565b602082019050919050565b6000602082019050818103600083015261369481613658565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136d5826123f2565b91506136e0836123f2565b92508282039050818111156136f8576136f761369b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212203b0753dfb286ef5e5f005791134627dfa4fbf843582dc170d1b0bb08df40ab4364736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D696C6C696F6E00000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D494C4C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP POP POP PUSH3 0xC4 PUSH3 0xB8 PUSH3 0xCA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xD2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x4F9 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xB 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 PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 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 PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x21A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x230 JUMPI PUSH3 0x22F PUSH3 0x1D2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x29A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x25B JUMP JUMPDEST PUSH3 0x2A6 DUP7 DUP4 PUSH3 0x25B JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2F3 PUSH3 0x2ED PUSH3 0x2E7 DUP5 PUSH3 0x2BE JUMP JUMPDEST PUSH3 0x2C8 JUMP JUMPDEST PUSH3 0x2BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x30F DUP4 PUSH3 0x2D2 JUMP JUMPDEST PUSH3 0x327 PUSH3 0x31E DUP3 PUSH3 0x2FA JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x268 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x33E PUSH3 0x32F JUMP JUMPDEST PUSH3 0x34B DUP2 DUP5 DUP5 PUSH3 0x304 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x373 JUMPI PUSH3 0x367 PUSH1 0x0 DUP3 PUSH3 0x334 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x351 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x3C2 JUMPI PUSH3 0x38C DUP2 PUSH3 0x236 JUMP JUMPDEST PUSH3 0x397 DUP5 PUSH3 0x24B JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x3A7 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x3BF PUSH3 0x3B6 DUP6 PUSH3 0x24B JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x350 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3E7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x3C7 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x402 DUP4 DUP4 PUSH3 0x3D4 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x41D DUP3 PUSH3 0x198 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x439 JUMPI PUSH3 0x438 PUSH3 0x1A3 JUMP JUMPDEST JUMPDEST PUSH3 0x445 DUP3 SLOAD PUSH3 0x201 JUMP JUMPDEST PUSH3 0x452 DUP3 DUP3 DUP6 PUSH3 0x377 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x48A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x475 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x481 DUP6 DUP3 PUSH3 0x3F4 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x4F1 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x49A DUP7 PUSH3 0x236 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x4C4 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x49D JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x4E4 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x4E0 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x3D4 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x3763 DUP1 PUSH3 0x509 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 0x12C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x343 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x35F JUMPI DUP1 PUSH4 0xD204C45E EQ PUSH2 0x38F JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3DB JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2E1 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2EB JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x309 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x327 JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x205 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x235 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x281 JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x131 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x17F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1AF JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1CB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x146 SWAP2 SWAP1 PUSH2 0x22DD JUMP JUMPDEST PUSH2 0x3F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x158 SWAP2 SWAP1 PUSH2 0x2325 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x169 PUSH2 0x409 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x176 SWAP2 SWAP1 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x199 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x194 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0x49B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A6 SWAP2 SWAP1 PUSH2 0x2496 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C4 SWAP2 SWAP1 PUSH2 0x24DD JUMP JUMPDEST PUSH2 0x4E1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1D3 PUSH2 0x5F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E0 SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x203 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FE SWAP2 SWAP1 PUSH2 0x2547 JUMP JUMPDEST PUSH2 0x605 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21A SWAP2 SWAP1 PUSH2 0x24DD JUMP JUMPDEST PUSH2 0x665 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22C SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x24A SWAP2 SWAP1 PUSH2 0x2547 JUMP JUMPDEST PUSH2 0x70A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0x72A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0x79B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x2496 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x259A JUMP JUMPDEST PUSH2 0x821 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E9 PUSH2 0x8D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2F3 PUSH2 0x8EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x2496 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x311 PUSH2 0x916 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31E SWAP2 SWAP1 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33C SWAP2 SWAP1 PUSH2 0x25F3 JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x35D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x358 SWAP2 SWAP1 PUSH2 0x2768 JUMP JUMPDEST PUSH2 0x9BE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x379 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x374 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0xA20 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x386 SWAP2 SWAP1 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A4 SWAP2 SWAP1 PUSH2 0x288C JUMP JUMPDEST PUSH2 0xA32 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C0 SWAP2 SWAP1 PUSH2 0x28E8 JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D2 SWAP2 SWAP1 PUSH2 0x2325 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F0 SWAP2 SWAP1 PUSH2 0x259A JUMP JUMPDEST PUSH2 0xAFF JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH2 0x402 DUP3 PUSH2 0xB82 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x418 SWAP1 PUSH2 0x2957 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 0x444 SWAP1 PUSH2 0x2957 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x491 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x466 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x491 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 0x474 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A6 DUP3 PUSH2 0xBFC 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 0x4EC DUP3 PUSH2 0x79B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x55C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x553 SWAP1 PUSH2 0x29FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x57B PUSH2 0xC47 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5AA JUMPI POP PUSH2 0x5A9 DUP2 PUSH2 0x5A4 PUSH2 0xC47 JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST JUMPDEST PUSH2 0x5E9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E0 SWAP1 PUSH2 0x2A8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5F3 DUP4 DUP4 PUSH2 0xC4F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x616 PUSH2 0x610 PUSH2 0xC47 JUMP JUMPDEST DUP3 PUSH2 0xD08 JUMP JUMPDEST PUSH2 0x655 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64C SWAP1 PUSH2 0x2B1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x660 DUP4 DUP4 DUP4 PUSH2 0xD9D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x670 DUP4 PUSH2 0x821 JUMP JUMPDEST DUP3 LT PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A8 SWAP1 PUSH2 0x2BB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x725 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9BE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x734 PUSH2 0x5F8 JUMP JUMPDEST DUP3 LT PUSH2 0x775 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x76C SWAP1 PUSH2 0x2C42 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x789 JUMPI PUSH2 0x788 PUSH2 0x2C62 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7A7 DUP4 PUSH2 0x1096 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x80F SWAP1 PUSH2 0x2CDD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x891 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x888 SWAP1 PUSH2 0x2D6F 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 0x8E0 PUSH2 0x10D3 JUMP JUMPDEST PUSH2 0x8EA PUSH1 0x0 PUSH2 0x1151 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB 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 0x925 SWAP1 PUSH2 0x2957 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 0x951 SWAP1 PUSH2 0x2957 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x99E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x973 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x99E 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 0x981 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9BA PUSH2 0x9B3 PUSH2 0xC47 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1217 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x9CF PUSH2 0x9C9 PUSH2 0xC47 JUMP JUMPDEST DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH2 0xA0E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA05 SWAP1 PUSH2 0x2B1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA1A DUP5 DUP5 DUP5 DUP5 PUSH2 0x1383 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA2B DUP3 PUSH2 0x13DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA3A PUSH2 0x10D3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA46 PUSH1 0xC PUSH2 0x14F1 JUMP JUMPDEST SWAP1 POP PUSH2 0xA52 PUSH1 0xC PUSH2 0x14FF JUMP JUMPDEST PUSH2 0xA5C DUP4 DUP3 PUSH2 0x1515 JUMP JUMPDEST PUSH2 0xA66 DUP2 DUP4 PUSH2 0x1533 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB07 PUSH2 0x10D3 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB76 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6D SWAP1 PUSH2 0x2E01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7F DUP2 PUSH2 0x1151 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xBF5 JUMPI POP PUSH2 0xBF4 DUP3 PUSH2 0x15A0 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC05 DUP2 PUSH2 0x1682 JUMP JUMPDEST PUSH2 0xC44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3B SWAP1 PUSH2 0x2CDD 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 0xCC2 DUP4 PUSH2 0x79B 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 0xD14 DUP4 PUSH2 0x79B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD56 JUMPI POP PUSH2 0xD55 DUP2 DUP6 PUSH2 0xA6B JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD94 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD7C DUP5 PUSH2 0x49B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDBD DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE13 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE0A SWAP1 PUSH2 0x2E93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE82 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE79 SWAP1 PUSH2 0x2F25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE8F DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x16C3 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xEAF DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF05 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEFC SWAP1 PUSH2 0x2E93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE 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 SUB 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 ADD 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 0x1091 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x16D5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 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 PUSH2 0x10DB PUSH2 0xC47 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x10F9 PUSH2 0x8EC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x114F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1146 SWAP1 PUSH2 0x2F91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xB 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 SUB PUSH2 0x1285 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127C SWAP1 PUSH2 0x2FFD 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 0x1376 SWAP2 SWAP1 PUSH2 0x2325 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x138E DUP5 DUP5 DUP5 PUSH2 0xD9D JUMP JUMPDEST PUSH2 0x139A DUP5 DUP5 DUP5 DUP5 PUSH2 0x16DB JUMP JUMPDEST PUSH2 0x13D9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13D0 SWAP1 PUSH2 0x308F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x13EA DUP3 PUSH2 0xBFC JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x140A SWAP1 PUSH2 0x2957 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 0x1436 SWAP1 PUSH2 0x2957 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1483 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1458 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1483 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 0x1466 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x1494 PUSH2 0x1862 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x14A9 JUMPI DUP2 SWAP3 POP POP POP PUSH2 0x14EC JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0x14DE JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x14C6 SWAP3 SWAP2 SWAP1 PUSH2 0x30EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP PUSH2 0x14EC JUMP JUMPDEST PUSH2 0x14E7 DUP5 PUSH2 0x1879 JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP 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 0x152F DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x18E1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x153C DUP3 PUSH2 0x1682 JUMP JUMPDEST PUSH2 0x157B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1572 SWAP1 PUSH2 0x3181 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP2 PUSH2 0x159B SWAP2 SWAP1 PUSH2 0x334D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x166B JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x167B JUMPI POP PUSH2 0x167A DUP3 PUSH2 0x193C JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x16A4 DUP4 PUSH2 0x1096 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x16CF DUP5 DUP5 DUP5 DUP5 PUSH2 0x19A6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16FC DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1B04 JUMP JUMPDEST ISZERO PUSH2 0x1855 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1725 PUSH2 0xC47 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1747 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3474 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1783 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 0x1780 SWAP2 SWAP1 PUSH2 0x34D5 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1805 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x17B3 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 0x17B8 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x17FD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17F4 SWAP1 PUSH2 0x308F 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 0x185A 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 0x1884 DUP3 PUSH2 0xBFC JUMP JUMPDEST PUSH1 0x0 PUSH2 0x188E PUSH2 0x1862 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x18AE JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x18D9 JUMP JUMPDEST DUP1 PUSH2 0x18B8 DUP5 PUSH2 0x1B27 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x18C9 SWAP3 SWAP2 SWAP1 PUSH2 0x30EB 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 PUSH2 0x18EB DUP4 DUP4 PUSH2 0x1BF5 JUMP JUMPDEST PUSH2 0x18F8 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x16DB JUMP JUMPDEST PUSH2 0x1937 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x192E SWAP1 PUSH2 0x308F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP 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 0x19B2 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1E12 JUMP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x19F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19ED SWAP1 PUSH2 0x3574 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1A3D JUMPI PUSH2 0x1A38 DUP2 PUSH2 0x1E18 JUMP JUMPDEST PUSH2 0x1A7C JUMP JUMPDEST DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A7B JUMPI PUSH2 0x1A7A DUP6 DUP3 PUSH2 0x1E61 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1ABE JUMPI PUSH2 0x1AB9 DUP2 PUSH2 0x1FCE JUMP JUMPDEST PUSH2 0x1AFD JUMP JUMPDEST DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1AFC JUMPI PUSH2 0x1AFB DUP5 DUP3 PUSH2 0x209F JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x1 PUSH2 0x1B36 DUP5 PUSH2 0x211E JUMP JUMPDEST ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B55 JUMPI PUSH2 0x1B54 PUSH2 0x263D 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 0x1B87 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP3 PUSH1 0x20 ADD DUP3 ADD SWAP1 POP JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x1BEA JUMPI DUP1 DUP1 PUSH1 0x1 SWAP1 SUB SWAP2 POP POP PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DUP2 PUSH2 0x1BDE JUMPI PUSH2 0x1BDD PUSH2 0x3594 JUMP JUMPDEST JUMPDEST DIV SWAP5 POP PUSH1 0x0 DUP6 SUB PUSH2 0x1B95 JUMPI JUMPDEST DUP2 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1C64 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C5B SWAP1 PUSH2 0x360F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C6D DUP2 PUSH2 0x1682 JUMP JUMPDEST ISZERO PUSH2 0x1CAD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CA4 SWAP1 PUSH2 0x367B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1CBB PUSH1 0x0 DUP4 DUP4 PUSH1 0x1 PUSH2 0x16C3 JUMP JUMPDEST PUSH2 0x1CC4 DUP2 PUSH2 0x1682 JUMP JUMPDEST ISZERO PUSH2 0x1D04 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CFB SWAP1 PUSH2 0x367B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 ADD 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 0x1E0E PUSH1 0x0 DUP4 DUP4 PUSH1 0x1 PUSH2 0x16D5 JUMP JUMPDEST POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x1E6E DUP5 PUSH2 0x821 JUMP JUMPDEST PUSH2 0x1E78 SWAP2 SWAP1 PUSH2 0x36CA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x1F5D JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH2 0x1FE2 SWAP2 SWAP1 PUSH2 0x36CA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2012 JUMPI PUSH2 0x2011 PUSH2 0x2C62 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2034 JUMPI PUSH2 0x2033 PUSH2 0x2C62 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x2083 JUMPI PUSH2 0x2082 PUSH2 0x36FE JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20AA DUP4 PUSH2 0x821 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH2 0x217C JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DUP2 PUSH2 0x2172 JUMPI PUSH2 0x2171 PUSH2 0x3594 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x21B9 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DUP2 PUSH2 0x21AF JUMPI PUSH2 0x21AE PUSH2 0x3594 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x21E8 JUMPI PUSH7 0x2386F26FC10000 DUP4 DUP2 PUSH2 0x21DE JUMPI PUSH2 0x21DD PUSH2 0x3594 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x2211 JUMPI PUSH4 0x5F5E100 DUP4 DUP2 PUSH2 0x2207 JUMPI PUSH2 0x2206 PUSH2 0x3594 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x2236 JUMPI PUSH2 0x2710 DUP4 DUP2 PUSH2 0x222C JUMPI PUSH2 0x222B PUSH2 0x3594 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x2259 JUMPI PUSH1 0x64 DUP4 DUP2 PUSH2 0x224F JUMPI PUSH2 0x224E PUSH2 0x3594 JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x2268 JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x22BA DUP2 PUSH2 0x2285 JUMP JUMPDEST DUP2 EQ PUSH2 0x22C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x22D7 DUP2 PUSH2 0x22B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x22F3 JUMPI PUSH2 0x22F2 PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2301 DUP5 DUP3 DUP6 ADD PUSH2 0x22C8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x231F DUP2 PUSH2 0x230A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x233A PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2316 JUMP JUMPDEST SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x237A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x235F JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23A2 DUP3 PUSH2 0x2340 JUMP JUMPDEST PUSH2 0x23AC DUP2 DUP6 PUSH2 0x234B JUMP JUMPDEST SWAP4 POP PUSH2 0x23BC DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x235C JUMP JUMPDEST PUSH2 0x23C5 DUP2 PUSH2 0x2386 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x23EA DUP2 DUP5 PUSH2 0x2397 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2405 DUP2 PUSH2 0x23F2 JUMP JUMPDEST DUP2 EQ PUSH2 0x2410 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2422 DUP2 PUSH2 0x23FC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x243E JUMPI PUSH2 0x243D PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x244C DUP5 DUP3 DUP6 ADD PUSH2 0x2413 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2480 DUP3 PUSH2 0x2455 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2490 DUP2 PUSH2 0x2475 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x24AB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2487 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x24BA DUP2 PUSH2 0x2475 JUMP JUMPDEST DUP2 EQ PUSH2 0x24C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x24D7 DUP2 PUSH2 0x24B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x24F4 JUMPI PUSH2 0x24F3 PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2502 DUP6 DUP3 DUP7 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2513 DUP6 DUP3 DUP7 ADD PUSH2 0x2413 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x2526 DUP2 PUSH2 0x23F2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2541 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x251D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x2560 JUMPI PUSH2 0x255F PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x256E DUP7 DUP3 DUP8 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x257F DUP7 DUP3 DUP8 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2590 DUP7 DUP3 DUP8 ADD PUSH2 0x2413 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x25B0 JUMPI PUSH2 0x25AF PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x25BE DUP5 DUP3 DUP6 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x25D0 DUP2 PUSH2 0x230A JUMP JUMPDEST DUP2 EQ PUSH2 0x25DB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x25ED DUP2 PUSH2 0x25C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x260A JUMPI PUSH2 0x2609 PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2618 DUP6 DUP3 DUP7 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2629 DUP6 DUP3 DUP7 ADD PUSH2 0x25DE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2675 DUP3 PUSH2 0x2386 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2694 JUMPI PUSH2 0x2693 PUSH2 0x263D JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26A7 PUSH2 0x2271 JUMP JUMPDEST SWAP1 POP PUSH2 0x26B3 DUP3 DUP3 PUSH2 0x266C JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x26D3 JUMPI PUSH2 0x26D2 PUSH2 0x263D JUMP JUMPDEST JUMPDEST PUSH2 0x26DC DUP3 PUSH2 0x2386 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x270B PUSH2 0x2706 DUP5 PUSH2 0x26B8 JUMP JUMPDEST PUSH2 0x269D JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2727 JUMPI PUSH2 0x2726 PUSH2 0x2638 JUMP JUMPDEST JUMPDEST PUSH2 0x2732 DUP5 DUP3 DUP6 PUSH2 0x26E9 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x274F JUMPI PUSH2 0x274E PUSH2 0x2633 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x275F DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x26F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x2782 JUMPI PUSH2 0x2781 PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2790 DUP8 DUP3 DUP9 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x27A1 DUP8 DUP3 DUP9 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x27B2 DUP8 DUP3 DUP9 ADD PUSH2 0x2413 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x27D3 JUMPI PUSH2 0x27D2 PUSH2 0x2280 JUMP JUMPDEST JUMPDEST PUSH2 0x27DF DUP8 DUP3 DUP9 ADD PUSH2 0x273A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2806 JUMPI PUSH2 0x2805 PUSH2 0x263D JUMP JUMPDEST JUMPDEST PUSH2 0x280F DUP3 PUSH2 0x2386 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x282F PUSH2 0x282A DUP5 PUSH2 0x27EB JUMP JUMPDEST PUSH2 0x269D JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x284B JUMPI PUSH2 0x284A PUSH2 0x2638 JUMP JUMPDEST JUMPDEST PUSH2 0x2856 DUP5 DUP3 DUP6 PUSH2 0x26E9 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2873 JUMPI PUSH2 0x2872 PUSH2 0x2633 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2883 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x281C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x28A3 JUMPI PUSH2 0x28A2 PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x28B1 DUP6 DUP3 DUP7 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x28D2 JUMPI PUSH2 0x28D1 PUSH2 0x2280 JUMP JUMPDEST JUMPDEST PUSH2 0x28DE DUP6 DUP3 DUP7 ADD PUSH2 0x285E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x28FF JUMPI PUSH2 0x28FE PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x290D DUP6 DUP3 DUP7 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x291E DUP6 DUP3 DUP7 ADD PUSH2 0x24C8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x296F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2982 JUMPI PUSH2 0x2981 PUSH2 0x2928 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x29E4 PUSH1 0x21 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x29EF DUP3 PUSH2 0x2988 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2A13 DUP2 PUSH2 0x29D7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2A76 PUSH1 0x3D DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2A81 DUP3 PUSH2 0x2A1A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2AA5 DUP2 PUSH2 0x2A69 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206F7220617070726F76656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B08 PUSH1 0x2D DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2B13 DUP3 PUSH2 0x2AAC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B37 DUP2 PUSH2 0x2AFB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B9A PUSH1 0x2B DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2BA5 DUP3 PUSH2 0x2B3E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2BC9 DUP2 PUSH2 0x2B8D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C2C PUSH1 0x2C DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2C37 DUP3 PUSH2 0x2BD0 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2C5B DUP2 PUSH2 0x2C1F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CC7 PUSH1 0x18 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2CD2 DUP3 PUSH2 0x2C91 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2CF6 DUP2 PUSH2 0x2CBA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D59 PUSH1 0x29 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2D64 DUP3 PUSH2 0x2CFD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2D88 DUP2 PUSH2 0x2D4C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2DEB PUSH1 0x26 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2DF6 DUP3 PUSH2 0x2D8F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2E1A DUP2 PUSH2 0x2DDE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E7D PUSH1 0x25 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2E88 DUP3 PUSH2 0x2E21 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2EAC DUP2 PUSH2 0x2E70 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F0F PUSH1 0x24 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2F1A DUP3 PUSH2 0x2EB3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2F3E DUP2 PUSH2 0x2F02 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2F7B PUSH1 0x20 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2F86 DUP3 PUSH2 0x2F45 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2FAA DUP2 PUSH2 0x2F6E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FE7 PUSH1 0x19 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x2FF2 DUP3 PUSH2 0x2FB1 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3016 DUP2 PUSH2 0x2FDA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3079 PUSH1 0x32 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x3084 DUP3 PUSH2 0x301D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x30A8 DUP2 PUSH2 0x306C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30C5 DUP3 PUSH2 0x2340 JUMP JUMPDEST PUSH2 0x30CF DUP2 DUP6 PUSH2 0x30AF JUMP JUMPDEST SWAP4 POP PUSH2 0x30DF DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x235C JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x30F7 DUP3 DUP6 PUSH2 0x30BA JUMP JUMPDEST SWAP2 POP PUSH2 0x3103 DUP3 DUP5 PUSH2 0x30BA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6578697374656E7420746F6B656E000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x316B PUSH1 0x2E DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x3176 DUP3 PUSH2 0x310F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x319A DUP2 PUSH2 0x315E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x3203 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x31C6 JUMP JUMPDEST PUSH2 0x320D DUP7 DUP4 PUSH2 0x31C6 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x324A PUSH2 0x3245 PUSH2 0x3240 DUP5 PUSH2 0x23F2 JUMP JUMPDEST PUSH2 0x3225 JUMP JUMPDEST PUSH2 0x23F2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3264 DUP4 PUSH2 0x322F JUMP JUMPDEST PUSH2 0x3278 PUSH2 0x3270 DUP3 PUSH2 0x3251 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x31D3 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x328D PUSH2 0x3280 JUMP JUMPDEST PUSH2 0x3298 DUP2 DUP5 DUP5 PUSH2 0x325B JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x32BC JUMPI PUSH2 0x32B1 PUSH1 0x0 DUP3 PUSH2 0x3285 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x329E JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x3301 JUMPI PUSH2 0x32D2 DUP2 PUSH2 0x31A1 JUMP JUMPDEST PUSH2 0x32DB DUP5 PUSH2 0x31B6 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x32EA JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x32FE PUSH2 0x32F6 DUP6 PUSH2 0x31B6 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x329D JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3324 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x3306 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x333D DUP4 DUP4 PUSH2 0x3313 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3356 DUP3 PUSH2 0x2340 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x336F JUMPI PUSH2 0x336E PUSH2 0x263D JUMP JUMPDEST JUMPDEST PUSH2 0x3379 DUP3 SLOAD PUSH2 0x2957 JUMP JUMPDEST PUSH2 0x3384 DUP3 DUP3 DUP6 PUSH2 0x32C0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x33B7 JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x33A5 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x33AF DUP6 DUP3 PUSH2 0x3331 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x3417 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x33C5 DUP7 PUSH2 0x31A1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x33ED JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x33C8 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x340A JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x3406 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x3313 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3446 DUP3 PUSH2 0x341F JUMP JUMPDEST PUSH2 0x3450 DUP2 DUP6 PUSH2 0x342A JUMP JUMPDEST SWAP4 POP PUSH2 0x3460 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x235C JUMP JUMPDEST PUSH2 0x3469 DUP2 PUSH2 0x2386 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3489 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x2487 JUMP JUMPDEST PUSH2 0x3496 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2487 JUMP JUMPDEST PUSH2 0x34A3 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x251D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x34B5 DUP2 DUP5 PUSH2 0x343B JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x34CF DUP2 PUSH2 0x22B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x34EB JUMPI PUSH2 0x34EA PUSH2 0x227B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x34F9 DUP5 DUP3 DUP6 ADD PUSH2 0x34C0 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20636F6E7365637574697665207472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616E7366657273206E6F7420737570706F727465640000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x355E PUSH1 0x35 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x3569 DUP3 PUSH2 0x3502 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x358D DUP2 PUSH2 0x3551 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35F9 PUSH1 0x20 DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x3604 DUP3 PUSH2 0x35C3 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3628 DUP2 PUSH2 0x35EC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3665 PUSH1 0x1C DUP4 PUSH2 0x234B JUMP JUMPDEST SWAP2 POP PUSH2 0x3670 DUP3 PUSH2 0x362F JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3694 DUP2 PUSH2 0x3658 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x36D5 DUP3 PUSH2 0x23F2 JUMP JUMPDEST SWAP2 POP PUSH2 0x36E0 DUP4 PUSH2 0x23F2 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x36F8 JUMPI PUSH2 0x36F7 PUSH2 0x369B JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODESIZE SMOD MSTORE8 0xDF 0xB2 DUP7 0xEF 0x5E 0x5F STOP JUMPI SWAP2 SGT CHAINID 0x27 0xDF LOG4 0xFB 0xF8 NUMBER PC 0x2D 0xC1 PUSH17 0xD1B0BB08DF40AB4364736F6C6343000812 STOP CALLER ",
"sourceMap": "410:1276:15:-:0;;;577:42;;;;;;;;;;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;:::-;410:1276:15;;640:96:9;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;7:99:16:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;410:1276:15:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_addTokenToAllTokensEnumeration_1415": {
"entryPoint": 7704,
"id": 1415,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1395": {
"entryPoint": 8351,
"id": 1395,
"parameterSlots": 2,
"returnSlots": 0
},
"@_afterTokenTransfer_1023": {
"entryPoint": 5845,
"id": 1023,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_889": {
"entryPoint": 3151,
"id": 889,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_326": {
"entryPoint": 6242,
"id": 326,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1010": {
"entryPoint": 7698,
"id": 1010,
"parameterSlots": 4,
"returnSlots": 0
},
"@_beforeTokenTransfer_1365": {
"entryPoint": 6566,
"id": 1365,
"parameterSlots": 4,
"returnSlots": 0
},
"@_beforeTokenTransfer_3297": {
"entryPoint": 5827,
"id": 3297,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkOnERC721Received_997": {
"entryPoint": 5851,
"id": 997,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkOwner_54": {
"entryPoint": 4307,
"id": 54,
"parameterSlots": 0,
"returnSlots": 0
},
"@_exists_558": {
"entryPoint": 5762,
"id": 558,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_592": {
"entryPoint": 3336,
"id": 592,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_713": {
"entryPoint": 7157,
"id": 713,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2052": {
"entryPoint": 3143,
"id": 2052,
"parameterSlots": 0,
"returnSlots": 1
},
"@_ownerOf_540": {
"entryPoint": 4246,
"id": 540,
"parameterSlots": 1,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1526": {
"entryPoint": 8142,
"id": 1526,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1478": {
"entryPoint": 7777,
"id": 1478,
"parameterSlots": 2,
"returnSlots": 0
},
"@_requireMinted_935": {
"entryPoint": 3068,
"id": 935,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeMint_607": {
"entryPoint": 5397,
"id": 607,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_636": {
"entryPoint": 6369,
"id": 636,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_527": {
"entryPoint": 4995,
"id": 527,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_921": {
"entryPoint": 4631,
"id": 921,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setTokenURI_1621": {
"entryPoint": 5427,
"id": 1621,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 4433,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_865": {
"entryPoint": 3485,
"id": 865,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_369": {
"entryPoint": 1249,
"id": 369,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_230": {
"entryPoint": 2081,
"id": 230,
"parameterSlots": 1,
"returnSlots": 1
},
"@current_2080": {
"entryPoint": 5361,
"id": 2080,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_387": {
"entryPoint": 1179,
"id": 387,
"parameterSlots": 1,
"returnSlots": 1
},
"@increment_2094": {
"entryPoint": 5375,
"id": 2094,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_422": {
"entryPoint": 2667,
"id": 422,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1728": {
"entryPoint": 6916,
"id": 1728,
"parameterSlots": 1,
"returnSlots": 1
},
"@log10_3049": {
"entryPoint": 8478,
"id": 3049,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_268": {
"entryPoint": 1033,
"id": 268,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_258": {
"entryPoint": 1947,
"id": 258,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_40": {
"entryPoint": 2284,
"id": 40,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_68": {
"entryPoint": 2264,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeMint_3273": {
"entryPoint": 2610,
"id": 3273,
"parameterSlots": 2,
"returnSlots": 0
},
"@safeTransferFrom_468": {
"entryPoint": 1802,
"id": 468,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_498": {
"entryPoint": 2494,
"id": 498,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_404": {
"entryPoint": 2472,
"id": 404,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1223": {
"entryPoint": 2946,
"id": 1223,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_206": {
"entryPoint": 5536,
"id": 206,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2334": {
"entryPoint": 6460,
"id": 2334,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_3344": {
"entryPoint": 1015,
"id": 3344,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_278": {
"entryPoint": 2326,
"id": 278,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_2194": {
"entryPoint": 6951,
"id": 2194,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1285": {
"entryPoint": 1834,
"id": 1285,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1251": {
"entryPoint": 1637,
"id": 1251,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_1599": {
"entryPoint": 5087,
"id": 1599,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_317": {
"entryPoint": 6265,
"id": 317,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_3328": {
"entryPoint": 2592,
"id": 3328,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1262": {
"entryPoint": 1528,
"id": 1262,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_449": {
"entryPoint": 1541,
"id": 449,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_91": {
"entryPoint": 2815,
"id": 91,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 9976,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 10268,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 9416,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 9694,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 8904,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 13504,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 10042,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 10334,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 9235,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 9626,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 10472,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 9543,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 10088,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 9715,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_string_memory_ptr": {
"entryPoint": 10380,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 9437,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 8925,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 13525,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 9256,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 9351,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 8982,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 13371,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9111,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12474,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11003,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11149,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12396,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11742,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11888,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12034,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12250,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11596,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12638,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13804,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12142,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11450,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10711,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10857,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11295,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13649,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 9501,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 12523,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 9366,
"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": 13428,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 8997,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9168,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11184,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12431,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11777,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11923,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13947,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12069,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12285,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11631,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12673,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13839,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12177,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11485,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10746,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10892,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11330,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13684,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 9516,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 9885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 8817,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 9912,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 10219,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 12705,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 13343,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 9024,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 13354,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 9035,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12463,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 14026,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 12992,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 9333,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 8970,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 8837,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 9301,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 9202,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 12957,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 12847,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 13133,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 9961,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 9052,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 12726,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 10583,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 13105,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 9836,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 12837,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 13075,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 13979,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 13716,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 10536,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 14078,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 11362,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9789,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 12881,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 9779,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 9784,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 8832,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8827,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 9094,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 12742,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 13062,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 12933,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af": {
"entryPoint": 10924,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c": {
"entryPoint": 11070,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 12317,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 11663,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 11809,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 13871,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 11955,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 12209,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": {
"entryPoint": 11517,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4": {
"entryPoint": 12559,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 13763,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 12101,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": {
"entryPoint": 11409,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 10632,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83": {
"entryPoint": 10778,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc": {
"entryPoint": 11216,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314": {
"entryPoint": 13570,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 12755,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 12891,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9393,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 9671,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 8881,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9212,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 12928,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:38139:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:16"
},
"nodeType": "YulFunctionCall",
"src": "67:9:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:16"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:16",
"type": ""
}
],
"src": "7:75:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:16"
},
"nodeType": "YulFunctionCall",
"src": "187:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:16"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:16"
},
"nodeType": "YulFunctionCall",
"src": "310:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:16"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:16",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:16"
},
"nodeType": "YulFunctionCall",
"src": "399:78:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:16"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:16",
"type": ""
}
],
"src": "334:149:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:16"
},
"nodeType": "YulFunctionCall",
"src": "589:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:16"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:16"
},
"nodeType": "YulFunctionCall",
"src": "561:23:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:16"
},
"nodeType": "YulFunctionCall",
"src": "551:34:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:16"
},
"nodeType": "YulFunctionCall",
"src": "544:42:16"
},
"nodeType": "YulIf",
"src": "541:62:16"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:16",
"type": ""
}
],
"src": "489:120:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:16"
},
"nodeType": "YulFunctionCall",
"src": "685:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:16"
},
"nodeType": "YulFunctionCall",
"src": "714:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:16"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:16",
"type": ""
}
],
"src": "615:137:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:16"
},
"nodeType": "YulFunctionCall",
"src": "871:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:16"
},
"nodeType": "YulFunctionCall",
"src": "840:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:16"
},
"nodeType": "YulFunctionCall",
"src": "836:32:16"
},
"nodeType": "YulIf",
"src": "833:119:16"
},
{
"nodeType": "YulBlock",
"src": "962:116:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:16"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:16",
"type": ""
}
],
"src": "758:327:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:16"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:16",
"type": ""
}
],
"src": "1091:90:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:16"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:16"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:16"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:16",
"type": ""
}
],
"src": "1187:109:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:16"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:16"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:16"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:16",
"type": ""
}
],
"src": "1302:210:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:16"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:16"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:16",
"type": ""
}
],
"src": "1518:99:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:16"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:16",
"type": ""
}
],
"src": "1623:169:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1860:184:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1870:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1879:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1874:1:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1939:63:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1964:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1969:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1960:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1960:11:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1983:3:16"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1988:1:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1979:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1979:11:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1973:5:16"
},
"nodeType": "YulFunctionCall",
"src": "1973:18:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1953:6:16"
},
"nodeType": "YulFunctionCall",
"src": "1953:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "1953:39:16"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1903:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1897:2:16"
},
"nodeType": "YulFunctionCall",
"src": "1897:13:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1911:19:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1913:15:16",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1922:1:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1925:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1918:3:16"
},
"nodeType": "YulFunctionCall",
"src": "1918:10:16"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1913:1:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1893:3:16",
"statements": []
},
"src": "1889:113:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2022:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2027:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2018:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2018:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2036:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2011:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2011:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "2011:27:16"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1842:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1847:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1852:6:16",
"type": ""
}
],
"src": "1798:246:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2098:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2108:38:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2126:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2133:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2122:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2122:14:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2142:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2138:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2138:7:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2118:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2118:28:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2108:6:16"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2081:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2091:6:16",
"type": ""
}
],
"src": "2050:102:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2250:285:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2260:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2307:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2274:32:16"
},
"nodeType": "YulFunctionCall",
"src": "2274:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2264:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2322:78:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2388:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2393:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2329:58:16"
},
"nodeType": "YulFunctionCall",
"src": "2329:71:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2322:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2448:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2455:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2444:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2444:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2462:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2467:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2409:34:16"
},
"nodeType": "YulFunctionCall",
"src": "2409:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "2409:65:16"
},
{
"nodeType": "YulAssignment",
"src": "2483:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2494:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2521:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2499:21:16"
},
"nodeType": "YulFunctionCall",
"src": "2499:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2490:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2490:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2483:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2231:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2238:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2246:3:16",
"type": ""
}
],
"src": "2158:377:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2659:195:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2669:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2681:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2692:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2677:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2677:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2669:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2716:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2727:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2712:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2712:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2735:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2741:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2731:3:16"
},
"nodeType": "YulFunctionCall",
"src": "2731:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2705:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2705:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "2705:47:16"
},
{
"nodeType": "YulAssignment",
"src": "2761:86:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2833:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2842:4:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2769:63:16"
},
"nodeType": "YulFunctionCall",
"src": "2769:78:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2761:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2631:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2643:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2654:4:16",
"type": ""
}
],
"src": "2541:313:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2905:32:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2915:16:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2926:5:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2915:7:16"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2887:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2897:7:16",
"type": ""
}
],
"src": "2860:77:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2986:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3043:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3052:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3055:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3045:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3045:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "3045:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3009:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3034:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3016:17:16"
},
"nodeType": "YulFunctionCall",
"src": "3016:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3006:2:16"
},
"nodeType": "YulFunctionCall",
"src": "3006:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2999:6:16"
},
"nodeType": "YulFunctionCall",
"src": "2999:43:16"
},
"nodeType": "YulIf",
"src": "2996:63:16"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2979:5:16",
"type": ""
}
],
"src": "2943:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3123:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3133:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3155:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3142:12:16"
},
"nodeType": "YulFunctionCall",
"src": "3142:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3133:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3198:5:16"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3171:26:16"
},
"nodeType": "YulFunctionCall",
"src": "3171:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "3171:33:16"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3101:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3109:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3117:5:16",
"type": ""
}
],
"src": "3071:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3282:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3328:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3330:77:16"
},
"nodeType": "YulFunctionCall",
"src": "3330:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "3330:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3303:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3312:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3299:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3299:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3324:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3295:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3295:32:16"
},
"nodeType": "YulIf",
"src": "3292:119:16"
},
{
"nodeType": "YulBlock",
"src": "3421:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3436:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3450:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3440:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3465:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3500:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3511:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3496:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3496:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3520:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3475:20:16"
},
"nodeType": "YulFunctionCall",
"src": "3475:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3465:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3252:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3263:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3275:6:16",
"type": ""
}
],
"src": "3216:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3596:81:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3606:65:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3621:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3628:42:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3617:3:16"
},
"nodeType": "YulFunctionCall",
"src": "3617:54:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3606:7:16"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3578:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3588:7:16",
"type": ""
}
],
"src": "3551:126:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3728:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3738:35:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3767:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3749:17:16"
},
"nodeType": "YulFunctionCall",
"src": "3749:24:16"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3738:7:16"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3710:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3720:7:16",
"type": ""
}
],
"src": "3683:96:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3850:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3867:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3890:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3872:17:16"
},
"nodeType": "YulFunctionCall",
"src": "3872:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3860:6:16"
},
"nodeType": "YulFunctionCall",
"src": "3860:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "3860:37:16"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3838:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3845:3:16",
"type": ""
}
],
"src": "3785:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4007:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4017:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4029:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4040:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4025:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4025:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4017:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4097:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4110:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4121:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4106:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4106:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4053:43:16"
},
"nodeType": "YulFunctionCall",
"src": "4053:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "4053:71:16"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3979:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3991:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4002:4:16",
"type": ""
}
],
"src": "3909:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4180:79:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4237:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4246:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4249:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4239:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4239:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "4239:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4203:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4228:5:16"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4210:17:16"
},
"nodeType": "YulFunctionCall",
"src": "4210:24:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4200:2:16"
},
"nodeType": "YulFunctionCall",
"src": "4200:35:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4193:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4193:43:16"
},
"nodeType": "YulIf",
"src": "4190:63:16"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4173:5:16",
"type": ""
}
],
"src": "4137:122:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4317:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4327:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4349:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4336:12:16"
},
"nodeType": "YulFunctionCall",
"src": "4336:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4327:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4392:5:16"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4365:26:16"
},
"nodeType": "YulFunctionCall",
"src": "4365:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "4365:33:16"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4295:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4303:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4311:5:16",
"type": ""
}
],
"src": "4265:139:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4493:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4539:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4541:77:16"
},
"nodeType": "YulFunctionCall",
"src": "4541:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "4541:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4514:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4523:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4510:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4510:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4535:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4506:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4506:32:16"
},
"nodeType": "YulIf",
"src": "4503:119:16"
},
{
"nodeType": "YulBlock",
"src": "4632:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4647:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4661:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4651:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4676:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4711:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4722:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4707:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4707:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4731:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4686:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4686:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4676:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4759:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4774:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4788:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4778:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4804:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4839:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4850:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4835:3:16"
},
"nodeType": "YulFunctionCall",
"src": "4835:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4859:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4814:20:16"
},
"nodeType": "YulFunctionCall",
"src": "4814:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4804:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4455:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4466:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4478:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4486:6:16",
"type": ""
}
],
"src": "4410:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4955:53:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4972:3:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4995:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4977:17:16"
},
"nodeType": "YulFunctionCall",
"src": "4977:24:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4965:6:16"
},
"nodeType": "YulFunctionCall",
"src": "4965:37:16"
},
"nodeType": "YulExpressionStatement",
"src": "4965:37:16"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4943:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4950:3:16",
"type": ""
}
],
"src": "4890:118:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5112:124:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5122:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5134:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5145:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5130:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5130:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5122:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5202:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5215:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5226:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5211:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5211:17:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5158:43:16"
},
"nodeType": "YulFunctionCall",
"src": "5158:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "5158:71:16"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5084:9:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5096:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5107:4:16",
"type": ""
}
],
"src": "5014:222:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5342:519:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5388:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5390:77:16"
},
"nodeType": "YulFunctionCall",
"src": "5390:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "5390:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5363:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5372:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5359:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5359:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5384:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5355:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5355:32:16"
},
"nodeType": "YulIf",
"src": "5352:119:16"
},
{
"nodeType": "YulBlock",
"src": "5481:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5496:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5510:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5500:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5525:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5560:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5571:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5556:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5556:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5580:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5535:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5535:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5525:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5608:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5623:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5637:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5627:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5653:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5688:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5699:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5684:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5684:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5708:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5663:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5663:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5653:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5736:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5751:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5765:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5755:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5781:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5816:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5827:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5812:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5812:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5836:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5791:20:16"
},
"nodeType": "YulFunctionCall",
"src": "5791:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5781:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5296:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5307:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5319:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5327:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5335:6:16",
"type": ""
}
],
"src": "5242:619:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5933:263:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5979:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5981:77:16"
},
"nodeType": "YulFunctionCall",
"src": "5981:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "5981:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5954:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5963:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5950:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5950:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5975:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5946:3:16"
},
"nodeType": "YulFunctionCall",
"src": "5946:32:16"
},
"nodeType": "YulIf",
"src": "5943:119:16"
},
{
"nodeType": "YulBlock",
"src": "6072:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6087:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6101:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6091:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6116:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6151:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6162:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6147:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6147:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6171:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6126:20:16"
},
"nodeType": "YulFunctionCall",
"src": "6126:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6116:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5903:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5914:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5926:6:16",
"type": ""
}
],
"src": "5867:329:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6242:76:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6296:16:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6305:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6308:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6298:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6298:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "6298:12:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6265:5:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6287:5:16"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6272:14:16"
},
"nodeType": "YulFunctionCall",
"src": "6272:21:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6262:2:16"
},
"nodeType": "YulFunctionCall",
"src": "6262:32:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6255:6:16"
},
"nodeType": "YulFunctionCall",
"src": "6255:40:16"
},
"nodeType": "YulIf",
"src": "6252:60:16"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6235:5:16",
"type": ""
}
],
"src": "6202:116:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6373:84:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6383:29:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6405:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6392:12:16"
},
"nodeType": "YulFunctionCall",
"src": "6392:20:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6383:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6445:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "6421:23:16"
},
"nodeType": "YulFunctionCall",
"src": "6421:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "6421:30:16"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6351:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6359:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6367:5:16",
"type": ""
}
],
"src": "6324:133:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6543:388:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6589:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6591:77:16"
},
"nodeType": "YulFunctionCall",
"src": "6591:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "6591:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6564:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6573:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6560:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6560:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6585:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6556:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6556:32:16"
},
"nodeType": "YulIf",
"src": "6553:119:16"
},
{
"nodeType": "YulBlock",
"src": "6682:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6697:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6711:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6701:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6726:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6761:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6772:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6757:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6757:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6781:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6736:20:16"
},
"nodeType": "YulFunctionCall",
"src": "6736:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6726:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6809:115:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6824:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6838:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6828:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6854:60:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6886:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6897:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6882:3:16"
},
"nodeType": "YulFunctionCall",
"src": "6882:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6906:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6864:17:16"
},
"nodeType": "YulFunctionCall",
"src": "6864:50:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6854:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6505:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6516:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6528:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6536:6:16",
"type": ""
}
],
"src": "6463:468:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7026:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7043:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7046:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7036:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7036:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "7036:12:16"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6937:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7149:28:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7166:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7169:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7159:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7159:12:16"
},
"nodeType": "YulExpressionStatement",
"src": "7159:12:16"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7060:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7211:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7228:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7231:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7221:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7221:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "7221:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7325:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7328:4:16",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7318:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7318:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "7318:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7349:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7352:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7342:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7342:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "7342:15:16"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7183:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7412:238:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7422:58:16",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7444:6:16"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7474:4:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7452:21:16"
},
"nodeType": "YulFunctionCall",
"src": "7452:27:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7440:3:16"
},
"nodeType": "YulFunctionCall",
"src": "7440:40:16"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7426:10:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7591:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7593:16:16"
},
"nodeType": "YulFunctionCall",
"src": "7593:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "7593:18:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7534:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7546:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7531:2:16"
},
"nodeType": "YulFunctionCall",
"src": "7531:34:16"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7570:10:16"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7582:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7567:2:16"
},
"nodeType": "YulFunctionCall",
"src": "7567:22:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7528:2:16"
},
"nodeType": "YulFunctionCall",
"src": "7528:62:16"
},
"nodeType": "YulIf",
"src": "7525:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7629:2:16",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7633:10:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7622:6:16"
},
"nodeType": "YulFunctionCall",
"src": "7622:22:16"
},
"nodeType": "YulExpressionStatement",
"src": "7622:22:16"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7398:6:16",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7406:4:16",
"type": ""
}
],
"src": "7369:281:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7697:88:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7707:30:16",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7717:18:16"
},
"nodeType": "YulFunctionCall",
"src": "7717:20:16"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7707:6:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7766:6:16"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7774:4:16"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7746:19:16"
},
"nodeType": "YulFunctionCall",
"src": "7746:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "7746:33:16"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7681:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7690:6:16",
"type": ""
}
],
"src": "7656:129:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7857:241:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7962:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7964:16:16"
},
"nodeType": "YulFunctionCall",
"src": "7964:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "7964:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7934:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7942:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7931:2:16"
},
"nodeType": "YulFunctionCall",
"src": "7931:30:16"
},
"nodeType": "YulIf",
"src": "7928:56:16"
},
{
"nodeType": "YulAssignment",
"src": "7994:37:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8024:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8002:21:16"
},
"nodeType": "YulFunctionCall",
"src": "8002:29:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7994:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8068:23:16",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8080:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8086:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8076:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8076:15:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8068:4:16"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7841:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7852:4:16",
"type": ""
}
],
"src": "7791:307:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8168:82:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8191:3:16"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8196:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8201:6:16"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "8178:12:16"
},
"nodeType": "YulFunctionCall",
"src": "8178:30:16"
},
"nodeType": "YulExpressionStatement",
"src": "8178:30:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8228:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8233:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8224:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8224:16:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8242:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8217:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8217:27:16"
},
"nodeType": "YulExpressionStatement",
"src": "8217:27:16"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8150:3:16",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8155:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8160:6:16",
"type": ""
}
],
"src": "8104:146:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8339:340:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8349:74:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8415:6:16"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8374:40:16"
},
"nodeType": "YulFunctionCall",
"src": "8374:48:16"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "8358:15:16"
},
"nodeType": "YulFunctionCall",
"src": "8358:65:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8349:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8439:5:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8446:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8432:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8432:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "8432:21:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8462:27:16",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8477:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8484:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8473:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8473:16:16"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8466:3:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8527:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "8529:77:16"
},
"nodeType": "YulFunctionCall",
"src": "8529:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "8529:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8508:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8513:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8504:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8504:16:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8522:3:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8501:2:16"
},
"nodeType": "YulFunctionCall",
"src": "8501:25:16"
},
"nodeType": "YulIf",
"src": "8498:112:16"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8656:3:16"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8661:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8666:6:16"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "8619:36:16"
},
"nodeType": "YulFunctionCall",
"src": "8619:54:16"
},
"nodeType": "YulExpressionStatement",
"src": "8619:54:16"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8312:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8317:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8325:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8333:5:16",
"type": ""
}
],
"src": "8256:423:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8759:277:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8808:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "8810:77:16"
},
"nodeType": "YulFunctionCall",
"src": "8810:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "8810:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8787:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8795:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8783:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8783:17:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8802:3:16"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8779:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8779:27:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8772:6:16"
},
"nodeType": "YulFunctionCall",
"src": "8772:35:16"
},
"nodeType": "YulIf",
"src": "8769:122:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8900:34:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8927:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8914:12:16"
},
"nodeType": "YulFunctionCall",
"src": "8914:20:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8904:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8943:87:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9003:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9011:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8999:3:16"
},
"nodeType": "YulFunctionCall",
"src": "8999:17:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9018:6:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9026:3:16"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8952:46:16"
},
"nodeType": "YulFunctionCall",
"src": "8952:78:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8943:5:16"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8737:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8745:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8753:5:16",
"type": ""
}
],
"src": "8698:338:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9168:817:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9215:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9217:77:16"
},
"nodeType": "YulFunctionCall",
"src": "9217:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "9217:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9189:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9198:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9185:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9185:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9210:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9181:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9181:33:16"
},
"nodeType": "YulIf",
"src": "9178:120:16"
},
{
"nodeType": "YulBlock",
"src": "9308:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9323:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9337:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9327:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9352:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9387:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9398:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9383:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9383:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9407:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9362:20:16"
},
"nodeType": "YulFunctionCall",
"src": "9362:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9352:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9435:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9450:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9464:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9454:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9480:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9515:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9526:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9511:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9511:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9535:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9490:20:16"
},
"nodeType": "YulFunctionCall",
"src": "9490:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9480:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9563:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9578:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9592:2:16",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9582:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9608:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9643:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9654:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9639:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9639:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9663:7:16"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9618:20:16"
},
"nodeType": "YulFunctionCall",
"src": "9618:53:16"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9608:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9691:287:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9706:46:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9737:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9748:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9733:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9733:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9720:12:16"
},
"nodeType": "YulFunctionCall",
"src": "9720:32:16"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9710:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9799:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "9801:77:16"
},
"nodeType": "YulFunctionCall",
"src": "9801:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "9801:79:16"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9771:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9779:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9768:2:16"
},
"nodeType": "YulFunctionCall",
"src": "9768:30:16"
},
"nodeType": "YulIf",
"src": "9765:117:16"
},
{
"nodeType": "YulAssignment",
"src": "9896:72:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9940:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9951:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9936:3:16"
},
"nodeType": "YulFunctionCall",
"src": "9936:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9960:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9906:29:16"
},
"nodeType": "YulFunctionCall",
"src": "9906:62:16"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9896:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9114:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9125:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9137:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9145:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9153:6:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9161:6:16",
"type": ""
}
],
"src": "9042:943:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10058:241:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10163:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "10165:16:16"
},
"nodeType": "YulFunctionCall",
"src": "10165:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "10165:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10135:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10143:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10132:2:16"
},
"nodeType": "YulFunctionCall",
"src": "10132:30:16"
},
"nodeType": "YulIf",
"src": "10129:56:16"
},
{
"nodeType": "YulAssignment",
"src": "10195:37:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10225:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "10203:21:16"
},
"nodeType": "YulFunctionCall",
"src": "10203:29:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "10195:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10269:23:16",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "10281:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10287:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10277:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10277:15:16"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "10269:4:16"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10042:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "10053:4:16",
"type": ""
}
],
"src": "9991:308:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10389:341:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10399:75:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10466:6:16"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10424:41:16"
},
"nodeType": "YulFunctionCall",
"src": "10424:49:16"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "10408:15:16"
},
"nodeType": "YulFunctionCall",
"src": "10408:66:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10399:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10490:5:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10497:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10483:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10483:21:16"
},
"nodeType": "YulExpressionStatement",
"src": "10483:21:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10513:27:16",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10528:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10535:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10524:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10524:16:16"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10517:3:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10578:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "10580:77:16"
},
"nodeType": "YulFunctionCall",
"src": "10580:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "10580:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10559:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10564:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10555:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10555:16:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10573:3:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10552:2:16"
},
"nodeType": "YulFunctionCall",
"src": "10552:25:16"
},
"nodeType": "YulIf",
"src": "10549:112:16"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10707:3:16"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10712:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10717:6:16"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "10670:36:16"
},
"nodeType": "YulFunctionCall",
"src": "10670:54:16"
},
"nodeType": "YulExpressionStatement",
"src": "10670:54:16"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10362:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10367:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10375:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10383:5:16",
"type": ""
}
],
"src": "10305:425:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10812:278:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10861:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "10863:77:16"
},
"nodeType": "YulFunctionCall",
"src": "10863:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "10863:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10840:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10848:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10836:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10836:17:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10855:3:16"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10832:3:16"
},
"nodeType": "YulFunctionCall",
"src": "10832:27:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10825:6:16"
},
"nodeType": "YulFunctionCall",
"src": "10825:35:16"
},
"nodeType": "YulIf",
"src": "10822:122:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10953:34:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10980:6:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "10967:12:16"
},
"nodeType": "YulFunctionCall",
"src": "10967:20:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10957:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10996:88:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11057:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11065:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11053:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11053:17:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11072:6:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11080:3:16"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11005:47:16"
},
"nodeType": "YulFunctionCall",
"src": "11005:79:16"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10996:5:16"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10790:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10798:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10806:5:16",
"type": ""
}
],
"src": "10750:340:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11189:561:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11235:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11237:77:16"
},
"nodeType": "YulFunctionCall",
"src": "11237:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "11237:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11210:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11219:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11206:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11206:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11231:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11202:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11202:32:16"
},
"nodeType": "YulIf",
"src": "11199:119:16"
},
{
"nodeType": "YulBlock",
"src": "11328:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11343:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11357:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11347:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11372:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11407:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11418:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11403:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11403:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11427:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "11382:20:16"
},
"nodeType": "YulFunctionCall",
"src": "11382:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11372:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11455:288:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11470:46:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11501:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11512:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11497:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11497:18:16"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "11484:12:16"
},
"nodeType": "YulFunctionCall",
"src": "11484:32:16"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11474:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11563:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "11565:77:16"
},
"nodeType": "YulFunctionCall",
"src": "11565:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "11565:79:16"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11535:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11543:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11532:2:16"
},
"nodeType": "YulFunctionCall",
"src": "11532:30:16"
},
"nodeType": "YulIf",
"src": "11529:117:16"
},
{
"nodeType": "YulAssignment",
"src": "11660:73:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11705:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11716:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11701:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11701:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11725:7:16"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11670:30:16"
},
"nodeType": "YulFunctionCall",
"src": "11670:63:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11660:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11151:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11162:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11174:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11182:6:16",
"type": ""
}
],
"src": "11096:654:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11839:391:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11885:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11887:77:16"
},
"nodeType": "YulFunctionCall",
"src": "11887:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "11887:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11860:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11869:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11856:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11856:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11881:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11852:3:16"
},
"nodeType": "YulFunctionCall",
"src": "11852:32:16"
},
"nodeType": "YulIf",
"src": "11849:119:16"
},
{
"nodeType": "YulBlock",
"src": "11978:117:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11993:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12007:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11997:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12022:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12057:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12068:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12053:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12053:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12077:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "12032:20:16"
},
"nodeType": "YulFunctionCall",
"src": "12032:53:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12022:6:16"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "12105:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12120:16:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12134:2:16",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12124:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12150:63:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12185:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12196:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12181:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12181:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12205:7:16"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "12160:20:16"
},
"nodeType": "YulFunctionCall",
"src": "12160:53:16"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12150:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11801:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11812:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11824:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11832:6:16",
"type": ""
}
],
"src": "11756:474:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12264:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12281:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12284:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12274:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12274:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "12274:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12378:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12381:4:16",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12371:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12371:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "12371:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12402:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12405:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12395:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12395:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "12395:15:16"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "12236:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12473:269:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12483:22:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12497:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12503:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "12493:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12493:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12483:6:16"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "12514:38:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12544:4:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12550:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12540:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12540:12:16"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "12518:18:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12591:51:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12605:27:16",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12619:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12627:4:16",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12615:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12615:17:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12605:6:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12571:18:16"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12564:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12564:26:16"
},
"nodeType": "YulIf",
"src": "12561:81:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12694:42:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "12708:16:16"
},
"nodeType": "YulFunctionCall",
"src": "12708:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "12708:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12658:18:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12681:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12689:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12678:2:16"
},
"nodeType": "YulFunctionCall",
"src": "12678:14:16"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12655:2:16"
},
"nodeType": "YulFunctionCall",
"src": "12655:38:16"
},
"nodeType": "YulIf",
"src": "12652:84:16"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "12457:4:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12466:6:16",
"type": ""
}
],
"src": "12422:320:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12854:114:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12876:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12884:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12872:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12872:14:16"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12888:34:16",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12865:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12865:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "12865:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12944:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12952:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12940:3:16"
},
"nodeType": "YulFunctionCall",
"src": "12940:15:16"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12957:3:16",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12933:6:16"
},
"nodeType": "YulFunctionCall",
"src": "12933:28:16"
},
"nodeType": "YulExpressionStatement",
"src": "12933:28:16"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12846:6:16",
"type": ""
}
],
"src": "12748:220:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13120:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13130:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13196:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13201:2:16",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13137:58:16"
},
"nodeType": "YulFunctionCall",
"src": "13137:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13130:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13302:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "13213:88:16"
},
"nodeType": "YulFunctionCall",
"src": "13213:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "13213:93:16"
},
{
"nodeType": "YulAssignment",
"src": "13315:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13326:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13331:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13322:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13322:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13315:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13108:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13116:3:16",
"type": ""
}
],
"src": "12974:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13517:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13527:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13539:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13550:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13535:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13535:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13527:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13574:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13585:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13570:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13570:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13593:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13599:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13589:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13589:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13563:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13563:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "13563:47:16"
},
{
"nodeType": "YulAssignment",
"src": "13619:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13753:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13627:124:16"
},
"nodeType": "YulFunctionCall",
"src": "13627:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13619:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13497:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13512:4:16",
"type": ""
}
],
"src": "13346:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13877:142:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13899:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13907:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13895:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13895:14:16"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13911:34:16",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13888:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13888:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "13888:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13967:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13975:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13963:3:16"
},
"nodeType": "YulFunctionCall",
"src": "13963:15:16"
},
{
"hexValue": "6b656e206f776e6572206f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13980:31:16",
"type": "",
"value": "ken owner or approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13956:6:16"
},
"nodeType": "YulFunctionCall",
"src": "13956:56:16"
},
"nodeType": "YulExpressionStatement",
"src": "13956:56:16"
}
]
},
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13869:6:16",
"type": ""
}
],
"src": "13771:248:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14171:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14181:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14247:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14252:2:16",
"type": "",
"value": "61"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14188:58:16"
},
"nodeType": "YulFunctionCall",
"src": "14188:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14181:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14353:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulIdentifier",
"src": "14264:88:16"
},
"nodeType": "YulFunctionCall",
"src": "14264:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "14264:93:16"
},
{
"nodeType": "YulAssignment",
"src": "14366:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14377:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14382:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14373:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14373:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14366:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14159:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14167:3:16",
"type": ""
}
],
"src": "14025:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14568:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14578:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14590:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14601:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14586:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14586:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14578:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14625:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14636:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14621:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14621:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14644:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14650:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14640:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14640:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14614:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14614:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "14614:47:16"
},
{
"nodeType": "YulAssignment",
"src": "14670:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14804:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14678:124:16"
},
"nodeType": "YulFunctionCall",
"src": "14678:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14670:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14548:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14563:4:16",
"type": ""
}
],
"src": "14397:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14928:126:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14950:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14958:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14946:3:16"
},
"nodeType": "YulFunctionCall",
"src": "14946:14:16"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14962:34:16",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14939:6:16"
},
"nodeType": "YulFunctionCall",
"src": "14939:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "14939:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15018:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15026:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15014:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15014:15:16"
},
{
"hexValue": "72206f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15031:15:16",
"type": "",
"value": "r or approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15007:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15007:40:16"
},
"nodeType": "YulExpressionStatement",
"src": "15007:40:16"
}
]
},
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14920:6:16",
"type": ""
}
],
"src": "14822:232:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15206:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15216:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15282:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15287:2:16",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15223:58:16"
},
"nodeType": "YulFunctionCall",
"src": "15223:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15216:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15388:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulIdentifier",
"src": "15299:88:16"
},
"nodeType": "YulFunctionCall",
"src": "15299:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "15299:93:16"
},
{
"nodeType": "YulAssignment",
"src": "15401:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15412:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15417:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15408:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15408:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15401:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15194:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15202:3:16",
"type": ""
}
],
"src": "15060:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15603:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15613:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15625:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15636:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15621:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15621:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15613:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15660:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15671:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15656:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15656:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15679:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15685:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15675:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15675:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15649:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15649:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "15649:47:16"
},
{
"nodeType": "YulAssignment",
"src": "15705:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15839:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15713:124:16"
},
"nodeType": "YulFunctionCall",
"src": "15713:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15705:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15583:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15598:4:16",
"type": ""
}
],
"src": "15432:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15963:124:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15985:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15993:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15981:3:16"
},
"nodeType": "YulFunctionCall",
"src": "15981:14:16"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15997:34:16",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15974:6:16"
},
"nodeType": "YulFunctionCall",
"src": "15974:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "15974:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16053:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16061:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16049:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16049:15:16"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16066:13:16",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16042:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16042:38:16"
},
"nodeType": "YulExpressionStatement",
"src": "16042:38:16"
}
]
},
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15955:6:16",
"type": ""
}
],
"src": "15857:230:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16239:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16249:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16315:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16320:2:16",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16256:58:16"
},
"nodeType": "YulFunctionCall",
"src": "16256:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16249:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16421:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulIdentifier",
"src": "16332:88:16"
},
"nodeType": "YulFunctionCall",
"src": "16332:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "16332:93:16"
},
{
"nodeType": "YulAssignment",
"src": "16434:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16445:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16450:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16441:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16441:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16434:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16227:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16235:3:16",
"type": ""
}
],
"src": "16093:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16636:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16646:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16658:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16669:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16654:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16654:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16646:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16693:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16704:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16689:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16689:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16712:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16718:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16708:3:16"
},
"nodeType": "YulFunctionCall",
"src": "16708:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16682:6:16"
},
"nodeType": "YulFunctionCall",
"src": "16682:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "16682:47:16"
},
{
"nodeType": "YulAssignment",
"src": "16738:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16872:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16746:124:16"
},
"nodeType": "YulFunctionCall",
"src": "16746:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16738:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16616:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16631:4:16",
"type": ""
}
],
"src": "16465:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16996:125:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17018:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17026:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17014:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17014:14:16"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17030:34:16",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17007:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17007:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "17007:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17086:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17094:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17082:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17082:15:16"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17099:14:16",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17075:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17075:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "17075:39:16"
}
]
},
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16988:6:16",
"type": ""
}
],
"src": "16890:231:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17273:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17283:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17349:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17354:2:16",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17290:58:16"
},
"nodeType": "YulFunctionCall",
"src": "17290:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17283:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17455:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulIdentifier",
"src": "17366:88:16"
},
"nodeType": "YulFunctionCall",
"src": "17366:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "17366:93:16"
},
{
"nodeType": "YulAssignment",
"src": "17468:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17479:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17484:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17475:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17475:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17468:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17261:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17269:3:16",
"type": ""
}
],
"src": "17127:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17670:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17680:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17692:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17703:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17688:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17688:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17680:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17727:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17738:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17723:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17723:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17746:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17752:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17742:3:16"
},
"nodeType": "YulFunctionCall",
"src": "17742:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17716:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17716:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "17716:47:16"
},
{
"nodeType": "YulAssignment",
"src": "17772:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17906:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17780:124:16"
},
"nodeType": "YulFunctionCall",
"src": "17780:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17772:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17650:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17665:4:16",
"type": ""
}
],
"src": "17499:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17952:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17969:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17972:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17962:6:16"
},
"nodeType": "YulFunctionCall",
"src": "17962:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "17962:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18066:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18069:4:16",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18059:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18059:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "18059:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18090:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18093:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18083:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18083:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "18083:15:16"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "17924:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18216:68:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18238:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18246:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18234:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18234:14:16"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18250:26:16",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18227:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18227:50:16"
},
"nodeType": "YulExpressionStatement",
"src": "18227:50:16"
}
]
},
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18208:6:16",
"type": ""
}
],
"src": "18110:174:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18436:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18446:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18512:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18517:2:16",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18453:58:16"
},
"nodeType": "YulFunctionCall",
"src": "18453:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18446:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18618:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulIdentifier",
"src": "18529:88:16"
},
"nodeType": "YulFunctionCall",
"src": "18529:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "18529:93:16"
},
{
"nodeType": "YulAssignment",
"src": "18631:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18642:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18647:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18638:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18638:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18631:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18424:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18432:3:16",
"type": ""
}
],
"src": "18290:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18833:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18843:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18855:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18866:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18851:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18851:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18843:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18890:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18901:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18886:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18886:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18909:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18915:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18905:3:16"
},
"nodeType": "YulFunctionCall",
"src": "18905:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18879:6:16"
},
"nodeType": "YulFunctionCall",
"src": "18879:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "18879:47:16"
},
{
"nodeType": "YulAssignment",
"src": "18935:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19069:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18943:124:16"
},
"nodeType": "YulFunctionCall",
"src": "18943:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18935:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18813:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18828:4:16",
"type": ""
}
],
"src": "18662:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19193:122:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19215:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19223:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19211:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19211:14:16"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19227:34:16",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19204:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19204:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "19204:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19283:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19291:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19279:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19279:15:16"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19296:11:16",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19272:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19272:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "19272:36:16"
}
]
},
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19185:6:16",
"type": ""
}
],
"src": "19087:228:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19467:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19477:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19543:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19548:2:16",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19484:58:16"
},
"nodeType": "YulFunctionCall",
"src": "19484:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19477:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19649:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulIdentifier",
"src": "19560:88:16"
},
"nodeType": "YulFunctionCall",
"src": "19560:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "19560:93:16"
},
{
"nodeType": "YulAssignment",
"src": "19662:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19673:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19678:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19669:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19669:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19662:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19455:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19463:3:16",
"type": ""
}
],
"src": "19321:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19864:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19874:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19886:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19897:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19882:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19882:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19874:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19921:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19932:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19917:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19917:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19940:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19946:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19936:3:16"
},
"nodeType": "YulFunctionCall",
"src": "19936:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19910:6:16"
},
"nodeType": "YulFunctionCall",
"src": "19910:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "19910:47:16"
},
{
"nodeType": "YulAssignment",
"src": "19966:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20100:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19974:124:16"
},
"nodeType": "YulFunctionCall",
"src": "19974:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19966:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19844:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19859:4:16",
"type": ""
}
],
"src": "19693:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20224:119:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20246:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20254:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20242:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20242:14:16"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20258:34:16",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20235:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20235:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "20235:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20314:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20322:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20310:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20310:15:16"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20327:8:16",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20303:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20303:33:16"
},
"nodeType": "YulExpressionStatement",
"src": "20303:33:16"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20216:6:16",
"type": ""
}
],
"src": "20118:225:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20495:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20505:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20571:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20576:2:16",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20512:58:16"
},
"nodeType": "YulFunctionCall",
"src": "20512:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20505:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20677:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "20588:88:16"
},
"nodeType": "YulFunctionCall",
"src": "20588:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "20588:93:16"
},
{
"nodeType": "YulAssignment",
"src": "20690:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20701:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20706:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20697:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20697:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20690:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20483:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20491:3:16",
"type": ""
}
],
"src": "20349:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20892:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20902:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20914:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20925:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20910:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20910:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20902:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20949:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20960:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20945:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20945:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20968:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20974:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20964:3:16"
},
"nodeType": "YulFunctionCall",
"src": "20964:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20938:6:16"
},
"nodeType": "YulFunctionCall",
"src": "20938:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "20938:47:16"
},
{
"nodeType": "YulAssignment",
"src": "20994:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21128:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21002:124:16"
},
"nodeType": "YulFunctionCall",
"src": "21002:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20994:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20872:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20887:4:16",
"type": ""
}
],
"src": "20721:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21252:118:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21274:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21282:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21270:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21270:14:16"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21286:34:16",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21263:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21263:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "21263:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21342:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21350:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21338:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21338:15:16"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21355:7:16",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21331:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21331:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "21331:32:16"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21244:6:16",
"type": ""
}
],
"src": "21146:224:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21522:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21532:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21598:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21603:2:16",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21539:58:16"
},
"nodeType": "YulFunctionCall",
"src": "21539:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21532:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21704:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "21615:88:16"
},
"nodeType": "YulFunctionCall",
"src": "21615:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "21615:93:16"
},
{
"nodeType": "YulAssignment",
"src": "21717:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21728:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21733:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21724:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21724:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21717:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21510:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21518:3:16",
"type": ""
}
],
"src": "21376:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21919:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21929:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21941:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21952:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21937:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21937:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21929:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21976:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21987:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21972:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21972:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21995:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22001:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21991:3:16"
},
"nodeType": "YulFunctionCall",
"src": "21991:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21965:6:16"
},
"nodeType": "YulFunctionCall",
"src": "21965:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "21965:47:16"
},
{
"nodeType": "YulAssignment",
"src": "22021:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22155:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22029:124:16"
},
"nodeType": "YulFunctionCall",
"src": "22029:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22021:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21899:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21914:4:16",
"type": ""
}
],
"src": "21748:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22279:117:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22301:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22309:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22297:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22297:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22313:34:16",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22290:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22290:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "22290:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22369:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22377:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22365:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22365:15:16"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22382:6:16",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22358:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22358:31:16"
},
"nodeType": "YulExpressionStatement",
"src": "22358:31:16"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22271:6:16",
"type": ""
}
],
"src": "22173:223:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22548:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22558:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22624:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22629:2:16",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22565:58:16"
},
"nodeType": "YulFunctionCall",
"src": "22565:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22558:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22730:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "22641:88:16"
},
"nodeType": "YulFunctionCall",
"src": "22641:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "22641:93:16"
},
{
"nodeType": "YulAssignment",
"src": "22743:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22754:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22759:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22750:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22750:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "22743:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22536:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22544:3:16",
"type": ""
}
],
"src": "22402:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22945:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22955:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22967:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22978:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22963:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22963:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22955:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23002:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23013:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22998:3:16"
},
"nodeType": "YulFunctionCall",
"src": "22998:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23021:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23027:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23017:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23017:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22991:6:16"
},
"nodeType": "YulFunctionCall",
"src": "22991:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "22991:47:16"
},
{
"nodeType": "YulAssignment",
"src": "23047:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23181:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23055:124:16"
},
"nodeType": "YulFunctionCall",
"src": "23055:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23047:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22925:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22940:4:16",
"type": ""
}
],
"src": "22774:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23305:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23327:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23335:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23323:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23323:14:16"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23339:34:16",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23316:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23316:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "23316:58:16"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23297:6:16",
"type": ""
}
],
"src": "23199:182:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23533:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23543:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23609:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23614:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23550:58:16"
},
"nodeType": "YulFunctionCall",
"src": "23550:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23543:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23715:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "23626:88:16"
},
"nodeType": "YulFunctionCall",
"src": "23626:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "23626:93:16"
},
{
"nodeType": "YulAssignment",
"src": "23728:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23739:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23744:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23735:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23735:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23728:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23521:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23529:3:16",
"type": ""
}
],
"src": "23387:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23930:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23940:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23952:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23963:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23948:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23948:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23940:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23987:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23998:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23983:3:16"
},
"nodeType": "YulFunctionCall",
"src": "23983:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24006:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24012:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24002:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24002:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23976:6:16"
},
"nodeType": "YulFunctionCall",
"src": "23976:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "23976:47:16"
},
{
"nodeType": "YulAssignment",
"src": "24032:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24166:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24040:124:16"
},
"nodeType": "YulFunctionCall",
"src": "24040:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24032:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23910:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23925:4:16",
"type": ""
}
],
"src": "23759:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24290:69:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24312:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24320:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24308:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24308:14:16"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24324:27:16",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24301:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24301:51:16"
},
"nodeType": "YulExpressionStatement",
"src": "24301:51:16"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24282:6:16",
"type": ""
}
],
"src": "24184:175:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24511:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24521:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24587:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24592:2:16",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24528:58:16"
},
"nodeType": "YulFunctionCall",
"src": "24528:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24521:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24693:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "24604:88:16"
},
"nodeType": "YulFunctionCall",
"src": "24604:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "24604:93:16"
},
{
"nodeType": "YulAssignment",
"src": "24706:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24717:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24722:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24713:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24713:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24706:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24499:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24507:3:16",
"type": ""
}
],
"src": "24365:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24908:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24918:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24930:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24941:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24926:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24926:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24918:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24965:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24976:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24961:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24961:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24984:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24990:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24980:3:16"
},
"nodeType": "YulFunctionCall",
"src": "24980:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24954:6:16"
},
"nodeType": "YulFunctionCall",
"src": "24954:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "24954:47:16"
},
{
"nodeType": "YulAssignment",
"src": "25010:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25144:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25018:124:16"
},
"nodeType": "YulFunctionCall",
"src": "25018:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25010:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24888:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24903:4:16",
"type": ""
}
],
"src": "24737:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25268:131:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25290:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25298:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25286:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25286:14:16"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25302:34:16",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25279:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25279:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "25279:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25358:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25366:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25354:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25354:15:16"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25371:20:16",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25347:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25347:45:16"
},
"nodeType": "YulExpressionStatement",
"src": "25347:45:16"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25260:6:16",
"type": ""
}
],
"src": "25162:237:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25551:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25561:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25627:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25632:2:16",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25568:58:16"
},
"nodeType": "YulFunctionCall",
"src": "25568:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25561:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25733:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "25644:88:16"
},
"nodeType": "YulFunctionCall",
"src": "25644:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "25644:93:16"
},
{
"nodeType": "YulAssignment",
"src": "25746:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25757:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25762:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25753:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25753:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25746:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25539:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25547:3:16",
"type": ""
}
],
"src": "25405:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25948:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25958:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25970:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25981:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25966:3:16"
},
"nodeType": "YulFunctionCall",
"src": "25966:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25958:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26005:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26016:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26001:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26001:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26024:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26030:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26020:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26020:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25994:6:16"
},
"nodeType": "YulFunctionCall",
"src": "25994:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "25994:47:16"
},
{
"nodeType": "YulAssignment",
"src": "26050:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26184:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26058:124:16"
},
"nodeType": "YulFunctionCall",
"src": "26058:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26050:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25928:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25943:4:16",
"type": ""
}
],
"src": "25777:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26316:34:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26326:18:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26341:3:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "26326:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26288:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26293:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "26304:11:16",
"type": ""
}
],
"src": "26202:148:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26466:280:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "26476:53:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26523:5:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "26490:32:16"
},
"nodeType": "YulFunctionCall",
"src": "26490:39:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26480:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "26538:96:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26622:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26627:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "26545:76:16"
},
"nodeType": "YulFunctionCall",
"src": "26545:89:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26538:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26682:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26689:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26678:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26678:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26696:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26701:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "26643:34:16"
},
"nodeType": "YulFunctionCall",
"src": "26643:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "26643:65:16"
},
{
"nodeType": "YulAssignment",
"src": "26717:23:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26728:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26733:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26724:3:16"
},
"nodeType": "YulFunctionCall",
"src": "26724:16:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26717:3:16"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26447:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26454:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26462:3:16",
"type": ""
}
],
"src": "26356:390:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26936:251:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26947:102:16",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "27036:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27045:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "26954:81:16"
},
"nodeType": "YulFunctionCall",
"src": "26954:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26947:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27059:102:16",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "27148:6:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27157:3:16"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "27066:81:16"
},
"nodeType": "YulFunctionCall",
"src": "27066:95:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27059:3:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27171:10:16",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27178:3:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27171:3:16"
}
]
}
]
},
"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": "26907:3:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "26913:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "26921:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26932:3:16",
"type": ""
}
],
"src": "26752:435:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27299:127:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27321:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27329:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27317:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27317:14:16"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920736574206f66206e6f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27333:34:16",
"type": "",
"value": "ERC721URIStorage: URI set of non"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27310:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27310:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "27310:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27389:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27397:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27385:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27385:15:16"
},
{
"hexValue": "6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27402:16:16",
"type": "",
"value": "existent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27378:6:16"
},
"nodeType": "YulFunctionCall",
"src": "27378:41:16"
},
"nodeType": "YulExpressionStatement",
"src": "27378:41:16"
}
]
},
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27291:6:16",
"type": ""
}
],
"src": "27193:233:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27578:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27588:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27654:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27659:2:16",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27595:58:16"
},
"nodeType": "YulFunctionCall",
"src": "27595:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27588:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27760:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulIdentifier",
"src": "27671:88:16"
},
"nodeType": "YulFunctionCall",
"src": "27671:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "27671:93:16"
},
{
"nodeType": "YulAssignment",
"src": "27773:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27784:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27789:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27780:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27780:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27773:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27566:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27574:3:16",
"type": ""
}
],
"src": "27432:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27975:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27985:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27997:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28008:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27993:3:16"
},
"nodeType": "YulFunctionCall",
"src": "27993:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27985:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28032:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28043:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28028:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28028:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28051:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28057:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28047:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28047:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28021:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28021:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "28021:47:16"
},
{
"nodeType": "YulAssignment",
"src": "28077:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28211:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28085:124:16"
},
"nodeType": "YulFunctionCall",
"src": "28085:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28077:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27955:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27970:4:16",
"type": ""
}
],
"src": "27804:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28283:87:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28293:11:16",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "28301:3:16"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "28293:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28321:1:16",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "28324:3:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28314:6:16"
},
"nodeType": "YulFunctionCall",
"src": "28314:14:16"
},
"nodeType": "YulExpressionStatement",
"src": "28314:14:16"
},
{
"nodeType": "YulAssignment",
"src": "28337:26:16",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28355:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28358:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "28345:9:16"
},
"nodeType": "YulFunctionCall",
"src": "28345:18:16"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "28337:4:16"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "28270:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "28278:4:16",
"type": ""
}
],
"src": "28229:141:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28420:49:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28430:33:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28448:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28455:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28444:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28444:14:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28460:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "28440:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28440:23:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "28430:6:16"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28403:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "28413:6:16",
"type": ""
}
],
"src": "28376:93:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28528:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28538:37:16",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "28563:4:16"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28569:5:16"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "28559:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28559:16:16"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "28538:8:16"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "28503:4:16",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28509:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "28519:8:16",
"type": ""
}
],
"src": "28475:107:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28664:317:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "28674:35:16",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "28695:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28707:1:16",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "28691:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28691:18:16"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "28678:9:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "28718:109:16",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "28749:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28760:66:16",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "28730:18:16"
},
"nodeType": "YulFunctionCall",
"src": "28730:97:16"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "28722:4:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "28836:51:16",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "28867:9:16"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "28878:8:16"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "28848:18:16"
},
"nodeType": "YulFunctionCall",
"src": "28848:39:16"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "28836:8:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28896:30:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28909:5:16"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "28920:4:16"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "28916:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28916:9:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28905:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28905:21:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28896:5:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28935:40:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28948:5:16"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "28959:8:16"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "28969:4:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28955:3:16"
},
"nodeType": "YulFunctionCall",
"src": "28955:19:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "28945:2:16"
},
"nodeType": "YulFunctionCall",
"src": "28945:30:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "28935:6:16"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28625:5:16",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "28632:10:16",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "28644:8:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "28657:6:16",
"type": ""
}
],
"src": "28588:393:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29019:28:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29029:12:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "29036:5:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "29029:3:16"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29005:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "29015:3:16",
"type": ""
}
],
"src": "28987:60:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29113:82:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29123:66:16",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29181:5:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29163:17:16"
},
"nodeType": "YulFunctionCall",
"src": "29163:24:16"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "29154:8:16"
},
"nodeType": "YulFunctionCall",
"src": "29154:34:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29136:17:16"
},
"nodeType": "YulFunctionCall",
"src": "29136:53:16"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "29123:9:16"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29093:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "29103:9:16",
"type": ""
}
],
"src": "29053:142:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29248:28:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29258:12:16",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "29265:5:16"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "29258:3:16"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29234:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "29244:3:16",
"type": ""
}
],
"src": "29201:75:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29358:193:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "29368:63:16",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "29423:7:16"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "29392:30:16"
},
"nodeType": "YulFunctionCall",
"src": "29392:39:16"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "29372:16:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "29447:4:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "29487:4:16"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "29481:5:16"
},
"nodeType": "YulFunctionCall",
"src": "29481:11:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29494:6:16"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "29526:16:16"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "29502:23:16"
},
"nodeType": "YulFunctionCall",
"src": "29502:41:16"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "29453:27:16"
},
"nodeType": "YulFunctionCall",
"src": "29453:91:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "29440:6:16"
},
"nodeType": "YulFunctionCall",
"src": "29440:105:16"
},
"nodeType": "YulExpressionStatement",
"src": "29440:105:16"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "29335:4:16",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29341:6:16",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "29349:7:16",
"type": ""
}
],
"src": "29282:269:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29606:24:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29616:8:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "29623:1:16",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "29616:3:16"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "29602:3:16",
"type": ""
}
],
"src": "29557:73:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29689:136:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "29699:46:16",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "29713:30:16"
},
"nodeType": "YulFunctionCall",
"src": "29713:32:16"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "29703:6:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "29798:4:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29804:6:16"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "29812:6:16"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "29754:43:16"
},
"nodeType": "YulFunctionCall",
"src": "29754:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "29754:65:16"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "29675:4:16",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29681:6:16",
"type": ""
}
],
"src": "29636:189:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29881:136:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29948:63:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29992:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29999:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "29962:29:16"
},
"nodeType": "YulFunctionCall",
"src": "29962:39:16"
},
"nodeType": "YulExpressionStatement",
"src": "29962:39:16"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29901:5:16"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29908:3:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "29898:2:16"
},
"nodeType": "YulFunctionCall",
"src": "29898:14:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "29913:26:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29915:22:16",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29928:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29935:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29924:3:16"
},
"nodeType": "YulFunctionCall",
"src": "29924:13:16"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29915:5:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "29895:2:16",
"statements": []
},
"src": "29891:120:16"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "29869:5:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29876:3:16",
"type": ""
}
],
"src": "29831:186:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30102:464:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "30128:431:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "30142:54:16",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "30190:5:16"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "30158:31:16"
},
"nodeType": "YulFunctionCall",
"src": "30158:38:16"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "30146:8:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "30209:63:16",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "30232:8:16"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "30260:10:16"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "30242:17:16"
},
"nodeType": "YulFunctionCall",
"src": "30242:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30228:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30228:44:16"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "30213:11:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "30429:27:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30431:23:16",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "30446:8:16"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "30431:11:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "30413:10:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30425:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "30410:2:16"
},
"nodeType": "YulFunctionCall",
"src": "30410:18:16"
},
"nodeType": "YulIf",
"src": "30407:49:16"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "30498:11:16"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "30515:8:16"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "30543:3:16"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "30525:17:16"
},
"nodeType": "YulFunctionCall",
"src": "30525:22:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30511:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30511:37:16"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "30469:28:16"
},
"nodeType": "YulFunctionCall",
"src": "30469:80:16"
},
"nodeType": "YulExpressionStatement",
"src": "30469:80:16"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "30119:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30124:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "30116:2:16"
},
"nodeType": "YulFunctionCall",
"src": "30116:11:16"
},
"nodeType": "YulIf",
"src": "30113:446:16"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "30078:5:16",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "30085:3:16",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "30090:10:16",
"type": ""
}
],
"src": "30023:543:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30635:54:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30645:37:16",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "30670:4:16"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30676:5:16"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "30666:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30666:16:16"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "30645:8:16"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "30610:4:16",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30616:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "30626:8:16",
"type": ""
}
],
"src": "30572:117:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30746:118:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "30756:68:16",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30805:1:16",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "30808:5:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "30801:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30801:13:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30820:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "30816:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30816:6:16"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "30772:28:16"
},
"nodeType": "YulFunctionCall",
"src": "30772:51:16"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "30768:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30768:56:16"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "30760:4:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "30833:25:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "30847:4:16"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "30853:4:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "30843:3:16"
},
"nodeType": "YulFunctionCall",
"src": "30843:15:16"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "30833:6:16"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "30723:4:16",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "30729:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "30739:6:16",
"type": ""
}
],
"src": "30695:169:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30950:214:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31083:37:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31110:4:16"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "31116:3:16"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "31091:18:16"
},
"nodeType": "YulFunctionCall",
"src": "31091:29:16"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31083:4:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "31129:29:16",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31140:4:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31150:1:16",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "31153:3:16"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "31146:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31146:11:16"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "31137:2:16"
},
"nodeType": "YulFunctionCall",
"src": "31137:21:16"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "31129:4:16"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "30931:4:16",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "30937:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "30945:4:16",
"type": ""
}
],
"src": "30869:295:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31261:1303:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "31272:51:16",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "31319:3:16"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "31286:32:16"
},
"nodeType": "YulFunctionCall",
"src": "31286:37:16"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "31276:6:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31408:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "31410:16:16"
},
"nodeType": "YulFunctionCall",
"src": "31410:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "31410:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31380:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31388:18:16",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31377:2:16"
},
"nodeType": "YulFunctionCall",
"src": "31377:30:16"
},
"nodeType": "YulIf",
"src": "31374:56:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31440:52:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "31486:4:16"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "31480:5:16"
},
"nodeType": "YulFunctionCall",
"src": "31480:11:16"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "31454:25:16"
},
"nodeType": "YulFunctionCall",
"src": "31454:38:16"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "31444:6:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "31585:4:16"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "31591:6:16"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31599:6:16"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "31539:45:16"
},
"nodeType": "YulFunctionCall",
"src": "31539:67:16"
},
"nodeType": "YulExpressionStatement",
"src": "31539:67:16"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31616:18:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31633:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "31620:9:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "31644:17:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31657:4:16",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "31644:9:16"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "31708:611:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "31722:37:16",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31741:6:16"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31753:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "31749:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31749:9:16"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "31737:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31737:22:16"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "31726:7:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "31773:51:16",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "31819:4:16"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "31787:31:16"
},
"nodeType": "YulFunctionCall",
"src": "31787:37:16"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "31777:6:16",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "31837:10:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31846:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "31841:1:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31905:163:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "31930:6:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "31948:3:16"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "31953:9:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31944:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31944:19:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "31938:5:16"
},
"nodeType": "YulFunctionCall",
"src": "31938:26:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "31923:6:16"
},
"nodeType": "YulFunctionCall",
"src": "31923:42:16"
},
"nodeType": "YulExpressionStatement",
"src": "31923:42:16"
},
{
"nodeType": "YulAssignment",
"src": "31982:24:16",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "31996:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32004:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31992:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31992:14:16"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "31982:6:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32023:31:16",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32040:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32051:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32036:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32036:18:16"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32023:9:16"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "31871:1:16"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "31874:7:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "31868:2:16"
},
"nodeType": "YulFunctionCall",
"src": "31868:14:16"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "31883:21:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31885:17:16",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "31894:1:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31897:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31890:3:16"
},
"nodeType": "YulFunctionCall",
"src": "31890:12:16"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "31885:1:16"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "31864:3:16",
"statements": []
},
"src": "31860:208:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32104:156:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "32122:43:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "32149:3:16"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32154:9:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32145:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32145:19:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "32139:5:16"
},
"nodeType": "YulFunctionCall",
"src": "32139:26:16"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "32126:9:16",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "32189:6:16"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "32216:9:16"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32231:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32239:4:16",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "32227:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32227:17:16"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "32197:18:16"
},
"nodeType": "YulFunctionCall",
"src": "32197:48:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "32182:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32182:64:16"
},
"nodeType": "YulExpressionStatement",
"src": "32182:64:16"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "32087:7:16"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32096:6:16"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "32084:2:16"
},
"nodeType": "YulFunctionCall",
"src": "32084:19:16"
},
"nodeType": "YulIf",
"src": "32081:179:16"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "32280:4:16"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32294:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32302:1:16",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "32290:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32290:14:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32306:1:16",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32286:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32286:22:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "32273:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32273:36:16"
},
"nodeType": "YulExpressionStatement",
"src": "32273:36:16"
}
]
},
"nodeType": "YulCase",
"src": "31701:618:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31706:1:16",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "32336:222:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "32350:14:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "32363:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32354:5:16",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32387:67:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32405:35:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "32424:3:16"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32429:9:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32420:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32420:19:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "32414:5:16"
},
"nodeType": "YulFunctionCall",
"src": "32414:26:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32405:5:16"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32380:6:16"
},
"nodeType": "YulIf",
"src": "32377:77:16"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "32474:4:16"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32533:5:16"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32540:6:16"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "32480:52:16"
},
"nodeType": "YulFunctionCall",
"src": "32480:67:16"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "32467:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32467:81:16"
},
"nodeType": "YulExpressionStatement",
"src": "32467:81:16"
}
]
},
"nodeType": "YulCase",
"src": "32328:230:16",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31681:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31689:2:16",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31678:2:16"
},
"nodeType": "YulFunctionCall",
"src": "31678:14:16"
},
"nodeType": "YulSwitch",
"src": "31671:887:16"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "31250:4:16",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "31256:3:16",
"type": ""
}
],
"src": "31169:1395:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32628:40:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32639:22:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32655:5:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "32649:5:16"
},
"nodeType": "YulFunctionCall",
"src": "32649:12:16"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32639:6:16"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32611:5:16",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "32621:6:16",
"type": ""
}
],
"src": "32570:98:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32769:73:16",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32786:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32791:6:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32779:6:16"
},
"nodeType": "YulFunctionCall",
"src": "32779:19:16"
},
"nodeType": "YulExpressionStatement",
"src": "32779:19:16"
},
{
"nodeType": "YulAssignment",
"src": "32807:29:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32826:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32831:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32822:3:16"
},
"nodeType": "YulFunctionCall",
"src": "32822:14:16"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "32807:11:16"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32741:3:16",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "32746:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "32757:11:16",
"type": ""
}
],
"src": "32674:168:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32938:283:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "32948:52:16",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32994:5:16"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "32962:31:16"
},
"nodeType": "YulFunctionCall",
"src": "32962:38:16"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "32952:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "33009:77:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33074:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33079:6:16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33016:57:16"
},
"nodeType": "YulFunctionCall",
"src": "33016:70:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33009:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33134:5:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33141:4:16",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33130:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33130:16:16"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33148:3:16"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33153:6:16"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "33095:34:16"
},
"nodeType": "YulFunctionCall",
"src": "33095:65:16"
},
"nodeType": "YulExpressionStatement",
"src": "33095:65:16"
},
{
"nodeType": "YulAssignment",
"src": "33169:46:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33180:3:16"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33207:6:16"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "33185:21:16"
},
"nodeType": "YulFunctionCall",
"src": "33185:29:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33176:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33176:39:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33169:3:16"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32919:5:16",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32926:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32934:3:16",
"type": ""
}
],
"src": "32848:373:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33427:440:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33437:27:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33449:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33460:3:16",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33445:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33445:19:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33437:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33518:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33531:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33542:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33527:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33527:17:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "33474:43:16"
},
"nodeType": "YulFunctionCall",
"src": "33474:71:16"
},
"nodeType": "YulExpressionStatement",
"src": "33474:71:16"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "33599:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33612:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33623:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33608:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33608:18:16"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "33555:43:16"
},
"nodeType": "YulFunctionCall",
"src": "33555:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "33555:72:16"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "33681:6:16"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33694:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33705:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33690:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33690:18:16"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "33637:43:16"
},
"nodeType": "YulFunctionCall",
"src": "33637:72:16"
},
"nodeType": "YulExpressionStatement",
"src": "33637:72:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33730:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33741:2:16",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33726:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33726:18:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33750:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33756:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33746:3:16"
},
"nodeType": "YulFunctionCall",
"src": "33746:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33719:6:16"
},
"nodeType": "YulFunctionCall",
"src": "33719:48:16"
},
"nodeType": "YulExpressionStatement",
"src": "33719:48:16"
},
{
"nodeType": "YulAssignment",
"src": "33776:84:16",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "33846:6:16"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33855:4:16"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33784:61:16"
},
"nodeType": "YulFunctionCall",
"src": "33784:76:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33776:4:16"
}
]
}
]
},
"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": "33375:9:16",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "33387:6:16",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "33395:6:16",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "33403:6:16",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33411:6:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33422:4:16",
"type": ""
}
],
"src": "33227:640:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33935:79:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33945:22:16",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "33960:6:16"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "33954:5:16"
},
"nodeType": "YulFunctionCall",
"src": "33954:13:16"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33945:5:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34002:5:16"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "33976:25:16"
},
"nodeType": "YulFunctionCall",
"src": "33976:32:16"
},
"nodeType": "YulExpressionStatement",
"src": "33976:32:16"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "33913:6:16",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "33921:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33929:5:16",
"type": ""
}
],
"src": "33873:141:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34096:273:16",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "34142:83:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "34144:77:16"
},
"nodeType": "YulFunctionCall",
"src": "34144:79:16"
},
"nodeType": "YulExpressionStatement",
"src": "34144:79:16"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "34117:7:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34126:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34113:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34113:23:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34138:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "34109:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34109:32:16"
},
"nodeType": "YulIf",
"src": "34106:119:16"
},
{
"nodeType": "YulBlock",
"src": "34235:127:16",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "34250:15:16",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "34264:1:16",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "34254:6:16",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "34279:73:16",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34324:9:16"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "34335:6:16"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34320:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34320:22:16"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "34344:7:16"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "34289:30:16"
},
"nodeType": "YulFunctionCall",
"src": "34289:63:16"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "34279:6:16"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34066:9:16",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "34077:7:16",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "34089:6:16",
"type": ""
}
],
"src": "34020:349:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34481:134:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34503:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34511:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34499:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34499:14:16"
},
{
"hexValue": "455243373231456e756d657261626c653a20636f6e7365637574697665207472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34515:34:16",
"type": "",
"value": "ERC721Enumerable: consecutive tr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34492:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34492:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "34492:58:16"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34571:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34579:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34567:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34567:15:16"
},
{
"hexValue": "616e7366657273206e6f7420737570706f72746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34584:23:16",
"type": "",
"value": "ansfers not supported"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34560:6:16"
},
"nodeType": "YulFunctionCall",
"src": "34560:48:16"
},
"nodeType": "YulExpressionStatement",
"src": "34560:48:16"
}
]
},
"name": "store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34473:6:16",
"type": ""
}
],
"src": "34375:240:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34767:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34777:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34843:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34848:2:16",
"type": "",
"value": "53"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34784:58:16"
},
"nodeType": "YulFunctionCall",
"src": "34784:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34777:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34949:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314",
"nodeType": "YulIdentifier",
"src": "34860:88:16"
},
"nodeType": "YulFunctionCall",
"src": "34860:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "34860:93:16"
},
{
"nodeType": "YulAssignment",
"src": "34962:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34973:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34978:2:16",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34969:3:16"
},
"nodeType": "YulFunctionCall",
"src": "34969:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "34962:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34755:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34763:3:16",
"type": ""
}
],
"src": "34621:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35164:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35174:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35186:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35197:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35182:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35182:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35174:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35221:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35232:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35217:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35217:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35240:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35246:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "35236:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35236:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35210:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35210:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "35210:47:16"
},
{
"nodeType": "YulAssignment",
"src": "35266:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35400:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35274:124:16"
},
"nodeType": "YulFunctionCall",
"src": "35274:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35266:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35144:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35159:4:16",
"type": ""
}
],
"src": "34993:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35446:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35463:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35466:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35456:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35456:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "35456:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35560:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35563:4:16",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35553:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35553:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35553:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35584:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35587:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "35577:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35577:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "35577:15:16"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "35418:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35710:76:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35732:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35740:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35728:3:16"
},
"nodeType": "YulFunctionCall",
"src": "35728:14:16"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35744:34:16",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35721:6:16"
},
"nodeType": "YulFunctionCall",
"src": "35721:58:16"
},
"nodeType": "YulExpressionStatement",
"src": "35721:58:16"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35702:6:16",
"type": ""
}
],
"src": "35604:182:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35938:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35948:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36014:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36019:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35955:58:16"
},
"nodeType": "YulFunctionCall",
"src": "35955:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35948:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36120:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "36031:88:16"
},
"nodeType": "YulFunctionCall",
"src": "36031:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "36031:93:16"
},
{
"nodeType": "YulAssignment",
"src": "36133:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36144:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36149:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36140:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36140:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "36133:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35926:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35934:3:16",
"type": ""
}
],
"src": "35792:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36335:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36345:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36357:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36368:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36353:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36353:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36345:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36392:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36403:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36388:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36388:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36411:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36417:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36407:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36407:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36381:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36381:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "36381:47:16"
},
{
"nodeType": "YulAssignment",
"src": "36437:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36571:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36445:124:16"
},
"nodeType": "YulFunctionCall",
"src": "36445:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36437:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "36315:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "36330:4:16",
"type": ""
}
],
"src": "36164:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36695:72:16",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36717:6:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36725:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36713:3:16"
},
"nodeType": "YulFunctionCall",
"src": "36713:14:16"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36729:30:16",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36706:6:16"
},
"nodeType": "YulFunctionCall",
"src": "36706:54:16"
},
"nodeType": "YulExpressionStatement",
"src": "36706:54:16"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36687:6:16",
"type": ""
}
],
"src": "36589:178:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36919:220:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36929:74:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36995:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37000:2:16",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36936:58:16"
},
"nodeType": "YulFunctionCall",
"src": "36936:67:16"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36929:3:16"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37101:3:16"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "37012:88:16"
},
"nodeType": "YulFunctionCall",
"src": "37012:93:16"
},
"nodeType": "YulExpressionStatement",
"src": "37012:93:16"
},
{
"nodeType": "YulAssignment",
"src": "37114:19:16",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37125:3:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37130:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37121:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37121:12:16"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "37114:3:16"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36907:3:16",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "36915:3:16",
"type": ""
}
],
"src": "36773:366:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37316:248:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37326:26:16",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37338:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37349:2:16",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37334:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37334:18:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37326:4:16"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37373:9:16"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37384:1:16",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37369:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37369:17:16"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37392:4:16"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37398:9:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37388:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37388:20:16"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37362:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37362:47:16"
},
"nodeType": "YulExpressionStatement",
"src": "37362:47:16"
},
{
"nodeType": "YulAssignment",
"src": "37418:139:16",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37552:4:16"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37426:124:16"
},
"nodeType": "YulFunctionCall",
"src": "37426:131:16"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37418:4:16"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "37296:9:16",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "37311:4:16",
"type": ""
}
],
"src": "37145:419:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37598:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37615:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37618:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37608:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37608:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "37608:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37712:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37715:4:16",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37705:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37705:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "37705:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37736:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37739:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "37729:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37729:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "37729:15:16"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "37570:180:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37801:149:16",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37811:25:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37834:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37816:17:16"
},
"nodeType": "YulFunctionCall",
"src": "37816:20:16"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37811:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37845:25:16",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37868:1:16"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37850:17:16"
},
"nodeType": "YulFunctionCall",
"src": "37850:20:16"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37845:1:16"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37879:17:16",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37891:1:16"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37894:1:16"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37887:3:16"
},
"nodeType": "YulFunctionCall",
"src": "37887:9:16"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "37879:4:16"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37921:22:16",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37923:16:16"
},
"nodeType": "YulFunctionCall",
"src": "37923:18:16"
},
"nodeType": "YulExpressionStatement",
"src": "37923:18:16"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "37912:4:16"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37918:1:16"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "37909:2:16"
},
"nodeType": "YulFunctionCall",
"src": "37909:11:16"
},
"nodeType": "YulIf",
"src": "37906:37:16"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37787:1:16",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37790:1:16",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "37796:4:16",
"type": ""
}
],
"src": "37756:194:16"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37984:152:16",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38001:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38004:77:16",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37994:6:16"
},
"nodeType": "YulFunctionCall",
"src": "37994:88:16"
},
"nodeType": "YulExpressionStatement",
"src": "37994:88:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38098:1:16",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38101:4:16",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38091:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38091:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "38091:15:16"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38122:1:16",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38125:4:16",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "38115:6:16"
},
"nodeType": "YulFunctionCall",
"src": "38115:15:16"
},
"nodeType": "YulExpressionStatement",
"src": "38115:15:16"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "37956:180:16"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\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 abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(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_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 array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(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 mstore(add(dst, length), 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 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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__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 cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\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_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 cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\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_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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\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_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_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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 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_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 validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\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_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 revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\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_with_cleanup(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_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 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 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_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_string_memory_ptr(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 := 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_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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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 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 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_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 store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not to\")\n\n mstore(add(memPtr, 32), \"ken owner or approved for all\")\n\n }\n\n function abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 61)\n store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__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_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: caller is not token owne\")\n\n mstore(add(memPtr, 32), \"r or approved\")\n\n }\n\n function abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 45)\n store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__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_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: owner index ou\")\n\n mstore(add(memPtr, 32), \"t of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: global index o\")\n\n mstore(add(memPtr, 32), \"ut of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\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 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_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 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 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_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 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 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_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 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 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_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 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 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_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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\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_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 store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\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_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 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 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_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 array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\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 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 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_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 array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function 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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\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_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\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 store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: consecutive tr\")\n\n mstore(add(memPtr, 32), \"ansfers not supported\")\n\n }\n\n function abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 53)\n store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314__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_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\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 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_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 store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\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_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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function panic_error_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n}\n",
"id": 16,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063d204c45e1461038f578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b600480360381019061014691906122dd565b6103f7565b6040516101589190612325565b60405180910390f35b610169610409565b60405161017691906123d0565b60405180910390f35b61019960048036038101906101949190612428565b61049b565b6040516101a69190612496565b60405180910390f35b6101c960048036038101906101c491906124dd565b6104e1565b005b6101d36105f8565b6040516101e0919061252c565b60405180910390f35b61020360048036038101906101fe9190612547565b610605565b005b61021f600480360381019061021a91906124dd565b610665565b60405161022c919061252c565b60405180910390f35b61024f600480360381019061024a9190612547565b61070a565b005b61026b60048036038101906102669190612428565b61072a565b604051610278919061252c565b60405180910390f35b61029b60048036038101906102969190612428565b61079b565b6040516102a89190612496565b60405180910390f35b6102cb60048036038101906102c6919061259a565b610821565b6040516102d8919061252c565b60405180910390f35b6102e96108d8565b005b6102f36108ec565b6040516103009190612496565b60405180910390f35b610311610916565b60405161031e91906123d0565b60405180910390f35b610341600480360381019061033c91906125f3565b6109a8565b005b61035d60048036038101906103589190612768565b6109be565b005b61037960048036038101906103749190612428565b610a20565b60405161038691906123d0565b60405180910390f35b6103a960048036038101906103a4919061288c565b610a32565b005b6103c560048036038101906103c091906128e8565b610a6b565b6040516103d29190612325565b60405180910390f35b6103f560048036038101906103f0919061259a565b610aff565b005b600061040282610b82565b9050919050565b60606000805461041890612957565b80601f016020809104026020016040519081016040528092919081815260200182805461044490612957565b80156104915780601f1061046657610100808354040283529160200191610491565b820191906000526020600020905b81548152906001019060200180831161047457829003601f168201915b5050505050905090565b60006104a682610bfc565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104ec8261079b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361055c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610553906129fa565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661057b610c47565b73ffffffffffffffffffffffffffffffffffffffff1614806105aa57506105a9816105a4610c47565b610a6b565b5b6105e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e090612a8c565b60405180910390fd5b6105f38383610c4f565b505050565b6000600880549050905090565b610616610610610c47565b82610d08565b610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90612b1e565b60405180910390fd5b610660838383610d9d565b505050565b600061067083610821565b82106106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890612bb0565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610725838383604051806020016040528060008152506109be565b505050565b60006107346105f8565b8210610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612c42565b60405180910390fd5b6008828154811061078957610788612c62565b5b90600052602060002001549050919050565b6000806107a783611096565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90612cdd565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890612d6f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e06110d3565b6108ea6000611151565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461092590612957565b80601f016020809104026020016040519081016040528092919081815260200182805461095190612957565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b6109ba6109b3610c47565b8383611217565b5050565b6109cf6109c9610c47565b83610d08565b610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612b1e565b60405180910390fd5b610a1a84848484611383565b50505050565b6060610a2b826113df565b9050919050565b610a3a6110d3565b6000610a46600c6114f1565b9050610a52600c6114ff565b610a5c8382611515565b610a668183611533565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b076110d3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612e01565b60405180910390fd5b610b7f81611151565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf55750610bf4826115a0565b5b9050919050565b610c0581611682565b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90612cdd565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610cc28361079b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610d148361079b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d565750610d558185610a6b565b5b80610d9457508373ffffffffffffffffffffffffffffffffffffffff16610d7c8461049b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610dbd8261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a90612e93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7990612f25565b60405180910390fd5b610e8f83838360016116c3565b8273ffffffffffffffffffffffffffffffffffffffff16610eaf8261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efc90612e93565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461109183838360016116d5565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6110db610c47565b73ffffffffffffffffffffffffffffffffffffffff166110f96108ec565b73ffffffffffffffffffffffffffffffffffffffff161461114f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114690612f91565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127c90612ffd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113769190612325565b60405180910390a3505050565b61138e848484610d9d565b61139a848484846116db565b6113d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d09061308f565b60405180910390fd5b50505050565b60606113ea82610bfc565b6000600a6000848152602001908152602001600020805461140a90612957565b80601f016020809104026020016040519081016040528092919081815260200182805461143690612957565b80156114835780601f1061145857610100808354040283529160200191611483565b820191906000526020600020905b81548152906001019060200180831161146657829003601f168201915b505050505090506000611494611862565b905060008151036114a95781925050506114ec565b6000825111156114de5780826040516020016114c69291906130eb565b604051602081830303815290604052925050506114ec565b6114e784611879565b925050505b919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61152f8282604051806020016040528060008152506118e1565b5050565b61153c82611682565b61157b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157290613181565b60405180910390fd5b80600a6000848152602001908152602001600020908161159b919061334d565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061166b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061167b575061167a8261193c565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166116a483611096565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6116cf848484846119a6565b50505050565b50505050565b60006116fc8473ffffffffffffffffffffffffffffffffffffffff16611b04565b15611855578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611725610c47565b8786866040518563ffffffff1660e01b81526004016117479493929190613474565b6020604051808303816000875af192505050801561178357506040513d601f19601f8201168201806040525081019061178091906134d5565b60015b611805573d80600081146117b3576040519150601f19603f3d011682016040523d82523d6000602084013e6117b8565b606091505b5060008151036117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f49061308f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061185a565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061188482610bfc565b600061188e611862565b905060008151116118ae57604051806020016040528060008152506118d9565b806118b884611b27565b6040516020016118c99291906130eb565b6040516020818303038152906040525b915050919050565b6118eb8383611bf5565b6118f860008484846116db565b611937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192e9061308f565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6119b284848484611e12565b60018111156119f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ed90613574565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a3d57611a3881611e18565b611a7c565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611a7b57611a7a8582611e61565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611abe57611ab981611fce565b611afd565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611afc57611afb848261209f565b5b5b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606060006001611b368461211e565b01905060008167ffffffffffffffff811115611b5557611b5461263d565b5b6040519080825280601f01601f191660200182016040528015611b875781602001600182028036833780820191505090505b509050600082602001820190505b600115611bea578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611bde57611bdd613594565b5b04945060008503611b95575b819350505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5b9061360f565b60405180910390fd5b611c6d81611682565b15611cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca49061367b565b60405180910390fd5b611cbb6000838360016116c3565b611cc481611682565b15611d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfb9061367b565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e0e6000838360016116d5565b5050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611e6e84610821565b611e7891906136ca565b9050600060076000848152602001908152602001600020549050818114611f5d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050611fe291906136ca565b905060006009600084815260200190815260200160002054905060006008838154811061201257612011612c62565b5b90600052602060002001549050806008838154811061203457612033612c62565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612083576120826136fe565b5b6001900381819060005260206000200160009055905550505050565b60006120aa83610821565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061217c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161217257612171613594565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106121b9576d04ee2d6d415b85acef810000000083816121af576121ae613594565b5b0492506020810190505b662386f26fc1000083106121e857662386f26fc1000083816121de576121dd613594565b5b0492506010810190505b6305f5e1008310612211576305f5e100838161220757612206613594565b5b0492506008810190505b612710831061223657612710838161222c5761222b613594565b5b0492506004810190505b60648310612259576064838161224f5761224e613594565b5b0492506002810190505b600a8310612268576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122ba81612285565b81146122c557600080fd5b50565b6000813590506122d7816122b1565b92915050565b6000602082840312156122f3576122f261227b565b5b6000612301848285016122c8565b91505092915050565b60008115159050919050565b61231f8161230a565b82525050565b600060208201905061233a6000830184612316565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561237a57808201518184015260208101905061235f565b60008484015250505050565b6000601f19601f8301169050919050565b60006123a282612340565b6123ac818561234b565b93506123bc81856020860161235c565b6123c581612386565b840191505092915050565b600060208201905081810360008301526123ea8184612397565b905092915050565b6000819050919050565b612405816123f2565b811461241057600080fd5b50565b600081359050612422816123fc565b92915050565b60006020828403121561243e5761243d61227b565b5b600061244c84828501612413565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061248082612455565b9050919050565b61249081612475565b82525050565b60006020820190506124ab6000830184612487565b92915050565b6124ba81612475565b81146124c557600080fd5b50565b6000813590506124d7816124b1565b92915050565b600080604083850312156124f4576124f361227b565b5b6000612502858286016124c8565b925050602061251385828601612413565b9150509250929050565b612526816123f2565b82525050565b6000602082019050612541600083018461251d565b92915050565b6000806000606084860312156125605761255f61227b565b5b600061256e868287016124c8565b935050602061257f868287016124c8565b925050604061259086828701612413565b9150509250925092565b6000602082840312156125b0576125af61227b565b5b60006125be848285016124c8565b91505092915050565b6125d08161230a565b81146125db57600080fd5b50565b6000813590506125ed816125c7565b92915050565b6000806040838503121561260a5761260961227b565b5b6000612618858286016124c8565b9250506020612629858286016125de565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61267582612386565b810181811067ffffffffffffffff821117156126945761269361263d565b5b80604052505050565b60006126a7612271565b90506126b3828261266c565b919050565b600067ffffffffffffffff8211156126d3576126d261263d565b5b6126dc82612386565b9050602081019050919050565b82818337600083830152505050565b600061270b612706846126b8565b61269d565b90508281526020810184848401111561272757612726612638565b5b6127328482856126e9565b509392505050565b600082601f83011261274f5761274e612633565b5b813561275f8482602086016126f8565b91505092915050565b600080600080608085870312156127825761278161227b565b5b6000612790878288016124c8565b94505060206127a1878288016124c8565b93505060406127b287828801612413565b925050606085013567ffffffffffffffff8111156127d3576127d2612280565b5b6127df8782880161273a565b91505092959194509250565b600067ffffffffffffffff8211156128065761280561263d565b5b61280f82612386565b9050602081019050919050565b600061282f61282a846127eb565b61269d565b90508281526020810184848401111561284b5761284a612638565b5b6128568482856126e9565b509392505050565b600082601f83011261287357612872612633565b5b813561288384826020860161281c565b91505092915050565b600080604083850312156128a3576128a261227b565b5b60006128b1858286016124c8565b925050602083013567ffffffffffffffff8111156128d2576128d1612280565b5b6128de8582860161285e565b9150509250929050565b600080604083850312156128ff576128fe61227b565b5b600061290d858286016124c8565b925050602061291e858286016124c8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061296f57607f821691505b60208210810361298257612981612928565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e460218361234b565b91506129ef82612988565b604082019050919050565b60006020820190508181036000830152612a13816129d7565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612a76603d8361234b565b9150612a8182612a1a565b604082019050919050565b60006020820190508181036000830152612aa581612a69565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612b08602d8361234b565b9150612b1382612aac565b604082019050919050565b60006020820190508181036000830152612b3781612afb565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612b9a602b8361234b565b9150612ba582612b3e565b604082019050919050565b60006020820190508181036000830152612bc981612b8d565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612c2c602c8361234b565b9150612c3782612bd0565b604082019050919050565b60006020820190508181036000830152612c5b81612c1f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612cc760188361234b565b9150612cd282612c91565b602082019050919050565b60006020820190508181036000830152612cf681612cba565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612d5960298361234b565b9150612d6482612cfd565b604082019050919050565b60006020820190508181036000830152612d8881612d4c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612deb60268361234b565b9150612df682612d8f565b604082019050919050565b60006020820190508181036000830152612e1a81612dde565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612e7d60258361234b565b9150612e8882612e21565b604082019050919050565b60006020820190508181036000830152612eac81612e70565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612f0f60248361234b565b9150612f1a82612eb3565b604082019050919050565b60006020820190508181036000830152612f3e81612f02565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612f7b60208361234b565b9150612f8682612f45565b602082019050919050565b60006020820190508181036000830152612faa81612f6e565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612fe760198361234b565b9150612ff282612fb1565b602082019050919050565b6000602082019050818103600083015261301681612fda565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061307960328361234b565b91506130848261301d565b604082019050919050565b600060208201905081810360008301526130a88161306c565b9050919050565b600081905092915050565b60006130c582612340565b6130cf81856130af565b93506130df81856020860161235c565b80840191505092915050565b60006130f782856130ba565b915061310382846130ba565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b600061316b602e8361234b565b91506131768261310f565b604082019050919050565b6000602082019050818103600083015261319a8161315e565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026132037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826131c6565b61320d86836131c6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061324a613245613240846123f2565b613225565b6123f2565b9050919050565b6000819050919050565b6132648361322f565b61327861327082613251565b8484546131d3565b825550505050565b600090565b61328d613280565b61329881848461325b565b505050565b5b818110156132bc576132b1600082613285565b60018101905061329e565b5050565b601f821115613301576132d2816131a1565b6132db846131b6565b810160208510156132ea578190505b6132fe6132f6856131b6565b83018261329d565b50505b505050565b600082821c905092915050565b600061332460001984600802613306565b1980831691505092915050565b600061333d8383613313565b9150826002028217905092915050565b61335682612340565b67ffffffffffffffff81111561336f5761336e61263d565b5b6133798254612957565b6133848282856132c0565b600060209050601f8311600181146133b757600084156133a5578287015190505b6133af8582613331565b865550613417565b601f1984166133c5866131a1565b60005b828110156133ed578489015182556001820191506020850194506020810190506133c8565b8683101561340a5784890151613406601f891682613313565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b60006134468261341f565b613450818561342a565b935061346081856020860161235c565b61346981612386565b840191505092915050565b60006080820190506134896000830187612487565b6134966020830186612487565b6134a3604083018561251d565b81810360608301526134b5818461343b565b905095945050505050565b6000815190506134cf816122b1565b92915050565b6000602082840312156134eb576134ea61227b565b5b60006134f9848285016134c0565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b600061355e60358361234b565b915061356982613502565b604082019050919050565b6000602082019050818103600083015261358d81613551565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006135f960208361234b565b9150613604826135c3565b602082019050919050565b60006020820190508181036000830152613628816135ec565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613665601c8361234b565b91506136708261362f565b602082019050919050565b6000602082019050818103600083015261369481613658565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136d5826123f2565b91506136e0836123f2565b92508282039050818111156136f8576136f761369b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212203b0753dfb286ef5e5f005791134627dfa4fbf843582dc170d1b0bb08df40ab4364736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x12C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x343 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x35F JUMPI DUP1 PUSH4 0xD204C45E EQ PUSH2 0x38F JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3DB JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2E1 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2EB JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x309 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x327 JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x205 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x235 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x281 JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x131 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x17F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1AF JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1CB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x146 SWAP2 SWAP1 PUSH2 0x22DD JUMP JUMPDEST PUSH2 0x3F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x158 SWAP2 SWAP1 PUSH2 0x2325 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x169 PUSH2 0x409 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x176 SWAP2 SWAP1 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x199 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x194 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0x49B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A6 SWAP2 SWAP1 PUSH2 0x2496 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C4 SWAP2 SWAP1 PUSH2 0x24DD JUMP JUMPDEST PUSH2 0x4E1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1D3 PUSH2 0x5F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E0 SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x203 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FE SWAP2 SWAP1 PUSH2 0x2547 JUMP JUMPDEST PUSH2 0x605 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21A SWAP2 SWAP1 PUSH2 0x24DD JUMP JUMPDEST PUSH2 0x665 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22C SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x24A SWAP2 SWAP1 PUSH2 0x2547 JUMP JUMPDEST PUSH2 0x70A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0x72A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0x79B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x2496 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x259A JUMP JUMPDEST PUSH2 0x821 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x252C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E9 PUSH2 0x8D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2F3 PUSH2 0x8EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x2496 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x311 PUSH2 0x916 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31E SWAP2 SWAP1 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33C SWAP2 SWAP1 PUSH2 0x25F3 JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x35D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x358 SWAP2 SWAP1 PUSH2 0x2768 JUMP JUMPDEST PUSH2 0x9BE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x379 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x374 SWAP2 SWAP1 PUSH2 0x2428 JUMP JUMPDEST PUSH2 0xA20 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x386 SWAP2 SWAP1 PUSH2 0x23D0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A4 SWAP2 SWAP1 PUSH2 0x288C JUMP JUMPDEST PUSH2 0xA32 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C0 SWAP2 SWAP1 PUSH2 0x28E8 JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D2 SWAP2 SWAP1 PUSH2 0x2325 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F0 SWAP2 SWAP1 PUSH2 0x259A JUMP JUMPDEST PUSH2 0xAFF JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH2 0x402 DUP3 PUSH2 0xB82 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x418 SWAP1 PUSH2 0x2957 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 0x444 SWAP1 PUSH2 0x2957 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x491 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x466 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x491 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 0x474 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A6 DUP3 PUSH2 0xBFC 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 0x4EC DUP3 PUSH2 0x79B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x55C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x553 SWAP1 PUSH2 0x29FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x57B PUSH2 0xC47 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5AA JUMPI POP PUSH2 0x5A9 DUP2 PUSH2 0x5A4 PUSH2 0xC47 JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST JUMPDEST PUSH2 0x5E9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E0 SWAP1 PUSH2 0x2A8C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5F3 DUP4 DUP4 PUSH2 0xC4F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x616 PUSH2 0x610 PUSH2 0xC47 JUMP JUMPDEST DUP3 PUSH2 0xD08 JUMP JUMPDEST PUSH2 0x655 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64C SWAP1 PUSH2 0x2B1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x660 DUP4 DUP4 DUP4 PUSH2 0xD9D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x670 DUP4 PUSH2 0x821 JUMP JUMPDEST DUP3 LT PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A8 SWAP1 PUSH2 0x2BB0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x725 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9BE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x734 PUSH2 0x5F8 JUMP JUMPDEST DUP3 LT PUSH2 0x775 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x76C SWAP1 PUSH2 0x2C42 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x789 JUMPI PUSH2 0x788 PUSH2 0x2C62 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7A7 DUP4 PUSH2 0x1096 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x80F SWAP1 PUSH2 0x2CDD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x891 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x888 SWAP1 PUSH2 0x2D6F 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 0x8E0 PUSH2 0x10D3 JUMP JUMPDEST PUSH2 0x8EA PUSH1 0x0 PUSH2 0x1151 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB 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 0x925 SWAP1 PUSH2 0x2957 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 0x951 SWAP1 PUSH2 0x2957 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x99E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x973 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x99E 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 0x981 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9BA PUSH2 0x9B3 PUSH2 0xC47 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1217 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x9CF PUSH2 0x9C9 PUSH2 0xC47 JUMP JUMPDEST DUP4 PUSH2 0xD08 JUMP JUMPDEST PUSH2 0xA0E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA05 SWAP1 PUSH2 0x2B1E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA1A DUP5 DUP5 DUP5 DUP5 PUSH2 0x1383 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA2B DUP3 PUSH2 0x13DF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA3A PUSH2 0x10D3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA46 PUSH1 0xC PUSH2 0x14F1 JUMP JUMPDEST SWAP1 POP PUSH2 0xA52 PUSH1 0xC PUSH2 0x14FF JUMP JUMPDEST PUSH2 0xA5C DUP4 DUP3 PUSH2 0x1515 JUMP JUMPDEST PUSH2 0xA66 DUP2 DUP4 PUSH2 0x1533 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB07 PUSH2 0x10D3 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB76 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6D SWAP1 PUSH2 0x2E01 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7F DUP2 PUSH2 0x1151 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xBF5 JUMPI POP PUSH2 0xBF4 DUP3 PUSH2 0x15A0 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xC05 DUP2 PUSH2 0x1682 JUMP JUMPDEST PUSH2 0xC44 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC3B SWAP1 PUSH2 0x2CDD 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 0xCC2 DUP4 PUSH2 0x79B 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 0xD14 DUP4 PUSH2 0x79B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD56 JUMPI POP PUSH2 0xD55 DUP2 DUP6 PUSH2 0xA6B JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD94 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD7C DUP5 PUSH2 0x49B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDBD DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE13 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE0A SWAP1 PUSH2 0x2E93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE82 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE79 SWAP1 PUSH2 0x2F25 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE8F DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x16C3 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xEAF DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xF05 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEFC SWAP1 PUSH2 0x2E93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE 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 SUB 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 ADD 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 0x1091 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x16D5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 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 PUSH2 0x10DB PUSH2 0xC47 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x10F9 PUSH2 0x8EC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x114F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1146 SWAP1 PUSH2 0x2F91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xB 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 SUB PUSH2 0x1285 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127C SWAP1 PUSH2 0x2FFD 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 0x1376 SWAP2 SWAP1 PUSH2 0x2325 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x138E DUP5 DUP5 DUP5 PUSH2 0xD9D JUMP JUMPDEST PUSH2 0x139A DUP5 DUP5 DUP5 DUP5 PUSH2 0x16DB JUMP JUMPDEST PUSH2 0x13D9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13D0 SWAP1 PUSH2 0x308F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x13EA DUP3 PUSH2 0xBFC JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x140A SWAP1 PUSH2 0x2957 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 0x1436 SWAP1 PUSH2 0x2957 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1483 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1458 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1483 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 0x1466 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x1494 PUSH2 0x1862 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x14A9 JUMPI DUP2 SWAP3 POP POP POP PUSH2 0x14EC JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0x14DE JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x14C6 SWAP3 SWAP2 SWAP1 PUSH2 0x30EB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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