Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yoelpc4/8a7f74d438086f18a12c9695fa8007ff to your computer and use it in GitHub Desktop.
Save yoelpc4/8a7f74d438086f18a12c9695fa8007ff to your computer and use it in GitHub Desktop.
Cryptovipers
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_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: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {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 a {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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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 v4.4.1 (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`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
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 v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// 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);
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:11"
},
"nodeType": "YulFunctionCall",
"src": "78:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:11"
},
"nodeType": "YulFunctionCall",
"src": "125:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:11"
},
"nodeType": "YulFunctionCall",
"src": "200:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:11"
},
"nodeType": "YulFunctionCall",
"src": "149:26:11"
},
"nodeType": "YulIf",
"src": "146:2:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:11"
},
"nodeType": "YulFunctionCall",
"src": "293:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:11"
},
"nodeType": "YulFunctionCall",
"src": "263:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:11"
},
"nodeType": "YulFunctionCall",
"src": "240:38:11"
},
"nodeType": "YulIf",
"src": "237:2:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:11",
"type": ""
}
],
"src": "7:320:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:11"
},
"nodeType": "YulFunctionCall",
"src": "371:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:11"
},
"nodeType": "YulFunctionCall",
"src": "468:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:11"
},
"nodeType": "YulFunctionCall",
"src": "492:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:11"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600681526020017f56697065727300000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5650520000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000168565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b600060028204905060018216806200018157607f821691505b602082108114156200019857620001976200019e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612ec180620001dd6000396000f3fe60806040526004361061010d5760003560e01c80636352211e11610095578063a22cb46511610064578063a22cb465146103a6578063ab967221146103cf578063b88d4fde146103ff578063c87b56dd14610428578063e985e9c51461046557610114565b80636352211e146102c257806370a08231146102ff5780638b1e199b1461033c57806395d89b411461037b57610114565b806323b872dd116100dc57806323b872dd146101e7578063278a45971461021057806329d8b9891461025057806333293e651461027b57806342842e0e1461029957610114565b806301ffc9a71461011957806306fdde0314610156578063081812fc14610181578063095ea7b3146101be57610114565b3661011457005b600080fd5b34801561012557600080fd5b50610140600480360381019061013b9190611f3d565b6104a2565b60405161014d91906127bd565b60405180910390f35b34801561016257600080fd5b5061016b610584565b60405161017891906127d8565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190611f8f565b610616565b6040516101b591906126e1565b60405180910390f35b3480156101ca57600080fd5b506101e560048036038101906101e09190611f01565b61069b565b005b3480156101f357600080fd5b5061020e60048036038101906102099190611dfb565b6107b3565b005b34801561021c57600080fd5b5061023760048036038101906102329190611f8f565b610813565b60405161024794939291906129d5565b60405180910390f35b34801561025c57600080fd5b50610265610892565b604051610272919061279b565b60405180910390f35b610283610a55565b60405161029091906129ba565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190611dfb565b610aa0565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190611f8f565b610ac0565b6040516102f691906126e1565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190611d96565b610b72565b60405161033391906129ba565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190611f8f565b610c2a565b60405161037293929190612a1a565b60405180910390f35b34801561038757600080fd5b50610390610c71565b60405161039d91906127d8565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190611ec5565b610d03565b005b6103e960048036038101906103e49190611fb8565b610d19565b6040516103f691906129ba565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190611e4a565b610d41565b005b34801561043457600080fd5b5061044f600480360381019061044a9190611f8f565b610da3565b60405161045c91906127d8565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190611dbf565b610e4a565b60405161049991906127bd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061057d575061057c82610ede565b5b9050919050565b60606000805461059390612cac565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf90612cac565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b5050505050905090565b600061062182610f48565b610660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106579061293a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a682610ac0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070e9061297a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610736610fb4565b73ffffffffffffffffffffffffffffffffffffffff16148061076557506107648161075f610fb4565b610e4a565b5b6107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b906128ba565b60405180910390fd5b6107ae8383610fbc565b505050565b6107c46107be610fb4565b82611075565b610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa9061299a565b60405180910390fd5b61080e838383611153565b505050565b600080600080600060068681548110610855577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600302019050858160000160009054906101000a900460ff16826001015483600201549450945094509450509193509193565b6060600061089f33610b72565b9050600081141561092257600067ffffffffffffffff8111156108eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109195781602001602082028036833780820191505090505b50915050610a52565b60008167ffffffffffffffff811115610964577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109925781602001602082028036833780820191505090505b509050600060068054905090506000805b82811015610a49573373ffffffffffffffffffffffffffffffffffffffff166109cb82610ac0565b73ffffffffffffffffffffffffffffffffffffffff161415610a2e5780848381518110610a21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b610a426001826113ba90919063ffffffff16565b90506109a3565b83955050505050505b90565b600066470de4df8200003414610a6a57600080fd5b610a9b6006610a776113d0565b610a819190612d31565b6006610a8b6113d0565b610a959190612d31565b33611403565b905090565b610abb83838360405180602001604052806000815250610d41565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b60906128fa565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906128da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60068181548110610c3a57600080fd5b90600052602060002090600302016000915090508060000160009054906101000a900460ff16908060010154908060020154905083565b606060018054610c8090612cac565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90612cac565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b610d15610d0e610fb4565b8383611549565b5050565b600066b1a2bc2ec500003414610d2e57600080fd5b610d39838333611403565b905092915050565b610d52610d4c610fb4565b83611075565b610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d889061299a565b60405180910390fd5b610d9d848484846116b6565b50505050565b6060610dae82610f48565b610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de49061295a565b60405180910390fd5b6000610df7611712565b90506000815111610e175760405180602001604052806000815250610e42565b80610e2184611729565b604051602001610e32929190612691565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661102f83610ac0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061108082610f48565b6110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b69061289a565b60405180910390fd5b60006110ca83610ac0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061113957508373ffffffffffffffffffffffffffffffffffffffff1661112184610616565b73ffffffffffffffffffffffffffffffffffffffff16145b8061114a57506111498185610e4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661117382610ac0565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061281a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112309061285a565b60405180910390fd5b6112448383836118d6565b61124f600082610fbc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129f9190612bb5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f69190612b2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113b58383836118db565b505050565b600081836113c89190612b2e565b905092915050565b600044426040516020016113e59291906126b5565b6040516020818303038152906040528051906020012060001c905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143e57600080fd5b600061144a85856118e0565b9050600060405180606001604052808360ff168152602001878152602001868152509050600681908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160010155604082015181600201555050600060016006805490506114e59190612bb5565b90506114f18582611915565b7f3e55573ff0e76f82bdde8a92fcb5d2f10d2836d0ba36df6ad1d389e2cc2b3e0d8582846020015185604001518660000151604051611534959493929190612748565b60405180910390a18093505050509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af9061287a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a991906127bd565b60405180910390a3505050565b6116c1848484611153565b6116cd84848484611aef565b61170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611703906127fa565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611771576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506118d1565b600082905060005b600082146117a357808061178c90612cde565b915050600a8261179c9190612b84565b9150611779565b60008167ffffffffffffffff8111156117e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118175781602001600182028036833780820191505090505b5090505b600085146118ca576001826118309190612bb5565b9150600a8561183f9190612d31565b603061184b9190612b2e565b60f81b818381518110611887577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118c39190612b84565b945061181b565b8093505050505b919050565b505050565b505050565b6000600160066118f984866113ba90919063ffffffff16565b6119039190612d31565b61190d9190612b2e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c9061291a565b60405180910390fd5b61198e81610f48565b156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061283a565b60405180910390fd5b6119da600083836118d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2a9190612b2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aeb600083836118db565b5050565b6000611b108473ffffffffffffffffffffffffffffffffffffffff16611c86565b15611c79578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b39610fb4565b8786866040518563ffffffff1660e01b8152600401611b5b94939291906126fc565b602060405180830381600087803b158015611b7557600080fd5b505af1925050508015611ba657506040513d601f19601f82011682018060405250810190611ba39190611f66565b60015b611c29573d8060008114611bd6576040519150601f19603f3d011682016040523d82523d6000602084013e611bdb565b606091505b50600081511415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906127fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c7e565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff16803b806020016040519081016040528181526000908060200190933c51119050919050565b6000611cd8611cd384612a82565b612a51565b905082815260208101848484011115611cf057600080fd5b611cfb848285612c6a565b509392505050565b600081359050611d1281612e2f565b92915050565b600081359050611d2781612e46565b92915050565b600081359050611d3c81612e5d565b92915050565b600081519050611d5181612e5d565b92915050565b600082601f830112611d6857600080fd5b8135611d78848260208601611cc5565b91505092915050565b600081359050611d9081612e74565b92915050565b600060208284031215611da857600080fd5b6000611db684828501611d03565b91505092915050565b60008060408385031215611dd257600080fd5b6000611de085828601611d03565b9250506020611df185828601611d03565b9150509250929050565b600080600060608486031215611e1057600080fd5b6000611e1e86828701611d03565b9350506020611e2f86828701611d03565b9250506040611e4086828701611d81565b9150509250925092565b60008060008060808587031215611e6057600080fd5b6000611e6e87828801611d03565b9450506020611e7f87828801611d03565b9350506040611e9087828801611d81565b925050606085013567ffffffffffffffff811115611ead57600080fd5b611eb987828801611d57565b91505092959194509250565b60008060408385031215611ed857600080fd5b6000611ee685828601611d03565b9250506020611ef785828601611d18565b9150509250929050565b60008060408385031215611f1457600080fd5b6000611f2285828601611d03565b9250506020611f3385828601611d81565b9150509250929050565b600060208284031215611f4f57600080fd5b6000611f5d84828501611d2d565b91505092915050565b600060208284031215611f7857600080fd5b6000611f8684828501611d42565b91505092915050565b600060208284031215611fa157600080fd5b6000611faf84828501611d81565b91505092915050565b60008060408385031215611fcb57600080fd5b6000611fd985828601611d81565b9250506020611fea85828601611d81565b9150509250929050565b6000612000838361264d565b60208301905092915050565b61201581612be9565b82525050565b600061202682612ac2565b6120308185612af0565b935061203b83612ab2565b8060005b8381101561206c5781516120538882611ff4565b975061205e83612ae3565b92505060018101905061203f565b5085935050505092915050565b61208281612bfb565b82525050565b600061209382612acd565b61209d8185612b01565b93506120ad818560208601612c79565b6120b681612e1e565b840191505092915050565b60006120cc82612ad8565b6120d68185612b12565b93506120e6818560208601612c79565b6120ef81612e1e565b840191505092915050565b600061210582612ad8565b61210f8185612b23565b935061211f818560208601612c79565b80840191505092915050565b6000612138603283612b12565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061219e602583612b12565b91507f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008301527f6f776e65720000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612204601c83612b12565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612244602483612b12565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122aa601983612b12565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006122ea602c83612b12565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612350603883612b12565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006123b6602a83612b12565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061241c602983612b12565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612482602083612b12565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006124c2602c83612b12565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612528602f83612b12565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061258e602183612b12565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125f4603183612b12565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61265681612c53565b82525050565b61266581612c53565b82525050565b61267c61267782612c53565b612d27565b82525050565b61268b81612c5d565b82525050565b600061269d82856120fa565b91506126a982846120fa565b91508190509392505050565b60006126c1828561266b565b6020820191506126d1828461266b565b6020820191508190509392505050565b60006020820190506126f6600083018461200c565b92915050565b6000608082019050612711600083018761200c565b61271e602083018661200c565b61272b604083018561265c565b818103606083015261273d8184612088565b905095945050505050565b600060a08201905061275d600083018861200c565b61276a602083018761265c565b612777604083018661265c565b612784606083018561265c565b6127916080830184612682565b9695505050505050565b600060208201905081810360008301526127b5818461201b565b905092915050565b60006020820190506127d26000830184612079565b92915050565b600060208201905081810360008301526127f281846120c1565b905092915050565b600060208201905081810360008301526128138161212b565b9050919050565b6000602082019050818103600083015261283381612191565b9050919050565b60006020820190508181036000830152612853816121f7565b9050919050565b6000602082019050818103600083015261287381612237565b9050919050565b600060208201905081810360008301526128938161229d565b9050919050565b600060208201905081810360008301526128b3816122dd565b9050919050565b600060208201905081810360008301526128d381612343565b9050919050565b600060208201905081810360008301526128f3816123a9565b9050919050565b600060208201905081810360008301526129138161240f565b9050919050565b6000602082019050818103600083015261293381612475565b9050919050565b60006020820190508181036000830152612953816124b5565b9050919050565b600060208201905081810360008301526129738161251b565b9050919050565b6000602082019050818103600083015261299381612581565b9050919050565b600060208201905081810360008301526129b3816125e7565b9050919050565b60006020820190506129cf600083018461265c565b92915050565b60006080820190506129ea600083018761265c565b6129f76020830186612682565b612a04604083018561265c565b612a11606083018461265c565b95945050505050565b6000606082019050612a2f6000830186612682565b612a3c602083018561265c565b612a49604083018461265c565b949350505050565b6000604051905081810181811067ffffffffffffffff82111715612a7857612a77612def565b5b8060405250919050565b600067ffffffffffffffff821115612a9d57612a9c612def565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b3982612c53565b9150612b4483612c53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b7957612b78612d62565b5b828201905092915050565b6000612b8f82612c53565b9150612b9a83612c53565b925082612baa57612ba9612d91565b5b828204905092915050565b6000612bc082612c53565b9150612bcb83612c53565b925082821015612bde57612bdd612d62565b5b828203905092915050565b6000612bf482612c33565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c97578082015181840152602081019050612c7c565b83811115612ca6576000848401525b50505050565b60006002820490506001821680612cc457607f821691505b60208210811415612cd857612cd7612dc0565b5b50919050565b6000612ce982612c53565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d1c57612d1b612d62565b5b600182019050919050565b6000819050919050565b6000612d3c82612c53565b9150612d4783612c53565b925082612d5757612d56612d91565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612e3881612be9565b8114612e4357600080fd5b50565b612e4f81612bfb565b8114612e5a57600080fd5b50565b612e6681612c07565b8114612e7157600080fd5b50565b612e7d81612c53565b8114612e8857600080fd5b5056fea26469706673582212207dcec9c2f5622eeb028db96047bb977061e6f727275e26ecb075cde05327cbae64736f6c63430008000033",
"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 0x6 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5669706572730000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5650520000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP POP POP PUSH3 0x1CD JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xC6 SWAP1 PUSH3 0x168 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xEA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x105 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x136 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x135 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x118 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x145 SWAP2 SWAP1 PUSH3 0x149 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x164 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x14A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x181 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x198 JUMPI PUSH3 0x197 PUSH3 0x19E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2EC1 DUP1 PUSH3 0x1DD PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x10D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x95 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x3A6 JUMPI DUP1 PUSH4 0xAB967221 EQ PUSH2 0x3CF JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x3FF JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x428 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x465 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x2C2 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2FF JUMPI DUP1 PUSH4 0x8B1E199B EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x37B JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E7 JUMPI DUP1 PUSH4 0x278A4597 EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0x29D8B989 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x33293E65 EQ PUSH2 0x27B JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x299 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x119 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x181 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1BE JUMPI PUSH2 0x114 JUMP JUMPDEST CALLDATASIZE PUSH2 0x114 JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x125 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x140 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x1F3D JUMP JUMPDEST PUSH2 0x4A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x162 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x16B PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x178 SWAP2 SWAP1 PUSH2 0x27D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B5 SWAP2 SWAP1 PUSH2 0x26E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E0 SWAP2 SWAP1 PUSH2 0x1F01 JUMP JUMPDEST PUSH2 0x69B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x20E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0x7B3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x21C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x237 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0x813 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x247 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x29D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x265 PUSH2 0x892 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x283 PUSH2 0xA55 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x290 SWAP2 SWAP1 PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0xAA0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E4 SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0xAC0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F6 SWAP2 SWAP1 PUSH2 0x26E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x326 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x321 SWAP2 SWAP1 PUSH2 0x1D96 JUMP JUMPDEST PUSH2 0xB72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x333 SWAP2 SWAP1 PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x348 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x363 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35E SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0xC2A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x372 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x387 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x390 PUSH2 0xC71 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39D SWAP2 SWAP1 PUSH2 0x27D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3CD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C8 SWAP2 SWAP1 PUSH2 0x1EC5 JUMP JUMPDEST PUSH2 0xD03 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3E9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3E4 SWAP2 SWAP1 PUSH2 0x1FB8 JUMP JUMPDEST PUSH2 0xD19 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F6 SWAP2 SWAP1 PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x426 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x421 SWAP2 SWAP1 PUSH2 0x1E4A JUMP JUMPDEST PUSH2 0xD41 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x434 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x44A SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0xDA3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45C SWAP2 SWAP1 PUSH2 0x27D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x471 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x48C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x487 SWAP2 SWAP1 PUSH2 0x1DBF JUMP JUMPDEST PUSH2 0xE4A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x499 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x56D JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x57D JUMPI POP PUSH2 0x57C DUP3 PUSH2 0xEDE JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x593 SWAP1 PUSH2 0x2CAC 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 0x5BF SWAP1 PUSH2 0x2CAC JUMP JUMPDEST DUP1 ISZERO PUSH2 0x60C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5E1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x60C 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 0x5EF JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x621 DUP3 PUSH2 0xF48 JUMP JUMPDEST PUSH2 0x660 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x657 SWAP1 PUSH2 0x293A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6A6 DUP3 PUSH2 0xAC0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x717 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x70E SWAP1 PUSH2 0x297A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x736 PUSH2 0xFB4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x765 JUMPI POP PUSH2 0x764 DUP2 PUSH2 0x75F PUSH2 0xFB4 JUMP JUMPDEST PUSH2 0xE4A JUMP JUMPDEST JUMPDEST PUSH2 0x7A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x79B SWAP1 PUSH2 0x28BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7AE DUP4 DUP4 PUSH2 0xFBC JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x7C4 PUSH2 0x7BE PUSH2 0xFB4 JUMP JUMPDEST DUP3 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x803 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7FA SWAP1 PUSH2 0x299A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x80E DUP4 DUP4 DUP4 PUSH2 0x1153 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x6 DUP7 DUP2 SLOAD DUP2 LT PUSH2 0x855 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD SWAP1 POP DUP6 DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP3 PUSH1 0x1 ADD SLOAD DUP4 PUSH1 0x2 ADD SLOAD SWAP5 POP SWAP5 POP SWAP5 POP SWAP5 POP POP SWAP2 SWAP4 POP SWAP2 SWAP4 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x89F CALLER PUSH2 0xB72 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 EQ ISZERO PUSH2 0x922 JUMPI PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8EB JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x919 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP2 POP POP PUSH2 0xA52 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x964 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x992 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH1 0x6 DUP1 SLOAD SWAP1 POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xA49 JUMPI CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x9CB DUP3 PUSH2 0xAC0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA2E JUMPI DUP1 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xA21 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST PUSH2 0xA42 PUSH1 0x1 DUP3 PUSH2 0x13BA SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH2 0x9A3 JUMP JUMPDEST DUP4 SWAP6 POP POP POP POP POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH7 0x470DE4DF820000 CALLVALUE EQ PUSH2 0xA6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA9B PUSH1 0x6 PUSH2 0xA77 PUSH2 0x13D0 JUMP JUMPDEST PUSH2 0xA81 SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST PUSH1 0x6 PUSH2 0xA8B PUSH2 0x13D0 JUMP JUMPDEST PUSH2 0xA95 SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST CALLER PUSH2 0x1403 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xABB DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xD41 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB60 SWAP1 PUSH2 0x28FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xBE3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBDA SWAP1 PUSH2 0x28DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x6 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xC80 SWAP1 PUSH2 0x2CAC 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 0xCAC SWAP1 PUSH2 0x2CAC JUMP JUMPDEST DUP1 ISZERO PUSH2 0xCF9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xCCE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xCF9 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 0xCDC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xD15 PUSH2 0xD0E PUSH2 0xFB4 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1549 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH7 0xB1A2BC2EC50000 CALLVALUE EQ PUSH2 0xD2E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD39 DUP4 DUP4 CALLER PUSH2 0x1403 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD52 PUSH2 0xD4C PUSH2 0xFB4 JUMP JUMPDEST DUP4 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0xD91 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD88 SWAP1 PUSH2 0x299A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD9D DUP5 DUP5 DUP5 DUP5 PUSH2 0x16B6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xDAE DUP3 PUSH2 0xF48 JUMP JUMPDEST PUSH2 0xDED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE4 SWAP1 PUSH2 0x295A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF7 PUSH2 0x1712 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xE17 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xE42 JUMP JUMPDEST DUP1 PUSH2 0xE21 DUP5 PUSH2 0x1729 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE32 SWAP3 SWAP2 SWAP1 PUSH2 0x2691 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST 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 0x102F DUP4 PUSH2 0xAC0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1080 DUP3 PUSH2 0xF48 JUMP JUMPDEST PUSH2 0x10BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10B6 SWAP1 PUSH2 0x289A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10CA DUP4 PUSH2 0xAC0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1139 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1121 DUP5 PUSH2 0x616 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x114A JUMPI POP PUSH2 0x1149 DUP2 DUP6 PUSH2 0xE4A JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1173 DUP3 PUSH2 0xAC0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x11C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11C0 SWAP1 PUSH2 0x281A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1239 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1230 SWAP1 PUSH2 0x285A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1244 DUP4 DUP4 DUP4 PUSH2 0x18D6 JUMP JUMPDEST PUSH2 0x124F PUSH1 0x0 DUP3 PUSH2 0xFBC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x2BB5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x12F6 SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x13B5 DUP4 DUP4 DUP4 PUSH2 0x18DB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x13C8 SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DIFFICULTY TIMESTAMP PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x13E5 SWAP3 SWAP2 SWAP1 PUSH2 0x26B5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x143E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x144A DUP6 DUP6 PUSH2 0x18E0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP7 DUP2 MSTORE POP SWAP1 POP PUSH1 0x6 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE POP POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x6 DUP1 SLOAD SWAP1 POP PUSH2 0x14E5 SWAP2 SWAP1 PUSH2 0x2BB5 JUMP JUMPDEST SWAP1 POP PUSH2 0x14F1 DUP6 DUP3 PUSH2 0x1915 JUMP JUMPDEST PUSH32 0x3E55573FF0E76F82BDDE8A92FCB5D2F10D2836D0BA36DF6AD1D389E2CC2B3E0D DUP6 DUP3 DUP5 PUSH1 0x20 ADD MLOAD DUP6 PUSH1 0x40 ADD MLOAD DUP7 PUSH1 0x0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x1534 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2748 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 SWAP4 POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x15B8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15AF SWAP1 PUSH2 0x287A 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 0x16A9 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x16C1 DUP5 DUP5 DUP5 PUSH2 0x1153 JUMP JUMPDEST PUSH2 0x16CD DUP5 DUP5 DUP5 DUP5 PUSH2 0x1AEF JUMP JUMPDEST PUSH2 0x170C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1703 SWAP1 PUSH2 0x27FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1771 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x17A3 JUMPI DUP1 DUP1 PUSH2 0x178C SWAP1 PUSH2 0x2CDE JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x179C SWAP2 SWAP1 PUSH2 0x2B84 JUMP JUMPDEST SWAP2 POP PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x17E5 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1817 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x18CA JUMPI PUSH1 0x1 DUP3 PUSH2 0x1830 SWAP2 SWAP1 PUSH2 0x2BB5 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x183F SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x184B SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1887 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x18C3 SWAP2 SWAP1 PUSH2 0x2B84 JUMP JUMPDEST SWAP5 POP PUSH2 0x181B JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x6 PUSH2 0x18F9 DUP5 DUP7 PUSH2 0x13BA SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x1903 SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST PUSH2 0x190D SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1985 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x197C SWAP1 PUSH2 0x291A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x198E DUP2 PUSH2 0xF48 JUMP JUMPDEST ISZERO PUSH2 0x19CE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19C5 SWAP1 PUSH2 0x283A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x19DA PUSH1 0x0 DUP4 DUP4 PUSH2 0x18D6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1A2A SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x1AEB PUSH1 0x0 DUP4 DUP4 PUSH2 0x18DB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B10 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C86 JUMP JUMPDEST ISZERO PUSH2 0x1C79 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1B39 PUSH2 0xFB4 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B5B SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26FC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1BA6 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 0x1BA3 SWAP2 SWAP1 PUSH2 0x1F66 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1C29 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1BD6 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 0x1BDB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1C21 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C18 SWAP1 PUSH2 0x27FA 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 0x1C7E JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP1 EXTCODESIZE DUP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE PUSH1 0x0 SWAP1 DUP1 PUSH1 0x20 ADD SWAP1 SWAP4 EXTCODECOPY MLOAD GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CD8 PUSH2 0x1CD3 DUP5 PUSH2 0x2A82 JUMP JUMPDEST PUSH2 0x2A51 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1CF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1CFB DUP5 DUP3 DUP6 PUSH2 0x2C6A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D12 DUP2 PUSH2 0x2E2F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D27 DUP2 PUSH2 0x2E46 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D3C DUP2 PUSH2 0x2E5D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1D51 DUP2 PUSH2 0x2E5D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1D68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1D78 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1CC5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D90 DUP2 PUSH2 0x2E74 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1DB6 DUP5 DUP3 DUP6 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1DD2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1DE0 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1DF1 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E1E DUP7 DUP3 DUP8 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1E2F DUP7 DUP3 DUP8 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1E40 DUP7 DUP3 DUP8 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1E60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E6E DUP8 DUP3 DUP9 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1E7F DUP8 DUP3 DUP9 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1E90 DUP8 DUP3 DUP9 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1EAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EB9 DUP8 DUP3 DUP9 ADD PUSH2 0x1D57 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1ED8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1EE6 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1EF7 DUP6 DUP3 DUP7 ADD PUSH2 0x1D18 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1F22 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1F33 DUP6 DUP3 DUP7 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1F5D DUP5 DUP3 DUP6 ADD PUSH2 0x1D2D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1F86 DUP5 DUP3 DUP6 ADD PUSH2 0x1D42 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1FAF DUP5 DUP3 DUP6 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1FCB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1FD9 DUP6 DUP3 DUP7 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1FEA DUP6 DUP3 DUP7 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2000 DUP4 DUP4 PUSH2 0x264D JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2015 DUP2 PUSH2 0x2BE9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2026 DUP3 PUSH2 0x2AC2 JUMP JUMPDEST PUSH2 0x2030 DUP2 DUP6 PUSH2 0x2AF0 JUMP JUMPDEST SWAP4 POP PUSH2 0x203B DUP4 PUSH2 0x2AB2 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x206C JUMPI DUP2 MLOAD PUSH2 0x2053 DUP9 DUP3 PUSH2 0x1FF4 JUMP JUMPDEST SWAP8 POP PUSH2 0x205E DUP4 PUSH2 0x2AE3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x203F JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2082 DUP2 PUSH2 0x2BFB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2093 DUP3 PUSH2 0x2ACD JUMP JUMPDEST PUSH2 0x209D DUP2 DUP6 PUSH2 0x2B01 JUMP JUMPDEST SWAP4 POP PUSH2 0x20AD DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C79 JUMP JUMPDEST PUSH2 0x20B6 DUP2 PUSH2 0x2E1E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20CC DUP3 PUSH2 0x2AD8 JUMP JUMPDEST PUSH2 0x20D6 DUP2 DUP6 PUSH2 0x2B12 JUMP JUMPDEST SWAP4 POP PUSH2 0x20E6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C79 JUMP JUMPDEST PUSH2 0x20EF DUP2 PUSH2 0x2E1E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2105 DUP3 PUSH2 0x2AD8 JUMP JUMPDEST PUSH2 0x210F DUP2 DUP6 PUSH2 0x2B23 JUMP JUMPDEST SWAP4 POP PUSH2 0x211F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C79 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2138 PUSH1 0x32 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x219E PUSH1 0x25 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2204 PUSH1 0x1C DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2244 PUSH1 0x24 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22AA PUSH1 0x19 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22EA PUSH1 0x2C DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2350 PUSH1 0x38 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23B6 PUSH1 0x2A DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x241C PUSH1 0x29 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2482 PUSH1 0x20 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24C2 PUSH1 0x2C DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2528 PUSH1 0x2F DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x258E PUSH1 0x21 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25F4 PUSH1 0x31 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2656 DUP2 PUSH2 0x2C53 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2665 DUP2 PUSH2 0x2C53 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x267C PUSH2 0x2677 DUP3 PUSH2 0x2C53 JUMP JUMPDEST PUSH2 0x2D27 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x268B DUP2 PUSH2 0x2C5D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x269D DUP3 DUP6 PUSH2 0x20FA JUMP JUMPDEST SWAP2 POP PUSH2 0x26A9 DUP3 DUP5 PUSH2 0x20FA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26C1 DUP3 DUP6 PUSH2 0x266B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x26D1 DUP3 DUP5 PUSH2 0x266B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x26F6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x200C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x2711 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x200C JUMP JUMPDEST PUSH2 0x271E PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x200C JUMP JUMPDEST PUSH2 0x272B PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x273D DUP2 DUP5 PUSH2 0x2088 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x275D PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x200C JUMP JUMPDEST PUSH2 0x276A PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2777 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2784 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2791 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x2682 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27B5 DUP2 DUP5 PUSH2 0x201B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x27D2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2079 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27F2 DUP2 DUP5 PUSH2 0x20C1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2813 DUP2 PUSH2 0x212B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2833 DUP2 PUSH2 0x2191 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2853 DUP2 PUSH2 0x21F7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2873 DUP2 PUSH2 0x2237 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2893 DUP2 PUSH2 0x229D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x28B3 DUP2 PUSH2 0x22DD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x28D3 DUP2 PUSH2 0x2343 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x28F3 DUP2 PUSH2 0x23A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2913 DUP2 PUSH2 0x240F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2933 DUP2 PUSH2 0x2475 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2953 DUP2 PUSH2 0x24B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2973 DUP2 PUSH2 0x251B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2993 DUP2 PUSH2 0x2581 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x29B3 DUP2 PUSH2 0x25E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x29CF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x265C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x29EA PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x29F7 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2682 JUMP JUMPDEST PUSH2 0x2A04 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2A11 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x265C JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x2A2F PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2682 JUMP JUMPDEST PUSH2 0x2A3C PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2A49 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x265C JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2A78 JUMPI PUSH2 0x2A77 PUSH2 0x2DEF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A9D JUMPI PUSH2 0x2A9C PUSH2 0x2DEF JUMP JUMPDEST JUMPDEST PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B39 DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B44 DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2B79 JUMPI PUSH2 0x2B78 PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8F DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B9A DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2BAA JUMPI PUSH2 0x2BA9 PUSH2 0x2D91 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC0 DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BCB DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2BDE JUMPI PUSH2 0x2BDD PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BF4 DUP3 PUSH2 0x2C33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2C97 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2C7C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2CA6 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2CC4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2CD8 JUMPI PUSH2 0x2CD7 PUSH2 0x2DC0 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CE9 DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2D1C JUMPI PUSH2 0x2D1B PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D3C DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D47 DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2D57 JUMPI PUSH2 0x2D56 PUSH2 0x2D91 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2E38 DUP2 PUSH2 0x2BE9 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E43 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E4F DUP2 PUSH2 0x2BFB JUMP JUMPDEST DUP2 EQ PUSH2 0x2E5A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E66 DUP2 PUSH2 0x2C07 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E7D DUP2 PUSH2 0x2C53 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E88 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0xCEC9C2F5622EEB028DB96047BB977061E6F727275E26ECB075CDE05327CB 0xAE PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "267:2623:0:-:0;;;599:46;;;;;;;;;;1375:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449:5;1441;:13;;;;;;;;;;;;:::i;:::-;;1474:7;1464;:17;;;;;;;;;;;;:::i;:::-;;1375:113;;267:2623:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:11:-;;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:2;;212:4;204:6;200:17;190:27;;146:2;274;266:6;263:14;243:18;240:38;237:2;;;293:18;;:::i;:::-;237:2;58:269;;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;267:2623:0;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:29882:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:259:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:73:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "165:6:11"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "124:40:11"
},
"nodeType": "YulFunctionCall",
"src": "124:48:11"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "109:14:11"
},
"nodeType": "YulFunctionCall",
"src": "109:64:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "189:5:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "196:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "182:6:11"
},
"nodeType": "YulFunctionCall",
"src": "182:21:11"
},
"nodeType": "YulExpressionStatement",
"src": "182:21:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "212:27:11",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "227:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "223:3:11"
},
"nodeType": "YulFunctionCall",
"src": "223:16:11"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "216:3:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "277:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "286:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "289:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "279:6:11"
},
"nodeType": "YulFunctionCall",
"src": "279:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "279:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "258:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "263:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "254:3:11"
},
"nodeType": "YulFunctionCall",
"src": "254:16:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "272:3:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "251:2:11"
},
"nodeType": "YulFunctionCall",
"src": "251:25:11"
},
"nodeType": "YulIf",
"src": "248:2:11"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "326:3:11"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "331:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "336:6:11"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "302:23:11"
},
"nodeType": "YulFunctionCall",
"src": "302:41:11"
},
"nodeType": "YulExpressionStatement",
"src": "302:41:11"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:11",
"type": ""
}
],
"src": "7:342:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "407:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "417:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "439:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "426:12:11"
},
"nodeType": "YulFunctionCall",
"src": "426:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "417:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "482:5:11"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "455:26:11"
},
"nodeType": "YulFunctionCall",
"src": "455:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "455:33:11"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "385:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "393:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "401:5:11",
"type": ""
}
],
"src": "355:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "549:84:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "559:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "581:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "568:12:11"
},
"nodeType": "YulFunctionCall",
"src": "568:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "559:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "621:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "597:23:11"
},
"nodeType": "YulFunctionCall",
"src": "597:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "597:30:11"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "527:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "535:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "543:5:11",
"type": ""
}
],
"src": "500:133:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "690:86:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "700:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "722:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "709:12:11"
},
"nodeType": "YulFunctionCall",
"src": "709:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "700:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "764:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "738:25:11"
},
"nodeType": "YulFunctionCall",
"src": "738:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "738:32:11"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "668:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "676:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "684:5:11",
"type": ""
}
],
"src": "639:137:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "844:79:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "854:22:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "863:5:11"
},
"nodeType": "YulFunctionCall",
"src": "863:13:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "854:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "911:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "885:25:11"
},
"nodeType": "YulFunctionCall",
"src": "885:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "885:32:11"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "822:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "830:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "838:5:11",
"type": ""
}
],
"src": "782:141:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1003:210:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1052:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1061:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1064:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1054:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1054:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "1054:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1031:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1039:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1027:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1027:17:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1046:3:11"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1023:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1023:27:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1016:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1016:35:11"
},
"nodeType": "YulIf",
"src": "1013:2:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1077:34:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1104:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1091:12:11"
},
"nodeType": "YulFunctionCall",
"src": "1091:20:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1081:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1120:87:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1180:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1188:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1176:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1176:17:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1195:6:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1203:3:11"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1129:46:11"
},
"nodeType": "YulFunctionCall",
"src": "1129:78:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1120:5:11"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "989:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "997:5:11",
"type": ""
}
],
"src": "942:271:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1271:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1281:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1303:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1290:12:11"
},
"nodeType": "YulFunctionCall",
"src": "1290:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1281:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1346:5:11"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1319:26:11"
},
"nodeType": "YulFunctionCall",
"src": "1319:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "1319:33:11"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1249:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1257:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1265:5:11",
"type": ""
}
],
"src": "1219:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1430:196:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1476:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1485:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1488:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1478:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1478:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "1478:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1451:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1460:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1447:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1447:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1472:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1443:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1443:32:11"
},
"nodeType": "YulIf",
"src": "1440:2:11"
},
{
"nodeType": "YulBlock",
"src": "1502:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1517:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1531:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1521:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1546:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1581:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1592:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1577:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1577:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1601:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1556:20:11"
},
"nodeType": "YulFunctionCall",
"src": "1556:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1546:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1400:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1411:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1423:6:11",
"type": ""
}
],
"src": "1364:262:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1715:324:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1761:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1770:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1773:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1763:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1763:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "1763:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1736:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1745:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1732:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1732:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1757:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1728:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1728:32:11"
},
"nodeType": "YulIf",
"src": "1725:2:11"
},
{
"nodeType": "YulBlock",
"src": "1787:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1802:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1816:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1806:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1831:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1866:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1877:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1862:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1862:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1886:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1841:20:11"
},
"nodeType": "YulFunctionCall",
"src": "1841:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1831:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1914:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1929:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1943:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1933:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1959:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1994:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2005:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1990:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1990:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2014:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1969:20:11"
},
"nodeType": "YulFunctionCall",
"src": "1969:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1959:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1677:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1688:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1700:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1708:6:11",
"type": ""
}
],
"src": "1632:407:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2145:452:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2191:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2200:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2193:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2193:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "2193:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2166:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2175:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2162:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2162:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2187:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2158:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2158:32:11"
},
"nodeType": "YulIf",
"src": "2155:2:11"
},
{
"nodeType": "YulBlock",
"src": "2217:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2232:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2246:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2236:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2261:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2296:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2307:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2292:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2292:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2316:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2271:20:11"
},
"nodeType": "YulFunctionCall",
"src": "2271:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2261:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2344:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2359:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2373:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2363:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2389:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2424:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2435:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2420:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2420:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2444:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2399:20:11"
},
"nodeType": "YulFunctionCall",
"src": "2399:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2389:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2472:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2487:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2501:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2491:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2517:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2552:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2563:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2548:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2548:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2572:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2527:20:11"
},
"nodeType": "YulFunctionCall",
"src": "2527:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2517:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2099:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2110:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2122:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2130:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2138:6:11",
"type": ""
}
],
"src": "2045:552:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2729:683:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2776:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2785:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2778:6:11"
},
"nodeType": "YulFunctionCall",
"src": "2778:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "2778:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2750:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2759:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2746:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2746:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2771:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2742:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2742:33:11"
},
"nodeType": "YulIf",
"src": "2739:2:11"
},
{
"nodeType": "YulBlock",
"src": "2802:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2817:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2831:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2821:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2846:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2881:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2892:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2877:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2877:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2901:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2856:20:11"
},
"nodeType": "YulFunctionCall",
"src": "2856:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2846:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2929:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2944:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2958:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2948:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2974:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3009:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3020:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3005:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3005:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3029:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2984:20:11"
},
"nodeType": "YulFunctionCall",
"src": "2984:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2974:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3057:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3072:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3086:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3076:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3102:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3137:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3148:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3133:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3133:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3157:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3112:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3112:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3102:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3185:220:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3200:46:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3231:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3242:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3227:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3227:18:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3214:12:11"
},
"nodeType": "YulFunctionCall",
"src": "3214:32:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3204:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3293:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3302:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3305:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3295:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3295:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "3295:12:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3265:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3273:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3262:2:11"
},
"nodeType": "YulFunctionCall",
"src": "3262:30:11"
},
"nodeType": "YulIf",
"src": "3259:2:11"
},
{
"nodeType": "YulAssignment",
"src": "3323:72:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3367:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3378:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3363:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3363:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3387:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3333:29:11"
},
"nodeType": "YulFunctionCall",
"src": "3333:62:11"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3323:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2675:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2686:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2698:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2706:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2714:6:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2722:6:11",
"type": ""
}
],
"src": "2603:809:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3498:321:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3544:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3553:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3556:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3546:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3546:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "3546:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3519:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3528:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3515:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3515:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3540:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3511:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3511:32:11"
},
"nodeType": "YulIf",
"src": "3508:2:11"
},
{
"nodeType": "YulBlock",
"src": "3570:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3585:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3599:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3589:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3614:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3649:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3660:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3645:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3645:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3669:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3624:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3624:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3614:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3697:115:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3712:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3716:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3742:60:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3774:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3785:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3770:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3770:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3794:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "3752:17:11"
},
"nodeType": "YulFunctionCall",
"src": "3752:50:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3742:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3460:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3471:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3483:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3491:6:11",
"type": ""
}
],
"src": "3418:401:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3908:324:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3954:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3963:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3966:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3956:6:11"
},
"nodeType": "YulFunctionCall",
"src": "3956:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "3956:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3929:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3938:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3925:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3925:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3950:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3921:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3921:32:11"
},
"nodeType": "YulIf",
"src": "3918:2:11"
},
{
"nodeType": "YulBlock",
"src": "3980:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3995:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4009:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3999:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4024:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4059:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4070:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4055:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4055:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4079:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4034:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4034:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4024:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4107:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4122:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4136:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4126:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4152:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4187:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4198:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4183:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4183:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4207:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4162:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4162:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4152:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3870:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3881:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3893:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3901:6:11",
"type": ""
}
],
"src": "3825:407:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4303:195:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4349:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4358:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4361:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4351:6:11"
},
"nodeType": "YulFunctionCall",
"src": "4351:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "4351:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4324:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4333:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4320:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4320:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4345:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4316:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4316:32:11"
},
"nodeType": "YulIf",
"src": "4313:2:11"
},
{
"nodeType": "YulBlock",
"src": "4375:116:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4390:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4404:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4394:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4419:62:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4453:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4464:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4449:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4449:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4473:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "4429:19:11"
},
"nodeType": "YulFunctionCall",
"src": "4429:52:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4419:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4273:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4284:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4296:6:11",
"type": ""
}
],
"src": "4238:260:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4580:206:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4626:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4635:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4638:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4628:6:11"
},
"nodeType": "YulFunctionCall",
"src": "4628:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "4628:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4601:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4610:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4597:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4597:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4622:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4593:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4593:32:11"
},
"nodeType": "YulIf",
"src": "4590:2:11"
},
{
"nodeType": "YulBlock",
"src": "4652:127:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4667:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4681:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4671:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4696:73:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4741:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4752:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4737:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4737:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4761:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "4706:30:11"
},
"nodeType": "YulFunctionCall",
"src": "4706:63:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4696:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4550:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4561:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4573:6:11",
"type": ""
}
],
"src": "4504:282:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4858:196:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4904:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4913:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4916:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4906:6:11"
},
"nodeType": "YulFunctionCall",
"src": "4906:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "4906:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4879:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4888:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4875:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4875:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4900:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4871:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4871:32:11"
},
"nodeType": "YulIf",
"src": "4868:2:11"
},
{
"nodeType": "YulBlock",
"src": "4930:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4945:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4959:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4949:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4974:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5009:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5020:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5005:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5005:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5029:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4984:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4984:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4974:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4828:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4839:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4851:6:11",
"type": ""
}
],
"src": "4792:262:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5143:324:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5189:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5198:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5201:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5191:6:11"
},
"nodeType": "YulFunctionCall",
"src": "5191:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "5191:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5164:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5173:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5160:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5160:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5185:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5156:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5156:32:11"
},
"nodeType": "YulIf",
"src": "5153:2:11"
},
{
"nodeType": "YulBlock",
"src": "5215:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5230:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5244:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5234:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5259:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5294:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5305:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5290:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5290:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5314:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5269:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5269:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5259:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5342:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5357:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5371:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5361:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5387:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5422:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5433:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5418:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5418:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5442:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5397:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5397:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5387:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5105:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5116:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5128:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5136:6:11",
"type": ""
}
],
"src": "5060:407:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5553:99:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5597:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5605:3:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "5563:33:11"
},
"nodeType": "YulFunctionCall",
"src": "5563:46:11"
},
"nodeType": "YulExpressionStatement",
"src": "5563:46:11"
},
{
"nodeType": "YulAssignment",
"src": "5618:28:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5636:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5641:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5632:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5632:14:11"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "5618:10:11"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5526:6:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5534:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "5542:10:11",
"type": ""
}
],
"src": "5473:179:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5723:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5740:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5763:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5745:17:11"
},
"nodeType": "YulFunctionCall",
"src": "5745:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5733:6:11"
},
"nodeType": "YulFunctionCall",
"src": "5733:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "5733:37:11"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5711:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5718:3:11",
"type": ""
}
],
"src": "5658:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5936:608:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5946:68:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6008:5:11"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5960:47:11"
},
"nodeType": "YulFunctionCall",
"src": "5960:54:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5950:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6023:93:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6104:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6109:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6030:73:11"
},
"nodeType": "YulFunctionCall",
"src": "6030:86:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6023:3:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6125:71:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6190:5:11"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6140:49:11"
},
"nodeType": "YulFunctionCall",
"src": "6140:56:11"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "6129:7:11",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6205:21:11",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "6219:7:11"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "6209:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6295:224:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6309:34:11",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "6336:6:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6330:5:11"
},
"nodeType": "YulFunctionCall",
"src": "6330:13:11"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "6313:13:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6356:70:11",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "6407:13:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6422:3:11"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6363:43:11"
},
"nodeType": "YulFunctionCall",
"src": "6363:63:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6356:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6439:70:11",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "6502:6:11"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6449:52:11"
},
"nodeType": "YulFunctionCall",
"src": "6449:60:11"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "6439:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6257:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6260:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6254:2:11"
},
"nodeType": "YulFunctionCall",
"src": "6254:13:11"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6268:18:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6270:14:11",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6279:1:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6282:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6275:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6275:9:11"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6270:1:11"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6239:14:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6241:10:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6250:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "6245:1:11",
"type": ""
}
]
}
]
},
"src": "6235:284:11"
},
{
"nodeType": "YulAssignment",
"src": "6528:10:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6535:3:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6528:3:11"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5915:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5922:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5931:3:11",
"type": ""
}
],
"src": "5812:732:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6609:50:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6626:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6646:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6631:14:11"
},
"nodeType": "YulFunctionCall",
"src": "6631:21:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6619:6:11"
},
"nodeType": "YulFunctionCall",
"src": "6619:34:11"
},
"nodeType": "YulExpressionStatement",
"src": "6619:34:11"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6597:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6604:3:11",
"type": ""
}
],
"src": "6550:109:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6755:270:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6765:52:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6811:5:11"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6779:31:11"
},
"nodeType": "YulFunctionCall",
"src": "6779:38:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6769:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6826:77:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6891:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6896:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6833:57:11"
},
"nodeType": "YulFunctionCall",
"src": "6833:70:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6826:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6938:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6945:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6934:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6934:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6952:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6957:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6912:21:11"
},
"nodeType": "YulFunctionCall",
"src": "6912:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "6912:52:11"
},
{
"nodeType": "YulAssignment",
"src": "6973:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6984:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7011:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6989:21:11"
},
"nodeType": "YulFunctionCall",
"src": "6989:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6980:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6980:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6973:3:11"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6736:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6743:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6751:3:11",
"type": ""
}
],
"src": "6665:360:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7123:272:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7133:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7180:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7147:32:11"
},
"nodeType": "YulFunctionCall",
"src": "7147:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7137:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7195:78:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7261:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7266:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7202:58:11"
},
"nodeType": "YulFunctionCall",
"src": "7202:71:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7195:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7308:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7315:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7304:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7304:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7322:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7327:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7282:21:11"
},
"nodeType": "YulFunctionCall",
"src": "7282:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "7282:52:11"
},
{
"nodeType": "YulAssignment",
"src": "7343:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7354:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7381:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7359:21:11"
},
"nodeType": "YulFunctionCall",
"src": "7359:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7350:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7350:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7343:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7104:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7111:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7119:3:11",
"type": ""
}
],
"src": "7031:364:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7511:267:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7521:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7568:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7535:32:11"
},
"nodeType": "YulFunctionCall",
"src": "7535:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7525:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7583:96:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7667:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7672:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7590:76:11"
},
"nodeType": "YulFunctionCall",
"src": "7590:89:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7583:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7714:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7721:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7710:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7710:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7728:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7733:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7688:21:11"
},
"nodeType": "YulFunctionCall",
"src": "7688:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "7688:52:11"
},
{
"nodeType": "YulAssignment",
"src": "7749:23:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7760:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7765:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7756:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7756:16:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7749:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7492:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7499:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7507:3:11",
"type": ""
}
],
"src": "7401:377:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7930:236:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7940:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8006:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8011:2:11",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7947:58:11"
},
"nodeType": "YulFunctionCall",
"src": "7947:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7940:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8035:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8040:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8031:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8031:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8044:34:11",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8024:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8024:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "8024:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8100:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8105:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8096:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8096:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8110:20:11",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8089:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8089:42:11"
},
"nodeType": "YulExpressionStatement",
"src": "8089:42:11"
},
{
"nodeType": "YulAssignment",
"src": "8141:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8152:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8157:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8148:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8148:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8141:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7918:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7926:3:11",
"type": ""
}
],
"src": "7784:382:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8318:223:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8328:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8394:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8399:2:11",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8335:58:11"
},
"nodeType": "YulFunctionCall",
"src": "8335:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8328:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8423:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8428:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8419:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8419:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8432:34:11",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8412:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8412:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "8412:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8488:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8493:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8484:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8484:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8498:7:11",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8477:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8477:29:11"
},
"nodeType": "YulExpressionStatement",
"src": "8477:29:11"
},
{
"nodeType": "YulAssignment",
"src": "8516:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8527:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8532:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8523:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8523:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8516:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8306:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8314:3:11",
"type": ""
}
],
"src": "8172:369:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8693:180:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8703:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8769:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8774:2:11",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8710:58:11"
},
"nodeType": "YulFunctionCall",
"src": "8710:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8703:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8798:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8803:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8794:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8794:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8807:30:11",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8787:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8787:51:11"
},
"nodeType": "YulExpressionStatement",
"src": "8787:51:11"
},
{
"nodeType": "YulAssignment",
"src": "8848:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8859:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8864:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8855:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8855:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8848:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8681:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8689:3:11",
"type": ""
}
],
"src": "8547:326:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9025:222:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9035:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9101:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9106:2:11",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9042:58:11"
},
"nodeType": "YulFunctionCall",
"src": "9042:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9035:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9130:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9135:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9126:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9126:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9139:34:11",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9119:6:11"
},
"nodeType": "YulFunctionCall",
"src": "9119:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "9119:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9195:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9200:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9191:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9191:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9205:6:11",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9184:6:11"
},
"nodeType": "YulFunctionCall",
"src": "9184:28:11"
},
"nodeType": "YulExpressionStatement",
"src": "9184:28:11"
},
{
"nodeType": "YulAssignment",
"src": "9222:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9233:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9238:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9229:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9229:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9222:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9013:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9021:3:11",
"type": ""
}
],
"src": "8879:368:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9399:177:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9409:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9475:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9480:2:11",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9416:58:11"
},
"nodeType": "YulFunctionCall",
"src": "9416:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9409:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9504:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9509:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9500:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9500:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9513:27:11",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9493:6:11"
},
"nodeType": "YulFunctionCall",
"src": "9493:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "9493:48:11"
},
{
"nodeType": "YulAssignment",
"src": "9551:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9562:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9567:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9558:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9558:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9551:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9387:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9395:3:11",
"type": ""
}
],
"src": "9253:323:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9728:230:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9738:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9804:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9809:2:11",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9745:58:11"
},
"nodeType": "YulFunctionCall",
"src": "9745:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9738:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9833:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9838:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9829:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9829:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9842:34:11",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9822:6:11"
},
"nodeType": "YulFunctionCall",
"src": "9822:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "9822:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9898:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9903:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9894:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9894:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9908:14:11",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9887:6:11"
},
"nodeType": "YulFunctionCall",
"src": "9887:36:11"
},
"nodeType": "YulExpressionStatement",
"src": "9887:36:11"
},
{
"nodeType": "YulAssignment",
"src": "9933:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9944:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9949:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9940:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9940:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9933:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9716:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9724:3:11",
"type": ""
}
],
"src": "9582:376:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10110:242:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10120:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10186:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10191:2:11",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10127:58:11"
},
"nodeType": "YulFunctionCall",
"src": "10127:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10120:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10215:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10220:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10211:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10211:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10224:34:11",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10204:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10204:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "10204:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10280:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10285:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10276:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10276:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10290:26:11",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10269:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10269:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "10269:48:11"
},
{
"nodeType": "YulAssignment",
"src": "10327:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10338:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10343:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10334:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10334:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10327:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10098:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10106:3:11",
"type": ""
}
],
"src": "9964:388:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10504:228:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10514:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10580:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10585:2:11",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10521:58:11"
},
"nodeType": "YulFunctionCall",
"src": "10521:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10514:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10609:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10614:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10605:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10605:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10618:34:11",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10598:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10598:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "10598:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10674:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10679:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10670:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10670:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10684:12:11",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10663:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10663:34:11"
},
"nodeType": "YulExpressionStatement",
"src": "10663:34:11"
},
{
"nodeType": "YulAssignment",
"src": "10707:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10718:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10723:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10714:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10714:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10707:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10492:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10500:3:11",
"type": ""
}
],
"src": "10358:374:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10884:227:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10894:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10960:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10965:2:11",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10901:58:11"
},
"nodeType": "YulFunctionCall",
"src": "10901:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10894:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10989:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10994:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10985:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10985:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10998:34:11",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10978:6:11"
},
"nodeType": "YulFunctionCall",
"src": "10978:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "10978:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11054:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11059:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11050:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11050:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11064:11:11",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11043:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11043:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "11043:33:11"
},
{
"nodeType": "YulAssignment",
"src": "11086:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11097:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11102:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11093:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11093:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11086:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10872:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10880:3:11",
"type": ""
}
],
"src": "10738:373:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11263:184:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11273:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11339:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11344:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11280:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11280:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11273:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11368:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11373:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11364:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11364:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11377:34:11",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11357:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11357:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "11357:55:11"
},
{
"nodeType": "YulAssignment",
"src": "11422:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11433:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11438:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11429:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11429:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11422:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11251:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11259:3:11",
"type": ""
}
],
"src": "11117:330:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11599:230:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11609:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11675:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11680:2:11",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11616:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11616:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11609:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11704:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11709:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11700:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11700:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11713:34:11",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11693:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11693:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "11693:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11769:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11774:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11765:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11765:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11779:14:11",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11758:6:11"
},
"nodeType": "YulFunctionCall",
"src": "11758:36:11"
},
"nodeType": "YulExpressionStatement",
"src": "11758:36:11"
},
{
"nodeType": "YulAssignment",
"src": "11804:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11815:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11820:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11811:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11811:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11804:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11587:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11595:3:11",
"type": ""
}
],
"src": "11453:376:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11981:233:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11991:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12057:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12062:2:11",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11998:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11998:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11991:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12086:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12091:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12082:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12082:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12095:34:11",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12075:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12075:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "12075:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12151:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12156:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12147:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12147:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12161:17:11",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12140:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12140:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "12140:39:11"
},
{
"nodeType": "YulAssignment",
"src": "12189:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12200:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12205:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12196:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12196:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12189:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11969:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11977:3:11",
"type": ""
}
],
"src": "11835:379:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12366:219:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12376:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12442:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12447:2:11",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12383:58:11"
},
"nodeType": "YulFunctionCall",
"src": "12383:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12376:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12471:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12476:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12467:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12467:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12480:34:11",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12460:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12460:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "12460:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12536:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12541:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12532:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12532:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12546:3:11",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12525:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12525:25:11"
},
"nodeType": "YulExpressionStatement",
"src": "12525:25:11"
},
{
"nodeType": "YulAssignment",
"src": "12560:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12571:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12576:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12567:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12567:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12560:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12354:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12362:3:11",
"type": ""
}
],
"src": "12220:365:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12737:235:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12747:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12813:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12818:2:11",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12754:58:11"
},
"nodeType": "YulFunctionCall",
"src": "12754:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12747:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12842:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12847:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12838:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12838:11:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12851:34:11",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12831:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12831:55:11"
},
"nodeType": "YulExpressionStatement",
"src": "12831:55:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12907:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12912:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12903:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12903:12:11"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12917:19:11",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12896:6:11"
},
"nodeType": "YulFunctionCall",
"src": "12896:41:11"
},
"nodeType": "YulExpressionStatement",
"src": "12896:41:11"
},
{
"nodeType": "YulAssignment",
"src": "12947:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12958:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12963:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12954:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12954:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12947:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12725:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12733:3:11",
"type": ""
}
],
"src": "12591:381:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13033:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13050:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13073:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13055:17:11"
},
"nodeType": "YulFunctionCall",
"src": "13055:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13043:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13043:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "13043:37:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13021:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13028:3:11",
"type": ""
}
],
"src": "12978:108:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13157:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13174:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13197:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13179:17:11"
},
"nodeType": "YulFunctionCall",
"src": "13179:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13167:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13167:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "13167:37:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13145:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13152:3:11",
"type": ""
}
],
"src": "13092:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13299:74:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13316:3:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13359:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "13341:17:11"
},
"nodeType": "YulFunctionCall",
"src": "13341:24:11"
}
],
"functionName": {
"name": "leftAlign_t_uint256",
"nodeType": "YulIdentifier",
"src": "13321:19:11"
},
"nodeType": "YulFunctionCall",
"src": "13321:45:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13309:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13309:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "13309:58:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13287:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13294:3:11",
"type": ""
}
],
"src": "13216:157:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13440:51:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13457:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "13478:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "13462:15:11"
},
"nodeType": "YulFunctionCall",
"src": "13462:22:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13450:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13450:35:11"
},
"nodeType": "YulExpressionStatement",
"src": "13450:35:11"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13428:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13435:3:11",
"type": ""
}
],
"src": "13379:112:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13681:251:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13692:102:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13781:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13790:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "13699:81:11"
},
"nodeType": "YulFunctionCall",
"src": "13699:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13692:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13804:102:11",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "13893:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13902:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "13811:81:11"
},
"nodeType": "YulFunctionCall",
"src": "13811:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13804:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "13916:10:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13923:3:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13916:3:11"
}
]
}
]
},
"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": "13652:3:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "13658:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13666:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13677:3:11",
"type": ""
}
],
"src": "13497:435:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14082:253:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14155:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14164:3:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "14093:61:11"
},
"nodeType": "YulFunctionCall",
"src": "14093:75:11"
},
"nodeType": "YulExpressionStatement",
"src": "14093:75:11"
},
{
"nodeType": "YulAssignment",
"src": "14177:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14188:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14193:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14184:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14184:12:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14177:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14268:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14277:3:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "14206:61:11"
},
"nodeType": "YulFunctionCall",
"src": "14206:75:11"
},
"nodeType": "YulExpressionStatement",
"src": "14206:75:11"
},
{
"nodeType": "YulAssignment",
"src": "14290:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14301:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14306:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14297:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14297:12:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14290:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14319:10:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14326:3:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14319:3:11"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_uint256_t_uint256__to_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14053:3:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14059:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14067:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14078:3:11",
"type": ""
}
],
"src": "13938:397:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14439:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14449:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14461:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14472:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14457:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14457:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14449:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14529:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14542:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14553:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14538:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14538:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "14485:43:11"
},
"nodeType": "YulFunctionCall",
"src": "14485:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "14485:71:11"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14411:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14423:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14434:4:11",
"type": ""
}
],
"src": "14341:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14769:440:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14779:27:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14791:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14802:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14787:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14787:19:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14779:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14860:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14873:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14884:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14869:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14869:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "14816:43:11"
},
"nodeType": "YulFunctionCall",
"src": "14816:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "14816:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14941:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14954:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14965:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14950:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14950:18:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "14897:43:11"
},
"nodeType": "YulFunctionCall",
"src": "14897:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "14897:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15023:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15036:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15047:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15032:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15032:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "14979:43:11"
},
"nodeType": "YulFunctionCall",
"src": "14979:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "14979:72:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15072:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15083:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15068:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15068:18:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15092:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15098:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15088:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15088:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15061:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15061:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "15061:48:11"
},
{
"nodeType": "YulAssignment",
"src": "15118:84:11",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "15188:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15197:4:11"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15126:61:11"
},
"nodeType": "YulFunctionCall",
"src": "15126:76:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15118:4:11"
}
]
}
]
},
"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": "14717:9:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "14729:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "14737:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14745:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14753:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14764:4:11",
"type": ""
}
],
"src": "14569:640:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15421:450:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15431:27:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15443:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15454:3:11",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15439:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15439:19:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15431:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15512:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15525:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15536:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15521:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15521:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "15468:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15468:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "15468:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15593:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15606:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15617:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15602:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15602:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15549:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15549:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "15549:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15675:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15688:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15699:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15684:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15684:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15631:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15631:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "15631:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "15757:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15770:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15781:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15766:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15766:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15713:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15713:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "15713:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "15835:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15848:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15859:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15844:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15844:19:11"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "15795:39:11"
},
"nodeType": "YulFunctionCall",
"src": "15795:69:11"
},
"nodeType": "YulExpressionStatement",
"src": "15795:69:11"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256_t_uint256_t_uint256_t_uint8__to_t_address_t_uint256_t_uint256_t_uint256_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15361:9:11",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "15373:6:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "15381:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "15389:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15397:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15405:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15416:4:11",
"type": ""
}
],
"src": "15215:656:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16025:225:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16035:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16047:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16058:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16043:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16043:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16035:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16082:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16093:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16078:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16078:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16101:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16107:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16097:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16097:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16071:6:11"
},
"nodeType": "YulFunctionCall",
"src": "16071:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "16071:47:11"
},
{
"nodeType": "YulAssignment",
"src": "16127:116:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16229:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16238:4:11"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16135:93:11"
},
"nodeType": "YulFunctionCall",
"src": "16135:108:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16127:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15997:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16009:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16020:4:11",
"type": ""
}
],
"src": "15877:373:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16348:118:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16358:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16370:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16381:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16366:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16366:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16358:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16432:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16445:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16456:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16441:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16441:17:11"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "16394:37:11"
},
"nodeType": "YulFunctionCall",
"src": "16394:65:11"
},
"nodeType": "YulExpressionStatement",
"src": "16394:65:11"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16320:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16332:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16343:4:11",
"type": ""
}
],
"src": "16256:210:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16590:195:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16600:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16612:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16623:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16608:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16608:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16600:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16647:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16658:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16643:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16643:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16666:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16672:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16662:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16662:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16636:6:11"
},
"nodeType": "YulFunctionCall",
"src": "16636:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "16636:47:11"
},
{
"nodeType": "YulAssignment",
"src": "16692:86:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16764:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16773:4:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16700:63:11"
},
"nodeType": "YulFunctionCall",
"src": "16700:78:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16692:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16562:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16574:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16585:4:11",
"type": ""
}
],
"src": "16472:313:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16962:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16972:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16984:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16995:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16980:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16980:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16972:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17019:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17030:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17015:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17015:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17038:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17044:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17034:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17034:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17008:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17008:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "17008:47:11"
},
{
"nodeType": "YulAssignment",
"src": "17064:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17198:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17072:124:11"
},
"nodeType": "YulFunctionCall",
"src": "17072:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17064:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16942:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16957:4:11",
"type": ""
}
],
"src": "16791:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17387:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17397:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17409:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17420:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17405:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17405:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17397:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17444:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17455:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17440:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17440:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17463:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17469:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17459:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17459:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17433:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17433:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "17433:47:11"
},
{
"nodeType": "YulAssignment",
"src": "17489:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17623:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17497:124:11"
},
"nodeType": "YulFunctionCall",
"src": "17497:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17489:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17367:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17382:4:11",
"type": ""
}
],
"src": "17216:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17812:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17822:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17834:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17845:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17830:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17830:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17822:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17869:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17880:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17865:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17865:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17888:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17894:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17884:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17884:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17858:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17858:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "17858:47:11"
},
{
"nodeType": "YulAssignment",
"src": "17914:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18048:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17922:124:11"
},
"nodeType": "YulFunctionCall",
"src": "17922:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17914:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17792:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17807:4:11",
"type": ""
}
],
"src": "17641:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18237:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18247:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18259:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18270:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18255:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18255:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18247:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18294:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18305:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18290:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18290:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18313:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18319:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18309:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18309:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18283:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18283:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "18283:47:11"
},
{
"nodeType": "YulAssignment",
"src": "18339:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18473:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18347:124:11"
},
"nodeType": "YulFunctionCall",
"src": "18347:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18339:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18217:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18232:4:11",
"type": ""
}
],
"src": "18066:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18662:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18672:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18684:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18695:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18680:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18680:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18672:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18719:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18730:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18715:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18715:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18738:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18744:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18734:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18734:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18708:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18708:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "18708:47:11"
},
{
"nodeType": "YulAssignment",
"src": "18764:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18898:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18772:124:11"
},
"nodeType": "YulFunctionCall",
"src": "18772:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18764:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18642:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18657:4:11",
"type": ""
}
],
"src": "18491:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19087:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19097:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19109:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19120:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19105:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19105:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19097:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19144:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19155:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19140:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19140:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19163:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19169:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19159:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19159:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19133:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19133:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "19133:47:11"
},
{
"nodeType": "YulAssignment",
"src": "19189:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19323:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19197:124:11"
},
"nodeType": "YulFunctionCall",
"src": "19197:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19189:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19067:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19082:4:11",
"type": ""
}
],
"src": "18916:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19512:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19522:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19534:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19545:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19530:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19530:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19522:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19569:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19580:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19565:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19565:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19588:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19594:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19584:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19584:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19558:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19558:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "19558:47:11"
},
{
"nodeType": "YulAssignment",
"src": "19614:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19748:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19622:124:11"
},
"nodeType": "YulFunctionCall",
"src": "19622:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19614:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19492:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19507:4:11",
"type": ""
}
],
"src": "19341:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19937:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19947:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19959:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19970:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19955:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19955:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19947:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19994:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20005:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19990:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19990:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20013:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20019:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20009:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20009:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19983:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19983:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "19983:47:11"
},
{
"nodeType": "YulAssignment",
"src": "20039:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20173:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20047:124:11"
},
"nodeType": "YulFunctionCall",
"src": "20047:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20039:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19917:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19932:4:11",
"type": ""
}
],
"src": "19766:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20362:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20372:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20384:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20395:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20380:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20380:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20372:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20419:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20430:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20415:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20415:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20438:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20444:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20434:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20434:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20408:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20408:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "20408:47:11"
},
{
"nodeType": "YulAssignment",
"src": "20464:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20598:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20472:124:11"
},
"nodeType": "YulFunctionCall",
"src": "20472:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20464:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20342:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20357:4:11",
"type": ""
}
],
"src": "20191:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20787:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20797:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20809:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20820:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20805:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20805:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20797:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20844:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20855:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20840:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20840:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20863:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20869:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20859:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20859:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20833:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20833:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "20833:47:11"
},
{
"nodeType": "YulAssignment",
"src": "20889:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21023:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20897:124:11"
},
"nodeType": "YulFunctionCall",
"src": "20897:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20889:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20767:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20782:4:11",
"type": ""
}
],
"src": "20616:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21212:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21222:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21234:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21245:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21230:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21230:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21222:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21269:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21280:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21265:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21265:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21288:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21294:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21284:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21284:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21258:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21258:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "21258:47:11"
},
{
"nodeType": "YulAssignment",
"src": "21314:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21448:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21322:124:11"
},
"nodeType": "YulFunctionCall",
"src": "21322:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21314:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21192:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21207:4:11",
"type": ""
}
],
"src": "21041:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21637:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21647:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21659:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21670:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21655:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21655:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21647:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21694:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21705:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21690:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21690:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21713:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21719:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21709:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21709:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21683:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21683:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "21683:47:11"
},
{
"nodeType": "YulAssignment",
"src": "21739:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21873:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21747:124:11"
},
"nodeType": "YulFunctionCall",
"src": "21747:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21739:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21617:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21632:4:11",
"type": ""
}
],
"src": "21466:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22062:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22072:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22084:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22095:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22080:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22080:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22072:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22119:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22130:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22115:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22115:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22138:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22144:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22134:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22134:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22108:6:11"
},
"nodeType": "YulFunctionCall",
"src": "22108:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "22108:47:11"
},
{
"nodeType": "YulAssignment",
"src": "22164:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22298:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22172:124:11"
},
"nodeType": "YulFunctionCall",
"src": "22172:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22164:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22042:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22057:4:11",
"type": ""
}
],
"src": "21891:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22487:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22497:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22509:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22520:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22505:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22505:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22497:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22544:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22555:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22540:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22540:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22563:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22569:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22559:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22559:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22533:6:11"
},
"nodeType": "YulFunctionCall",
"src": "22533:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "22533:47:11"
},
{
"nodeType": "YulAssignment",
"src": "22589:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22723:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22597:124:11"
},
"nodeType": "YulFunctionCall",
"src": "22597:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22589:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22467:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22482:4:11",
"type": ""
}
],
"src": "22316:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22839:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22849:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22861:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22872:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22857:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22857:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22849:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22929:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22942:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22953:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22938:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22938:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22885:43:11"
},
"nodeType": "YulFunctionCall",
"src": "22885:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "22885:71:11"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22811:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22823:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22834:4:11",
"type": ""
}
],
"src": "22741:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23147:367:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23157:27:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23169:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23180:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23165:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23165:19:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23157:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23238:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23251:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23262:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23247:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23247:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23194:43:11"
},
"nodeType": "YulFunctionCall",
"src": "23194:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "23194:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "23315:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23328:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23339:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23324:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23324:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "23275:39:11"
},
"nodeType": "YulFunctionCall",
"src": "23275:68:11"
},
"nodeType": "YulExpressionStatement",
"src": "23275:68:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "23397:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23410:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23421:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23406:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23406:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23353:43:11"
},
"nodeType": "YulFunctionCall",
"src": "23353:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "23353:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "23479:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23492:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23503:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23488:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23488:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23435:43:11"
},
"nodeType": "YulFunctionCall",
"src": "23435:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "23435:72:11"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint8_t_uint256_t_uint256__to_t_uint256_t_uint8_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23095:9:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "23107:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "23115:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "23123:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23131:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23142:4:11",
"type": ""
}
],
"src": "22969:545:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23670:284:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23680:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23692:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23703:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23688:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23688:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23680:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "23756:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23769:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23780:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23765:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23765:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "23716:39:11"
},
"nodeType": "YulFunctionCall",
"src": "23716:67:11"
},
"nodeType": "YulExpressionStatement",
"src": "23716:67:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "23837:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23850:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23861:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23846:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23846:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23793:43:11"
},
"nodeType": "YulFunctionCall",
"src": "23793:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "23793:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "23919:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23932:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23943:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23928:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23928:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "23875:43:11"
},
"nodeType": "YulFunctionCall",
"src": "23875:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "23875:72:11"
}
]
},
"name": "abi_encode_tuple_t_uint8_t_uint256_t_uint256__to_t_uint8_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23626:9:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "23638:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "23646:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "23654:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23665:4:11",
"type": ""
}
],
"src": "23520:434:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24000:243:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24010:19:11",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24026:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24020:5:11"
},
"nodeType": "YulFunctionCall",
"src": "24020:9:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24010:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "24038:35:11",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24060:6:11"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24068:4:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24056:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24056:17:11"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "24042:10:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24184:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "24186:16:11"
},
"nodeType": "YulFunctionCall",
"src": "24186:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "24186:18:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "24127:10:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24139:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "24124:2:11"
},
"nodeType": "YulFunctionCall",
"src": "24124:34:11"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "24163:10:11"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24175:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "24160:2:11"
},
"nodeType": "YulFunctionCall",
"src": "24160:22:11"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "24121:2:11"
},
"nodeType": "YulFunctionCall",
"src": "24121:62:11"
},
"nodeType": "YulIf",
"src": "24118:2:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24222:2:11",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "24226:10:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24215:6:11"
},
"nodeType": "YulFunctionCall",
"src": "24215:22:11"
},
"nodeType": "YulExpressionStatement",
"src": "24215:22:11"
}
]
},
"name": "allocateMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "23984:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23993:6:11",
"type": ""
}
],
"src": "23960:283:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24315:265:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "24420:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "24422:16:11"
},
"nodeType": "YulFunctionCall",
"src": "24422:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "24422:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24392:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24400:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "24389:2:11"
},
"nodeType": "YulFunctionCall",
"src": "24389:30:11"
},
"nodeType": "YulIf",
"src": "24386:2:11"
},
{
"nodeType": "YulAssignment",
"src": "24472:41:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24488:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24496:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24484:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24484:17:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24507:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "24503:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24503:9:11"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24480:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24480:33:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24472:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24550:23:11",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24562:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24568:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24558:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24558:15:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "24550:4:11"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24299:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "24310:4:11",
"type": ""
}
],
"src": "24249:331:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24658:60:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24668:11:11",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "24676:3:11"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24668:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24689:22:11",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "24701:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24706:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24697:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24697:14:11"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "24689:4:11"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "24645:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "24653:4:11",
"type": ""
}
],
"src": "24586:132:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24798:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24809:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24825:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24819:5:11"
},
"nodeType": "YulFunctionCall",
"src": "24819:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24809:6:11"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24781:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24791:6:11",
"type": ""
}
],
"src": "24724:114:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24902:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24913:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24929:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "24923:5:11"
},
"nodeType": "YulFunctionCall",
"src": "24923:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "24913:6:11"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24885:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "24895:6:11",
"type": ""
}
],
"src": "24844:98:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25007:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25018:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25034:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25028:5:11"
},
"nodeType": "YulFunctionCall",
"src": "25028:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25018:6:11"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24990:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25000:6:11",
"type": ""
}
],
"src": "24948:99:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25128:38:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25138:22:11",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "25150:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25155:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25146:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25146:14:11"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "25138:4:11"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "25115:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "25123:4:11",
"type": ""
}
],
"src": "25053:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25283:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25300:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25305:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25293:6:11"
},
"nodeType": "YulFunctionCall",
"src": "25293:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "25293:19:11"
},
{
"nodeType": "YulAssignment",
"src": "25321:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25340:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25345:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25336:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25336:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25321:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25255:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25260:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25271:11:11",
"type": ""
}
],
"src": "25172:184:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25457:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25474:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25479:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25467:6:11"
},
"nodeType": "YulFunctionCall",
"src": "25467:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "25467:19:11"
},
{
"nodeType": "YulAssignment",
"src": "25495:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25514:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25519:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25510:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25510:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25495:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25429:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25434:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25445:11:11",
"type": ""
}
],
"src": "25362:168:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25632:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25649:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25654:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25642:6:11"
},
"nodeType": "YulFunctionCall",
"src": "25642:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "25642:19:11"
},
{
"nodeType": "YulAssignment",
"src": "25670:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25689:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25694:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25685:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25685:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25670:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25604:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25609:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25620:11:11",
"type": ""
}
],
"src": "25536:169:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25825:34:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25835:18:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25850:3:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "25835:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25797:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25802:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "25813:11:11",
"type": ""
}
],
"src": "25711:148:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25909:261:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25919:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25942:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25924:17:11"
},
"nodeType": "YulFunctionCall",
"src": "25924:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "25919:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "25953:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25976:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "25958:17:11"
},
"nodeType": "YulFunctionCall",
"src": "25958:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "25953:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26116:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26118:16:11"
},
"nodeType": "YulFunctionCall",
"src": "26118:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "26118:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26037:1:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26044:66:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26112:1:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26040:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26040:74:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "26034:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26034:81:11"
},
"nodeType": "YulIf",
"src": "26031:2:11"
},
{
"nodeType": "YulAssignment",
"src": "26148:16:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26159:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26162:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26155:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26155:9:11"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "26148:3:11"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "25896:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "25899:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "25905:3:11",
"type": ""
}
],
"src": "25865:305:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26218:143:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26228:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26251:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26233:17:11"
},
"nodeType": "YulFunctionCall",
"src": "26233:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26228:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26262:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26285:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26267:17:11"
},
"nodeType": "YulFunctionCall",
"src": "26267:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26262:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26309:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "26311:16:11"
},
"nodeType": "YulFunctionCall",
"src": "26311:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "26311:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26306:1:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26299:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26299:9:11"
},
"nodeType": "YulIf",
"src": "26296:2:11"
},
{
"nodeType": "YulAssignment",
"src": "26341:14:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26350:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26353:1:11"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "26346:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26346:9:11"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "26341:1:11"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26207:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26210:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "26216:1:11",
"type": ""
}
],
"src": "26176:185:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26412:146:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26422:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26445:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26427:17:11"
},
"nodeType": "YulFunctionCall",
"src": "26427:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26422:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "26456:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26479:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26461:17:11"
},
"nodeType": "YulFunctionCall",
"src": "26461:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26456:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26503:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26505:16:11"
},
"nodeType": "YulFunctionCall",
"src": "26505:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "26505:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26497:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26500:1:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "26494:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26494:8:11"
},
"nodeType": "YulIf",
"src": "26491:2:11"
},
{
"nodeType": "YulAssignment",
"src": "26535:17:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "26547:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "26550:1:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26543:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26543:9:11"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "26535:4:11"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "26398:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "26401:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "26407:4:11",
"type": ""
}
],
"src": "26367:191:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26609:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26619:35:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26648:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "26630:17:11"
},
"nodeType": "YulFunctionCall",
"src": "26630:24:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26619:7:11"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26591:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26601:7:11",
"type": ""
}
],
"src": "26564:96:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26708:48:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26718:32:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26743:5:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26736:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26736:13:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26729:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26729:21:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26718:7:11"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26690:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26700:7:11",
"type": ""
}
],
"src": "26666:90:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26806:105:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26816:89:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26831:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26838:66:11",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26827:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26827:78:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26816:7:11"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26788:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26798:7:11",
"type": ""
}
],
"src": "26762:149:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26962:81:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26972:65:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26987:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26994:42:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26983:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26983:54:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "26972:7:11"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26944:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "26954:7:11",
"type": ""
}
],
"src": "26917:126:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27094:32:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27104:16:11",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "27115:5:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27104:7:11"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27076:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27086:7:11",
"type": ""
}
],
"src": "27049:77:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27175:43:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27185:27:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27200:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27207:4:11",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27196:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27196:16:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "27185:7:11"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27157:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "27167:7:11",
"type": ""
}
],
"src": "27132:86:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27275:103:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27298:3:11"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "27303:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27308:6:11"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "27285:12:11"
},
"nodeType": "YulFunctionCall",
"src": "27285:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "27285:30:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27356:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27361:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27352:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27352:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27370:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27345:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27345:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "27345:27:11"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "27257:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "27262:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27267:6:11",
"type": ""
}
],
"src": "27224:154:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27433:258:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "27443:10:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "27452:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "27447:1:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27512:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27537:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27542:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27533:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27533:11:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "27556:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27561:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27552:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27552:11:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "27546:5:11"
},
"nodeType": "YulFunctionCall",
"src": "27546:18:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27526:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27526:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "27526:39:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27473:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27476:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27470:2:11"
},
"nodeType": "YulFunctionCall",
"src": "27470:13:11"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "27484:19:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27486:15:11",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27495:1:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27498:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27491:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27491:10:11"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27486:1:11"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "27466:3:11",
"statements": []
},
"src": "27462:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27609:76:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "27659:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27664:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27655:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27655:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27673:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27648:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27648:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "27648:27:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "27590:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27593:6:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "27587:2:11"
},
"nodeType": "YulFunctionCall",
"src": "27587:13:11"
},
"nodeType": "YulIf",
"src": "27584:2:11"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "27415:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "27420:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27425:6:11",
"type": ""
}
],
"src": "27384:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27748:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27758:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27772:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27778:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "27768:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27768:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27758:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "27789:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "27819:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27825:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27815:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27815:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "27793:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27866:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27880:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27894:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27902:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "27890:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27890:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27880:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "27846:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27839:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27839:26:11"
},
"nodeType": "YulIf",
"src": "27836:2:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27969:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "27983:16:11"
},
"nodeType": "YulFunctionCall",
"src": "27983:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "27983:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "27933:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "27956:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27964:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "27953:2:11"
},
"nodeType": "YulFunctionCall",
"src": "27953:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27930:2:11"
},
"nodeType": "YulFunctionCall",
"src": "27930:38:11"
},
"nodeType": "YulIf",
"src": "27927:2:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "27732:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "27741:6:11",
"type": ""
}
],
"src": "27697:320:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28066:190:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28076:33:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28103:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28085:17:11"
},
"nodeType": "YulFunctionCall",
"src": "28085:24:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28076:5:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28199:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "28201:16:11"
},
"nodeType": "YulFunctionCall",
"src": "28201:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "28201:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28124:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28131:66:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "28121:2:11"
},
"nodeType": "YulFunctionCall",
"src": "28121:77:11"
},
"nodeType": "YulIf",
"src": "28118:2:11"
},
{
"nodeType": "YulAssignment",
"src": "28230:20:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28241:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28248:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28237:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28237:13:11"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "28230:3:11"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28052:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "28062:3:11",
"type": ""
}
],
"src": "28023:233:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28309:32:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28319:16:11",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "28330:5:11"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "28319:7:11"
}
]
}
]
},
"name": "leftAlign_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28291:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "28301:7:11",
"type": ""
}
],
"src": "28262:79:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28381:142:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28391:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28414:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28396:17:11"
},
"nodeType": "YulFunctionCall",
"src": "28396:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28391:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28425:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28448:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "28430:17:11"
},
"nodeType": "YulFunctionCall",
"src": "28430:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28425:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "28472:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "28474:16:11"
},
"nodeType": "YulFunctionCall",
"src": "28474:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "28474:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28469:1:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "28462:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28462:9:11"
},
"nodeType": "YulIf",
"src": "28459:2:11"
},
{
"nodeType": "YulAssignment",
"src": "28503:14:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "28512:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "28515:1:11"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "28508:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28508:9:11"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "28503:1:11"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "28370:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "28373:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "28379:1:11",
"type": ""
}
],
"src": "28347:176:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28557:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28574:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28577:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28567:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28567:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "28567:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28671:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28674:4:11",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28664:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28664:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "28664:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28695:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28698:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28688:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28688:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "28688:15:11"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "28529:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28743:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28760:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28763:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28753:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28753:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "28753:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28857:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28860:4:11",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28850:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28850:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "28850:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28881:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28884:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28874:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28874:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "28874:15:11"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "28715:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28929:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28946:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28949:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28939:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28939:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "28939:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29043:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29046:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29036:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29036:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "29036:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29067:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29070:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29060:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29060:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "29060:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "28901:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29115:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29132:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29135:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29125:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29125:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "29125:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29229:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29232:4:11",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29222:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29222:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "29222:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29253:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29256:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29246:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29246:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "29246:15:11"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "29087:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29321:54:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29331:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29349:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29356:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29345:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29345:14:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29365:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "29361:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29361:7:11"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "29341:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29341:28:11"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "29331:6:11"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29304:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "29314:6:11",
"type": ""
}
],
"src": "29273:102:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29424:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29481:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29490:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29493:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29483:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29483:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "29483:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29447:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29472:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "29454:17:11"
},
"nodeType": "YulFunctionCall",
"src": "29454:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29444:2:11"
},
"nodeType": "YulFunctionCall",
"src": "29444:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29437:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29437:43:11"
},
"nodeType": "YulIf",
"src": "29434:2:11"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29417:5:11",
"type": ""
}
],
"src": "29381:122:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29549:76:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29603:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29612:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29615:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29605:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29605:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "29605:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29572:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29594:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "29579:14:11"
},
"nodeType": "YulFunctionCall",
"src": "29579:21:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29569:2:11"
},
"nodeType": "YulFunctionCall",
"src": "29569:32:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29562:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29562:40:11"
},
"nodeType": "YulIf",
"src": "29559:2:11"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29542:5:11",
"type": ""
}
],
"src": "29509:116:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29673:78:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29729:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29738:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29741:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29731:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29731:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "29731:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29696:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29720:5:11"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "29703:16:11"
},
"nodeType": "YulFunctionCall",
"src": "29703:23:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29693:2:11"
},
"nodeType": "YulFunctionCall",
"src": "29693:34:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29686:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29686:42:11"
},
"nodeType": "YulIf",
"src": "29683:2:11"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29666:5:11",
"type": ""
}
],
"src": "29631:120:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29800:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29857:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29866:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29869:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "29859:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29859:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "29859:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29823:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29848:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29830:17:11"
},
"nodeType": "YulFunctionCall",
"src": "29830:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "29820:2:11"
},
"nodeType": "YulFunctionCall",
"src": "29820:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "29813:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29813:43:11"
},
"nodeType": "YulIf",
"src": "29810:2:11"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29793:5:11",
"type": ""
}
],
"src": "29757:122:11"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocateMemory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert(0, 0) }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert(0, 0) }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(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_encodeUpdatedPos_t_uint256_to_t_uint256(value0, pos) -> updatedPos {\n abi_encode_t_uint256_to_t_uint256(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n 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\n mstore(add(pos, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(pos, 32), \"ceiver implementer\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n\n mstore(add(pos, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(pos, 32), \"owner\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n\n mstore(add(pos, 0), \"ERC721: token already minted\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n\n mstore(add(pos, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(pos, 32), \"ress\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n\n mstore(add(pos, 0), \"ERC721: approve to caller\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n\n mstore(add(pos, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(pos, 32), \"istent token\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n\n mstore(add(pos, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(pos, 32), \"ner nor approved for all\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n\n mstore(add(pos, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(pos, 32), \"ro address\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n\n mstore(add(pos, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(pos, 32), \"ent token\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n\n mstore(add(pos, 0), \"ERC721: mint to the zero address\")\n\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n\n mstore(add(pos, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(pos, 32), \"istent token\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n\n mstore(add(pos, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(pos, 32), \"nexistent token\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n\n mstore(add(pos, 0), \"ERC721: approval to current owne\")\n\n mstore(add(pos, 32), \"r\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n\n mstore(add(pos, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(pos, 32), \"wner nor approved\")\n\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_uint256(cleanup_t_uint256(value)))\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_packed_t_uint256_t_uint256__to_t_uint256_t_uint256__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value0, pos)\n pos := add(pos, 32)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value1, pos)\n pos := add(pos, 32)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_encode_tuple_t_address_t_uint256_t_uint256_t_uint256_t_uint8__to_t_address_t_uint256_t_uint256_t_uint256_t_uint8__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value4, add(headStart, 128))\n\n }\n\n function abi_encode_tuple_t_array$_t_uint256_$dyn_memory_ptr__to_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_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_encode_tuple_t_uint256_t_uint8_t_uint256_t_uint256__to_t_uint256_t_uint8_t_uint256_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n }\n\n function abi_encode_tuple_t_uint8_t_uint256_t_uint256__to_t_uint8_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function allocateMemory(size) -> memPtr {\n memPtr := mload(64)\n let newFreePtr := add(memPtr, 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 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 // round up\n size := and(add(length, 0x1f), not(0x1f))\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function leftAlign_t_uint256(value) -> aligned {\n aligned := value\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040526004361061010d5760003560e01c80636352211e11610095578063a22cb46511610064578063a22cb465146103a6578063ab967221146103cf578063b88d4fde146103ff578063c87b56dd14610428578063e985e9c51461046557610114565b80636352211e146102c257806370a08231146102ff5780638b1e199b1461033c57806395d89b411461037b57610114565b806323b872dd116100dc57806323b872dd146101e7578063278a45971461021057806329d8b9891461025057806333293e651461027b57806342842e0e1461029957610114565b806301ffc9a71461011957806306fdde0314610156578063081812fc14610181578063095ea7b3146101be57610114565b3661011457005b600080fd5b34801561012557600080fd5b50610140600480360381019061013b9190611f3d565b6104a2565b60405161014d91906127bd565b60405180910390f35b34801561016257600080fd5b5061016b610584565b60405161017891906127d8565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190611f8f565b610616565b6040516101b591906126e1565b60405180910390f35b3480156101ca57600080fd5b506101e560048036038101906101e09190611f01565b61069b565b005b3480156101f357600080fd5b5061020e60048036038101906102099190611dfb565b6107b3565b005b34801561021c57600080fd5b5061023760048036038101906102329190611f8f565b610813565b60405161024794939291906129d5565b60405180910390f35b34801561025c57600080fd5b50610265610892565b604051610272919061279b565b60405180910390f35b610283610a55565b60405161029091906129ba565b60405180910390f35b3480156102a557600080fd5b506102c060048036038101906102bb9190611dfb565b610aa0565b005b3480156102ce57600080fd5b506102e960048036038101906102e49190611f8f565b610ac0565b6040516102f691906126e1565b60405180910390f35b34801561030b57600080fd5b5061032660048036038101906103219190611d96565b610b72565b60405161033391906129ba565b60405180910390f35b34801561034857600080fd5b50610363600480360381019061035e9190611f8f565b610c2a565b60405161037293929190612a1a565b60405180910390f35b34801561038757600080fd5b50610390610c71565b60405161039d91906127d8565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190611ec5565b610d03565b005b6103e960048036038101906103e49190611fb8565b610d19565b6040516103f691906129ba565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190611e4a565b610d41565b005b34801561043457600080fd5b5061044f600480360381019061044a9190611f8f565b610da3565b60405161045c91906127d8565b60405180910390f35b34801561047157600080fd5b5061048c60048036038101906104879190611dbf565b610e4a565b60405161049991906127bd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061056d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061057d575061057c82610ede565b5b9050919050565b60606000805461059390612cac565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf90612cac565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b5050505050905090565b600061062182610f48565b610660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106579061293a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a682610ac0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070e9061297a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610736610fb4565b73ffffffffffffffffffffffffffffffffffffffff16148061076557506107648161075f610fb4565b610e4a565b5b6107a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079b906128ba565b60405180910390fd5b6107ae8383610fbc565b505050565b6107c46107be610fb4565b82611075565b610803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fa9061299a565b60405180910390fd5b61080e838383611153565b505050565b600080600080600060068681548110610855577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090600302019050858160000160009054906101000a900460ff16826001015483600201549450945094509450509193509193565b6060600061089f33610b72565b9050600081141561092257600067ffffffffffffffff8111156108eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109195781602001602082028036833780820191505090505b50915050610a52565b60008167ffffffffffffffff811115610964577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156109925781602001602082028036833780820191505090505b509050600060068054905090506000805b82811015610a49573373ffffffffffffffffffffffffffffffffffffffff166109cb82610ac0565b73ffffffffffffffffffffffffffffffffffffffff161415610a2e5780848381518110610a21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b610a426001826113ba90919063ffffffff16565b90506109a3565b83955050505050505b90565b600066470de4df8200003414610a6a57600080fd5b610a9b6006610a776113d0565b610a819190612d31565b6006610a8b6113d0565b610a959190612d31565b33611403565b905090565b610abb83838360405180602001604052806000815250610d41565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b60906128fa565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda906128da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60068181548110610c3a57600080fd5b90600052602060002090600302016000915090508060000160009054906101000a900460ff16908060010154908060020154905083565b606060018054610c8090612cac565b80601f0160208091040260200160405190810160405280929190818152602001828054610cac90612cac565b8015610cf95780601f10610cce57610100808354040283529160200191610cf9565b820191906000526020600020905b815481529060010190602001808311610cdc57829003601f168201915b5050505050905090565b610d15610d0e610fb4565b8383611549565b5050565b600066b1a2bc2ec500003414610d2e57600080fd5b610d39838333611403565b905092915050565b610d52610d4c610fb4565b83611075565b610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d889061299a565b60405180910390fd5b610d9d848484846116b6565b50505050565b6060610dae82610f48565b610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de49061295a565b60405180910390fd5b6000610df7611712565b90506000815111610e175760405180602001604052806000815250610e42565b80610e2184611729565b604051602001610e32929190612691565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661102f83610ac0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061108082610f48565b6110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b69061289a565b60405180910390fd5b60006110ca83610ac0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061113957508373ffffffffffffffffffffffffffffffffffffffff1661112184610616565b73ffffffffffffffffffffffffffffffffffffffff16145b8061114a57506111498185610e4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661117382610ac0565b73ffffffffffffffffffffffffffffffffffffffff16146111c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c09061281a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611239576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112309061285a565b60405180910390fd5b6112448383836118d6565b61124f600082610fbc565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461129f9190612bb5565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112f69190612b2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46113b58383836118db565b505050565b600081836113c89190612b2e565b905092915050565b600044426040516020016113e59291906126b5565b6040516020818303038152906040528051906020012060001c905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143e57600080fd5b600061144a85856118e0565b9050600060405180606001604052808360ff168152602001878152602001868152509050600681908060018154018082558091505060019003906000526020600020906003020160009091909190915060008201518160000160006101000a81548160ff021916908360ff16021790555060208201518160010155604082015181600201555050600060016006805490506114e59190612bb5565b90506114f18582611915565b7f3e55573ff0e76f82bdde8a92fcb5d2f10d2836d0ba36df6ad1d389e2cc2b3e0d8582846020015185604001518660000151604051611534959493929190612748565b60405180910390a18093505050509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af9061287a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a991906127bd565b60405180910390a3505050565b6116c1848484611153565b6116cd84848484611aef565b61170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611703906127fa565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611771576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506118d1565b600082905060005b600082146117a357808061178c90612cde565b915050600a8261179c9190612b84565b9150611779565b60008167ffffffffffffffff8111156117e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118175781602001600182028036833780820191505090505b5090505b600085146118ca576001826118309190612bb5565b9150600a8561183f9190612d31565b603061184b9190612b2e565b60f81b818381518110611887577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856118c39190612b84565b945061181b565b8093505050505b919050565b505050565b505050565b6000600160066118f984866113ba90919063ffffffff16565b6119039190612d31565b61190d9190612b2e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611985576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197c9061291a565b60405180910390fd5b61198e81610f48565b156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c59061283a565b60405180910390fd5b6119da600083836118d6565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2a9190612b2e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611aeb600083836118db565b5050565b6000611b108473ffffffffffffffffffffffffffffffffffffffff16611c86565b15611c79578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b39610fb4565b8786866040518563ffffffff1660e01b8152600401611b5b94939291906126fc565b602060405180830381600087803b158015611b7557600080fd5b505af1925050508015611ba657506040513d601f19601f82011682018060405250810190611ba39190611f66565b60015b611c29573d8060008114611bd6576040519150601f19603f3d011682016040523d82523d6000602084013e611bdb565b606091505b50600081511415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c18906127fa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611c7e565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff16803b806020016040519081016040528181526000908060200190933c51119050919050565b6000611cd8611cd384612a82565b612a51565b905082815260208101848484011115611cf057600080fd5b611cfb848285612c6a565b509392505050565b600081359050611d1281612e2f565b92915050565b600081359050611d2781612e46565b92915050565b600081359050611d3c81612e5d565b92915050565b600081519050611d5181612e5d565b92915050565b600082601f830112611d6857600080fd5b8135611d78848260208601611cc5565b91505092915050565b600081359050611d9081612e74565b92915050565b600060208284031215611da857600080fd5b6000611db684828501611d03565b91505092915050565b60008060408385031215611dd257600080fd5b6000611de085828601611d03565b9250506020611df185828601611d03565b9150509250929050565b600080600060608486031215611e1057600080fd5b6000611e1e86828701611d03565b9350506020611e2f86828701611d03565b9250506040611e4086828701611d81565b9150509250925092565b60008060008060808587031215611e6057600080fd5b6000611e6e87828801611d03565b9450506020611e7f87828801611d03565b9350506040611e9087828801611d81565b925050606085013567ffffffffffffffff811115611ead57600080fd5b611eb987828801611d57565b91505092959194509250565b60008060408385031215611ed857600080fd5b6000611ee685828601611d03565b9250506020611ef785828601611d18565b9150509250929050565b60008060408385031215611f1457600080fd5b6000611f2285828601611d03565b9250506020611f3385828601611d81565b9150509250929050565b600060208284031215611f4f57600080fd5b6000611f5d84828501611d2d565b91505092915050565b600060208284031215611f7857600080fd5b6000611f8684828501611d42565b91505092915050565b600060208284031215611fa157600080fd5b6000611faf84828501611d81565b91505092915050565b60008060408385031215611fcb57600080fd5b6000611fd985828601611d81565b9250506020611fea85828601611d81565b9150509250929050565b6000612000838361264d565b60208301905092915050565b61201581612be9565b82525050565b600061202682612ac2565b6120308185612af0565b935061203b83612ab2565b8060005b8381101561206c5781516120538882611ff4565b975061205e83612ae3565b92505060018101905061203f565b5085935050505092915050565b61208281612bfb565b82525050565b600061209382612acd565b61209d8185612b01565b93506120ad818560208601612c79565b6120b681612e1e565b840191505092915050565b60006120cc82612ad8565b6120d68185612b12565b93506120e6818560208601612c79565b6120ef81612e1e565b840191505092915050565b600061210582612ad8565b61210f8185612b23565b935061211f818560208601612c79565b80840191505092915050565b6000612138603283612b12565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061219e602583612b12565b91507f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008301527f6f776e65720000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612204601c83612b12565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612244602483612b12565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006122aa601983612b12565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006122ea602c83612b12565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612350603883612b12565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006123b6602a83612b12565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b600061241c602983612b12565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000612482602083612b12565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006124c2602c83612b12565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000612528602f83612b12565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061258e602183612b12565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125f4603183612b12565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b61265681612c53565b82525050565b61266581612c53565b82525050565b61267c61267782612c53565b612d27565b82525050565b61268b81612c5d565b82525050565b600061269d82856120fa565b91506126a982846120fa565b91508190509392505050565b60006126c1828561266b565b6020820191506126d1828461266b565b6020820191508190509392505050565b60006020820190506126f6600083018461200c565b92915050565b6000608082019050612711600083018761200c565b61271e602083018661200c565b61272b604083018561265c565b818103606083015261273d8184612088565b905095945050505050565b600060a08201905061275d600083018861200c565b61276a602083018761265c565b612777604083018661265c565b612784606083018561265c565b6127916080830184612682565b9695505050505050565b600060208201905081810360008301526127b5818461201b565b905092915050565b60006020820190506127d26000830184612079565b92915050565b600060208201905081810360008301526127f281846120c1565b905092915050565b600060208201905081810360008301526128138161212b565b9050919050565b6000602082019050818103600083015261283381612191565b9050919050565b60006020820190508181036000830152612853816121f7565b9050919050565b6000602082019050818103600083015261287381612237565b9050919050565b600060208201905081810360008301526128938161229d565b9050919050565b600060208201905081810360008301526128b3816122dd565b9050919050565b600060208201905081810360008301526128d381612343565b9050919050565b600060208201905081810360008301526128f3816123a9565b9050919050565b600060208201905081810360008301526129138161240f565b9050919050565b6000602082019050818103600083015261293381612475565b9050919050565b60006020820190508181036000830152612953816124b5565b9050919050565b600060208201905081810360008301526129738161251b565b9050919050565b6000602082019050818103600083015261299381612581565b9050919050565b600060208201905081810360008301526129b3816125e7565b9050919050565b60006020820190506129cf600083018461265c565b92915050565b60006080820190506129ea600083018761265c565b6129f76020830186612682565b612a04604083018561265c565b612a11606083018461265c565b95945050505050565b6000606082019050612a2f6000830186612682565b612a3c602083018561265c565b612a49604083018461265c565b949350505050565b6000604051905081810181811067ffffffffffffffff82111715612a7857612a77612def565b5b8060405250919050565b600067ffffffffffffffff821115612a9d57612a9c612def565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612b3982612c53565b9150612b4483612c53565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b7957612b78612d62565b5b828201905092915050565b6000612b8f82612c53565b9150612b9a83612c53565b925082612baa57612ba9612d91565b5b828204905092915050565b6000612bc082612c53565b9150612bcb83612c53565b925082821015612bde57612bdd612d62565b5b828203905092915050565b6000612bf482612c33565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015612c97578082015181840152602081019050612c7c565b83811115612ca6576000848401525b50505050565b60006002820490506001821680612cc457607f821691505b60208210811415612cd857612cd7612dc0565b5b50919050565b6000612ce982612c53565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d1c57612d1b612d62565b5b600182019050919050565b6000819050919050565b6000612d3c82612c53565b9150612d4783612c53565b925082612d5757612d56612d91565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b612e3881612be9565b8114612e4357600080fd5b50565b612e4f81612bfb565b8114612e5a57600080fd5b50565b612e6681612c07565b8114612e7157600080fd5b50565b612e7d81612c53565b8114612e8857600080fd5b5056fea26469706673582212207dcec9c2f5622eeb028db96047bb977061e6f727275e26ecb075cde05327cbae64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x10D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x95 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x3A6 JUMPI DUP1 PUSH4 0xAB967221 EQ PUSH2 0x3CF JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x3FF JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x428 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x465 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x2C2 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2FF JUMPI DUP1 PUSH4 0x8B1E199B EQ PUSH2 0x33C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x37B JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E7 JUMPI DUP1 PUSH4 0x278A4597 EQ PUSH2 0x210 JUMPI DUP1 PUSH4 0x29D8B989 EQ PUSH2 0x250 JUMPI DUP1 PUSH4 0x33293E65 EQ PUSH2 0x27B JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x299 JUMPI PUSH2 0x114 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x119 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x156 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x181 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1BE JUMPI PUSH2 0x114 JUMP JUMPDEST CALLDATASIZE PUSH2 0x114 JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x125 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x140 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x13B SWAP2 SWAP1 PUSH2 0x1F3D JUMP JUMPDEST PUSH2 0x4A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14D SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x162 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x16B PUSH2 0x584 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x178 SWAP2 SWAP1 PUSH2 0x27D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0x616 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1B5 SWAP2 SWAP1 PUSH2 0x26E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1E0 SWAP2 SWAP1 PUSH2 0x1F01 JUMP JUMPDEST PUSH2 0x69B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1F3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x20E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0x7B3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x21C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x237 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x232 SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0x813 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x247 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x29D5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x25C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x265 PUSH2 0x892 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x279B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x283 PUSH2 0xA55 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x290 SWAP2 SWAP1 PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2A5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2BB SWAP2 SWAP1 PUSH2 0x1DFB JUMP JUMPDEST PUSH2 0xAA0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2CE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2E9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E4 SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0xAC0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F6 SWAP2 SWAP1 PUSH2 0x26E1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x326 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x321 SWAP2 SWAP1 PUSH2 0x1D96 JUMP JUMPDEST PUSH2 0xB72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x333 SWAP2 SWAP1 PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x348 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x363 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x35E SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0xC2A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x372 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x387 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x390 PUSH2 0xC71 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x39D SWAP2 SWAP1 PUSH2 0x27D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3B2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3CD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C8 SWAP2 SWAP1 PUSH2 0x1EC5 JUMP JUMPDEST PUSH2 0xD03 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3E9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3E4 SWAP2 SWAP1 PUSH2 0x1FB8 JUMP JUMPDEST PUSH2 0xD19 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F6 SWAP2 SWAP1 PUSH2 0x29BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x426 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x421 SWAP2 SWAP1 PUSH2 0x1E4A JUMP JUMPDEST PUSH2 0xD41 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x434 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x44F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x44A SWAP2 SWAP1 PUSH2 0x1F8F JUMP JUMPDEST PUSH2 0xDA3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x45C SWAP2 SWAP1 PUSH2 0x27D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x471 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x48C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x487 SWAP2 SWAP1 PUSH2 0x1DBF JUMP JUMPDEST PUSH2 0xE4A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x499 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x56D JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x57D JUMPI POP PUSH2 0x57C DUP3 PUSH2 0xEDE JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x593 SWAP1 PUSH2 0x2CAC 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 0x5BF SWAP1 PUSH2 0x2CAC JUMP JUMPDEST DUP1 ISZERO PUSH2 0x60C JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5E1 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x60C 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 0x5EF JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x621 DUP3 PUSH2 0xF48 JUMP JUMPDEST PUSH2 0x660 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x657 SWAP1 PUSH2 0x293A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6A6 DUP3 PUSH2 0xAC0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x717 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x70E SWAP1 PUSH2 0x297A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x736 PUSH2 0xFB4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x765 JUMPI POP PUSH2 0x764 DUP2 PUSH2 0x75F PUSH2 0xFB4 JUMP JUMPDEST PUSH2 0xE4A JUMP JUMPDEST JUMPDEST PUSH2 0x7A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x79B SWAP1 PUSH2 0x28BA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7AE DUP4 DUP4 PUSH2 0xFBC JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x7C4 PUSH2 0x7BE PUSH2 0xFB4 JUMP JUMPDEST DUP3 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0x803 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7FA SWAP1 PUSH2 0x299A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x80E DUP4 DUP4 DUP4 PUSH2 0x1153 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x6 DUP7 DUP2 SLOAD DUP2 LT PUSH2 0x855 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD SWAP1 POP DUP6 DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP3 PUSH1 0x1 ADD SLOAD DUP4 PUSH1 0x2 ADD SLOAD SWAP5 POP SWAP5 POP SWAP5 POP SWAP5 POP POP SWAP2 SWAP4 POP SWAP2 SWAP4 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH2 0x89F CALLER PUSH2 0xB72 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 EQ ISZERO PUSH2 0x922 JUMPI PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8EB JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x919 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP2 POP POP PUSH2 0xA52 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x964 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x992 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 PUSH1 0x6 DUP1 SLOAD SWAP1 POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xA49 JUMPI CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x9CB DUP3 PUSH2 0xAC0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xA2E JUMPI DUP1 DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xA21 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP JUMPDEST PUSH2 0xA42 PUSH1 0x1 DUP3 PUSH2 0x13BA SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP PUSH2 0x9A3 JUMP JUMPDEST DUP4 SWAP6 POP POP POP POP POP POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH7 0x470DE4DF820000 CALLVALUE EQ PUSH2 0xA6A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xA9B PUSH1 0x6 PUSH2 0xA77 PUSH2 0x13D0 JUMP JUMPDEST PUSH2 0xA81 SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST PUSH1 0x6 PUSH2 0xA8B PUSH2 0x13D0 JUMP JUMPDEST PUSH2 0xA95 SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST CALLER PUSH2 0x1403 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xABB DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xD41 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xB69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB60 SWAP1 PUSH2 0x28FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xBE3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBDA SWAP1 PUSH2 0x28DA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x6 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xC3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 POP DUP4 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0xC80 SWAP1 PUSH2 0x2CAC 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 0xCAC SWAP1 PUSH2 0x2CAC JUMP JUMPDEST DUP1 ISZERO PUSH2 0xCF9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xCCE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xCF9 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 0xCDC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xD15 PUSH2 0xD0E PUSH2 0xFB4 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x1549 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH7 0xB1A2BC2EC50000 CALLVALUE EQ PUSH2 0xD2E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xD39 DUP4 DUP4 CALLER PUSH2 0x1403 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD52 PUSH2 0xD4C PUSH2 0xFB4 JUMP JUMPDEST DUP4 PUSH2 0x1075 JUMP JUMPDEST PUSH2 0xD91 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD88 SWAP1 PUSH2 0x299A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD9D DUP5 DUP5 DUP5 DUP5 PUSH2 0x16B6 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xDAE DUP3 PUSH2 0xF48 JUMP JUMPDEST PUSH2 0xDED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDE4 SWAP1 PUSH2 0x295A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xDF7 PUSH2 0x1712 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0xE17 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0xE42 JUMP JUMPDEST DUP1 PUSH2 0xE21 DUP5 PUSH2 0x1729 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE32 SWAP3 SWAP2 SWAP1 PUSH2 0x2691 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST 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 0x102F DUP4 PUSH2 0xAC0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1080 DUP3 PUSH2 0xF48 JUMP JUMPDEST PUSH2 0x10BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10B6 SWAP1 PUSH2 0x289A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x10CA DUP4 PUSH2 0xAC0 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1139 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1121 DUP5 PUSH2 0x616 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x114A JUMPI POP PUSH2 0x1149 DUP2 DUP6 PUSH2 0xE4A JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1173 DUP3 PUSH2 0xAC0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x11C9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11C0 SWAP1 PUSH2 0x281A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1239 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1230 SWAP1 PUSH2 0x285A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1244 DUP4 DUP4 DUP4 PUSH2 0x18D6 JUMP JUMPDEST PUSH2 0x124F PUSH1 0x0 DUP3 PUSH2 0xFBC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x129F SWAP2 SWAP1 PUSH2 0x2BB5 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x12F6 SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x13B5 DUP4 DUP4 DUP4 PUSH2 0x18DB JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP4 PUSH2 0x13C8 SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DIFFICULTY TIMESTAMP PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x13E5 SWAP3 SWAP2 SWAP1 PUSH2 0x26B5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x143E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x144A DUP6 DUP6 PUSH2 0x18E0 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 DUP4 PUSH1 0xFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP8 DUP2 MSTORE PUSH1 0x20 ADD DUP7 DUP2 MSTORE POP SWAP1 POP PUSH1 0x6 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 SWAP1 PUSH1 0x3 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SSTORE POP POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x6 DUP1 SLOAD SWAP1 POP PUSH2 0x14E5 SWAP2 SWAP1 PUSH2 0x2BB5 JUMP JUMPDEST SWAP1 POP PUSH2 0x14F1 DUP6 DUP3 PUSH2 0x1915 JUMP JUMPDEST PUSH32 0x3E55573FF0E76F82BDDE8A92FCB5D2F10D2836D0BA36DF6AD1D389E2CC2B3E0D DUP6 DUP3 DUP5 PUSH1 0x20 ADD MLOAD DUP6 PUSH1 0x40 ADD MLOAD DUP7 PUSH1 0x0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x1534 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x2748 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 SWAP4 POP POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x15B8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15AF SWAP1 PUSH2 0x287A 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 0x16A9 SWAP2 SWAP1 PUSH2 0x27BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x16C1 DUP5 DUP5 DUP5 PUSH2 0x1153 JUMP JUMPDEST PUSH2 0x16CD DUP5 DUP5 DUP5 DUP5 PUSH2 0x1AEF JUMP JUMPDEST PUSH2 0x170C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1703 SWAP1 PUSH2 0x27FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x1771 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x18D1 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x17A3 JUMPI DUP1 DUP1 PUSH2 0x178C SWAP1 PUSH2 0x2CDE JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x179C SWAP2 SWAP1 PUSH2 0x2B84 JUMP JUMPDEST SWAP2 POP PUSH2 0x1779 JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x17E5 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1817 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x18CA JUMPI PUSH1 0x1 DUP3 PUSH2 0x1830 SWAP2 SWAP1 PUSH2 0x2BB5 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x183F SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x184B SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x1887 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x18C3 SWAP2 SWAP1 PUSH2 0x2B84 JUMP JUMPDEST SWAP5 POP PUSH2 0x181B JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x6 PUSH2 0x18F9 DUP5 DUP7 PUSH2 0x13BA SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST PUSH2 0x1903 SWAP2 SWAP1 PUSH2 0x2D31 JUMP JUMPDEST PUSH2 0x190D SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1985 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x197C SWAP1 PUSH2 0x291A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x198E DUP2 PUSH2 0xF48 JUMP JUMPDEST ISZERO PUSH2 0x19CE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x19C5 SWAP1 PUSH2 0x283A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x19DA PUSH1 0x0 DUP4 DUP4 PUSH2 0x18D6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1A2A SWAP2 SWAP1 PUSH2 0x2B2E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH2 0x1AEB PUSH1 0x0 DUP4 DUP4 PUSH2 0x18DB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B10 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1C86 JUMP JUMPDEST ISZERO PUSH2 0x1C79 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1B39 PUSH2 0xFB4 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B5B SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26FC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1B75 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1BA6 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 0x1BA3 SWAP2 SWAP1 PUSH2 0x1F66 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1C29 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1BD6 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 0x1BDB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1C21 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C18 SWAP1 PUSH2 0x27FA 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 0x1C7E JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP1 EXTCODESIZE DUP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE PUSH1 0x0 SWAP1 DUP1 PUSH1 0x20 ADD SWAP1 SWAP4 EXTCODECOPY MLOAD GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CD8 PUSH2 0x1CD3 DUP5 PUSH2 0x2A82 JUMP JUMPDEST PUSH2 0x2A51 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1CF0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1CFB DUP5 DUP3 DUP6 PUSH2 0x2C6A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D12 DUP2 PUSH2 0x2E2F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D27 DUP2 PUSH2 0x2E46 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D3C DUP2 PUSH2 0x2E5D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1D51 DUP2 PUSH2 0x2E5D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1D68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1D78 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1CC5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1D90 DUP2 PUSH2 0x2E74 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1DA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1DB6 DUP5 DUP3 DUP6 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1DD2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1DE0 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1DF1 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1E10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E1E DUP7 DUP3 DUP8 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1E2F DUP7 DUP3 DUP8 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1E40 DUP7 DUP3 DUP8 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1E60 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1E6E DUP8 DUP3 DUP9 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1E7F DUP8 DUP3 DUP9 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1E90 DUP8 DUP3 DUP9 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1EAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1EB9 DUP8 DUP3 DUP9 ADD PUSH2 0x1D57 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1ED8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1EE6 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1EF7 DUP6 DUP3 DUP7 ADD PUSH2 0x1D18 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1F14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1F22 DUP6 DUP3 DUP7 ADD PUSH2 0x1D03 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1F33 DUP6 DUP3 DUP7 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F4F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1F5D DUP5 DUP3 DUP6 ADD PUSH2 0x1D2D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1F86 DUP5 DUP3 DUP6 ADD PUSH2 0x1D42 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1FA1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1FAF DUP5 DUP3 DUP6 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1FCB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1FD9 DUP6 DUP3 DUP7 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1FEA DUP6 DUP3 DUP7 ADD PUSH2 0x1D81 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2000 DUP4 DUP4 PUSH2 0x264D JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2015 DUP2 PUSH2 0x2BE9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2026 DUP3 PUSH2 0x2AC2 JUMP JUMPDEST PUSH2 0x2030 DUP2 DUP6 PUSH2 0x2AF0 JUMP JUMPDEST SWAP4 POP PUSH2 0x203B DUP4 PUSH2 0x2AB2 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x206C JUMPI DUP2 MLOAD PUSH2 0x2053 DUP9 DUP3 PUSH2 0x1FF4 JUMP JUMPDEST SWAP8 POP PUSH2 0x205E DUP4 PUSH2 0x2AE3 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x203F JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2082 DUP2 PUSH2 0x2BFB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2093 DUP3 PUSH2 0x2ACD JUMP JUMPDEST PUSH2 0x209D DUP2 DUP6 PUSH2 0x2B01 JUMP JUMPDEST SWAP4 POP PUSH2 0x20AD DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C79 JUMP JUMPDEST PUSH2 0x20B6 DUP2 PUSH2 0x2E1E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20CC DUP3 PUSH2 0x2AD8 JUMP JUMPDEST PUSH2 0x20D6 DUP2 DUP6 PUSH2 0x2B12 JUMP JUMPDEST SWAP4 POP PUSH2 0x20E6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C79 JUMP JUMPDEST PUSH2 0x20EF DUP2 PUSH2 0x2E1E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2105 DUP3 PUSH2 0x2AD8 JUMP JUMPDEST PUSH2 0x210F DUP2 DUP6 PUSH2 0x2B23 JUMP JUMPDEST SWAP4 POP PUSH2 0x211F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x2C79 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2138 PUSH1 0x32 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x219E PUSH1 0x25 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2204 PUSH1 0x1C DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2244 PUSH1 0x24 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22AA PUSH1 0x19 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22EA PUSH1 0x2C DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2350 PUSH1 0x38 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23B6 PUSH1 0x2A DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x241C PUSH1 0x29 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2482 PUSH1 0x20 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24C2 PUSH1 0x2C DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2528 PUSH1 0x2F DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x258E PUSH1 0x21 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25F4 PUSH1 0x31 DUP4 PUSH2 0x2B12 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2656 DUP2 PUSH2 0x2C53 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x2665 DUP2 PUSH2 0x2C53 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x267C PUSH2 0x2677 DUP3 PUSH2 0x2C53 JUMP JUMPDEST PUSH2 0x2D27 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x268B DUP2 PUSH2 0x2C5D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x269D DUP3 DUP6 PUSH2 0x20FA JUMP JUMPDEST SWAP2 POP PUSH2 0x26A9 DUP3 DUP5 PUSH2 0x20FA JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26C1 DUP3 DUP6 PUSH2 0x266B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH2 0x26D1 DUP3 DUP5 PUSH2 0x266B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x26F6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x200C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x2711 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x200C JUMP JUMPDEST PUSH2 0x271E PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x200C JUMP JUMPDEST PUSH2 0x272B PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x273D DUP2 DUP5 PUSH2 0x2088 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x275D PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x200C JUMP JUMPDEST PUSH2 0x276A PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2777 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2784 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2791 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x2682 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27B5 DUP2 DUP5 PUSH2 0x201B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x27D2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2079 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27F2 DUP2 DUP5 PUSH2 0x20C1 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2813 DUP2 PUSH2 0x212B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2833 DUP2 PUSH2 0x2191 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2853 DUP2 PUSH2 0x21F7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2873 DUP2 PUSH2 0x2237 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2893 DUP2 PUSH2 0x229D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x28B3 DUP2 PUSH2 0x22DD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x28D3 DUP2 PUSH2 0x2343 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x28F3 DUP2 PUSH2 0x23A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2913 DUP2 PUSH2 0x240F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2933 DUP2 PUSH2 0x2475 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2953 DUP2 PUSH2 0x24B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2973 DUP2 PUSH2 0x251B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2993 DUP2 PUSH2 0x2581 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x29B3 DUP2 PUSH2 0x25E7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x29CF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x265C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x29EA PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x29F7 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x2682 JUMP JUMPDEST PUSH2 0x2A04 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2A11 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x265C JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x2A2F PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x2682 JUMP JUMPDEST PUSH2 0x2A3C PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x265C JUMP JUMPDEST PUSH2 0x2A49 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x265C JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x2A78 JUMPI PUSH2 0x2A77 PUSH2 0x2DEF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x2A9D JUMPI PUSH2 0x2A9C PUSH2 0x2DEF JUMP JUMPDEST JUMPDEST PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B39 DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B44 DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x2B79 JUMPI PUSH2 0x2B78 PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2B8F DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B9A DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2BAA JUMPI PUSH2 0x2BA9 PUSH2 0x2D91 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BC0 DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BCB DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x2BDE JUMPI PUSH2 0x2BDD PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2BF4 DUP3 PUSH2 0x2C33 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2C97 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x2C7C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x2CA6 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x2CC4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x2CD8 JUMPI PUSH2 0x2CD7 PUSH2 0x2DC0 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CE9 DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x2D1C JUMPI PUSH2 0x2D1B PUSH2 0x2D62 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D3C DUP3 PUSH2 0x2C53 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D47 DUP4 PUSH2 0x2C53 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x2D57 JUMPI PUSH2 0x2D56 PUSH2 0x2D91 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2E38 DUP2 PUSH2 0x2BE9 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E43 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E4F DUP2 PUSH2 0x2BFB JUMP JUMPDEST DUP2 EQ PUSH2 0x2E5A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E66 DUP2 PUSH2 0x2C07 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E71 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2E7D DUP2 PUSH2 0x2C53 JUMP JUMPDEST DUP2 EQ PUSH2 0x2E88 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0xCEC9C2F5622EEB028DB96047BB977061E6F727275E26ECB075CDE05327CB 0xAE PUSH5 0x736F6C6343 STOP ADDMOD STOP STOP CALLER ",
"sourceMap": "267:2623:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1555:300:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2473:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3984:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3522:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4711:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2001:223:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;2230:658;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1588:203;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5107:179:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2176:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1914:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;474:21:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;2635:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4268:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1797:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5352:320:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2803:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4487:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1555:300;1657:4;1707:25;1692:40;;;:11;:40;;;;:104;;;;1763:33;1748:48;;;:11;:48;;;;1692:104;:156;;;;1812:36;1836:11;1812:23;:36::i;:::-;1692:156;1673:175;;1555:300;;;:::o;2473:98::-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;4087:16;4095:7;4087;:16::i;:::-;4079:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4170:15;:24;4186:7;4170:24;;;;;;;;;;;;;;;;;;;;;4163:31;;3984:217;;;:::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;3659:11;;:2;:11;;;;3651:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3756:5;3740:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3765:37;3782:5;3789:12;:10;:12::i;:::-;3765:16;:37::i;:::-;3740:62;3719:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3522:401;;;:::o;4711:330::-;4900:41;4919:12;:10;:12::i;:::-;4933:7;4900:18;:41::i;:::-;4892:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;:::-;4711:330;;;:::o;2001:223:0:-;2066:7;2075:5;2082:7;2091;2110:19;2132:6;2139:7;2132:15;;;;;;;;;;;;;;;;;;;;;;;;;;2110:37;;2166:7;2175:5;:11;;;;;;;;;;;;2188:5;:14;;;2204:5;:12;;;2158:59;;;;;;;;;2001:223;;;;;:::o;2230:658::-;2275:16;2303:18;2324:21;2334:10;2324:9;:21::i;:::-;2303:42;;2374:1;2360:10;:15;2356:526;;;2412:1;2398:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2391:23;;;;;2356:526;2445:23;2485:10;2471:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2445:51;;2511:19;2533:6;:13;;;;2511:35;;2561:19;2599:15;2633:211;2650:11;2640:7;:21;2633:211;;;2705:10;2685:30;;:16;2693:7;2685;:16::i;:::-;:30;;;2681:106;;;2761:7;2739:6;2746:11;2739:19;;;;;;;;;;;;;;;;;;;;;:29;;;;;2681:106;2815:14;2827:1;2815:7;:11;;:14;;;;:::i;:::-;2805:24;;2633:211;;;2865:6;2858:13;;;;;;;2230:658;;:::o;1588:203::-;1634:7;1674:10;1661:9;:23;1653:32;;;;;;1703:81;369:1;1715:8;:6;:8::i;:::-;:27;;;;:::i;:::-;369:1;1744:8;:6;:8::i;:::-;:27;;;;:::i;:::-;1773:10;1703:11;:81::i;:::-;1696:88;;1588:203;:::o;5107:179:2:-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;:::-;5107:179;;;:::o;2176:235::-;2248:7;2267:13;2283:7;:16;2291:7;2283:16;;;;;;;;;;;;;;;;;;;;;2267:32;;2334:1;2317:19;;:5;:19;;;;2309:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2399:5;2392:12;;;2176:235;;;:::o;1914:205::-;1986:7;2030:1;2013:19;;:5;:19;;;;2005:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2096:9;:16;2106:5;2096:16;;;;;;;;;;;;;;;;2089:23;;1914:205;;;:::o;474:21:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2635:102:2:-;2691:13;2723:7;2716:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2635:102;:::o;4268:153::-;4362:52;4381:12;:10;:12::i;:::-;4395:8;4405;4362:18;:52::i;:::-;4268:153;;:::o;1797:198:0:-;1878:7;1918:10;1905:9;:23;1897:32;;;;;;1947:41;1959:8;1969:6;1977:10;1947:11;:41::i;:::-;1940:48;;1797:198;;;;:::o;5352:320:2:-;5521:41;5540:12;:10;:12::i;:::-;5554:7;5521:18;:41::i;:::-;5513:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;2803:329::-;2876:13;2909:16;2917:7;2909;:16::i;:::-;2901:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;;;2803:329;;;:::o;4487:162::-;4584:4;4607:18;:25;4626:5;4607:25;;;;;;;;;;;;;;;:35;4633:8;4607:35;;;;;;;;;;;;;;;;;;;;;;;;;4600:42;;4487:162;;;;:::o;829:155:9:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7144:125:2:-;7209:4;7260:1;7232:30;;:7;:16;7240:7;7232:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7225:37;;7144:125;;;:::o;640:96:7:-;693:7;719:10;712:17;;640:96;:::o;11153:171:2:-;11254:2;11227:15;:24;11243:7;11227:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11309:7;11305:2;11271:46;;11280:23;11295:7;11280:14;:23::i;:::-;11271:46;;;;;;;;;;;;11153:171;;:::o;7427:344::-;7520:4;7544:16;7552:7;7544;:16::i;:::-;7536:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;7676:16;;:7;:16;;;:51;;;;7720:7;7696:31;;:20;7708:7;7696:11;:20::i;:::-;:31;;;7676:51;:87;;;;7731:32;7748:5;7755:7;7731:16;:32::i;:::-;7676:87;7668:96;;;7427:344;;;;:::o;10437:605::-;10591:4;10564:31;;:23;10579:7;10564:14;:23::i;:::-;:31;;;10556:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10669:1;10655:16;;:2;:16;;;;10647:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10723:39;10744:4;10750:2;10754:7;10723:20;:39::i;:::-;10824:29;10841:1;10845:7;10824:8;:29::i;:::-;10883:1;10864:9;:15;10874:4;10864:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10911:1;10894:9;:13;10904:2;10894:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10941:2;10922:7;:16;10930:7;10922:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10978:7;10974:2;10959:27;;10968:4;10959:27;;;;;;;;;;;;10997:38;11017:4;11023:2;11027:7;10997:19;:38::i;:::-;10437:605;;;:::o;2741:96:1:-;2799:7;2829:1;2825;:5;;;;:::i;:::-;2818:12;;2741:96;;;;:::o;692:138:0:-;732:4;787:16;805:15;770:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;760:62;;;;;;755:68;;748:75;;692:138;:::o;1000:582::-;1089:4;1135:1;1113:24;;:10;:24;;;;1105:33;;;;;;1149:14;1166:32;1185:6;1193:4;1166:18;:32::i;:::-;1149:49;;1209:21;1233:90;;;;;;;;1256:8;1233:90;;;;;;1284:6;1233:90;;;;1308:4;1233:90;;;1209:114;;1334:6;1346:8;1334:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1366:18;1403:1;1387:6;:13;;;;:17;;;;:::i;:::-;1366:38;;1415:35;1427:10;1439;1415:11;:35::i;:::-;1466:81;1472:10;1484;1496:8;:17;;;1515:8;:15;;;1532:8;:14;;;1466:81;;;;;;;;;;:::i;:::-;;;;;;;;1565:10;1558:17;;;;;1000:582;;;;;:::o;11459:307:2:-;11609:8;11600:17;;:5;:17;;;;11592:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11695:8;11657:18;:25;11676:5;11657:25;;;;;;;;;;;;;;;:35;11683:8;11657:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11740:8;11718:41;;11733:5;11718:41;;;11750:8;11718:41;;;;;;:::i;:::-;;;;;;;;11459:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6534:307;;;;:::o;3373:92::-;3424:13;3449:9;;;;;;;;;;;;;;3373:92;:::o;328:703:8:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;13653:122:2:-;;;;:::o;14147:121::-;;;;:::o;836:158:0:-;917:5;985:1;369;947:16;958:4;947:6;:10;;:16;;;;:::i;:::-;:35;;;;:::i;:::-;:39;;;;:::i;:::-;934:53;;836:158;;;;:::o;9063:427:2:-;9156:1;9142:16;;:2;:16;;;;9134:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9214:16;9222:7;9214;:16::i;:::-;9213:17;9205:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9274:45;9303:1;9307:2;9311:7;9274:20;:45::i;:::-;9347:1;9330:9;:13;9340:2;9330:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9377:2;9358:7;:16;9366:7;9358:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9420:7;9416:2;9395:33;;9412:1;9395:33;;;;;;;;;;;;9439:44;9467:1;9471:2;9475:7;9439:19;:44::i;:::-;9063:427;;:::o;12319:778::-;12469:4;12489:15;:2;:13;;;:15::i;:::-;12485:606;;;12540:2;12524:36;;;12561:12;:10;:12::i;:::-;12575:4;12581:7;12590:5;12524:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12520:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12780:1;12763:6;:13;:18;12759:266;;;12805:60;;;;;;;;;;:::i;:::-;;;;;;;;12759:266;12977:6;12971:13;12962:6;12958:2;12954:15;12947:38;12520:519;12656:41;;;12646:51;;;:6;:51;;;;12639:58;;;;;12485:606;13076:4;13069:11;;12319:778;;;;;;;:::o;1160:320:6:-;1220:4;1472:1;1450:7;:12;;;;;;;;;;;;;;;;;;;;;;;;;:19;:23;1443:30;;1160:320;;;:::o;7:342:11:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1219:139::-;;1303:6;1290:20;1281:29;;1319:33;1346:5;1319:33;:::i;:::-;1271:87;;;;:::o;1364:262::-;;1472:2;1460:9;1451:7;1447:23;1443:32;1440:2;;;1488:1;1485;1478:12;1440:2;1531:1;1556:53;1601:7;1592:6;1581:9;1577:22;1556:53;:::i;:::-;1546:63;;1502:117;1430:196;;;;:::o;1632:407::-;;;1757:2;1745:9;1736:7;1732:23;1728:32;1725:2;;;1773:1;1770;1763:12;1725:2;1816:1;1841:53;1886:7;1877:6;1866:9;1862:22;1841:53;:::i;:::-;1831:63;;1787:117;1943:2;1969:53;2014:7;2005:6;1994:9;1990:22;1969:53;:::i;:::-;1959:63;;1914:118;1715:324;;;;;:::o;2045:552::-;;;;2187:2;2175:9;2166:7;2162:23;2158:32;2155:2;;;2203:1;2200;2193:12;2155:2;2246:1;2271:53;2316:7;2307:6;2296:9;2292:22;2271:53;:::i;:::-;2261:63;;2217:117;2373:2;2399:53;2444:7;2435:6;2424:9;2420:22;2399:53;:::i;:::-;2389:63;;2344:118;2501:2;2527:53;2572:7;2563:6;2552:9;2548:22;2527:53;:::i;:::-;2517:63;;2472:118;2145:452;;;;;:::o;2603:809::-;;;;;2771:3;2759:9;2750:7;2746:23;2742:33;2739:2;;;2788:1;2785;2778:12;2739:2;2831:1;2856:53;2901:7;2892:6;2881:9;2877:22;2856:53;:::i;:::-;2846:63;;2802:117;2958:2;2984:53;3029:7;3020:6;3009:9;3005:22;2984:53;:::i;:::-;2974:63;;2929:118;3086:2;3112:53;3157:7;3148:6;3137:9;3133:22;3112:53;:::i;:::-;3102:63;;3057:118;3242:2;3231:9;3227:18;3214:32;3273:18;3265:6;3262:30;3259:2;;;3305:1;3302;3295:12;3259:2;3333:62;3387:7;3378:6;3367:9;3363:22;3333:62;:::i;:::-;3323:72;;3185:220;2729:683;;;;;;;:::o;3418:401::-;;;3540:2;3528:9;3519:7;3515:23;3511:32;3508:2;;;3556:1;3553;3546:12;3508:2;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:50;3794:7;3785:6;3774:9;3770:22;3752:50;:::i;:::-;3742:60;;3697:115;3498:321;;;;;:::o;3825:407::-;;;3950:2;3938:9;3929:7;3925:23;3921:32;3918:2;;;3966:1;3963;3956:12;3918:2;4009:1;4034:53;4079:7;4070:6;4059:9;4055:22;4034:53;:::i;:::-;4024:63;;3980:117;4136:2;4162:53;4207:7;4198:6;4187:9;4183:22;4162:53;:::i;:::-;4152:63;;4107:118;3908:324;;;;;:::o;4238:260::-;;4345:2;4333:9;4324:7;4320:23;4316:32;4313:2;;;4361:1;4358;4351:12;4313:2;4404:1;4429:52;4473:7;4464:6;4453:9;4449:22;4429:52;:::i;:::-;4419:62;;4375:116;4303:195;;;;:::o;4504:282::-;;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;4638:1;4635;4628:12;4590:2;4681:1;4706:63;4761:7;4752:6;4741:9;4737:22;4706:63;:::i;:::-;4696:73;;4652:127;4580:206;;;;:::o;4792:262::-;;4900:2;4888:9;4879:7;4875:23;4871:32;4868:2;;;4916:1;4913;4906:12;4868:2;4959:1;4984:53;5029:7;5020:6;5009:9;5005:22;4984:53;:::i;:::-;4974:63;;4930:117;4858:196;;;;:::o;5060:407::-;;;5185:2;5173:9;5164:7;5160:23;5156:32;5153:2;;;5201:1;5198;5191:12;5153:2;5244:1;5269:53;5314:7;5305:6;5294:9;5290:22;5269:53;:::i;:::-;5259:63;;5215:117;5371:2;5397:53;5442:7;5433:6;5422:9;5418:22;5397:53;:::i;:::-;5387:63;;5342:118;5143:324;;;;;:::o;5473:179::-;;5563:46;5605:3;5597:6;5563:46;:::i;:::-;5641:4;5636:3;5632:14;5618:28;;5553:99;;;;:::o;5658:118::-;5745:24;5763:5;5745:24;:::i;:::-;5740:3;5733:37;5723:53;;:::o;5812:732::-;;5960:54;6008:5;5960:54;:::i;:::-;6030:86;6109:6;6104:3;6030:86;:::i;:::-;6023:93;;6140:56;6190:5;6140:56;:::i;:::-;6219:7;6250:1;6235:284;6260:6;6257:1;6254:13;6235:284;;;6336:6;6330:13;6363:63;6422:3;6407:13;6363:63;:::i;:::-;6356:70;;6449:60;6502:6;6449:60;:::i;:::-;6439:70;;6295:224;6282:1;6279;6275:9;6270:14;;6235:284;;;6239:14;6535:3;6528:10;;5936:608;;;;;;;:::o;6550:109::-;6631:21;6646:5;6631:21;:::i;:::-;6626:3;6619:34;6609:50;;:::o;6665:360::-;;6779:38;6811:5;6779:38;:::i;:::-;6833:70;6896:6;6891:3;6833:70;:::i;:::-;6826:77;;6912:52;6957:6;6952:3;6945:4;6938:5;6934:16;6912:52;:::i;:::-;6989:29;7011:6;6989:29;:::i;:::-;6984:3;6980:39;6973:46;;6755:270;;;;;:::o;7031:364::-;;7147:39;7180:5;7147:39;:::i;:::-;7202:71;7266:6;7261:3;7202:71;:::i;:::-;7195:78;;7282:52;7327:6;7322:3;7315:4;7308:5;7304:16;7282:52;:::i;:::-;7359:29;7381:6;7359:29;:::i;:::-;7354:3;7350:39;7343:46;;7123:272;;;;;:::o;7401:377::-;;7535:39;7568:5;7535:39;:::i;:::-;7590:89;7672:6;7667:3;7590:89;:::i;:::-;7583:96;;7688:52;7733:6;7728:3;7721:4;7714:5;7710:16;7688:52;:::i;:::-;7765:6;7760:3;7756:16;7749:23;;7511:267;;;;;:::o;7784:382::-;;7947:67;8011:2;8006:3;7947:67;:::i;:::-;7940:74;;8044:34;8040:1;8035:3;8031:11;8024:55;8110:20;8105:2;8100:3;8096:12;8089:42;8157:2;8152:3;8148:12;8141:19;;7930:236;;;:::o;8172:369::-;;8335:67;8399:2;8394:3;8335:67;:::i;:::-;8328:74;;8432:34;8428:1;8423:3;8419:11;8412:55;8498:7;8493:2;8488:3;8484:12;8477:29;8532:2;8527:3;8523:12;8516:19;;8318:223;;;:::o;8547:326::-;;8710:67;8774:2;8769:3;8710:67;:::i;:::-;8703:74;;8807:30;8803:1;8798:3;8794:11;8787:51;8864:2;8859:3;8855:12;8848:19;;8693:180;;;:::o;8879:368::-;;9042:67;9106:2;9101:3;9042:67;:::i;:::-;9035:74;;9139:34;9135:1;9130:3;9126:11;9119:55;9205:6;9200:2;9195:3;9191:12;9184:28;9238:2;9233:3;9229:12;9222:19;;9025:222;;;:::o;9253:323::-;;9416:67;9480:2;9475:3;9416:67;:::i;:::-;9409:74;;9513:27;9509:1;9504:3;9500:11;9493:48;9567:2;9562:3;9558:12;9551:19;;9399:177;;;:::o;9582:376::-;;9745:67;9809:2;9804:3;9745:67;:::i;:::-;9738:74;;9842:34;9838:1;9833:3;9829:11;9822:55;9908:14;9903:2;9898:3;9894:12;9887:36;9949:2;9944:3;9940:12;9933:19;;9728:230;;;:::o;9964:388::-;;10127:67;10191:2;10186:3;10127:67;:::i;:::-;10120:74;;10224:34;10220:1;10215:3;10211:11;10204:55;10290:26;10285:2;10280:3;10276:12;10269:48;10343:2;10338:3;10334:12;10327:19;;10110:242;;;:::o;10358:374::-;;10521:67;10585:2;10580:3;10521:67;:::i;:::-;10514:74;;10618:34;10614:1;10609:3;10605:11;10598:55;10684:12;10679:2;10674:3;10670:12;10663:34;10723:2;10718:3;10714:12;10707:19;;10504:228;;;:::o;10738:373::-;;10901:67;10965:2;10960:3;10901:67;:::i;:::-;10894:74;;10998:34;10994:1;10989:3;10985:11;10978:55;11064:11;11059:2;11054:3;11050:12;11043:33;11102:2;11097:3;11093:12;11086:19;;10884:227;;;:::o;11117:330::-;;11280:67;11344:2;11339:3;11280:67;:::i;:::-;11273:74;;11377:34;11373:1;11368:3;11364:11;11357:55;11438:2;11433:3;11429:12;11422:19;;11263:184;;;:::o;11453:376::-;;11616:67;11680:2;11675:3;11616:67;:::i;:::-;11609:74;;11713:34;11709:1;11704:3;11700:11;11693:55;11779:14;11774:2;11769:3;11765:12;11758:36;11820:2;11815:3;11811:12;11804:19;;11599:230;;;:::o;11835:379::-;;11998:67;12062:2;12057:3;11998:67;:::i;:::-;11991:74;;12095:34;12091:1;12086:3;12082:11;12075:55;12161:17;12156:2;12151:3;12147:12;12140:39;12205:2;12200:3;12196:12;12189:19;;11981:233;;;:::o;12220:365::-;;12383:67;12447:2;12442:3;12383:67;:::i;:::-;12376:74;;12480:34;12476:1;12471:3;12467:11;12460:55;12546:3;12541:2;12536:3;12532:12;12525:25;12576:2;12571:3;12567:12;12560:19;;12366:219;;;:::o;12591:381::-;;12754:67;12818:2;12813:3;12754:67;:::i;:::-;12747:74;;12851:34;12847:1;12842:3;12838:11;12831:55;12917:19;12912:2;12907:3;12903:12;12896:41;12963:2;12958:3;12954:12;12947:19;;12737:235;;;:::o;12978:108::-;13055:24;13073:5;13055:24;:::i;:::-;13050:3;13043:37;13033:53;;:::o;13092:118::-;13179:24;13197:5;13179:24;:::i;:::-;13174:3;13167:37;13157:53;;:::o;13216:157::-;13321:45;13341:24;13359:5;13341:24;:::i;:::-;13321:45;:::i;:::-;13316:3;13309:58;13299:74;;:::o;13379:112::-;13462:22;13478:5;13462:22;:::i;:::-;13457:3;13450:35;13440:51;;:::o;13497:435::-;;13699:95;13790:3;13781:6;13699:95;:::i;:::-;13692:102;;13811:95;13902:3;13893:6;13811:95;:::i;:::-;13804:102;;13923:3;13916:10;;13681:251;;;;;:::o;13938:397::-;;14093:75;14164:3;14155:6;14093:75;:::i;:::-;14193:2;14188:3;14184:12;14177:19;;14206:75;14277:3;14268:6;14206:75;:::i;:::-;14306:2;14301:3;14297:12;14290:19;;14326:3;14319:10;;14082:253;;;;;:::o;14341:222::-;;14472:2;14461:9;14457:18;14449:26;;14485:71;14553:1;14542:9;14538:17;14529:6;14485:71;:::i;:::-;14439:124;;;;:::o;14569:640::-;;14802:3;14791:9;14787:19;14779:27;;14816:71;14884:1;14873:9;14869:17;14860:6;14816:71;:::i;:::-;14897:72;14965:2;14954:9;14950:18;14941:6;14897:72;:::i;:::-;14979;15047:2;15036:9;15032:18;15023:6;14979:72;:::i;:::-;15098:9;15092:4;15088:20;15083:2;15072:9;15068:18;15061:48;15126:76;15197:4;15188:6;15126:76;:::i;:::-;15118:84;;14769:440;;;;;;;:::o;15215:656::-;;15454:3;15443:9;15439:19;15431:27;;15468:71;15536:1;15525:9;15521:17;15512:6;15468:71;:::i;:::-;15549:72;15617:2;15606:9;15602:18;15593:6;15549:72;:::i;:::-;15631;15699:2;15688:9;15684:18;15675:6;15631:72;:::i;:::-;15713;15781:2;15770:9;15766:18;15757:6;15713:72;:::i;:::-;15795:69;15859:3;15848:9;15844:19;15835:6;15795:69;:::i;:::-;15421:450;;;;;;;;:::o;15877:373::-;;16058:2;16047:9;16043:18;16035:26;;16107:9;16101:4;16097:20;16093:1;16082:9;16078:17;16071:47;16135:108;16238:4;16229:6;16135:108;:::i;:::-;16127:116;;16025:225;;;;:::o;16256:210::-;;16381:2;16370:9;16366:18;16358:26;;16394:65;16456:1;16445:9;16441:17;16432:6;16394:65;:::i;:::-;16348:118;;;;:::o;16472:313::-;;16623:2;16612:9;16608:18;16600:26;;16672:9;16666:4;16662:20;16658:1;16647:9;16643:17;16636:47;16700:78;16773:4;16764:6;16700:78;:::i;:::-;16692:86;;16590:195;;;;:::o;16791:419::-;;16995:2;16984:9;16980:18;16972:26;;17044:9;17038:4;17034:20;17030:1;17019:9;17015:17;17008:47;17072:131;17198:4;17072:131;:::i;:::-;17064:139;;16962:248;;;:::o;17216:419::-;;17420:2;17409:9;17405:18;17397:26;;17469:9;17463:4;17459:20;17455:1;17444:9;17440:17;17433:47;17497:131;17623:4;17497:131;:::i;:::-;17489:139;;17387:248;;;:::o;17641:419::-;;17845:2;17834:9;17830:18;17822:26;;17894:9;17888:4;17884:20;17880:1;17869:9;17865:17;17858:47;17922:131;18048:4;17922:131;:::i;:::-;17914:139;;17812:248;;;:::o;18066:419::-;;18270:2;18259:9;18255:18;18247:26;;18319:9;18313:4;18309:20;18305:1;18294:9;18290:17;18283:47;18347:131;18473:4;18347:131;:::i;:::-;18339:139;;18237:248;;;:::o;18491:419::-;;18695:2;18684:9;18680:18;18672:26;;18744:9;18738:4;18734:20;18730:1;18719:9;18715:17;18708:47;18772:131;18898:4;18772:131;:::i;:::-;18764:139;;18662:248;;;:::o;18916:419::-;;19120:2;19109:9;19105:18;19097:26;;19169:9;19163:4;19159:20;19155:1;19144:9;19140:17;19133:47;19197:131;19323:4;19197:131;:::i;:::-;19189:139;;19087:248;;;:::o;19341:419::-;;19545:2;19534:9;19530:18;19522:26;;19594:9;19588:4;19584:20;19580:1;19569:9;19565:17;19558:47;19622:131;19748:4;19622:131;:::i;:::-;19614:139;;19512:248;;;:::o;19766:419::-;;19970:2;19959:9;19955:18;19947:26;;20019:9;20013:4;20009:20;20005:1;19994:9;19990:17;19983:47;20047:131;20173:4;20047:131;:::i;:::-;20039:139;;19937:248;;;:::o;20191:419::-;;20395:2;20384:9;20380:18;20372:26;;20444:9;20438:4;20434:20;20430:1;20419:9;20415:17;20408:47;20472:131;20598:4;20472:131;:::i;:::-;20464:139;;20362:248;;;:::o;20616:419::-;;20820:2;20809:9;20805:18;20797:26;;20869:9;20863:4;20859:20;20855:1;20844:9;20840:17;20833:47;20897:131;21023:4;20897:131;:::i;:::-;20889:139;;20787:248;;;:::o;21041:419::-;;21245:2;21234:9;21230:18;21222:26;;21294:9;21288:4;21284:20;21280:1;21269:9;21265:17;21258:47;21322:131;21448:4;21322:131;:::i;:::-;21314:139;;21212:248;;;:::o;21466:419::-;;21670:2;21659:9;21655:18;21647:26;;21719:9;21713:4;21709:20;21705:1;21694:9;21690:17;21683:47;21747:131;21873:4;21747:131;:::i;:::-;21739:139;;21637:248;;;:::o;21891:419::-;;22095:2;22084:9;22080:18;22072:26;;22144:9;22138:4;22134:20;22130:1;22119:9;22115:17;22108:47;22172:131;22298:4;22172:131;:::i;:::-;22164:139;;22062:248;;;:::o;22316:419::-;;22520:2;22509:9;22505:18;22497:26;;22569:9;22563:4;22559:20;22555:1;22544:9;22540:17;22533:47;22597:131;22723:4;22597:131;:::i;:::-;22589:139;;22487:248;;;:::o;22741:222::-;;22872:2;22861:9;22857:18;22849:26;;22885:71;22953:1;22942:9;22938:17;22929:6;22885:71;:::i;:::-;22839:124;;;;:::o;22969:545::-;;23180:3;23169:9;23165:19;23157:27;;23194:71;23262:1;23251:9;23247:17;23238:6;23194:71;:::i;:::-;23275:68;23339:2;23328:9;23324:18;23315:6;23275:68;:::i;:::-;23353:72;23421:2;23410:9;23406:18;23397:6;23353:72;:::i;:::-;23435;23503:2;23492:9;23488:18;23479:6;23435:72;:::i;:::-;23147:367;;;;;;;:::o;23520:434::-;;23703:2;23692:9;23688:18;23680:26;;23716:67;23780:1;23769:9;23765:17;23756:6;23716:67;:::i;:::-;23793:72;23861:2;23850:9;23846:18;23837:6;23793:72;:::i;:::-;23875;23943:2;23932:9;23928:18;23919:6;23875:72;:::i;:::-;23670:284;;;;;;:::o;23960:283::-;;24026:2;24020:9;24010:19;;24068:4;24060:6;24056:17;24175:6;24163:10;24160:22;24139:18;24127:10;24124:34;24121:62;24118:2;;;24186:18;;:::i;:::-;24118:2;24226:10;24222:2;24215:22;24000:243;;;;:::o;24249:331::-;;24400:18;24392:6;24389:30;24386:2;;;24422:18;;:::i;:::-;24386:2;24507:4;24503:9;24496:4;24488:6;24484:17;24480:33;24472:41;;24568:4;24562;24558:15;24550:23;;24315:265;;;:::o;24586:132::-;;24676:3;24668:11;;24706:4;24701:3;24697:14;24689:22;;24658:60;;;:::o;24724:114::-;;24825:5;24819:12;24809:22;;24798:40;;;:::o;24844:98::-;;24929:5;24923:12;24913:22;;24902:40;;;:::o;24948:99::-;;25034:5;25028:12;25018:22;;25007:40;;;:::o;25053:113::-;;25155:4;25150:3;25146:14;25138:22;;25128:38;;;:::o;25172:184::-;;25305:6;25300:3;25293:19;25345:4;25340:3;25336:14;25321:29;;25283:73;;;;:::o;25362:168::-;;25479:6;25474:3;25467:19;25519:4;25514:3;25510:14;25495:29;;25457:73;;;;:::o;25536:169::-;;25654:6;25649:3;25642:19;25694:4;25689:3;25685:14;25670:29;;25632:73;;;;:::o;25711:148::-;;25850:3;25835:18;;25825:34;;;;:::o;25865:305::-;;25924:20;25942:1;25924:20;:::i;:::-;25919:25;;25958:20;25976:1;25958:20;:::i;:::-;25953:25;;26112:1;26044:66;26040:74;26037:1;26034:81;26031:2;;;26118:18;;:::i;:::-;26031:2;26162:1;26159;26155:9;26148:16;;25909:261;;;;:::o;26176:185::-;;26233:20;26251:1;26233:20;:::i;:::-;26228:25;;26267:20;26285:1;26267:20;:::i;:::-;26262:25;;26306:1;26296:2;;26311:18;;:::i;:::-;26296:2;26353:1;26350;26346:9;26341:14;;26218:143;;;;:::o;26367:191::-;;26427:20;26445:1;26427:20;:::i;:::-;26422:25;;26461:20;26479:1;26461:20;:::i;:::-;26456:25;;26500:1;26497;26494:8;26491:2;;;26505:18;;:::i;:::-;26491:2;26550:1;26547;26543:9;26535:17;;26412:146;;;;:::o;26564:96::-;;26630:24;26648:5;26630:24;:::i;:::-;26619:35;;26609:51;;;:::o;26666:90::-;;26743:5;26736:13;26729:21;26718:32;;26708:48;;;:::o;26762:149::-;;26838:66;26831:5;26827:78;26816:89;;26806:105;;;:::o;26917:126::-;;26994:42;26987:5;26983:54;26972:65;;26962:81;;;:::o;27049:77::-;;27115:5;27104:16;;27094:32;;;:::o;27132:86::-;;27207:4;27200:5;27196:16;27185:27;;27175:43;;;:::o;27224:154::-;27308:6;27303:3;27298;27285:30;27370:1;27361:6;27356:3;27352:16;27345:27;27275:103;;;:::o;27384:307::-;27452:1;27462:113;27476:6;27473:1;27470:13;27462:113;;;27561:1;27556:3;27552:11;27546:18;27542:1;27537:3;27533:11;27526:39;27498:2;27495:1;27491:10;27486:15;;27462:113;;;27593:6;27590:1;27587:13;27584:2;;;27673:1;27664:6;27659:3;27655:16;27648:27;27584:2;27433:258;;;;:::o;27697:320::-;;27778:1;27772:4;27768:12;27758:22;;27825:1;27819:4;27815:12;27846:18;27836:2;;27902:4;27894:6;27890:17;27880:27;;27836:2;27964;27956:6;27953:14;27933:18;27930:38;27927:2;;;27983:18;;:::i;:::-;27927:2;27748:269;;;;:::o;28023:233::-;;28085:24;28103:5;28085:24;:::i;:::-;28076:33;;28131:66;28124:5;28121:77;28118:2;;;28201:18;;:::i;:::-;28118:2;28248:1;28241:5;28237:13;28230:20;;28066:190;;;:::o;28262:79::-;;28330:5;28319:16;;28309:32;;;:::o;28347:176::-;;28396:20;28414:1;28396:20;:::i;:::-;28391:25;;28430:20;28448:1;28430:20;:::i;:::-;28425:25;;28469:1;28459:2;;28474:18;;:::i;:::-;28459:2;28515:1;28512;28508:9;28503:14;;28381:142;;;;:::o;28529:180::-;28577:77;28574:1;28567:88;28674:4;28671:1;28664:15;28698:4;28695:1;28688:15;28715:180;28763:77;28760:1;28753:88;28860:4;28857:1;28850:15;28884:4;28881:1;28874:15;28901:180;28949:77;28946:1;28939:88;29046:4;29043:1;29036:15;29070:4;29067:1;29060:15;29087:180;29135:77;29132:1;29125:88;29232:4;29229:1;29222:15;29256:4;29253:1;29246:15;29273:102;;29365:2;29361:7;29356:2;29349:5;29345:14;29341:28;29331:38;;29321:54;;;:::o;29381:122::-;29454:24;29472:5;29454:24;:::i;:::-;29447:5;29444:35;29434:2;;29493:1;29490;29483:12;29434:2;29424:79;:::o;29509:116::-;29579:21;29594:5;29579:21;:::i;:::-;29572:5;29569:32;29559:2;;29615:1;29612;29605:12;29559:2;29549:76;:::o;29631:120::-;29703:23;29720:5;29703:23;:::i;:::-;29696:5;29693:34;29683:2;;29741:1;29738;29731:12;29683:2;29673:78;:::o;29757:122::-;29830:24;29848:5;29830:24;:::i;:::-;29823:5;29820:35;29810:2;;29869:1;29866;29859:12;29810:2;29800:79;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2393800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1624",
"breedVipers(uint256,uint256)": "infinite",
"buyViper()": "infinite",
"getApproved(uint256)": "2628",
"getViperDetails(uint256)": "infinite",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownedVipers()": "infinite",
"ownerOf(uint256)": "1671",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "797",
"symbol()": "infinite",
"tokenURI(uint256)": "2117",
"transferFrom(address,address,uint256)": "infinite",
"vipers(uint256)": "infinite"
},
"internal": {
"createViper(uint256,uint256,address)": "infinite",
"generateViperGenes(uint256,uint256)": "infinite",
"random()": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"breedVipers(uint256,uint256)": "ab967221",
"buyViper()": "33293e65",
"getApproved(uint256)": "081812fc",
"getViperDetails(uint256)": "278a4597",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownedVipers()": "29d8b989",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd",
"vipers(uint256)": "8b1e199b"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "viperId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "matronId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "sireId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint8",
"name": "genes",
"type": "uint8"
}
],
"name": "Birth",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "matronId",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "sireId",
"type": "uint256"
}
],
"name": "breedVipers",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "buyViper",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "viperId",
"type": "uint256"
}
],
"name": "getViperDetails",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "",
"type": "uint8"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "ownedVipers",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "vipers",
"outputs": [
{
"internalType": "uint8",
"name": "genes",
"type": "uint8"
},
{
"internalType": "uint256",
"name": "matronId",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "sireId",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "viperId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "matronId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "sireId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint8",
"name": "genes",
"type": "uint8"
}
],
"name": "Birth",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "matronId",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "sireId",
"type": "uint256"
}
],
"name": "breedVipers",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "buyViper",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "viperId",
"type": "uint256"
}
],
"name": "getViperDetails",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "",
"type": "uint8"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "ownedVipers",
"outputs": [
{
"internalType": "uint256[]",
"name": "",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "vipers",
"outputs": [
{
"internalType": "uint8",
"name": "genes",
"type": "uint8"
},
{
"internalType": "uint256",
"name": "matronId",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "sireId",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/ViperToken.sol": "ViperToken"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/ViperToken.sol": {
"keccak256": "0x8cfe02d1e6216b1a5a9e4aba046a914380ff7e2056ffb1f7d72f804837fc02a8",
"license": "MIT",
"urls": [
"bzz-raw://054a43ba6a378a01ba30d4ed258d25f1e943dcf9670fedc7017b50080f499c8a",
"dweb:/ipfs/QmUqsvctXBvdF6pqJQmmdn7GK5cGr1Bh3KH4JG3jaPWUff"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol": {
"keccak256": "0xa2f576be637946f767aa56601c26d717f48a0aff44f82e46f13807eea1009a21",
"license": "MIT",
"urls": [
"bzz-raw://973868f808e88e21a1a0a01d4839314515ee337ad096286c88e41b74dcc11fc2",
"dweb:/ipfs/QmfYuZxRfx2J2xdk4EXN7jKg4bUYEMTaYk9BAw9Bqn4o2Y"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x3d792960e94a45b270b704de42b6396142ebe8086730c6f5ac6cd5a67778025b",
"license": "MIT",
"urls": [
"bzz-raw://a9a321ba7a719abe8b484f0d71ab2a4bab50e0367849160e5166e2bf79fdae23",
"dweb:/ipfs/QmXnwkHGda9KoxQ5gXdWU5kh8bqukkw1yQRhv5SLS1pX8T"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990",
"license": "MIT",
"urls": [
"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849",
"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f",
"license": "MIT",
"urls": [
"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f",
"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/utils/Address.sol": {
"keccak256": "0x7e5823057b0af146217b40ff437dc712a29039d066a5a8643e964b473b217377",
"license": "MIT",
"urls": [
"bzz-raw://2d0bde962390182f5b5cb2e32d0fb2afa9328d103ed0c511599902114c38b165",
"dweb:/ipfs/QmRToJ4WdDpimpQT1tHbuAquSTExqUUdScXjm81SPcFFpA"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.0;
import "https://github.com/OpenZeppelin/openzeppelin-solidity/contracts/token/ERC721/ERC721.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol";
contract ViperToken is ERC721 {
using SafeMath for uint256;
uint constant VARIATIONS_COUNT = 6;
struct Viper {
uint8 genes;
uint256 matronId;
uint256 sireId;
}
Viper[] public vipers;
event Birth(address owner, uint256 viperId, uint256 matronId, uint256 sireId, uint8 genes);
constructor() ERC721("Vipers", "VPR") {
}
receive() external payable {
}
function random() private view returns (uint) {
return uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
}
function generateViperGenes(uint256 matron, uint256 sire) internal pure returns (uint8) {
return uint8(matron.add(sire) % VARIATIONS_COUNT + 1);
}
function createViper(uint256 matron, uint256 sire, address viperOwner) internal returns (uint) {
require(viperOwner != address(0));
uint8 newGenes = generateViperGenes(matron, sire);
Viper memory newViper = Viper({
genes: newGenes,
matronId: matron,
sireId: sire
});
vipers.push(newViper);
uint256 newViperId = vipers.length - 1;
super._mint(viperOwner, newViperId);
emit Birth(viperOwner, newViperId, newViper.matronId, newViper.sireId, newViper.genes);
return newViperId;
}
function buyViper() external payable returns (uint256) {
require(msg.value == 0.02 ether);
return createViper(random() % VARIATIONS_COUNT, random() % VARIATIONS_COUNT, msg.sender);
}
function breedVipers(uint256 matronId, uint256 sireId) external payable returns (uint256) {
require(msg.value == 0.05 ether);
return createViper(matronId, sireId, msg.sender);
}
function getViperDetails(uint256 viperId) external view returns (uint256, uint8, uint256, uint256) {
Viper storage viper = vipers[viperId];
return (viperId, viper.genes, viper.matronId, viper.sireId);
}
function ownedVipers() external view returns(uint256[] memory) {
uint256 viperCount = balanceOf(msg.sender);
if (viperCount == 0) {
return new uint256[](0);
} else {
uint256[] memory result = new uint256[](viperCount);
uint256 totalVipers = vipers.length;
uint256 resultIndex = 0;
uint256 viperId = 0;
while (viperId < totalVipers) {
if (ownerOf(viperId) == msg.sender) {
result[resultIndex] = viperId;
}
viperId = viperId.add(1);
}
return result;
}
}
}
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithEthers script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner()
let factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer);
let contract = await factory.deploy(...constructorArgs);
console.log('Contract Address: ', contract.address);
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
console.log('Deployment successful.')
} catch (e) {
console.log(e.message)
}
})()
// Right click on the script name and hit "Run" to execute
(async () => {
try {
console.log('Running deployWithWeb3 script...')
const contractName = 'Storage' // Change this for other contract
const constructorArgs = [] // Put constructor args (if any) here for your contract
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
let contract = new web3.eth.Contract(metadata.abi)
contract = contract.deploy({
data: metadata.data.bytecode.object,
arguments: constructorArgs
})
const newContractInstance = await contract.send({
from: accounts[0],
gas: 1500000,
gasPrice: '30000000000'
})
console.log('Contract deployed at address: ', newContractInstance.options.address)
} catch (e) {
console.log(e.message)
}
})()
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
ballotToTest.vote(0);
Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal");
Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name");
}
function checkWinninProposalWithReturnValue () public view returns (bool) {
return ballotToTest.winningProposal() == 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment